| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290 |
- # This file is part of Radicale - CalDAV and CardDAV server
- # Copyright © 2014 Jean-Marc Martins
- # Copyright © 2012-2017 Guillaume Ayoub
- # Copyright © 2017-2018 Unrud <unrud@outlook.com>
- # Copyright © 2024-2025 Peter Bieringer <pb@bieringer.de>
- #
- # This library is free software: you can redistribute it and/or modify
- # it under the terms of the GNU General Public License as published by
- # the Free Software Foundation, either version 3 of the License, or
- # (at your option) any later version.
- #
- # This library is distributed in the hope that it will be useful,
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- # GNU General Public License for more details.
- #
- # You should have received a copy of the GNU General Public License
- # along with Radicale. If not, see <http://www.gnu.org/licenses/>.
- import datetime
- import os
- import ssl
- import sys
- from importlib import import_module, metadata
- from typing import Callable, Sequence, Tuple, Type, TypeVar, Union
- from radicale import config
- from radicale.log import logger
- if sys.platform != "win32":
- import grp
- import pwd
- _T_co = TypeVar("_T_co", covariant=True)
- RADICALE_MODULES: Sequence[str] = ("radicale", "vobject", "passlib", "defusedxml",
- "bcrypt",
- "argon2-cffi",
- "pika",
- "ldap",
- "ldap3",
- "pam")
- # IPv4 (host, port) and IPv6 (host, port, flowinfo, scopeid)
- ADDRESS_TYPE = Union[Tuple[Union[str, bytes, bytearray], int],
- Tuple[str, int, int, int]]
- # Max YEAR in datetime in unixtime
- DATETIME_MAX_UNIXTIME: int = (datetime.MAXYEAR - 1970) * 365 * 24 * 60 * 60
- def load_plugin(internal_types: Sequence[str], module_name: str,
- class_name: str, base_class: Type[_T_co],
- configuration: "config.Configuration") -> _T_co:
- type_: Union[str, Callable] = configuration.get(module_name, "type")
- if callable(type_):
- logger.info("%s type is %r", module_name, type_)
- return type_(configuration)
- if type_ in internal_types:
- module = "radicale.%s.%s" % (module_name, type_)
- else:
- module = type_
- try:
- class_ = getattr(import_module(module), class_name)
- except Exception as e:
- raise RuntimeError("Failed to load %s module %r: %s" %
- (module_name, module, e)) from e
- logger.info("%s type is %r", module_name, module)
- return class_(configuration)
- def package_version(name):
- return metadata.version(name)
- def packages_version():
- versions = []
- versions.append("python=%s.%s.%s" % (sys.version_info[0], sys.version_info[1], sys.version_info[2]))
- for pkg in RADICALE_MODULES:
- try:
- versions.append("%s=%s" % (pkg, package_version(pkg)))
- except Exception:
- try:
- versions.append("%s=%s" % (pkg, package_version("python-" + pkg)))
- except Exception:
- versions.append("%s=%s" % (pkg, "n/a"))
- return " ".join(versions)
- def format_address(address: ADDRESS_TYPE) -> str:
- host, port, *_ = address
- if not isinstance(host, str):
- raise NotImplementedError("Unsupported address format: %r" %
- (address,))
- if host.find(":") == -1:
- return "%s:%d" % (host, port)
- else:
- return "[%s]:%d" % (host, port)
- def ssl_context_options_by_protocol(protocol: str, ssl_context_options):
- logger.debug("SSL protocol string: '%s' and current SSL context options: '0x%x'", protocol, ssl_context_options)
- # disable any protocol by default
- logger.debug("SSL context options, disable ALL by default")
- ssl_context_options |= ssl.OP_NO_SSLv2
- ssl_context_options |= ssl.OP_NO_SSLv3
- ssl_context_options |= ssl.OP_NO_TLSv1
- ssl_context_options |= ssl.OP_NO_TLSv1_1
- ssl_context_options |= ssl.OP_NO_TLSv1_2
- ssl_context_options |= ssl.OP_NO_TLSv1_3
- logger.debug("SSL cleared SSL context options: '0x%x'", ssl_context_options)
- for entry in protocol.split():
- entry = entry.strip('+') # remove trailing '+'
- if entry == "ALL":
- logger.debug("SSL context options, enable ALL (some maybe not supported by underlying OpenSSL, SSLv2 not enabled at all)")
- ssl_context_options &= ~ssl.OP_NO_SSLv3
- ssl_context_options &= ~ssl.OP_NO_TLSv1
- ssl_context_options &= ~ssl.OP_NO_TLSv1_1
- ssl_context_options &= ~ssl.OP_NO_TLSv1_2
- ssl_context_options &= ~ssl.OP_NO_TLSv1_3
- elif entry == "SSLv2":
- logger.warning("SSL context options, ignore SSLv2 (totally insecure)")
- elif entry == "SSLv3":
- ssl_context_options &= ~ssl.OP_NO_SSLv3
- logger.debug("SSL context options, enable SSLv3 (maybe not supported by underlying OpenSSL)")
- elif entry == "TLSv1":
- ssl_context_options &= ~ssl.OP_NO_TLSv1
- logger.debug("SSL context options, enable TLSv1 (maybe not supported by underlying OpenSSL)")
- elif entry == "TLSv1.1":
- logger.debug("SSL context options, enable TLSv1.1 (maybe not supported by underlying OpenSSL)")
- ssl_context_options &= ~ssl.OP_NO_TLSv1_1
- elif entry == "TLSv1.2":
- logger.debug("SSL context options, enable TLSv1.2")
- ssl_context_options &= ~ssl.OP_NO_TLSv1_2
- elif entry == "TLSv1.3":
- logger.debug("SSL context options, enable TLSv1.3")
- ssl_context_options &= ~ssl.OP_NO_TLSv1_3
- elif entry == "-ALL":
- logger.debug("SSL context options, disable ALL")
- ssl_context_options |= ssl.OP_NO_SSLv2
- ssl_context_options |= ssl.OP_NO_SSLv3
- ssl_context_options |= ssl.OP_NO_TLSv1
- ssl_context_options |= ssl.OP_NO_TLSv1_1
- ssl_context_options |= ssl.OP_NO_TLSv1_2
- ssl_context_options |= ssl.OP_NO_TLSv1_3
- elif entry == "-SSLv2":
- ssl_context_options |= ssl.OP_NO_SSLv2
- logger.debug("SSL context options, disable SSLv2")
- elif entry == "-SSLv3":
- ssl_context_options |= ssl.OP_NO_SSLv3
- logger.debug("SSL context options, disable SSLv3")
- elif entry == "-TLSv1":
- logger.debug("SSL context options, disable TLSv1")
- ssl_context_options |= ssl.OP_NO_TLSv1
- elif entry == "-TLSv1.1":
- logger.debug("SSL context options, disable TLSv1.1")
- ssl_context_options |= ssl.OP_NO_TLSv1_1
- elif entry == "-TLSv1.2":
- logger.debug("SSL context options, disable TLSv1.2")
- ssl_context_options |= ssl.OP_NO_TLSv1_2
- elif entry == "-TLSv1.3":
- logger.debug("SSL context options, disable TLSv1.3")
- ssl_context_options |= ssl.OP_NO_TLSv1_3
- else:
- raise RuntimeError("SSL protocol config contains unsupported entry '%s'" % (entry))
- logger.debug("SSL resulting context options: '0x%x'", ssl_context_options)
- return ssl_context_options
- def ssl_context_minimum_version_by_options(ssl_context_options):
- logger.debug("SSL calculate minimum version by context options: '0x%x'", ssl_context_options)
- ssl_context_minimum_version = ssl.TLSVersion.SSLv3 # default
- if ((ssl_context_options & ssl.OP_NO_SSLv3) and (ssl_context_minimum_version == ssl.TLSVersion.SSLv3)):
- ssl_context_minimum_version = ssl.TLSVersion.TLSv1
- if ((ssl_context_options & ssl.OP_NO_TLSv1) and (ssl_context_minimum_version == ssl.TLSVersion.TLSv1)):
- ssl_context_minimum_version = ssl.TLSVersion.TLSv1_1
- if ((ssl_context_options & ssl.OP_NO_TLSv1_1) and (ssl_context_minimum_version == ssl.TLSVersion.TLSv1_1)):
- ssl_context_minimum_version = ssl.TLSVersion.TLSv1_2
- if ((ssl_context_options & ssl.OP_NO_TLSv1_2) and (ssl_context_minimum_version == ssl.TLSVersion.TLSv1_2)):
- ssl_context_minimum_version = ssl.TLSVersion.TLSv1_3
- if ((ssl_context_options & ssl.OP_NO_TLSv1_3) and (ssl_context_minimum_version == ssl.TLSVersion.TLSv1_3)):
- ssl_context_minimum_version = 0 # all disabled
- logger.debug("SSL context options: '0x%x' results in minimum version: %s", ssl_context_options, ssl_context_minimum_version)
- return ssl_context_minimum_version
- def ssl_context_maximum_version_by_options(ssl_context_options):
- logger.debug("SSL calculate maximum version by context options: '0x%x'", ssl_context_options)
- ssl_context_maximum_version = ssl.TLSVersion.TLSv1_3 # default
- if ((ssl_context_options & ssl.OP_NO_TLSv1_3) and (ssl_context_maximum_version == ssl.TLSVersion.TLSv1_3)):
- ssl_context_maximum_version = ssl.TLSVersion.TLSv1_2
- if ((ssl_context_options & ssl.OP_NO_TLSv1_2) and (ssl_context_maximum_version == ssl.TLSVersion.TLSv1_2)):
- ssl_context_maximum_version = ssl.TLSVersion.TLSv1_1
- if ((ssl_context_options & ssl.OP_NO_TLSv1_1) and (ssl_context_maximum_version == ssl.TLSVersion.TLSv1_1)):
- ssl_context_maximum_version = ssl.TLSVersion.TLSv1
- if ((ssl_context_options & ssl.OP_NO_TLSv1) and (ssl_context_maximum_version == ssl.TLSVersion.TLSv1)):
- ssl_context_maximum_version = ssl.TLSVersion.SSLv3
- if ((ssl_context_options & ssl.OP_NO_SSLv3) and (ssl_context_maximum_version == ssl.TLSVersion.SSLv3)):
- ssl_context_maximum_version = 0
- logger.debug("SSL context options: '0x%x' results in maximum version: %s", ssl_context_options, ssl_context_maximum_version)
- return ssl_context_maximum_version
- def ssl_get_protocols(context):
- protocols = []
- if not (context.options & ssl.OP_NO_SSLv3):
- if (context.minimum_version < ssl.TLSVersion.TLSv1):
- protocols.append("SSLv3")
- if not (context.options & ssl.OP_NO_TLSv1):
- if (context.minimum_version < ssl.TLSVersion.TLSv1_1) and (context.maximum_version >= ssl.TLSVersion.TLSv1):
- protocols.append("TLSv1")
- if not (context.options & ssl.OP_NO_TLSv1_1):
- if (context.minimum_version < ssl.TLSVersion.TLSv1_2) and (context.maximum_version >= ssl.TLSVersion.TLSv1_1):
- protocols.append("TLSv1.1")
- if not (context.options & ssl.OP_NO_TLSv1_2):
- if (context.minimum_version <= ssl.TLSVersion.TLSv1_2) and (context.maximum_version >= ssl.TLSVersion.TLSv1_2):
- protocols.append("TLSv1.2")
- if not (context.options & ssl.OP_NO_TLSv1_3):
- if (context.minimum_version <= ssl.TLSVersion.TLSv1_3) and (context.maximum_version >= ssl.TLSVersion.TLSv1_3):
- protocols.append("TLSv1.3")
- return protocols
- def unknown_if_empty(value):
- if value == "":
- return "UNKNOWN"
- else:
- return value
- def user_groups_as_string():
- if sys.platform != "win32":
- euid = os.geteuid()
- try:
- username = pwd.getpwuid(euid)[0]
- user = "%s(%d)" % (unknown_if_empty(username), euid)
- except Exception:
- # name of user not found
- user = "UNKNOWN(%d)" % euid
- egid = os.getegid()
- groups = []
- try:
- gids = os.getgrouplist(username, egid)
- for gid in gids:
- try:
- gi = grp.getgrgid(gid)
- groups.append("%s(%d)" % (unknown_if_empty(gi.gr_name), gid))
- except Exception:
- groups.append("UNKNOWN(%d)" % gid)
- except Exception:
- try:
- groups.append("%s(%d)" % (grp.getgrnam(egid)[0], egid))
- except Exception:
- # workaround to get groupid by name
- groups_all = grp.getgrall()
- found = False
- for entry in groups_all:
- if entry[2] == egid:
- groups.append("%s(%d)" % (unknown_if_empty(entry[0]), egid))
- found = True
- break
- if not found:
- groups.append("UNKNOWN(%d)" % egid)
- s = "user=%s groups=%s" % (user, ','.join(groups))
- else:
- username = os.getlogin()
- s = "user=%s" % (username)
- return s
- def format_ut(unixtime: int) -> str:
- if sys.platform == "win32":
- # TODO check how to support this better
- return str(unixtime)
- if unixtime < DATETIME_MAX_UNIXTIME:
- if sys.version_info < (3, 11):
- dt = datetime.datetime.utcfromtimestamp(unixtime)
- else:
- dt = datetime.datetime.fromtimestamp(unixtime, datetime.UTC)
- r = str(unixtime) + "(" + dt.strftime('%Y-%m-%dT%H:%M:%SZ') + ")"
- else:
- r = str(unixtime) + "(>MAX:" + str(DATETIME_MAX_UNIXTIME) + ")"
- return r
|