-
Notifications
You must be signed in to change notification settings - Fork 105
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Moved dracut directory up to top-level to decouple it with systemd.
Adds a clevis-luks-generic-unlocker for alternative use without systemd. Based on patch by Sergio Correia <[email protected]> Closes: #346 Signed-off-by: Jonathan Davies <[email protected]>
- Loading branch information
Showing
14 changed files
with
90 additions
and
7 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/bin/bash | ||
|
||
@libexecdir@/clevis-luks-generic-unlocker -l |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
#!/bin/bash | ||
set -eu | ||
# vim: set ts=8 shiftwidth=4 softtabstop=4 expandtab smarttab colorcolumn=80: | ||
# | ||
# Copyright (c) 2020 Red Hat, Inc. | ||
# Author: Sergio Correia <[email protected]> | ||
# | ||
# 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/>. | ||
# | ||
|
||
. clevis-luks-common-functions | ||
|
||
# Make sure to exit cleanly if SIGTERM is received. | ||
trap 'echo "Exiting due to SIGTERM" && exit 0' TERM | ||
|
||
loop= | ||
while getopts ":l" o; do | ||
case "${o}" in | ||
l) loop=true;; | ||
*) ;; | ||
esac | ||
done | ||
|
||
to_unlock() { | ||
local _devices='' _d _uuid | ||
for _d in $(lsblk -o PATH,FSTYPE,RM \ | ||
| awk '$2 == "crypto_LUKS" && $3 == "0" { print $1 }' | sort -u); | ||
do | ||
if ! bindings="$(clevis luks list -d "${_d}" 2>/dev/null)" \ | ||
|| [ -z "${bindings}" ]; then | ||
continue | ||
fi | ||
_uuid="$(cryptsetup luksUUID "${_d}")" | ||
if clevis_is_luks_device_by_uuid_open "${_uuid}"; then | ||
continue | ||
fi | ||
_devices="$(printf '%s\n%s' "${_devices}" "${_d}")" | ||
done | ||
echo "${_devices}" | sed -e 's/^\n$//' | ||
} | ||
|
||
while true; do | ||
for d in $(to_unlock); do | ||
uuid="$(cryptsetup luksUUID "${d}")" | ||
if ! clevis luks unlock -d "${d}"; then | ||
echo "Unable to unlock ${d} (UUID=${uuid})" >&2 | ||
continue | ||
fi | ||
echo "Unlocked ${d} (UUID=${uuid}) successfully" >&2 | ||
done | ||
|
||
[ "${loop}" != true ] && break | ||
# Checking for pending devices to be unlocked. | ||
if remaining=$(to_unlock) && [ -z "${remaining}" ]; then | ||
break; | ||
fi | ||
|
||
sleep 0.5 | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters