Bug 1980742

Summary: RFE: enable debugging in clevis scripts when rd.debug is set
Product: Red Hat Enterprise Linux 8 Reporter: Renaud Métrich <rmetrich>
Component: clevisAssignee: Sergio Correia <scorreia>
Status: CLOSED ERRATA QA Contact: Martin Zelený <mzeleny>
Severity: medium Docs Contact:
Priority: medium    
Version: 8.4CC: dapospis, mzeleny, rsroka
Target Milestone: rcKeywords: FutureFeature, Triaged
Target Release: ---   
Hardware: All   
OS: Linux   
Whiteboard:
Fixed In Version: clevis-15-5.el8 Doc Type: No Doc Update
Doc Text:
Story Points: ---
Clone Of:
: 2022420 (view as bug list) Environment:
Last Closed: 2022-05-10 13:52:43 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:    
Bug Blocks: 2022420    

Description Renaud Métrich 2021-07-09 12:21:44 UTC
Description of problem:

Nowadays it's hard to troubleshoot clevis issue happening early during boot in the initramfs phase, because even with rd.debug, clevis scripts run blindly.
This would definitely help troubleshooting when something goes wrong (PCR changes or Tang issue for example).

This can be done on RHEL/Fedora using the following snippet at the beginning of /usr/bin/clevis-luks-common-functions:
-------- 8< ---------------- 8< ---------------- 8< ---------------- 8< --------
enable_debugging() {
    # Automatically enable debugging if in initramfs phase and rd.debug
    if [ -e /usr/lib/dracut-lib.sh ]; then
        local bashopts=$-
        # Because dracut is loosely written, disable hardening options temporarily
        [[ $bashopts != *u* ]] || set +u
        [[ $bashopts != *e* ]] || set +e
        . /usr/lib/dracut-lib.sh
        [[ $bashopts != *u* ]] || set -u
        [[ $bashopts != *e* ]] || set -e
    fi
}

enable_debugging
-------- 8< ---------------- 8< ---------------- 8< ---------------- 8< --------

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

clevis-15-1.el8.x86_64

Comment 9 errata-xmlrpc 2022-05-10 13:52:43 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 (clevis bug fix and enhancement update), 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:1857