web-dev-qa-db-ja.com

Ubuntuを有効にして(フルディスク暗号化を使用)、RAMにスリープ/サスペンドする前にLUKSsupendを呼び出すにはどうすればよいですか?

この質問は、@-Stefanによる 別の質問 に関連していますが、重複しているわけではありません。質問はわずかに異なります。著者は、これが実装されたかどうかを単に知りたいだけでしたが、これを行う方法について具体的に(特定の方法で)助けを求めています。さらに、他の質問には、実装者にとって有用な答えがありませんでしたが、最近の質問は、これに対する私の試みにリンクしているだけです。

「重複」の問題を説明しています...

私はフルディスク暗号化(LUKSの上にあるLVM)を使用しているUbuntu 14.04で、luksSuspendをサスペンド手順に組み込み(後でluksResumeを使用して)RAMメモリにキーマテリアルを残さずに、ルートのロックを解除します。

Arch Linuxのスクリプト を移植しようとしましたが、これまでのところ成功していません:私は正直に自分が何をしているのか分かりません...

誰でも私がこれを移植するのを手伝うことができますか(またはこのようなものをゼロから作成できますか?または、少なくとも、誰かがサスペンド手順に物を引っ掛ける方法と、ルートへのすべてのIOがブロックされた後でも、必要なバイナリとスクリプト(cryptsetupなど)を利用可能に保つ方法に関するドキュメントを教えてもらえますか(by luksSuspend)?

必要なバイナリとスクリプトを再開に使用できるようにする方法については、この 他のブログ投稿(Archも同様) をそれらを/bootにコピーしました;ただし、Vianneyが前に述べたスクリプトで使用した行では、この方法の方が少しエレガントに見えるため、さらに何かを使用したいと思います。

私はあまり到達していませんが、私の開発は GitHub で見つけることができます。

104
Jonas Malaco

明らかなことを述べて申し訳ありませんが、cryptsetup luksSuspend/luksResumeコマンドを含むスクリプトを/usr/lib/pm-utils/sleep.dに追加しようとしましたか?もしそうなら、何が起こったのですか?

Hibernate/resumeのcryptdisksおよびcryptdisks_earlyサービスもstop/startを呼び出すことは論理的に思えます。 pm-utils/sleep.dのスクリプト内でcryptdisks_stopとcryptdisks_startを呼び出すと、うまくいきますか?これは、cryptsetup luksSuspendを直接呼び出すのと同じ結果になると思います。

1
sibaz

私が見つけた最も近い解決策は、Mikko Rauhalaによるこの2013年の概念実証のsuspend.shスクリプトです。

#!/bin/sh

# A proof of concept script for forgetting LUKS passwords on suspend
# and reasking them on resume.

# The basic idea is to copy all of the files necessary for luksResume
# onto a RAM disk so that we can be sure they'll be available without
# touching the disk at all. Then switch to a text VT to run the resume
# (easier to make sure it'll come up than to do the same with X).

# The suspend itself has to be done from the ramdisk too to make sure it
# won't hang. This is also a reason why this couldn't be reliably done as a
# self-contained /etc/pm/sleep.d script, so to make the concept clear
# (and because I'm lazy) I did just a minimal standalone proof of concept
# instead. Integrating the functionality into the usual pm tools would be
# encouraged. (Though suspend_pmu would apparently need Perl on the ramdisk...)

# (C) 2013 Mikko Rauhala 2013, modifiable and distributable under
# CC0, GPLv2 or later, MIT X11 license or 2-clause BSD. Regardless
# of what you pick, there is NO WARRANTY of any kind.

RAMDEV=/dev/ram0
ROOT=/run/cryptosuspend

PATH=/sbin:/bin:/usr/sbin:/usr/bin

# Cleanup not strictly necessary every time but good for development.
# Doing it before rather than after a suspend for debugging purposes

for a in "$ROOT"/dev/pts "$ROOT"/proc "$ROOT"/sys "$ROOT" ; do
    umount "$a" > /dev/null 2>&1
done

if mount | grep -q "$ROOT" ; then
    echo "Cleanup unsuccessful, cryptosuspend root premounted." 1>&2
    exit 2
fi

if grep -q mem /sys/power/state; then
    METHOD=mem
Elif grep -q standby /sys/power/state; then
    METHOD=standby
else
    echo "No mem or standby states available, aborting" 1>&2
    exit 1
fi

if ! mount | grep -q "$RAMDEV" ; then
    mkfs -t ext2 -q "$RAMDEV" 8192
    mkdir -p "$ROOT"
    mount "$RAMDEV" "$ROOT"
    mkdir "$ROOT"/sbin "$ROOT"/bin "$ROOT"/dev "$ROOT"/tmp "$ROOT"/proc "$ROOT"/sys
    cp "$(which cryptsetup)" "$ROOT"/sbin
    for a in $(ldd "$(which cryptsetup)" | grep "/" | cut -d / -f 2- | cut -d " " -f 1) ; do
        mkdir -p "$ROOT""$(dirname /$a)"
        cp "/$a" "$ROOT"/"$a"
    done
    cp "$(which busybox)" "$ROOT"/bin/
    ln -s busybox "$ROOT"/bin/sh
    ln -s busybox "$ROOT"/bin/sync
    cp -a /dev "$ROOT"
    mount -t proc proc "$ROOT"/proc
    mount -t sysfs sysfs "$ROOT"/sys
    mount -t devpts devpts "$ROOT"/dev/pts
fi

CRYPTDEVS="$(dmsetup --target crypt status | cut -d : -f 1)"

echo '#!/bin/sh' > "$ROOT"/bin/cryptosuspend
echo "sync" >> "$ROOT"/bin/cryptosuspend
echo "for a in $CRYPTDEVS ; do" >> "$ROOT"/bin/cryptosuspend
echo "  cryptsetup luksSuspend \$a" >> "$ROOT"/bin/cryptosuspend
echo "done" >> "$ROOT"/bin/cryptosuspend
echo "echo -n \"$METHOD\" > /sys/power/state" >> "$ROOT"/bin/cryptosuspend
echo "for a in $CRYPTDEVS ; do" >> "$ROOT"/bin/cryptosuspend
echo '  while ! cryptsetup luksResume'" \$a ; do" >> "$ROOT"/bin/cryptosuspend
echo "    true" >> "$ROOT"/bin/cryptosuspend
echo "  done" >> "$ROOT"/bin/cryptosuspend
echo "done" >> "$ROOT"/bin/cryptosuspend
chmod a+rx "$ROOT"/bin/cryptosuspend

sync
exec openvt -s chroot "$ROOT" /bin/cryptosuspend

これをUbuntu 14.04に移植するためにいくつかの作業が行われました ここで まだいくつかの問題があるため、これは決して完璧な解決策ではありません 未解決の問題 2014年6月11日以降にリリースされました。ただし、将来の開発の良い出発点と思われます。

ソース: https://github.com/jonasmalacofilho/ubuntu-luks-suspend

0
Elder Geek