Note: This bug is displayed in read-only format because the product is no longer active in Red Hat Bugzilla.
RHEL Engineering is moving the tracking of its product development work on RHEL 6 through RHEL 9 to Red Hat Jira (issues.redhat.com). If you're a Red Hat customer, please continue to file support cases via the Red Hat customer portal. If you're not, please head to the "RHEL project" in Red Hat Jira and file new tickets here. Individual Bugzilla bugs in the statuses "NEW", "ASSIGNED", and "POST" are being migrated throughout September 2023. Bugs of Red Hat partners with an assigned Engineering Partner Manager (EPM) are migrated in late September as per pre-agreed dates. Bugs against components "kernel", "kernel-rt", and "kpatch" are only migrated if still in "NEW" or "ASSIGNED". If you cannot log in to RH Jira, please consult article #7032570. That failing, please send an e-mail to the RH Jira admins at rh-issues@redhat.com to troubleshoot your issue as a user management inquiry. The email creates a ServiceNow ticket with Red Hat. Individual Bugzilla bugs that are migrated will be moved to status "CLOSED", resolution "MIGRATED", and set with "MigratedToJIRA" in "Keywords". The link to the successor Jira issue will be found under "Links", have a little "two-footprint" icon next to it, and direct you to the "RHEL project" in Red Hat Jira (issue links are of type "https://issues.redhat.com/browse/RHEL-XXXX", where "X" is a digit). This same link will be available in a blue banner at the top of the page informing you that that bug has been migrated.

Bug 2054785

Summary: python-cryptography does not detect fips mode
Product: Red Hat Enterprise Linux 9 Reporter: Ade Lee <alee>
Component: python-cryptographyAssignee: Christian Heimes <cheimes>
Status: CLOSED ERRATA QA Contact: Kaleem <ksiddiqu>
Severity: unspecified Docs Contact:
Priority: unspecified    
Version: CentOS StreamCC: bstinson, cheimes, jwboyer, lmiksik, myusuf, ssidhaye, sumenon
Target Milestone: rcKeywords: Triaged
Target Release: ---Flags: pm-rhel: mirror+
Hardware: Unspecified   
OS: Unspecified   
Whiteboard:
Fixed In Version: python-cryptography-36.0.1-1.el9_0 Doc Type: If docs needed, set a value
Doc Text:
Story Points: ---
Clone Of:
: 2062814 (view as bug list) Environment:
Last Closed: 2022-05-17 13:45:50 UTC Type: Bug
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:
Bug Depends On: 2059630    
Bug Blocks: 2055209, 2062814    

Description Ade Lee 2022-02-15 17:11:17 UTC
Description of problem:

The code that is python-cryptography in version 3.4.7-6 does not detect fips mode on rhel 9 because it has not been updated for OpenSSL 3.0.

https://github.com/pyca/cryptography/blob/3.4.x/src/cryptography/hazmat/backends/openssl/backend.py#L243-L249 

It needs to be updated to something that looks like :

https://github.com/pyca/cryptography/blob/main/src/cryptography/hazmat/backends/openssl/backend.py#L211-L222

Note: this is blocking OpenStack testing of FIPS mode in centos/rhel9.

Version-Release number of selected component (if applicable):


How reproducible:

Always

Steps to Reproduce:
1. On a FIPS mode Centos-9 machine

cheimes> >>> from cryptography.hazmat.backends.openssl import backend
<cheimes> >>> backend._is_fips_enabled()
<cheimes> False
<cheimes> $ cat /proc/sys/crypto/fips_enabled 
<cheimes> 1

Actual results:


Expected results:


Additional info:

Comment 1 Christian Heimes 2022-02-15 17:19:30 UTC
OpenSSL 3.0.0 FIPS fixes were added in upstream PR https://github.com/pyca/cryptography/pull/6012.

Comment 12 Sumedh Sidhaye 2022-03-14 07:50:54 UTC
Verifying using the latest RHEL 9.0 nightly repos

[root@ci-vm-10-0-137-195 ~]# rpm -qa python3-cryptography
python3-cryptography-36.0.1-1.el9_0.x86_64
[root@ci-vm-10-0-137-195 ~]# python3
Python 3.9.10 (main, Feb  9 2022, 00:00:00) 
[GCC 11.2.1 20220127 (Red Hat 11.2.1-9)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> from cryptography.hazmat.backends.openssl import backend
>>> backend._is_fips_enabled()
True
>>> from cryptography.hazmat.primitives.ciphers import algorithms, modes
>>> backend.cipher_supported(algorithms.TripleDES(b"\x00" * 8), modes.CBC(b"\x00" * 8))
False
>>> 
[root@ci-vm-10-0-137-195 ~]# sysctl crypto.fips_enabled
crypto.fips_enabled = 1
[root@ci-vm-10-0-137-195 ~]# 

Based on above results marking bugzilla verified.

Comment 15 errata-xmlrpc 2022-05-17 13:45:50 UTC
Since the problem described in this bug report should be
resolved in a recent advisory, it has been closed with a
resolution of ERRATA.

For information on the advisory (new packages: python-cryptography), and where to find the updated
files, follow the link below.

If the solution does not work for you, open a new bug report.

https://access.redhat.com/errata/RHBA-2022:2580