2013-10-22 13:00:18 -05:00
|
|
|
#
|
2017-09-08 01:52:38 -05:00
|
|
|
# Copyright (C) 2017 FreeIPA Contributors see COPYING for license
|
|
|
|
#
|
2013-10-22 13:00:18 -05:00
|
|
|
#
|
|
|
|
# This program 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 program 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 this program. If not, see <http://www.gnu.org/licenses/>.
|
2017-09-08 01:52:38 -05:00
|
|
|
|
2017-12-06 04:53:35 -06:00
|
|
|
import re
|
|
|
|
import time
|
2013-10-22 13:00:18 -05:00
|
|
|
|
2017-03-20 05:34:17 -05:00
|
|
|
from ipatests.pytest_plugins.integration import tasks
|
2013-10-22 13:00:18 -05:00
|
|
|
from ipatests.test_integration.base import IntegrationTest
|
2017-12-06 04:53:35 -06:00
|
|
|
from ipaplatform.paths import paths
|
|
|
|
|
|
|
|
from itertools import chain, repeat
|
|
|
|
|
|
|
|
IPA_CA = 'ipa_ca.crt'
|
|
|
|
ROOT_CA = 'root_ca.crt'
|
|
|
|
|
|
|
|
# string to identify PKI restart in the journal
|
|
|
|
PKI_START_STR = 'Started pki_tomcatd'
|
|
|
|
|
|
|
|
|
|
|
|
def check_CA_flag(host, nssdb=paths.PKI_TOMCAT_ALIAS_DIR,
|
|
|
|
cn='example.test'):
|
|
|
|
"""
|
|
|
|
Check if external CA (by default 'example.test' in our test env) has
|
|
|
|
CA flag in nssdb.
|
|
|
|
"""
|
|
|
|
result = host.run_command(['certutil', '-L', '-d', nssdb])
|
|
|
|
text = result.stdout_text
|
|
|
|
|
|
|
|
# match CN in cert nickname and C flag in SSL section of NSS flags table
|
|
|
|
match_CA_flag = re.compile('.*{}.*\s+C'.format(cn))
|
|
|
|
match = re.search(match_CA_flag, text)
|
|
|
|
|
|
|
|
return match
|
|
|
|
|
|
|
|
|
|
|
|
def match_in_journal(host, string, since='today', services=('certmonger',)):
|
|
|
|
"""
|
|
|
|
Returns match object for the particular string.
|
|
|
|
"""
|
|
|
|
# prepend '-u' before every service name
|
|
|
|
service_args = list(chain.from_iterable(list(zip(repeat('-u'), services))))
|
|
|
|
command_args = ['journalctl', '--since={}'.format(since)] + service_args
|
|
|
|
result = host.run_command(command_args)
|
|
|
|
|
|
|
|
output = result.stdout_text
|
|
|
|
|
|
|
|
traceback = re.compile(string)
|
|
|
|
match = re.search(traceback, output)
|
|
|
|
|
|
|
|
return match
|
2017-08-09 08:37:28 -05:00
|
|
|
|
|
|
|
|
2018-01-12 05:28:12 -06:00
|
|
|
def install_server_external_ca_step1(host):
|
|
|
|
"""funtion for step 1 to install the ipa server with external ca"""
|
|
|
|
|
|
|
|
args = ['ipa-server-install', '-U',
|
|
|
|
'-a', host.config.admin_password,
|
|
|
|
'-p', host.config.dirman_password,
|
|
|
|
'--setup-dns', '--no-forwarders',
|
|
|
|
'-n', host.domain.name,
|
|
|
|
'-r', host.domain.realm,
|
|
|
|
'--domain-level=%i' % host.config.domain_level,
|
|
|
|
'--external-ca']
|
|
|
|
|
|
|
|
cmd = host.run_command(args)
|
|
|
|
return cmd
|
|
|
|
|
|
|
|
|
|
|
|
def install_server_external_ca_step2(host, ipa_ca_cert, root_ca_cert):
|
|
|
|
"""funtion for step 2 to install the ipa server with external ca"""
|
|
|
|
|
|
|
|
args = ['ipa-server-install',
|
|
|
|
'-a', host.config.admin_password,
|
|
|
|
'-p', host.config.dirman_password,
|
|
|
|
'--external-cert-file', ipa_ca_cert,
|
|
|
|
'--external-cert-file', root_ca_cert]
|
|
|
|
|
|
|
|
cmd = host.run_command(args)
|
|
|
|
return cmd
|
|
|
|
|
|
|
|
|
|
|
|
def service_control_dirsrv(host, function):
|
|
|
|
"""Function to control the dirsrv service i.e start, stop, restart etc"""
|
2018-01-25 05:31:08 -06:00
|
|
|
|
2018-01-12 05:28:12 -06:00
|
|
|
dashed_domain = host.domain.realm.replace(".", '-')
|
|
|
|
dirsrv_service = "dirsrv@%s.service" % dashed_domain
|
|
|
|
cmd = host.run_command(['systemctl', function, dirsrv_service])
|
|
|
|
assert cmd.returncode == 0
|
|
|
|
|
|
|
|
|
2013-10-22 13:00:18 -05:00
|
|
|
class TestExternalCA(IntegrationTest):
|
|
|
|
"""
|
|
|
|
Test of FreeIPA server installation with exernal CA
|
|
|
|
"""
|
2017-11-08 05:47:56 -06:00
|
|
|
@tasks.collect_logs
|
2013-10-22 13:00:18 -05:00
|
|
|
def test_external_ca(self):
|
2018-01-25 05:31:08 -06:00
|
|
|
# Step 1 of ipa-server-install.
|
|
|
|
result = install_server_external_ca_step1(self.master)
|
|
|
|
assert result.returncode == 0
|
2013-10-22 13:00:18 -05:00
|
|
|
|
2017-12-06 04:53:35 -06:00
|
|
|
# Sign CA, transport it to the host and get ipa a root ca paths.
|
|
|
|
root_ca_fname, ipa_ca_fname = tasks.sign_ca_and_transport(
|
|
|
|
self.master, paths.ROOT_IPA_CSR, ROOT_CA, IPA_CA)
|
2013-10-22 13:00:18 -05:00
|
|
|
|
2018-01-25 05:31:08 -06:00
|
|
|
# Step 2 of ipa-server-install.
|
|
|
|
result = install_server_external_ca_step2(
|
|
|
|
self.master, ipa_ca_fname, root_ca_fname)
|
|
|
|
assert result.returncode == 0
|
2013-10-22 13:00:18 -05:00
|
|
|
|
|
|
|
# Make sure IPA server is working properly
|
|
|
|
tasks.kinit_admin(self.master)
|
|
|
|
result = self.master.run_command(['ipa', 'user-show', 'admin'])
|
|
|
|
assert 'User login: admin' in result.stdout_text
|
2017-12-06 04:53:35 -06:00
|
|
|
|
|
|
|
|
|
|
|
class TestSelfExternalSelf(IntegrationTest):
|
|
|
|
"""
|
|
|
|
Test self-signed > external CA > self-signed test case.
|
|
|
|
"""
|
|
|
|
def test_install_master(self):
|
|
|
|
result = tasks.install_master(self.master)
|
|
|
|
assert result.returncode == 0
|
|
|
|
|
|
|
|
def test_switch_to_external_ca(self):
|
|
|
|
|
|
|
|
result = self.master.run_command([paths.IPA_CACERT_MANAGE, 'renew',
|
|
|
|
'--external-ca'])
|
|
|
|
assert result.returncode == 0
|
|
|
|
|
|
|
|
# Sign CA, transport it to the host and get ipa a root ca paths.
|
|
|
|
root_ca_fname, ipa_ca_fname = tasks.sign_ca_and_transport(
|
|
|
|
self.master, paths.IPA_CA_CSR, ROOT_CA, IPA_CA)
|
|
|
|
|
|
|
|
# renew CA with externally signed one
|
|
|
|
result = self.master.run_command([paths.IPA_CACERT_MANAGE, 'renew',
|
|
|
|
'--external-cert-file={}'.
|
|
|
|
format(ipa_ca_fname),
|
|
|
|
'--external-cert-file={}'.
|
|
|
|
format(root_ca_fname)])
|
|
|
|
assert result.returncode == 0
|
|
|
|
|
|
|
|
# update IPA certificate databases
|
|
|
|
result = self.master.run_command([paths.IPA_CERTUPDATE])
|
|
|
|
assert result.returncode == 0
|
|
|
|
|
|
|
|
# Check if external CA have "C" flag after the switch
|
|
|
|
result = check_CA_flag(self.master)
|
|
|
|
assert bool(result), ('External CA does not have "C" flag')
|
|
|
|
|
|
|
|
def test_switch_back_to_self_signed(self):
|
|
|
|
|
|
|
|
# for journalctl --since
|
|
|
|
switch_time = time.strftime('%H:%M:%S')
|
|
|
|
# switch back to self-signed CA
|
|
|
|
result = self.master.run_command([paths.IPA_CACERT_MANAGE, 'renew',
|
|
|
|
'--self-signed'])
|
|
|
|
assert result.returncode == 0
|
|
|
|
|
|
|
|
# Confirm there is no traceback in the journal
|
|
|
|
result = match_in_journal(self.master, since=switch_time,
|
|
|
|
string='Traceback')
|
|
|
|
assert not bool(result), ('"Traceback" keyword found in the journal.'
|
|
|
|
'Please check further')
|
|
|
|
|
|
|
|
# Check if pki-tomcatd was started after switching back.
|
|
|
|
result = match_in_journal(self.master, since=switch_time,
|
|
|
|
string=PKI_START_STR)
|
|
|
|
assert bool(result), ('pki_tomcatd not started after switching back to'
|
|
|
|
'self-signed CA')
|
|
|
|
|
|
|
|
result = self.master.run_command([paths.IPA_CERTUPDATE])
|
|
|
|
assert result.returncode == 0
|
2018-01-12 05:28:12 -06:00
|
|
|
|
|
|
|
|
|
|
|
class TestExternalCAdirsrvStop(IntegrationTest):
|
|
|
|
"""When the dirsrv service, which gets started during the first
|
|
|
|
ipa-server-install --external-ca phase, is not running when the
|
|
|
|
second phase is run with --external-cert-file options, the
|
|
|
|
ipa-server-install command fail.
|
|
|
|
|
|
|
|
This test checks if second phase installs successfully when dirsrv
|
|
|
|
is stoped.
|
|
|
|
|
|
|
|
related ticket: https://pagure.io/freeipa/issue/6611"""
|
|
|
|
def test_external_ca_dirsrv_stop(self):
|
|
|
|
|
|
|
|
# Step 1 of ipa-server-install
|
|
|
|
result = install_server_external_ca_step1(self.master)
|
|
|
|
assert result.returncode == 0
|
|
|
|
|
|
|
|
# stop dirsrv server.
|
|
|
|
service_control_dirsrv(self.master, 'stop')
|
|
|
|
|
|
|
|
# Sign CA, transport it to the host and get ipa and root ca paths.
|
|
|
|
root_ca_fname, ipa_ca_fname = tasks.sign_ca_and_transport(
|
|
|
|
self.master, paths.ROOT_IPA_CSR, ROOT_CA, IPA_CA)
|
|
|
|
|
|
|
|
# Step 2 of ipa-server-install.
|
|
|
|
result = install_server_external_ca_step2(
|
|
|
|
self.master, ipa_ca_fname, root_ca_fname)
|
|
|
|
assert result.returncode == 0
|
|
|
|
|
|
|
|
# Make sure IPA server is working properly
|
|
|
|
tasks.kinit_admin(self.master)
|
|
|
|
result = self.master.run_command(['ipa', 'user-show', 'admin'])
|
|
|
|
assert 'User login: admin' in result.stdout_text
|