#!/bin/bash -e # vim: set tabstop=8 shiftwidth=4 softtabstop=4 expandtab smarttab colorcolumn=80: # # Copyright (c) 2016 Red Hat, Inc. # Author: Harald Hoyer # Author: Nathaniel McCallum # # 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 . # UUID=cb6e8904-81ff-40da-a84a-07ab9ab5715e shopt -s nullglob while getopts ":l" o; do case "$o" in l) loop=true;; esac done while true; do todo=0 for question in /run/systemd/ask-password/ask.*; do metadata=false unlocked=false d= s= while read line; do case "$line" in Id=cryptsetup:*) d="${line##Id=cryptsetup:}";; Socket=*) s="${line##Socket=}";; esac done < "$question" [ -z "$d" -o -z "$s" ] && continue # If the device is not initialized, sliently skip it. luksmeta test -d "$d" || continue while read -r slot state uuid; do [ "$state" != "active" ] && continue [ "$uuid" != "$UUID" ] && continue metadata=true if pt="`luksmeta load -d $d -s $slot -u $UUID | clevis decrypt`"; then echo -n "+$pt" | nc -U -u --send-only "$s" unlocked=true break fi done < <(luksmeta show -d "$d") [ $metadata == true ] || continue [ $unlocked == true ] && continue todo=$((todo + 1)) done if [ $todo -eq 0 ] || [ "$loop" != "true" ]; then break; fi sleep 0.5 done