Skip to content

Commit 7e4c0f6

Browse files
hroncokrcritten
authored andcommitted
Use ssl.match_hostname from urllib3 as it was removed from Python 3.12
Based on upstream freeipa rawhide patch by Miro Hrončok See python/cpython#94224 (comment) Fixes: https://pagure.io/freeipa/issue/9409 Signed-off-by: Rob Crittenden <[email protected]>
1 parent 4a3e3ef commit 7e4c0f6

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

ipalib/x509.py

+8-3
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@
3636
import datetime
3737
import enum
3838
import ipaddress
39-
import ssl
4039
import base64
4140
import re
4241

@@ -53,6 +52,12 @@
5352
from pyasn1_modules import rfc2315, rfc2459
5453
import six
5554

55+
from urllib3.util import ssl_match_hostname
56+
57+
# make the CertificateError exception available via re-export
58+
# pylint: disable=unused-import
59+
from urllib3.util.ssl_match_hostname import CertificateError
60+
5661
from ipalib import errors
5762
from ipapython.dnsutil import DNSName
5863

@@ -385,6 +390,7 @@ def san_a_label_dns_names(self):
385390
return result
386391

387392
def match_hostname(self, hostname):
393+
# The caller is expected to catch any exceptions
388394
match_cert = {}
389395

390396
match_cert['subject'] = match_subject = []
@@ -401,8 +407,7 @@ def match_hostname(self, hostname):
401407
for value in values:
402408
match_san.append(('DNS', value))
403409

404-
# deprecated in Python3.7 without replacement
405-
ssl.match_hostname( # pylint: disable=deprecated-method
410+
ssl_match_hostname.match_hostname(
406411
match_cert, DNSName(hostname).ToASCII()
407412
)
408413

ipaserver/install/cainstance.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030
import os
3131
import re
3232
import shutil
33-
import ssl
3433
import sys
3534
import syslog
3635
import time
@@ -2378,7 +2377,7 @@ def check_ipa_ca_san(cert):
23782377

23792378
try:
23802379
cert.match_hostname(expect)
2381-
except ssl.CertificateError:
2380+
except x509.CertificateError:
23822381
raise errors.ValidationError(
23832382
name='certificate',
23842383
error='Does not have a \'{}\' SAN'.format(expect)

ipaserver/install/server/upgrade.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
import glob
1313
import shutil
1414
import fileinput
15-
import ssl
1615
import stat
1716
import sys
1817
import tempfile
@@ -717,7 +716,7 @@ def http_certificate_ensure_ipa_ca_dnsname(http):
717716

718717
try:
719718
cert.match_hostname(expect)
720-
except ssl.CertificateError:
719+
except x509.CertificateError:
721720
if certs.is_ipa_issued_cert(api, cert):
722721
request_id = certmonger.get_request_id(
723722
{'cert-file': paths.HTTPD_CERT_FILE})

0 commit comments

Comments
 (0)