"""New interface style Certbot enhancements"""
import abc
from typing import Any
from typing import Callable
from typing import Dict
from typing import Generator
from typing import Iterable
from typing import List
from typing import Optional
from certbot import configuration
from certbot import interfaces
from certbot._internal import constants
ENHANCEMENTS = ["redirect", "ensure-http-header", "ocsp-stapling"]
"""List of possible :class:`certbot.interfaces.Installer`
enhancements.
List of expected options parameters:
- redirect: None
- ensure-http-header: name of header (i.e. Strict-Transport-Security)
- ocsp-stapling: certificate chain file path
"""
[docs]def enabled_enhancements(
config: configuration.NamespaceConfig) -> Generator[Dict[str, Any], None, None]:
"""
Generator to yield the enabled new style enhancements.
:param config: Configuration.
:type config: certbot.configuration.NamespaceConfig
"""
for enh in _INDEX:
if getattr(config, enh["cli_dest"]):
yield enh
[docs]def are_requested(config: configuration.NamespaceConfig) -> bool:
"""
Checks if one or more of the requested enhancements are those of the new
enhancement interfaces.
:param config: Configuration.
:type config: certbot.configuration.NamespaceConfig
"""
return any(enabled_enhancements(config))
[docs]def are_supported(config: configuration.NamespaceConfig,
installer: Optional[interfaces.Installer]) -> bool:
"""
Checks that all of the requested enhancements are supported by the
installer.
:param config: Configuration.
:type config: certbot.configuration.NamespaceConfig
:param installer: Installer object
:type installer: interfaces.Installer
:returns: If all the requested enhancements are supported by the installer
:rtype: bool
"""
for enh in enabled_enhancements(config):
if not isinstance(installer, enh["class"]):
return False
return True
[docs]def enable(lineage: Optional[interfaces.RenewableCert], domains: Iterable[str],
installer: Optional[interfaces.Installer],
config: configuration.NamespaceConfig) -> None:
"""
Run enable method for each requested enhancement that is supported.
:param lineage: Certificate lineage object
:type lineage: certbot.interfaces.RenewableCert
:param domains: List of domains in certificate to enhance
:type domains: str
:param installer: Installer object
:type installer: interfaces.Installer
:param config: Configuration.
:type config: certbot.configuration.NamespaceConfig
"""
if installer:
for enh in enabled_enhancements(config):
getattr(installer, enh["enable_function"])(lineage, domains)
[docs]def populate_cli(add: Callable[..., None]) -> None:
"""
Populates the command line flags for certbot._internal.cli.HelpfulParser
:param add: Add function of certbot._internal.cli.HelpfulParser
:type add: func
"""
for enh in _INDEX:
add(enh["cli_groups"], enh["cli_flag"], action=enh["cli_action"],
dest=enh["cli_dest"], default=enh["cli_flag_default"],
help=enh["cli_help"])
[docs]class AutoHSTSEnhancement(object, metaclass=abc.ABCMeta):
"""
Enhancement interface that installer plugins can implement in order to
provide functionality that configures the software to have a
'Strict-Transport-Security' with initially low max-age value that will
increase over time.
The plugins implementing new style enhancements are responsible of handling
the saving of configuration checkpoints as well as calling possible restarts
of managed software themselves. For update_autohsts method, the installer may
have to call prepare() to finalize the plugin initialization.
Methods:
enable_autohsts is called when the header is initially installed using a
low max-age value.
update_autohsts is called every time when Certbot is run using 'renew'
verb. The max-age value should be increased over time using this method.
deploy_autohsts is called for every lineage that has had its certificate
renewed. A long HSTS max-age value should be set here, as we should be
confident that the user is able to automatically renew their certificates.
"""
[docs] @abc.abstractmethod
def update_autohsts(self, lineage: interfaces.RenewableCert, *args: Any, **kwargs: Any) -> None:
"""
Gets called for each lineage every time Certbot is run with 'renew' verb.
Implementation of this method should increase the max-age value.
:param lineage: Certificate lineage object
:type lineage: certbot.interfaces.RenewableCert
.. note:: prepare() method inherited from `interfaces.Plugin` might need
to be called manually within implementation of this interface method
to finalize the plugin initialization.
"""
[docs] @abc.abstractmethod
def deploy_autohsts(self, lineage: interfaces.RenewableCert, *args: Any, **kwargs: Any) -> None:
"""
Gets called for a lineage when its certificate is successfully renewed.
Long max-age value should be set in implementation of this method.
:param lineage: Certificate lineage object
:type lineage: certbot.interfaces.RenewableCert
"""
[docs] @abc.abstractmethod
def enable_autohsts(self, lineage: Optional[interfaces.RenewableCert], domains: Iterable[str],
*args: Any, **kwargs: Any) -> None:
"""
Enables the AutoHSTS enhancement, installing
Strict-Transport-Security header with a low initial value to be increased
over the subsequent runs of Certbot renew.
:param lineage: Certificate lineage object
:type lineage: certbot.interfaces.RenewableCert
:param domains: List of domains in certificate to enhance
:type domains: `list` of `str`
"""
# This is used to configure internal new style enhancements in Certbot. These
# enhancement interfaces need to be defined in this file. Please do not modify
# this list from plugin code.
_INDEX: List[Dict[str, Any]] = [
{
"name": "AutoHSTS",
"cli_help": "Gradually increasing max-age value for HTTP Strict Transport "+
"Security security header",
"cli_flag": "--auto-hsts",
"cli_flag_default": constants.CLI_DEFAULTS["auto_hsts"],
"cli_groups": ["security", "enhance"],
"cli_dest": "auto_hsts",
"cli_action": "store_true",
"class": AutoHSTSEnhancement,
"updater_function": "update_autohsts",
"deployer_function": "deploy_autohsts",
"enable_function": "enable_autohsts"
}
]