mirror of
https://github.com/certbot/certbot.git
synced 2026-07-27 00:00:44 +02:00
* move install_ssl_options_conf functionality to common * add no cover * compute current hash instead of saving * make current hash be computed; switch to list of all canonical hashes * put message directly into assertion * don't pass logger * add docstring * Add unit tests for certbot.plugins.common.install_ssl_options_conf
348 lines
12 KiB
Python
348 lines
12 KiB
Python
"""Plugin common functions."""
|
|
import logging
|
|
import os
|
|
import re
|
|
import shutil
|
|
import tempfile
|
|
|
|
import OpenSSL
|
|
import pkg_resources
|
|
import zope.interface
|
|
|
|
from acme.jose import util as jose_util
|
|
|
|
from certbot import constants
|
|
from certbot import crypto_util
|
|
from certbot import interfaces
|
|
from certbot import util
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
def option_namespace(name):
|
|
"""ArgumentParser options namespace (prefix of all options)."""
|
|
return name + "-"
|
|
|
|
|
|
def dest_namespace(name):
|
|
"""ArgumentParser dest namespace (prefix of all destinations)."""
|
|
return name.replace("-", "_") + "_"
|
|
|
|
private_ips_regex = re.compile(
|
|
r"(^127\.0\.0\.1)|(^10\.)|(^172\.1[6-9]\.)|"
|
|
r"(^172\.2[0-9]\.)|(^172\.3[0-1]\.)|(^192\.168\.)")
|
|
hostname_regex = re.compile(
|
|
r"^(([a-z0-9]|[a-z0-9][a-z0-9\-]*[a-z0-9])\.)*[a-z]+$", re.IGNORECASE)
|
|
|
|
|
|
@zope.interface.implementer(interfaces.IPlugin)
|
|
class Plugin(object):
|
|
"""Generic plugin."""
|
|
# provider is not inherited, subclasses must define it on their own
|
|
# @zope.interface.provider(interfaces.IPluginFactory)
|
|
|
|
def __init__(self, config, name):
|
|
self.config = config
|
|
self.name = name
|
|
|
|
@jose_util.abstractclassmethod
|
|
def add_parser_arguments(cls, add):
|
|
"""Add plugin arguments to the CLI argument parser.
|
|
|
|
NOTE: If some of your flags interact with others, you can
|
|
use cli.report_config_interaction to register this to ensure
|
|
values are correctly saved/overridable during renewal.
|
|
|
|
:param callable add: Function that proxies calls to
|
|
`argparse.ArgumentParser.add_argument` prepending options
|
|
with unique plugin name prefix.
|
|
|
|
"""
|
|
|
|
@classmethod
|
|
def inject_parser_options(cls, parser, name):
|
|
"""Inject parser options.
|
|
|
|
See `~.IPlugin.inject_parser_options` for docs.
|
|
|
|
"""
|
|
# dummy function, doesn't check if dest.startswith(self.dest_namespace)
|
|
def add(arg_name_no_prefix, *args, **kwargs):
|
|
# pylint: disable=missing-docstring
|
|
return parser.add_argument(
|
|
"--{0}{1}".format(option_namespace(name), arg_name_no_prefix),
|
|
*args, **kwargs)
|
|
return cls.add_parser_arguments(add)
|
|
|
|
@property
|
|
def option_namespace(self):
|
|
"""ArgumentParser options namespace (prefix of all options)."""
|
|
return option_namespace(self.name)
|
|
|
|
def option_name(self, name):
|
|
"""Option name (include plugin namespace)."""
|
|
return self.option_namespace + name
|
|
|
|
@property
|
|
def dest_namespace(self):
|
|
"""ArgumentParser dest namespace (prefix of all destinations)."""
|
|
return dest_namespace(self.name)
|
|
|
|
def dest(self, var):
|
|
"""Find a destination for given variable ``var``."""
|
|
# this should do exactly the same what ArgumentParser(arg),
|
|
# does to "arg" to compute "dest"
|
|
return self.dest_namespace + var.replace("-", "_")
|
|
|
|
def conf(self, var):
|
|
"""Find a configuration value for variable ``var``."""
|
|
return getattr(self.config, self.dest(var))
|
|
# other
|
|
|
|
|
|
class Addr(object):
|
|
r"""Represents an virtual host address.
|
|
|
|
:param str addr: addr part of vhost address
|
|
:param str port: port number or \*, or ""
|
|
|
|
"""
|
|
def __init__(self, tup, ipv6=False):
|
|
self.tup = tup
|
|
self.ipv6 = ipv6
|
|
|
|
@classmethod
|
|
def fromstring(cls, str_addr):
|
|
"""Initialize Addr from string."""
|
|
if str_addr.startswith('['):
|
|
# ipv6 addresses starts with [
|
|
endIndex = str_addr.rfind(']')
|
|
host = str_addr[:endIndex + 1]
|
|
port = ''
|
|
if len(str_addr) > endIndex + 2 and str_addr[endIndex + 1] == ':':
|
|
port = str_addr[endIndex + 2:]
|
|
return cls((host, port), ipv6=True)
|
|
else:
|
|
tup = str_addr.partition(':')
|
|
return cls((tup[0], tup[2]))
|
|
|
|
def __str__(self):
|
|
if self.tup[1]:
|
|
return "%s:%s" % self.tup
|
|
return self.tup[0]
|
|
|
|
def normalized_tuple(self):
|
|
"""Normalized representation of addr/port tuple
|
|
"""
|
|
if self.ipv6:
|
|
return (self._normalize_ipv6(self.tup[0]), self.tup[1])
|
|
return self.tup
|
|
|
|
def __eq__(self, other):
|
|
if isinstance(other, self.__class__):
|
|
# compare normalized to take different
|
|
# styles of representation into account
|
|
return self.normalized_tuple() == other.normalized_tuple()
|
|
|
|
return False
|
|
|
|
def __hash__(self):
|
|
return hash(self.tup)
|
|
|
|
def get_addr(self):
|
|
"""Return addr part of Addr object."""
|
|
return self.tup[0]
|
|
|
|
def get_port(self):
|
|
"""Return port."""
|
|
return self.tup[1]
|
|
|
|
def get_addr_obj(self, port):
|
|
"""Return new address object with same addr and new port."""
|
|
return self.__class__((self.tup[0], port), self.ipv6)
|
|
|
|
def _normalize_ipv6(self, addr):
|
|
"""Return IPv6 address in normalized form, helper function"""
|
|
addr = addr.lstrip("[")
|
|
addr = addr.rstrip("]")
|
|
return self._explode_ipv6(addr)
|
|
|
|
def get_ipv6_exploded(self):
|
|
"""Return IPv6 in normalized form"""
|
|
if self.ipv6:
|
|
return ":".join(self._normalize_ipv6(self.tup[0]))
|
|
return ""
|
|
|
|
def _explode_ipv6(self, addr):
|
|
"""Explode IPv6 address for comparison"""
|
|
result = ['0', '0', '0', '0', '0', '0', '0', '0']
|
|
addr_list = addr.split(":")
|
|
if len(addr_list) > len(result):
|
|
# too long, truncate
|
|
addr_list = addr_list[0:len(result)]
|
|
append_to_end = False
|
|
for i in range(0, len(addr_list)):
|
|
block = addr_list[i]
|
|
if len(block) == 0:
|
|
# encountered ::, so rest of the blocks should be
|
|
# appended to the end
|
|
append_to_end = True
|
|
continue
|
|
elif len(block) > 1:
|
|
# remove leading zeros
|
|
block = block.lstrip("0")
|
|
if not append_to_end:
|
|
result[i] = str(block)
|
|
else:
|
|
# count the location from the end using negative indices
|
|
result[i-len(addr_list)] = str(block)
|
|
return result
|
|
|
|
|
|
class TLSSNI01(object):
|
|
"""Abstract base for TLS-SNI-01 challenge performers"""
|
|
|
|
def __init__(self, configurator):
|
|
self.configurator = configurator
|
|
self.achalls = []
|
|
self.indices = []
|
|
self.challenge_conf = os.path.join(
|
|
configurator.config.config_dir, "le_tls_sni_01_cert_challenge.conf")
|
|
# self.completed = 0
|
|
|
|
def add_chall(self, achall, idx=None):
|
|
"""Add challenge to TLSSNI01 object to perform at once.
|
|
|
|
:param .KeyAuthorizationAnnotatedChallenge achall: Annotated
|
|
TLSSNI01 challenge.
|
|
|
|
:param int idx: index to challenge in a larger array
|
|
|
|
"""
|
|
self.achalls.append(achall)
|
|
if idx is not None:
|
|
self.indices.append(idx)
|
|
|
|
def get_cert_path(self, achall):
|
|
"""Returns standardized name for challenge certificate.
|
|
|
|
:param .KeyAuthorizationAnnotatedChallenge achall: Annotated
|
|
tls-sni-01 challenge.
|
|
|
|
:returns: certificate file name
|
|
:rtype: str
|
|
|
|
"""
|
|
return os.path.join(self.configurator.config.work_dir,
|
|
achall.chall.encode("token") + ".crt")
|
|
|
|
def get_key_path(self, achall):
|
|
"""Get standardized path to challenge key."""
|
|
return os.path.join(self.configurator.config.work_dir,
|
|
achall.chall.encode("token") + '.pem')
|
|
|
|
def _setup_challenge_cert(self, achall, cert_key=None):
|
|
|
|
"""Generate and write out challenge certificate."""
|
|
cert_path = self.get_cert_path(achall)
|
|
key_path = self.get_key_path(achall)
|
|
# Register the path before you write out the file
|
|
self.configurator.reverter.register_file_creation(True, key_path)
|
|
self.configurator.reverter.register_file_creation(True, cert_path)
|
|
|
|
response, (cert, key) = achall.response_and_validation(
|
|
cert_key=cert_key)
|
|
cert_pem = OpenSSL.crypto.dump_certificate(
|
|
OpenSSL.crypto.FILETYPE_PEM, cert)
|
|
key_pem = OpenSSL.crypto.dump_privatekey(
|
|
OpenSSL.crypto.FILETYPE_PEM, key)
|
|
|
|
# Write out challenge cert and key
|
|
with open(cert_path, "wb") as cert_chall_fd:
|
|
cert_chall_fd.write(cert_pem)
|
|
with util.safe_open(key_path, 'wb', chmod=0o400) as key_file:
|
|
key_file.write(key_pem)
|
|
|
|
return response
|
|
|
|
|
|
def install_ssl_options_conf(options_ssl, options_ssl_digest, mod_ssl_conf_src,
|
|
all_ssl_options_hashes):
|
|
"""Copy Certbot's SSL options file into the system's config dir if required.
|
|
|
|
:param str options_ssl: destination path for file containing ssl options
|
|
:param str options_ssl_digest: path to save a digest of options_ssl in
|
|
:param str mod_ssl_conf_src: path to file containing ssl options found in distribution
|
|
:param list all_ssl_options_hashes: hashes of every released version of options_ssl
|
|
"""
|
|
current_ssl_options_hash = crypto_util.sha256sum(mod_ssl_conf_src)
|
|
|
|
def _write_current_hash():
|
|
with open(options_ssl_digest, "w") as f:
|
|
f.write(current_ssl_options_hash)
|
|
|
|
def _install_current_file():
|
|
shutil.copyfile(mod_ssl_conf_src, options_ssl)
|
|
_write_current_hash()
|
|
|
|
# Check to make sure options-ssl.conf is installed
|
|
if not os.path.isfile(options_ssl):
|
|
_install_current_file()
|
|
return
|
|
# there's already a file there. if it's up to date, do nothing. if it's not but
|
|
# it matches a known file hash, we can update it.
|
|
# otherwise, print a warning once per new version.
|
|
active_file_digest = crypto_util.sha256sum(options_ssl)
|
|
if active_file_digest == current_ssl_options_hash: # already up to date
|
|
return
|
|
elif active_file_digest in all_ssl_options_hashes: # safe to update
|
|
_install_current_file()
|
|
else: # has been manually modified, not safe to update
|
|
# did they modify the current version or an old version?
|
|
if os.path.isfile(options_ssl_digest):
|
|
with open(options_ssl_digest, "r") as f:
|
|
saved_digest = f.read()
|
|
# they modified it after we either installed or told them about this version, so return
|
|
if saved_digest == current_ssl_options_hash:
|
|
return
|
|
# there's a new version but we couldn't update the file, or they deleted the digest.
|
|
# save the current digest so we only print this once, and print a warning
|
|
_write_current_hash()
|
|
logger.warning("%s has been manually modified; updated ssl configuration options "
|
|
"saved to %s. We recommend updating %s for security purposes.",
|
|
options_ssl, mod_ssl_conf_src, options_ssl)
|
|
|
|
|
|
# test utils used by certbot_apache/certbot_nginx (hence
|
|
# "pragma: no cover") TODO: this might quickly lead to dead code (also
|
|
# c.f. #383)
|
|
|
|
def dir_setup(test_dir, pkg): # pragma: no cover
|
|
"""Setup the directories necessary for the configurator."""
|
|
def expanded_tempdir(prefix):
|
|
"""Return the real path of a temp directory with the specified prefix
|
|
|
|
Some plugins rely on real paths of symlinks for working correctly. For
|
|
example, certbot-apache uses real paths of configuration files to tell
|
|
a virtual host from another. On systems where TMP itself is a symbolic
|
|
link, (ex: OS X) such plugins will be confused. This function prevents
|
|
such a case.
|
|
"""
|
|
return os.path.realpath(tempfile.mkdtemp(prefix))
|
|
|
|
temp_dir = expanded_tempdir("temp")
|
|
config_dir = expanded_tempdir("config")
|
|
work_dir = expanded_tempdir("work")
|
|
|
|
os.chmod(temp_dir, constants.CONFIG_DIRS_MODE)
|
|
os.chmod(config_dir, constants.CONFIG_DIRS_MODE)
|
|
os.chmod(work_dir, constants.CONFIG_DIRS_MODE)
|
|
|
|
test_configs = pkg_resources.resource_filename(
|
|
pkg, os.path.join("testdata", test_dir))
|
|
|
|
shutil.copytree(
|
|
test_configs, os.path.join(temp_dir, test_dir), symlinks=True)
|
|
|
|
return temp_dir, config_dir, work_dir
|