2020-09-02 22:04:12 +00:00
|
|
|
"""Outpost models"""
|
2020-10-14 08:44:17 +00:00
|
|
|
from dataclasses import asdict, dataclass, field
|
2020-09-02 22:04:12 +00:00
|
|
|
from datetime import datetime
|
2020-11-04 12:01:38 +00:00
|
|
|
from typing import Dict, Iterable, List, Optional, Type, Union
|
2020-09-02 22:04:12 +00:00
|
|
|
from uuid import uuid4
|
|
|
|
|
|
|
|
from dacite import from_dict
|
|
|
|
from django.core.cache import cache
|
2020-09-14 15:34:07 +00:00
|
|
|
from django.db import models, transaction
|
2020-09-13 12:29:40 +00:00
|
|
|
from django.db.models.base import Model
|
2020-11-04 12:01:38 +00:00
|
|
|
from django.forms.models import ModelForm
|
2020-09-18 22:25:28 +00:00
|
|
|
from django.http import HttpRequest
|
2020-09-02 22:04:12 +00:00
|
|
|
from django.utils.translation import gettext_lazy as _
|
2020-11-08 20:02:52 +00:00
|
|
|
from docker.client import DockerClient
|
|
|
|
from docker.errors import DockerException
|
2020-09-14 15:34:07 +00:00
|
|
|
from guardian.models import UserObjectPermission
|
2020-09-02 22:04:12 +00:00
|
|
|
from guardian.shortcuts import assign_perm
|
2020-11-08 20:02:52 +00:00
|
|
|
from kubernetes.client import VersionApi, VersionInfo
|
|
|
|
from kubernetes.client.api_client import ApiClient
|
|
|
|
from kubernetes.client.configuration import Configuration
|
|
|
|
from kubernetes.client.exceptions import OpenApiException
|
|
|
|
from kubernetes.config.config_exception import ConfigException
|
|
|
|
from kubernetes.config.incluster_config import load_incluster_config
|
2020-11-09 09:39:00 +00:00
|
|
|
from kubernetes.config.kube_config import load_kube_config_from_dict
|
2020-11-04 09:41:18 +00:00
|
|
|
from model_utils.managers import InheritanceManager
|
2020-10-14 08:44:17 +00:00
|
|
|
from packaging.version import LegacyVersion, Version, parse
|
2020-11-18 23:53:33 +00:00
|
|
|
from structlog import get_logger
|
2020-11-08 20:31:27 +00:00
|
|
|
from urllib3.exceptions import HTTPError
|
2020-09-02 22:04:12 +00:00
|
|
|
|
2020-09-18 22:54:48 +00:00
|
|
|
from passbook import __version__
|
2020-09-02 22:04:12 +00:00
|
|
|
from passbook.core.models import Provider, Token, TokenIntents, User
|
2020-11-18 23:53:33 +00:00
|
|
|
from passbook.crypto.models import CertificateKeyPair
|
2020-09-02 22:04:12 +00:00
|
|
|
from passbook.lib.config import CONFIG
|
2020-11-04 09:54:44 +00:00
|
|
|
from passbook.lib.models import InheritanceForeignKey
|
2020-11-08 20:02:52 +00:00
|
|
|
from passbook.lib.sentry import SentryIgnoredException
|
2020-09-18 22:25:28 +00:00
|
|
|
from passbook.lib.utils.template import render_to_string
|
2020-11-18 23:53:33 +00:00
|
|
|
from passbook.outposts.docker_tls import DockerInlineTLS
|
2020-09-02 22:04:12 +00:00
|
|
|
|
2020-09-18 22:54:48 +00:00
|
|
|
OUR_VERSION = parse(__version__)
|
2020-10-14 08:44:17 +00:00
|
|
|
OUTPOST_HELLO_INTERVAL = 10
|
2020-11-18 23:53:33 +00:00
|
|
|
LOGGER = get_logger()
|
2020-09-18 22:54:48 +00:00
|
|
|
|
2020-09-02 22:04:12 +00:00
|
|
|
|
2020-11-08 20:02:52 +00:00
|
|
|
class ServiceConnectionInvalid(SentryIgnoredException):
|
|
|
|
""""Exception raised when a Service Connection has invalid parameters"""
|
|
|
|
|
|
|
|
|
2020-09-02 22:04:12 +00:00
|
|
|
@dataclass
|
|
|
|
class OutpostConfig:
|
|
|
|
"""Configuration an outpost uses to configure it self"""
|
|
|
|
|
|
|
|
passbook_host: str
|
|
|
|
passbook_host_insecure: bool = False
|
|
|
|
|
|
|
|
log_level: str = CONFIG.y("log_level")
|
|
|
|
error_reporting_enabled: bool = CONFIG.y_bool("error_reporting.enabled")
|
|
|
|
error_reporting_environment: str = CONFIG.y(
|
|
|
|
"error_reporting.environment", "customer"
|
|
|
|
)
|
|
|
|
|
2020-10-14 15:49:09 +00:00
|
|
|
kubernetes_replicas: int = field(default=1)
|
|
|
|
kubernetes_namespace: str = field(default="default")
|
2020-10-18 15:07:11 +00:00
|
|
|
kubernetes_ingress_annotations: Dict[str, str] = field(default_factory=dict)
|
|
|
|
kubernetes_ingress_secret_name: str = field(default="passbook-outpost")
|
2020-10-14 15:49:09 +00:00
|
|
|
|
2020-09-02 22:04:12 +00:00
|
|
|
|
2020-09-13 12:29:40 +00:00
|
|
|
class OutpostModel(Model):
|
2020-09-02 22:04:12 +00:00
|
|
|
"""Base model for providers that need more objects than just themselves"""
|
|
|
|
|
|
|
|
def get_required_objects(self) -> Iterable[models.Model]:
|
|
|
|
"""Return a list of all required objects"""
|
|
|
|
return [self]
|
|
|
|
|
2020-09-13 12:29:40 +00:00
|
|
|
class Meta:
|
|
|
|
|
|
|
|
abstract = True
|
|
|
|
|
2020-09-02 22:04:12 +00:00
|
|
|
|
|
|
|
class OutpostType(models.TextChoices):
|
|
|
|
"""Outpost types, currently only the reverse proxy is available"""
|
|
|
|
|
|
|
|
PROXY = "proxy"
|
|
|
|
|
|
|
|
|
|
|
|
def default_outpost_config():
|
|
|
|
"""Get default outpost config"""
|
|
|
|
return asdict(OutpostConfig(passbook_host=""))
|
|
|
|
|
|
|
|
|
2020-11-08 20:02:52 +00:00
|
|
|
@dataclass
|
|
|
|
class OutpostServiceConnectionState:
|
|
|
|
"""State of an Outpost Service Connection"""
|
|
|
|
|
|
|
|
version: str
|
|
|
|
healthy: bool
|
|
|
|
|
|
|
|
|
2020-11-04 09:41:18 +00:00
|
|
|
class OutpostServiceConnection(models.Model):
|
|
|
|
"""Connection details for an Outpost Controller, like Docker or Kubernetes"""
|
|
|
|
|
|
|
|
uuid = models.UUIDField(default=uuid4, editable=False, primary_key=True)
|
|
|
|
name = models.TextField()
|
|
|
|
|
|
|
|
local = models.BooleanField(
|
|
|
|
default=False,
|
|
|
|
help_text=_(
|
|
|
|
(
|
|
|
|
"If enabled, use the local connection. Required Docker "
|
|
|
|
"socket/Kubernetes Integration"
|
|
|
|
)
|
|
|
|
),
|
|
|
|
)
|
|
|
|
|
|
|
|
objects = InheritanceManager()
|
|
|
|
|
2020-11-08 20:02:52 +00:00
|
|
|
@property
|
|
|
|
def state(self) -> OutpostServiceConnectionState:
|
|
|
|
"""Get state of service connection"""
|
|
|
|
state_key = f"outpost_service_connection_{self.pk.hex}"
|
|
|
|
state = cache.get(state_key, None)
|
2020-11-08 20:31:27 +00:00
|
|
|
if not state:
|
2020-11-08 20:02:52 +00:00
|
|
|
state = self._get_state()
|
2020-11-08 20:31:27 +00:00
|
|
|
cache.set(state_key, state, timeout=0)
|
2020-11-08 20:02:52 +00:00
|
|
|
return state
|
|
|
|
|
|
|
|
def _get_state(self) -> OutpostServiceConnectionState:
|
|
|
|
raise NotImplementedError
|
|
|
|
|
2020-11-04 12:01:38 +00:00
|
|
|
@property
|
|
|
|
def form(self) -> Type[ModelForm]:
|
|
|
|
"""Return Form class used to edit this object"""
|
|
|
|
raise NotImplementedError
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
|
|
|
|
verbose_name = _("Outpost Service-Connection")
|
|
|
|
verbose_name_plural = _("Outpost Service-Connections")
|
|
|
|
|
2020-11-04 09:41:18 +00:00
|
|
|
|
|
|
|
class DockerServiceConnection(OutpostServiceConnection):
|
2020-11-04 12:01:38 +00:00
|
|
|
"""Service Connection to a Docker endpoint"""
|
2020-11-04 09:41:18 +00:00
|
|
|
|
|
|
|
url = models.TextField()
|
2020-11-18 23:53:33 +00:00
|
|
|
tls_verification = models.ForeignKey(
|
|
|
|
CertificateKeyPair,
|
|
|
|
null=True,
|
|
|
|
blank=True,
|
|
|
|
default=None,
|
|
|
|
related_name="+",
|
|
|
|
on_delete=models.SET_DEFAULT,
|
|
|
|
help_text=_(
|
|
|
|
(
|
|
|
|
"CA which the endpoint's Certificate is verified against. "
|
|
|
|
"Can be left empty for no validation."
|
|
|
|
)
|
|
|
|
),
|
|
|
|
)
|
|
|
|
tls_authentication = models.ForeignKey(
|
|
|
|
CertificateKeyPair,
|
|
|
|
null=True,
|
|
|
|
blank=True,
|
|
|
|
default=None,
|
|
|
|
related_name="+",
|
|
|
|
on_delete=models.SET_DEFAULT,
|
|
|
|
help_text=_(
|
|
|
|
"Certificate/Key used for authentication. Can be left empty for no authentication."
|
|
|
|
),
|
|
|
|
)
|
2020-11-04 09:41:18 +00:00
|
|
|
|
2020-11-04 12:01:38 +00:00
|
|
|
@property
|
|
|
|
def form(self) -> Type[ModelForm]:
|
|
|
|
from passbook.outposts.forms import DockerServiceConnectionForm
|
|
|
|
|
|
|
|
return DockerServiceConnectionForm
|
|
|
|
|
|
|
|
def __str__(self) -> str:
|
|
|
|
return f"Docker Service-Connection {self.name}"
|
|
|
|
|
2020-11-08 20:02:52 +00:00
|
|
|
def client(self) -> DockerClient:
|
|
|
|
"""Get DockerClient"""
|
|
|
|
try:
|
|
|
|
client = None
|
|
|
|
if self.local:
|
|
|
|
client = DockerClient.from_env()
|
|
|
|
else:
|
|
|
|
client = DockerClient(
|
|
|
|
base_url=self.url,
|
2020-11-18 23:53:33 +00:00
|
|
|
tls=DockerInlineTLS(
|
|
|
|
verification_kp=self.tls_verification,
|
|
|
|
authentication_kp=self.tls_authentication,
|
|
|
|
).write(),
|
2020-11-08 20:02:52 +00:00
|
|
|
)
|
|
|
|
client.containers.list()
|
|
|
|
except DockerException as exc:
|
2020-11-18 23:53:33 +00:00
|
|
|
LOGGER.error(exc)
|
2020-11-08 20:02:52 +00:00
|
|
|
raise ServiceConnectionInvalid from exc
|
|
|
|
return client
|
|
|
|
|
|
|
|
def _get_state(self) -> OutpostServiceConnectionState:
|
|
|
|
try:
|
|
|
|
client = self.client()
|
|
|
|
return OutpostServiceConnectionState(
|
|
|
|
version=client.info()["ServerVersion"], healthy=True
|
|
|
|
)
|
|
|
|
except ServiceConnectionInvalid:
|
|
|
|
return OutpostServiceConnectionState(version="", healthy=False)
|
|
|
|
|
2020-11-04 12:01:38 +00:00
|
|
|
class Meta:
|
|
|
|
|
|
|
|
verbose_name = _("Docker Service-Connection")
|
|
|
|
verbose_name_plural = _("Docker Service-Connections")
|
|
|
|
|
2020-11-04 09:41:18 +00:00
|
|
|
|
|
|
|
class KubernetesServiceConnection(OutpostServiceConnection):
|
2020-11-04 12:01:38 +00:00
|
|
|
"""Service Connection to a Kubernetes cluster"""
|
|
|
|
|
|
|
|
kubeconfig = models.JSONField(
|
|
|
|
help_text=_(
|
|
|
|
(
|
|
|
|
"Paste your kubeconfig here. passbook will automatically use "
|
|
|
|
"the currently selected context."
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
@property
|
|
|
|
def form(self) -> Type[ModelForm]:
|
|
|
|
from passbook.outposts.forms import KubernetesServiceConnectionForm
|
|
|
|
|
|
|
|
return KubernetesServiceConnectionForm
|
|
|
|
|
|
|
|
def __str__(self) -> str:
|
|
|
|
return f"Kubernetes Service-Connection {self.name}"
|
|
|
|
|
2020-11-08 20:02:52 +00:00
|
|
|
def _get_state(self) -> OutpostServiceConnectionState:
|
|
|
|
try:
|
|
|
|
client = self.client()
|
|
|
|
api_instance = VersionApi(client)
|
|
|
|
version: VersionInfo = api_instance.get_code()
|
|
|
|
return OutpostServiceConnectionState(
|
|
|
|
version=version.git_version, healthy=True
|
|
|
|
)
|
2020-11-08 20:31:27 +00:00
|
|
|
except (OpenApiException, HTTPError):
|
2020-11-08 20:02:52 +00:00
|
|
|
return OutpostServiceConnectionState(version="", healthy=False)
|
|
|
|
|
|
|
|
def client(self) -> ApiClient:
|
|
|
|
"""Get Kubernetes client configured from kubeconfig"""
|
|
|
|
config = Configuration()
|
|
|
|
try:
|
|
|
|
if self.local:
|
|
|
|
load_incluster_config(client_configuration=config)
|
|
|
|
else:
|
|
|
|
load_kube_config_from_dict(self.kubeconfig, client_configuration=config)
|
|
|
|
return ApiClient(config)
|
|
|
|
except ConfigException as exc:
|
2020-11-09 09:39:00 +00:00
|
|
|
raise ServiceConnectionInvalid from exc
|
2020-11-08 20:02:52 +00:00
|
|
|
|
2020-11-04 12:01:38 +00:00
|
|
|
class Meta:
|
2020-11-04 09:41:18 +00:00
|
|
|
|
2020-11-04 12:01:38 +00:00
|
|
|
verbose_name = _("Kubernetes Service-Connection")
|
|
|
|
verbose_name_plural = _("Kubernetes Service-Connections")
|
2020-11-04 09:41:18 +00:00
|
|
|
|
|
|
|
|
2020-09-02 22:04:12 +00:00
|
|
|
class Outpost(models.Model):
|
|
|
|
"""Outpost instance which manages a service user and token"""
|
|
|
|
|
|
|
|
uuid = models.UUIDField(default=uuid4, editable=False, primary_key=True)
|
|
|
|
name = models.TextField()
|
|
|
|
|
|
|
|
type = models.TextField(choices=OutpostType.choices, default=OutpostType.PROXY)
|
2020-11-04 09:54:44 +00:00
|
|
|
service_connection = InheritanceForeignKey(
|
2020-11-04 09:41:18 +00:00
|
|
|
OutpostServiceConnection,
|
|
|
|
default=None,
|
|
|
|
null=True,
|
|
|
|
blank=True,
|
2020-09-02 22:04:12 +00:00
|
|
|
help_text=_(
|
2020-11-04 09:41:18 +00:00
|
|
|
(
|
|
|
|
"Select Service-Connection passbook should use to manage this outpost. "
|
|
|
|
"Leave empty if passbook should not handle the deployment."
|
|
|
|
)
|
2020-09-02 22:04:12 +00:00
|
|
|
),
|
2020-11-04 09:41:18 +00:00
|
|
|
on_delete=models.SET_DEFAULT,
|
2020-09-02 22:04:12 +00:00
|
|
|
)
|
2020-11-04 09:41:18 +00:00
|
|
|
|
2020-09-02 22:04:12 +00:00
|
|
|
_config = models.JSONField(default=default_outpost_config)
|
|
|
|
|
|
|
|
providers = models.ManyToManyField(Provider)
|
|
|
|
|
|
|
|
@property
|
|
|
|
def config(self) -> OutpostConfig:
|
|
|
|
"""Load config as OutpostConfig object"""
|
2020-09-13 20:19:26 +00:00
|
|
|
return from_dict(OutpostConfig, self._config)
|
2020-09-02 22:04:12 +00:00
|
|
|
|
|
|
|
@config.setter
|
|
|
|
def config(self, value):
|
|
|
|
"""Dump config into json"""
|
2020-09-13 20:19:26 +00:00
|
|
|
self._config = asdict(value)
|
2020-09-02 22:04:12 +00:00
|
|
|
|
2020-10-14 08:44:17 +00:00
|
|
|
@property
|
|
|
|
def state_cache_prefix(self) -> str:
|
2020-09-18 22:54:48 +00:00
|
|
|
"""Key by which the outposts status is saved"""
|
2020-10-14 08:44:17 +00:00
|
|
|
return f"outpost_{self.uuid.hex}_state"
|
2020-09-02 22:04:12 +00:00
|
|
|
|
|
|
|
@property
|
2020-10-14 08:44:17 +00:00
|
|
|
def state(self) -> List["OutpostState"]:
|
2020-09-02 22:04:12 +00:00
|
|
|
"""Get outpost's health status"""
|
2020-10-14 08:44:17 +00:00
|
|
|
return OutpostState.for_outpost(self)
|
2020-09-18 22:54:48 +00:00
|
|
|
|
2020-11-04 09:41:18 +00:00
|
|
|
@property
|
|
|
|
def user_identifier(self):
|
|
|
|
"""Username for service user"""
|
|
|
|
return f"pb-outpost-{self.uuid.hex}"
|
|
|
|
|
2020-09-14 13:41:02 +00:00
|
|
|
@property
|
|
|
|
def user(self) -> User:
|
|
|
|
"""Get/create user with access to all required objects"""
|
2020-11-04 09:41:18 +00:00
|
|
|
users = User.objects.filter(username=self.user_identifier)
|
2020-09-14 13:41:02 +00:00
|
|
|
if not users.exists():
|
2020-11-04 09:41:18 +00:00
|
|
|
user: User = User.objects.create(username=self.user_identifier)
|
2020-09-14 13:41:02 +00:00
|
|
|
user.set_unusable_password()
|
|
|
|
user.save()
|
|
|
|
else:
|
|
|
|
user = users.first()
|
2020-09-14 15:34:07 +00:00
|
|
|
# To ensure the user only has the correct permissions, we delete all of them and re-add
|
|
|
|
# the ones the user needs
|
|
|
|
with transaction.atomic():
|
|
|
|
UserObjectPermission.objects.filter(user=user).delete()
|
|
|
|
for model in self.get_required_objects():
|
|
|
|
code_name = f"{model._meta.app_label}.view_{model._meta.model_name}"
|
|
|
|
assign_perm(code_name, user, model)
|
2020-09-02 22:04:12 +00:00
|
|
|
return user
|
|
|
|
|
2020-10-03 21:37:58 +00:00
|
|
|
@property
|
|
|
|
def token_identifier(self) -> str:
|
|
|
|
"""Get Token identifier"""
|
|
|
|
return f"pb-outpost-{self.pk}-api"
|
|
|
|
|
2020-09-02 22:04:12 +00:00
|
|
|
@property
|
|
|
|
def token(self) -> Token:
|
|
|
|
"""Get/create token for auto-generated user"""
|
|
|
|
token = Token.filter_not_expired(user=self.user, intent=TokenIntents.INTENT_API)
|
|
|
|
if token.exists():
|
|
|
|
return token.first()
|
|
|
|
return Token.objects.create(
|
|
|
|
user=self.user,
|
2020-10-03 21:37:58 +00:00
|
|
|
identifier=self.token_identifier,
|
2020-09-02 22:04:12 +00:00
|
|
|
intent=TokenIntents.INTENT_API,
|
|
|
|
description=f"Autogenerated by passbook for Outpost {self.name}",
|
|
|
|
expiring=False,
|
|
|
|
)
|
|
|
|
|
|
|
|
def get_required_objects(self) -> Iterable[models.Model]:
|
|
|
|
"""Get an iterator of all objects the user needs read access to"""
|
|
|
|
objects = [self]
|
|
|
|
for provider in (
|
|
|
|
Provider.objects.filter(outpost=self).select_related().select_subclasses()
|
|
|
|
):
|
|
|
|
if isinstance(provider, OutpostModel):
|
|
|
|
objects.extend(provider.get_required_objects())
|
|
|
|
else:
|
|
|
|
objects.append(provider)
|
|
|
|
return objects
|
|
|
|
|
2020-09-18 22:25:28 +00:00
|
|
|
def html_deployment_view(self, request: HttpRequest) -> Optional[str]:
|
|
|
|
"""return template and context modal to view token and other config info"""
|
|
|
|
return render_to_string(
|
|
|
|
"outposts/deployment_modal.html",
|
|
|
|
{"outpost": self, "full_url": request.build_absolute_uri("/")},
|
|
|
|
)
|
|
|
|
|
2020-09-02 22:04:12 +00:00
|
|
|
def __str__(self) -> str:
|
|
|
|
return f"Outpost {self.name}"
|
2020-10-14 08:44:17 +00:00
|
|
|
|
|
|
|
|
|
|
|
@dataclass
|
|
|
|
class OutpostState:
|
|
|
|
"""Outpost instance state, last_seen and version"""
|
|
|
|
|
|
|
|
uid: str
|
|
|
|
last_seen: Optional[datetime] = field(default=None)
|
|
|
|
version: Optional[str] = field(default=None)
|
|
|
|
version_should: Union[Version, LegacyVersion] = field(default=OUR_VERSION)
|
|
|
|
|
|
|
|
_outpost: Optional[Outpost] = field(default=None)
|
|
|
|
|
|
|
|
@property
|
|
|
|
def version_outdated(self) -> bool:
|
|
|
|
"""Check if outpost version matches our version"""
|
|
|
|
if not self.version:
|
|
|
|
return False
|
|
|
|
return parse(self.version) < OUR_VERSION
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def for_outpost(outpost: Outpost) -> List["OutpostState"]:
|
|
|
|
"""Get all states for an outpost"""
|
|
|
|
keys = cache.keys(f"{outpost.state_cache_prefix}_*")
|
|
|
|
states = []
|
|
|
|
for key in keys:
|
|
|
|
channel = key.replace(f"{outpost.state_cache_prefix}_", "")
|
|
|
|
states.append(OutpostState.for_channel(outpost, channel))
|
|
|
|
return states
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def for_channel(outpost: Outpost, channel: str) -> "OutpostState":
|
|
|
|
"""Get state for a single channel"""
|
|
|
|
key = f"{outpost.state_cache_prefix}_{channel}"
|
2020-10-19 14:04:38 +00:00
|
|
|
default_data = {"uid": channel}
|
|
|
|
data = cache.get(key, default_data)
|
|
|
|
if isinstance(data, str):
|
|
|
|
cache.delete(key)
|
|
|
|
data = default_data
|
2020-10-14 08:44:17 +00:00
|
|
|
state = from_dict(OutpostState, data)
|
|
|
|
state.uid = channel
|
|
|
|
# pylint: disable=protected-access
|
|
|
|
state._outpost = outpost
|
|
|
|
return state
|
|
|
|
|
|
|
|
def save(self, timeout=OUTPOST_HELLO_INTERVAL):
|
|
|
|
"""Save current state to cache"""
|
|
|
|
full_key = f"{self._outpost.state_cache_prefix}_{self.uid}"
|
|
|
|
return cache.set(full_key, asdict(self), timeout=timeout)
|
|
|
|
|
|
|
|
def delete(self):
|
|
|
|
"""Manually delete from cache, used on channel disconnect"""
|
|
|
|
full_key = f"{self._outpost.state_cache_prefix}_{self.uid}"
|
|
|
|
cache.delete(full_key)
|