mirror of https://github.com/jumpserver/jumpserver
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
419 lines
16 KiB
419 lines
16 KiB
# -*- coding: utf-8 -*-
|
|
#
|
|
import urllib.parse
|
|
import json
|
|
from typing import Callable
|
|
import os
|
|
import base64
|
|
import ctypes
|
|
|
|
from django.conf import settings
|
|
from django.core.cache import cache
|
|
from django.shortcuts import get_object_or_404
|
|
from django.http import HttpResponse
|
|
from django.utils.translation import ugettext as _
|
|
from rest_framework.response import Response
|
|
from rest_framework.request import Request
|
|
from rest_framework.viewsets import GenericViewSet
|
|
from rest_framework.decorators import action
|
|
from rest_framework.exceptions import PermissionDenied
|
|
from rest_framework import serializers
|
|
|
|
from applications.models import Application
|
|
from authentication.signals import post_auth_failed, post_auth_success
|
|
from common.utils import get_logger, random_string
|
|
from common.mixins.api import SerializerMixin
|
|
from common.permissions import IsSuperUserOrAppUser, IsValidUser, IsSuperUser
|
|
from common.utils.common import get_file_by_arch
|
|
from orgs.mixins.api import RootOrgViewMixin
|
|
from common.http import is_true
|
|
from perms.utils.asset.permission import get_asset_system_user_ids_with_actions_by_user
|
|
from perms.models.base import Action
|
|
|
|
from ..serializers import (
|
|
ConnectionTokenSerializer, ConnectionTokenSecretSerializer,
|
|
)
|
|
|
|
logger = get_logger(__name__)
|
|
__all__ = ['UserConnectionTokenViewSet']
|
|
|
|
|
|
class ClientProtocolMixin:
|
|
request: Request
|
|
get_serializer: Callable
|
|
create_token: Callable
|
|
|
|
def get_request_resource(self, serializer):
|
|
asset = serializer.validated_data.get('asset')
|
|
application = serializer.validated_data.get('application')
|
|
system_user = serializer.validated_data['system_user']
|
|
|
|
user = serializer.validated_data.get('user')
|
|
if not user or not self.request.user.is_superuser:
|
|
user = self.request.user
|
|
return asset, application, system_user, user
|
|
|
|
@staticmethod
|
|
def parse_env_bool(env_key, env_default, true_value, false_value):
|
|
return true_value if is_true(os.getenv(env_key, env_default)) else false_value
|
|
|
|
def get_rdp_file_content(self, serializer):
|
|
options = {
|
|
'full address:s': '',
|
|
'username:s': '',
|
|
# 'screen mode id:i': '1',
|
|
# 'desktopwidth:i': '1280',
|
|
# 'desktopheight:i': '800',
|
|
'use multimon:i': '0',
|
|
'session bpp:i': '32',
|
|
'audiomode:i': '0',
|
|
'disable wallpaper:i': '0',
|
|
'disable full window drag:i': '0',
|
|
'disable menu anims:i': '0',
|
|
'disable themes:i': '0',
|
|
'alternate shell:s': '',
|
|
'shell working directory:s': '',
|
|
'authentication level:i': '2',
|
|
'connect to console:i': '0',
|
|
'disable cursor setting:i': '0',
|
|
'allow font smoothing:i': '1',
|
|
'allow desktop composition:i': '1',
|
|
'redirectprinters:i': '0',
|
|
'prompt for credentials on client:i': '0',
|
|
'autoreconnection enabled:i': '1',
|
|
'bookmarktype:i': '3',
|
|
'use redirection server name:i': '0',
|
|
'smart sizing:i': '0',
|
|
#'drivestoredirect:s': '*',
|
|
# 'domain:s': ''
|
|
# 'alternate shell:s:': '||MySQLWorkbench',
|
|
# 'remoteapplicationname:s': 'Firefox',
|
|
# 'remoteapplicationcmdline:s': '',
|
|
}
|
|
|
|
asset, application, system_user, user = self.get_request_resource(serializer)
|
|
height = self.request.query_params.get('height')
|
|
width = self.request.query_params.get('width')
|
|
full_screen = is_true(self.request.query_params.get('full_screen'))
|
|
drives_redirect = is_true(self.request.query_params.get('drives_redirect'))
|
|
token = self.create_token(user, asset, application, system_user)
|
|
|
|
# 设置磁盘挂载
|
|
if drives_redirect and asset:
|
|
systemuser_actions_mapper = get_asset_system_user_ids_with_actions_by_user(user, asset)
|
|
actions = systemuser_actions_mapper.get(system_user.id, 0)
|
|
if actions & Action.UPDOWNLOAD:
|
|
options['drivestoredirect:s'] = '*'
|
|
|
|
# 全屏
|
|
options['screen mode id:i'] = '2' if full_screen else '1'
|
|
|
|
# RDP Server 地址
|
|
address = settings.TERMINAL_RDP_ADDR
|
|
if not address or address == 'localhost:3389':
|
|
address = self.request.get_host().split(':')[0] + ':3389'
|
|
options['full address:s'] = address
|
|
# 用户名
|
|
options['username:s'] = '{}|{}'.format(user.username, token)
|
|
if system_user.ad_domain:
|
|
options['domain:s'] = system_user.ad_domain
|
|
# 宽高
|
|
if width and height:
|
|
options['desktopwidth:i'] = width
|
|
options['desktopheight:i'] = height
|
|
else:
|
|
options['smart sizing:i'] = '1'
|
|
|
|
options['session bpp:i'] = os.getenv('JUMPSERVER_COLOR_DEPTH', '32')
|
|
options['audiomode:i'] = self.parse_env_bool('JUMPSERVER_DISABLE_AUDIO', 'false', '2', '0')
|
|
|
|
if asset:
|
|
name = asset.hostname
|
|
elif application:
|
|
name = application.name
|
|
application.get_rdp_remote_app_setting()
|
|
|
|
app = f'||jmservisor'
|
|
options['remoteapplicationmode:i'] = '1'
|
|
options['alternate shell:s'] = app
|
|
options['remoteapplicationprogram:s'] = app
|
|
options['remoteapplicationname:s'] = name
|
|
options['remoteapplicationcmdline:s'] = '- ' + self.get_encrypt_cmdline(application)
|
|
else:
|
|
name = '*'
|
|
|
|
content = ''
|
|
for k, v in options.items():
|
|
content += f'{k}:{v}\n'
|
|
return name, content
|
|
|
|
def get_encrypt_cmdline(self, app: Application):
|
|
|
|
parameters = app.get_rdp_remote_app_setting()['parameters']
|
|
parameters = parameters.encode('ascii')
|
|
|
|
lib_path = get_file_by_arch('xpack/libs', 'librailencrypt.so')
|
|
lib = ctypes.CDLL(lib_path)
|
|
lib.encrypt.argtypes = [ctypes.c_char_p, ctypes.c_int]
|
|
lib.encrypt.restype = ctypes.c_char_p
|
|
|
|
rst = lib.encrypt(parameters, len(parameters))
|
|
rst = rst.decode('ascii')
|
|
return rst
|
|
|
|
@action(methods=['POST', 'GET'], detail=False, url_path='rdp/file', permission_classes=[IsValidUser])
|
|
def get_rdp_file(self, request, *args, **kwargs):
|
|
if self.request.method == 'GET':
|
|
data = self.request.query_params
|
|
else:
|
|
data = self.request.data
|
|
serializer = self.get_serializer(data=data)
|
|
serializer.is_valid(raise_exception=True)
|
|
name, data = self.get_rdp_file_content(serializer)
|
|
response = HttpResponse(data, content_type='application/octet-stream')
|
|
filename = "{}-{}-jumpserver.rdp".format(self.request.user.username, name)
|
|
filename = urllib.parse.quote(filename)
|
|
response['Content-Disposition'] = 'attachment; filename*=UTF-8\'\'%s' % filename
|
|
return response
|
|
|
|
def get_valid_serializer(self):
|
|
if self.request.method == 'GET':
|
|
data = self.request.query_params
|
|
else:
|
|
data = self.request.data
|
|
serializer = self.get_serializer(data=data)
|
|
serializer.is_valid(raise_exception=True)
|
|
return serializer
|
|
|
|
def get_client_protocol_data(self, serializer):
|
|
asset, application, system_user, user = self.get_request_resource(serializer)
|
|
protocol = system_user.protocol
|
|
username = user.username
|
|
|
|
if protocol == 'rdp':
|
|
name, config = self.get_rdp_file_content(serializer)
|
|
elif protocol == 'ssh':
|
|
# Todo:
|
|
name = ''
|
|
config = 'ssh://system_user@asset@user@jumpserver-ssh'
|
|
else:
|
|
raise ValueError('Protocol not support: {}'.format(protocol))
|
|
|
|
filename = "{}-{}-jumpserver".format(username, name)
|
|
data = {
|
|
"filename": filename,
|
|
"protocol": system_user.protocol,
|
|
"username": username,
|
|
"config": config
|
|
}
|
|
return data
|
|
|
|
@action(methods=['POST', 'GET'], detail=False, url_path='client-url', permission_classes=[IsValidUser])
|
|
def get_client_protocol_url(self, request, *args, **kwargs):
|
|
serializer = self.get_valid_serializer()
|
|
try:
|
|
protocol_data = self.get_client_protocol_data(serializer)
|
|
except ValueError as e:
|
|
return Response({'error': str(e)}, status=401)
|
|
|
|
protocol_data = json.dumps(protocol_data).encode()
|
|
protocol_data = base64.b64encode(protocol_data).decode()
|
|
data = {
|
|
'url': 'jms://{}'.format(protocol_data),
|
|
}
|
|
return Response(data=data)
|
|
|
|
|
|
class SecretDetailMixin:
|
|
valid_token: Callable
|
|
request: Request
|
|
get_serializer: Callable
|
|
|
|
@staticmethod
|
|
def _get_application_secret_detail(application):
|
|
from perms.models.base import Action
|
|
gateway = None
|
|
|
|
if not application.category_remote_app:
|
|
actions = Action.NONE
|
|
remote_app = {}
|
|
asset = None
|
|
domain = application.domain
|
|
else:
|
|
remote_app = application.get_rdp_remote_app_setting()
|
|
actions = Action.CONNECT
|
|
asset = application.get_remote_app_asset()
|
|
domain = asset.domain
|
|
|
|
if domain and domain.has_gateway():
|
|
gateway = domain.random_gateway()
|
|
|
|
return {
|
|
'asset': asset,
|
|
'application': application,
|
|
'gateway': gateway,
|
|
'remote_app': remote_app,
|
|
'actions': actions
|
|
}
|
|
|
|
@staticmethod
|
|
def _get_asset_secret_detail(asset, user, system_user):
|
|
from perms.utils.asset import get_asset_system_user_ids_with_actions_by_user
|
|
systemuserid_actions_mapper = get_asset_system_user_ids_with_actions_by_user(user, asset)
|
|
actions = systemuserid_actions_mapper.get(system_user.id, [])
|
|
|
|
gateway = None
|
|
if asset and asset.domain and asset.domain.has_gateway():
|
|
gateway = asset.domain.random_gateway()
|
|
|
|
return {
|
|
'asset': asset,
|
|
'application': None,
|
|
'gateway': gateway,
|
|
'remote_app': None,
|
|
'actions': actions,
|
|
}
|
|
|
|
@action(methods=['POST'], detail=False, permission_classes=[IsSuperUserOrAppUser], url_path='secret-info/detail')
|
|
def get_secret_detail(self, request, *args, **kwargs):
|
|
token = request.data.get('token', '')
|
|
try:
|
|
value, user, system_user, asset, app, expired_at = self.valid_token(token)
|
|
except serializers.ValidationError as e:
|
|
post_auth_failed.send(
|
|
sender=self.__class__, username='', request=self.request,
|
|
reason=_('Invalid token')
|
|
)
|
|
raise e
|
|
|
|
data = dict(user=user, system_user=system_user, expired_at=expired_at)
|
|
if asset:
|
|
asset_detail = self._get_asset_secret_detail(asset, user=user, system_user=system_user)
|
|
system_user.load_asset_more_auth(asset.id, user.username, user.id)
|
|
data['type'] = 'asset'
|
|
data.update(asset_detail)
|
|
else:
|
|
app_detail = self._get_application_secret_detail(app)
|
|
system_user.load_app_more_auth(app.id, user.username, user.id)
|
|
data['type'] = 'application'
|
|
data.update(app_detail)
|
|
|
|
self.request.session['auth_backend'] = settings.AUTH_BACKEND_AUTH_TOKEN
|
|
post_auth_success.send(sender=self.__class__, user=user, request=self.request, login_type='T')
|
|
|
|
serializer = self.get_serializer(data)
|
|
return Response(data=serializer.data, status=200)
|
|
|
|
|
|
class UserConnectionTokenViewSet(
|
|
RootOrgViewMixin, SerializerMixin, ClientProtocolMixin,
|
|
SecretDetailMixin, GenericViewSet
|
|
):
|
|
permission_classes = (IsSuperUserOrAppUser,)
|
|
serializer_classes = {
|
|
'default': ConnectionTokenSerializer,
|
|
'get_secret_detail': ConnectionTokenSecretSerializer,
|
|
}
|
|
CACHE_KEY_PREFIX = 'CONNECTION_TOKEN_{}'
|
|
|
|
@staticmethod
|
|
def check_resource_permission(user, asset, application, system_user):
|
|
from perms.utils.asset import has_asset_system_permission
|
|
from perms.utils.application import has_application_system_permission
|
|
|
|
if asset and not has_asset_system_permission(user, asset, system_user):
|
|
error = f'User not has this asset and system user permission: ' \
|
|
f'user={user.id} system_user={system_user.id} asset={asset.id}'
|
|
raise PermissionDenied(error)
|
|
if application and not has_application_system_permission(user, application, system_user):
|
|
error = f'User not has this application and system user permission: ' \
|
|
f'user={user.id} system_user={system_user.id} application={application.id}'
|
|
raise PermissionDenied(error)
|
|
return True
|
|
|
|
def create_token(self, user, asset, application, system_user, ttl=5 * 60):
|
|
if not self.request.user.is_superuser and user != self.request.user:
|
|
raise PermissionDenied('Only super user can create user token')
|
|
self.check_resource_permission(user, asset, application, system_user)
|
|
token = random_string(36)
|
|
value = {
|
|
'user': str(user.id),
|
|
'username': user.username,
|
|
'system_user': str(system_user.id),
|
|
'system_user_name': system_user.name
|
|
}
|
|
|
|
if asset:
|
|
value.update({
|
|
'type': 'asset',
|
|
'asset': str(asset.id),
|
|
'hostname': asset.hostname,
|
|
})
|
|
elif application:
|
|
value.update({
|
|
'type': 'application',
|
|
'application': application.id,
|
|
'application_name': str(application)
|
|
})
|
|
|
|
key = self.CACHE_KEY_PREFIX.format(token)
|
|
cache.set(key, value, timeout=ttl)
|
|
return token
|
|
|
|
def create(self, request, *args, **kwargs):
|
|
serializer = self.get_serializer(data=request.data)
|
|
serializer.is_valid(raise_exception=True)
|
|
|
|
asset, application, system_user, user = self.get_request_resource(serializer)
|
|
token = self.create_token(user, asset, application, system_user)
|
|
return Response({"token": token}, status=201)
|
|
|
|
def valid_token(self, token):
|
|
from users.models import User
|
|
from assets.models import SystemUser, Asset
|
|
from applications.models import Application
|
|
from perms.utils.asset.permission import validate_permission as asset_validate_permission
|
|
from perms.utils.application.permission import validate_permission as app_validate_permission
|
|
|
|
key = self.CACHE_KEY_PREFIX.format(token)
|
|
value = cache.get(key, None)
|
|
if not value:
|
|
raise serializers.ValidationError('Token not found')
|
|
|
|
user = get_object_or_404(User, id=value.get('user'))
|
|
if not user.is_valid:
|
|
raise serializers.ValidationError("User not valid, disabled or expired")
|
|
|
|
system_user = get_object_or_404(SystemUser, id=value.get('system_user'))
|
|
asset = None
|
|
app = None
|
|
if value.get('type') == 'asset':
|
|
asset = get_object_or_404(Asset, id=value.get('asset'))
|
|
if not asset.is_active:
|
|
raise serializers.ValidationError("Asset disabled")
|
|
has_perm, actions, expired_at = asset_validate_permission(user, asset, system_user)
|
|
else:
|
|
app = get_object_or_404(Application, id=value.get('application'))
|
|
has_perm, actions, expired_at = app_validate_permission(user, app, system_user)
|
|
|
|
if not has_perm:
|
|
raise serializers.ValidationError('Permission expired or invalid')
|
|
return value, user, system_user, asset, app, expired_at
|
|
|
|
def get_permissions(self):
|
|
if self.action in ["create", "get_rdp_file"]:
|
|
if self.request.data.get('user', None):
|
|
self.permission_classes = (IsSuperUser,)
|
|
else:
|
|
self.permission_classes = (IsValidUser,)
|
|
return super().get_permissions()
|
|
|
|
def get(self, request):
|
|
token = request.query_params.get('token')
|
|
key = self.CACHE_KEY_PREFIX.format(token)
|
|
value = cache.get(key, None)
|
|
|
|
if not value:
|
|
return Response('', status=404)
|
|
return Response(value)
|