Message ID | 20190103143227.9138-1-jlee@suse.com (mailing list archive) |
---|---|
Headers | show |
Series | Encryption and authentication for hibernate snapshot image | expand |
Hi! > This patchset is the implementation of encryption and authentication > for hibernate snapshot image. The image will be encrypted by AES and > authenticated by HMAC. Ok, so you encrypt. > The hibernate function can be used to snapshot memory pages to an image, > then kernel restores the image to memory space in a appropriate time. > There have secrets in snapshot image and cracker may modifies it for > hacking system. Encryption and authentication of snapshot image can protect > the system. > > Hibernate function requests the master key through key retention service. > The snapshot master key can be a trusted key or a user defined key. The > name of snapshot master key is fixed to "swsusp-kmk". User should loads > swsusp-kmk to kernel by keyctl tool before the hibernation resume. > e.g. The swsusp-kmk must be loaded before systemd-hibernate-resume But if userspace has a key, encryption is useless against root. > The TPM trusted key type is preferred to be the master key. But user > defined key can also be used for testing or when the platform doesn't > have TPM. User must be aware that the security of user key relies on > user space. If the root account be compromised, then the user key will > easy to be grabbed. In the TPM case, does userland have access to the key? Please explain your security goals. Pavel > Lee, Chun-Yi (5): > PM / hibernate: Create snapshot keys handler > PM / hibernate: Generate and verify signature for snapshot image > PM / hibernate: Encrypt snapshot image > PM / hibernate: Erase the snapshot master key in snapshot pages > PM / hibernate: An option to request that snapshot image must be > authenticated > > Documentation/admin-guide/kernel-parameters.txt | 6 + > include/linux/kernel.h | 3 +- > kernel/panic.c | 1 + > kernel/power/Kconfig | 25 + > kernel/power/Makefile | 1 + > kernel/power/hibernate.c | 59 ++- > kernel/power/power.h | 59 +++ > kernel/power/snapshot.c | 576 +++++++++++++++++++++++- > kernel/power/snapshot_key.c | 312 +++++++++++++ > kernel/power/swap.c | 6 + > kernel/power/user.c | 12 + > 11 files changed, 1042 insertions(+), 18 deletions(-) > create mode 100644 kernel/power/snapshot_key.c >
Hi Pavel, Thanks for your review! On Sun, Jan 06, 2019 at 07:10:27PM +0100, Pavel Machek wrote: > Hi! > > > This patchset is the implementation of encryption and authentication > > for hibernate snapshot image. The image will be encrypted by AES and > > authenticated by HMAC. > > Ok, so you encrypt. > Yes, encryption and authentication. > > The hibernate function can be used to snapshot memory pages to an image, > > then kernel restores the image to memory space in a appropriate time. > > There have secrets in snapshot image and cracker may modifies it for > > hacking system. Encryption and authentication of snapshot image can protect > > the system. > > > > Hibernate function requests the master key through key retention service. > > The snapshot master key can be a trusted key or a user defined key. The > > name of snapshot master key is fixed to "swsusp-kmk". User should loads > > swsusp-kmk to kernel by keyctl tool before the hibernation resume. > > e.g. The swsusp-kmk must be loaded before systemd-hibernate-resume > > But if userspace has a key, encryption is useless against root. > Yes, but this concern is not only for hibernation encryption. This patch set does not provide solution against this concern. The purpose of this patch set is to encrypt and authenticate hibernate snapshot image in kernel space. It also requests key through keyring mechanism. Which means that we can easy to adapt to new key type from keyring in the future. Currently TPM trusted key or user defined key types are not against root. Even using the TPM trusted key, it still can be unsealed by root before the PCRs be capped (unless we capped PCRs in kernel). My solution for keeping the secret by kernel is the EFI secure key type: https://lkml.org/lkml/2018/8/5/31 But the EFI boot variable doesn't design for keeping secret, so Windows and OEM/ODM do not use boot variable to keep secret. So this idea can not be accepted. We must think other key type against root. > > The TPM trusted key type is preferred to be the master key. But user > > defined key can also be used for testing or when the platform doesn't > > have TPM. User must be aware that the security of user key relies on > > user space. If the root account be compromised, then the user key will > > easy to be grabbed. > > In the TPM case, does userland have access to the key? > In the TPM case, userland can only touch the sealed key blob. So userland doesn't know the real secret. But it has risk that root unseals the key before PCRs be capped. > Please explain your security goals. > My security goals: - Encrypt and authicate hibernate snapshot image in kernel space. Userspace can only touch an encrypted and signed snapshot image. - The code of encryption are in kernel. They will be signed and verify with kernel binary when secure boot enabled. It's better than using unauthenticated userspace code at runtime. - Using TPM trusted key, at least the security of hibernation aligns with other subsystem. e.g. EVM. - Using keyring as the key source of hibernation. Then we can easy to adapt to new key type against root be compromised. > > > Lee, Chun-Yi (5): > > PM / hibernate: Create snapshot keys handler > > PM / hibernate: Generate and verify signature for snapshot image > > PM / hibernate: Encrypt snapshot image > > PM / hibernate: Erase the snapshot master key in snapshot pages > > PM / hibernate: An option to request that snapshot image must be > > authenticated > > Thanks a lot! Joey Lee
Hi! > Thanks for your review! > > > > The hibernate function can be used to snapshot memory pages to an image, > > > then kernel restores the image to memory space in a appropriate time. > > > There have secrets in snapshot image and cracker may modifies it for > > > hacking system. Encryption and authentication of snapshot image can protect > > > the system. > > > > > > Hibernate function requests the master key through key retention service. > > > The snapshot master key can be a trusted key or a user defined key. The > > > name of snapshot master key is fixed to "swsusp-kmk". User should loads > > > swsusp-kmk to kernel by keyctl tool before the hibernation resume. > > > e.g. The swsusp-kmk must be loaded before systemd-hibernate-resume > > > > But if userspace has a key, encryption is useless against root. > > > > Yes, but this concern is not only for hibernation encryption. This patch > set does not provide solution against this concern. So, can we postpone these patches until we have a solution secure against root users? > My security goals: > > - Encrypt and authicate hibernate snapshot image in kernel space. Userspace > can only touch an encrypted and signed snapshot image. > > - The code of encryption are in kernel. They will be signed and verify with > kernel binary when secure boot enabled. It's better than using > unauthenticated userspace code at runtime. These are not goals. I'd like to understand why you want to put it into kernel in the first place. Pavel
> On Jan 7, 2019, at 9:37 AM, joeyli <jlee@suse.com> wrote: > > Hi Pavel, > > Thanks for your review! > >> On Sun, Jan 06, 2019 at 07:10:27PM +0100, Pavel Machek wrote: >> Hi! >> >>> This patchset is the implementation of encryption and authentication >>> for hibernate snapshot image. The image will be encrypted by AES and >>> authenticated by HMAC. >> >> Ok, so you encrypt. > > Yes, encryption and authentication. > >>> The hibernate function can be used to snapshot memory pages to an image, >>> then kernel restores the image to memory space in a appropriate time. >>> There have secrets in snapshot image and cracker may modifies it for >>> hacking system. Encryption and authentication of snapshot image can protect >>> the system. >>> >>> Hibernate function requests the master key through key retention service. >>> The snapshot master key can be a trusted key or a user defined key. The >>> name of snapshot master key is fixed to "swsusp-kmk". User should loads >>> swsusp-kmk to kernel by keyctl tool before the hibernation resume. >>> e.g. The swsusp-kmk must be loaded before systemd-hibernate-resume >> >> But if userspace has a key, encryption is useless against root. > > Yes, but this concern is not only for hibernation encryption. This patch > set does not provide solution against this concern. > > The purpose of this patch set is to encrypt and authenticate hibernate > snapshot image in kernel space. It also requests key through keyring > mechanism. Which means that we can easy to adapt to new key type from > keyring in the future. > > Currently TPM trusted key or user defined key types are not against > root. Even using the TPM trusted key, it still can be unsealed by root > before the PCRs be capped (unless we capped PCRs in kernel). > > My solution for keeping the secret by kernel is the EFI secure key type: > https://lkml.org/lkml/2018/8/5/31 > > But the EFI boot variable doesn't design for keeping secret, so Windows > and OEM/ODM do not use boot variable to keep secret. So this idea can > not be accepted. We must think other key type against root. > >>> The TPM trusted key type is preferred to be the master key. But user >>> defined key can also be used for testing or when the platform doesn't >>> have TPM. User must be aware that the security of user key relies on >>> user space. If the root account be compromised, then the user key will >>> easy to be grabbed. >> >> In the TPM case, does userland have access to the key? > > In the TPM case, userland can only touch the sealed key blob. So userland > doesn't know the real secret. But it has risk that root unseals the key > before PCRs be capped. > >> Please explain your security goals. > > My security goals: > > - Encrypt and authicate hibernate snapshot image in kernel space. Userspace > can only touch an encrypted and signed snapshot image. Signed? I’m not entirely convinced that the keyring mechanism is what you want. ISTM that there are two goals here: a) Encryption: it should be as hard as can reasonably be arranged to extract secrets from a hibernation image. b) Authentication part 1: it should not be possible for someone in possession of a turned-off machine to tamper with the hibernation image such that the image, when booted, will leak its secrets. This should protect against attackers who don’t know the encryption key. c) Authentication part 2: it should be to verify, to the extent practical, that the image came from the same machine and was really created using hibernation. Or maybe by the same user. For (a) and (b), using an AE mode where the key is protected in some reasonable way. Joey, why are you using HMAC? Please tell me you’re at least doing encrypt-then-MAC. But why not use a real AE mode like AES-GCM? I reviewed the code a bit. Here are some thoughts: You have some really weird crypto. You’re using an insanely long key (512 bits, I think, although you’ve used some bizarre indirection). You’re explicitly checking that it’s not zero, and I don’t see why. Why are you manually supporting three different key types? Can’t you just somehow support all key types? And shouldn’t you be verifying the acceptable usage of trusted keys? You are using a non-ephemeral key and generating a fresh IV each time. This is probably okay, but it’s needlessly fragile. Just generate an entirely fresh key each time, please. You also seem to be doing encrypt-and-MAC, which is not generally considered acceptable. And you’re not authenticating everything — just the data. This seems very weak. Can you explain the trampoline? It looks like you are using it to tell the resumed kernel that it was tampered with. If so, NAK to that. Just abort. You say “If the encryption key be guessed then the snapshot master key can also be grabbed from snapshot image.” This makes little sense. If the encryption key is guessed, the game is over. Just remove this patch — it seems like pure snake oil. As far as I can tell, there is only one reason that any of this needs to be in the kernel: if it’s all in user code, then we lose “lockdown” protection against compromised user code on a secure boot system. Is that, in fact, true?
Hi! > >> Please explain your security goals. > > > > My security goals: > > > > - Encrypt and authicate hibernate snapshot image in kernel space. Userspace > > can only touch an encrypted and signed snapshot image. > > Signed? > > I’m not entirely convinced that the keyring mechanism is what you > want. ISTM that there are two goals here: > > a) Encryption: it should be as hard as can reasonably be arranged to > extract secrets from a hibernation image. > > b) Authentication part 1: it should not be possible for someone in > possession of a turned-off machine to tamper with the hibernation > image such that the image, when booted, will leak its secrets. This > should protect against attackers who don’t know the encryption key. > > c) Authentication part 2: it should be to verify, to the extent > practical, that the image came from the same machine and was really > created using hibernation. Or maybe by the same user. So... this looks like "security goals" I was asking in the first place. Thanks! Could we get something like that (with your real goals?) in the next version of the patch? > As far as I can tell, there is only one reason that any of this needs > to be in the kernel: if it’s all in user code, then we lose “lockdown” > protection against compromised user code on a secure boot system. Is > that, in fact, true? And this is what I'd really like answer to. Because... I'd really like this to be in userspace if it does not provide additional security guarantees. Thanks, Pavel
Hi Andy, Thanks for your review! On Tue, Jan 08, 2019 at 01:41:48PM -0800, Andy Lutomirski wrote: > > On Jan 7, 2019, at 9:37 AM, joeyli <jlee@suse.com> wrote: > > > > Hi Pavel, > > > > Thanks for your review! > > > >> On Sun, Jan 06, 2019 at 07:10:27PM +0100, Pavel Machek wrote: > >> Hi! > >> > >>> This patchset is the implementation of encryption and authentication > >>> for hibernate snapshot image. The image will be encrypted by AES and > >>> authenticated by HMAC. > >> > >> Ok, so you encrypt. > > > > Yes, encryption and authentication. > > > >>> The hibernate function can be used to snapshot memory pages to an image, > >>> then kernel restores the image to memory space in a appropriate time. > >>> There have secrets in snapshot image and cracker may modifies it for > >>> hacking system. Encryption and authentication of snapshot image can protect > >>> the system. > >>> > >>> Hibernate function requests the master key through key retention service. > >>> The snapshot master key can be a trusted key or a user defined key. The > >>> name of snapshot master key is fixed to "swsusp-kmk". User should loads > >>> swsusp-kmk to kernel by keyctl tool before the hibernation resume. > >>> e.g. The swsusp-kmk must be loaded before systemd-hibernate-resume > >> > >> But if userspace has a key, encryption is useless against root. > > > > Yes, but this concern is not only for hibernation encryption. This patch > > set does not provide solution against this concern. > > > > The purpose of this patch set is to encrypt and authenticate hibernate > > snapshot image in kernel space. It also requests key through keyring > > mechanism. Which means that we can easy to adapt to new key type from > > keyring in the future. > > > > Currently TPM trusted key or user defined key types are not against > > root. Even using the TPM trusted key, it still can be unsealed by root > > before the PCRs be capped (unless we capped PCRs in kernel). > > > > My solution for keeping the secret by kernel is the EFI secure key type: > > https://lkml.org/lkml/2018/8/5/31 > > > > But the EFI boot variable doesn't design for keeping secret, so Windows > > and OEM/ODM do not use boot variable to keep secret. So this idea can > > not be accepted. We must think other key type against root. > > > >>> The TPM trusted key type is preferred to be the master key. But user > >>> defined key can also be used for testing or when the platform doesn't > >>> have TPM. User must be aware that the security of user key relies on > >>> user space. If the root account be compromised, then the user key will > >>> easy to be grabbed. > >> > >> In the TPM case, does userland have access to the key? > > > > In the TPM case, userland can only touch the sealed key blob. So userland > > doesn't know the real secret. But it has risk that root unseals the key > > before PCRs be capped. > > > >> Please explain your security goals. > > > > My security goals: > > > > - Encrypt and authicate hibernate snapshot image in kernel space. Userspace > > can only touch an encrypted and signed snapshot image. > > Signed? > > I’m not entirely convinced that the keyring mechanism is what you > want. ISTM that there are two goals here: > > a) Encryption: it should be as hard as can reasonably be arranged to > extract secrets from a hibernation image. > > b) Authentication part 1: it should not be possible for someone in > possession of a turned-off machine to tamper with the hibernation > image such that the image, when booted, will leak its secrets. This > should protect against attackers who don’t know the encryption key. > > c) Authentication part 2: it should be to verify, to the extent > practical, that the image came from the same machine and was really > created using hibernation. Or maybe by the same user. > > For (a) and (b), using an AE mode where the key is protected in some > reasonable way. Joey, why are you using HMAC? Please tell me you’re > at least doing encrypt-then-MAC. But why not use a real AE mode like > AES-GCM? The reason for using HMAC is the history for development. My first patch set is only for hibernate authentication. Then I added encryption code on top of my authentication patches in last version. I am doing encrypt-then-MAC. My code ecrypts each page by AES then HMAC whole snapshot image. I feed encrypted data pages one by one to crypto_shash_update() API for calculating the hash for whole image. Because kernel marks non-continuous free pages as a big buffer for produce/restore hibernate snapshot image. For convenience, I hope that the size of encrypted page will not be increased. One date page is still one page after encrypted. It's good for saving limited free pages to avoid the hibernation failed. Let's why I encrypt/decrypt data pages one by one, then I copy the encrypt/decrypt data from buffer page (only one buffer page reserved for encrypt/decrypt) to original page. I encreypt pages one by one, but I HMAC and verify the whole snapshot image by update mode. My target is to create an encrypted/signed snapshot image before the image be exposed by kernel to userspace or swap. > > > I reviewed the code a bit. Here are some thoughts: > > You have some really weird crypto. You’re using an insanely long key > (512 bits, I think, although you’ve used some bizarre indirection). Is the key too long for SHA512? I keep that the key size equals to the digest size because the HMAC spec rfc2104 suggests: ............................ We denote by B the byte-length of such blocks (B=64 for all the above mentioned examples of hash functions), and by L the byte-length of hash outputs (L=16 for MD5, L=20 for SHA-1). ... The key for HMAC can be of any length (keys longer than B bytes are first hashed using H). However, less than L bytes is strongly discouraged as it would decrease the security strength of the function. Keys longer than L bytes are acceptable but the extra length would not significantly increase the function strength. (A longer key may be advisable if the randomness of the key is considered weak.) The L is the byte-length of hash output. I use SHA512 so I set the key size to 64 bytes = 512 bits > You’re explicitly checking that it’s not zero, and I don’t see why. > That's because I use trampoline page to forward the key from boot kernel to resume kernel for next hibernation cycle. When resuming, the empty key means that the boot kernel didn't forward valid key to resume kernel. Then the key initial failed, hibernation can not be triggered in next cycle. I will explain why setting trampoline page at below. > Why are you manually supporting three different key types? Can’t you > just somehow support all key types? And shouldn’t you be verifying I only supported two key typs in my patch set, user defined key and TPM trusted key. The EFI secure boot did not accept by EFI subsystem. So I didn't support it in this version. Different key type has different structure. So we need different handler for extracting the key data from key structure. It's impossible to support all key types in one code because it's can be arbitrary defined. For example, we can defined our own user defined key for specific subsystem or driver, we just need a special handler to handle it in driver. > the acceptable usage of trusted keys? > Sorry for I didn't capture the meaning of "acceptable usage". The trusted key already be unsealed by TPM when the key be enrolled by keyctl tool. So my code just extract the unsealed key data (the random number) for encryption. > You are using a non-ephemeral key and generating a fresh IV each time. > This is probably okay, but it’s needlessly fragile. Just generate an > entirely fresh key each time, please. You also seem to be doing > encrypt-and-MAC, which is not generally considered acceptable. And I have thought about using one time key before. But that means I need attach the key with snapshot image. Keyring API doesn't provide interface for other kernel subsystem to feed an encrypted key blob, so I choice to use non-ephemeral key that's enrolled by userland through keyctl. I can change to one time key if keyring subsystem allows to be modified. The encrypt-and-MAC is not acceptable? I am OK to change to other way just I hope that I can encrypt/decrypt page one by one for the reason that I just mentioned. > you’re not authenticating everything — just the data. This seems very > weak. > Is it too weak? Why? There have three parts of an snapshot image: image header :: page table pages :: data pages The real data are in data pages. I thought that encrypt/hmac data pages can protect sensitive data in pages and also avoid those pages be arbitrary modified. IMHO arbitrary modifing page table pages is easy to cause resume kernel crashed. I keeps iv and signature to image header. They can be public. Did you see any danger if the header and page table page not be encrypted? Maybe I missed important things... > Can you explain the trampoline? It looks like you are using it to > tell the resumed kernel that it was tampered with. If so, NAK to that. > Just abort. > The main job of trampoline page is using by boot kernel to forward key to resume kernel for next hibernation cycle. The authorization result is just an add on. In resume process, the key will be loaded in early boot stage. Either in EFI stub (EFI secure key type, be rejected by EFI subsystem) or initrd. On the other hand, PCRs may capped after TPM trusted key be loaded. So resume kernel has no chance to load or unseal key again. The only way to get the unsealed/decrypted key is from boot kernel. The trampoline page is an empty page that it's pre-reserved in snapshot image when hibernation. When resuming, this trampoline page will be written by boot kernel to fill unsealed key. Then resume kernel will check the trampoline page to take the key. If the key is empty(zero), which means that boot kernel didn't forward valid key because some reasons. Either the key is broken (EFI key be erased) or userspace didn't enroll key to boot kernel. That's why I check the zero key in code. > You say “If the encryption key be guessed then the snapshot master key > can also be grabbed from snapshot image.” This makes little sense. If > the encryption key is guessed, the game is over. Just remove this > patch — it seems like pure snake oil. > I agreed. > As far as I can tell, there is only one reason that any of this needs > to be in the kernel: if it’s all in user code, then we lose “lockdown” > protection against compromised user code on a secure boot system. Is > that, in fact, true? Putting the logic to kernel has some benefit: - If the kernel be signed and verified by boot loader in EFI secure boot environment. Then the code can also be authenticated with kernel binary. - Kernel can direct produce an encrypted/signed snapshot image. Either kernel or userspace can keep the image. Userspace will not touch an un-encrypted image. Thanks a lot! Joey Lee
Am Mittwoch, 9. Januar 2019, 17:39:58 CET schrieb joeyli: Hi joeyli, > > I am doing encrypt-then-MAC. Note, this is what the authenc() AEAD cipher does. Ciao Stephan
On Thu, Jan 10, 2019 at 12:39:58AM +0800, joeyli wrote: > Hi Andy, > [...snip] > > Let's why I encrypt/decrypt data pages one by one, then I copy the ^^^^^^^ That's why > encrypt/decrypt data from buffer page (only one buffer page reserved > for encrypt/decrypt) to original page. I encreypt pages one by one, but > I HMAC and verify the whole snapshot image by update mode. > [...snip] > > > Why are you manually supporting three different key types? Can’t you > > just somehow support all key types? And shouldn’t you be verifying > > I only supported two key typs in my patch set, user defined key and > TPM trusted key. The EFI secure boot did not accept by EFI subsystem. ^^^^^^^^^^^^^^^^^^^ EFI secure key https://lkml.org/lkml/2018/8/5/10 Sorry for I produced too many typo when feeling sleepy... Thanks a lot! Joey Lee
On Wed, Jan 9, 2019 at 8:40 AM joeyli <jlee@suse.com> wrote: > > Hi Andy, > > Thanks for your review! > > On Tue, Jan 08, 2019 at 01:41:48PM -0800, Andy Lutomirski wrote: > > > On Jan 7, 2019, at 9:37 AM, joeyli <jlee@suse.com> wrote: > > > > > > Hi Pavel, > > > > > > Thanks for your review! > > > > > >> On Sun, Jan 06, 2019 at 07:10:27PM +0100, Pavel Machek wrote: > > >> Hi! > > >> > > >>> This patchset is the implementation of encryption and authentication > > >>> for hibernate snapshot image. The image will be encrypted by AES and > > >>> authenticated by HMAC. > > >> > > >> Ok, so you encrypt. > > > > > > Yes, encryption and authentication. > > > > > >>> The hibernate function can be used to snapshot memory pages to an image, > > >>> then kernel restores the image to memory space in a appropriate time. > > >>> There have secrets in snapshot image and cracker may modifies it for > > >>> hacking system. Encryption and authentication of snapshot image can protect > > >>> the system. > > >>> > > >>> Hibernate function requests the master key through key retention service. > > >>> The snapshot master key can be a trusted key or a user defined key. The > > >>> name of snapshot master key is fixed to "swsusp-kmk". User should loads > > >>> swsusp-kmk to kernel by keyctl tool before the hibernation resume. > > >>> e.g. The swsusp-kmk must be loaded before systemd-hibernate-resume > > >> > > >> But if userspace has a key, encryption is useless against root. > > > > > > Yes, but this concern is not only for hibernation encryption. This patch > > > set does not provide solution against this concern. > > > > > > The purpose of this patch set is to encrypt and authenticate hibernate > > > snapshot image in kernel space. It also requests key through keyring > > > mechanism. Which means that we can easy to adapt to new key type from > > > keyring in the future. > > > > > > Currently TPM trusted key or user defined key types are not against > > > root. Even using the TPM trusted key, it still can be unsealed by root > > > before the PCRs be capped (unless we capped PCRs in kernel). > > > > > > My solution for keeping the secret by kernel is the EFI secure key type: > > > https://lkml.org/lkml/2018/8/5/31 > > > > > > But the EFI boot variable doesn't design for keeping secret, so Windows > > > and OEM/ODM do not use boot variable to keep secret. So this idea can > > > not be accepted. We must think other key type against root. > > > > > >>> The TPM trusted key type is preferred to be the master key. But user > > >>> defined key can also be used for testing or when the platform doesn't > > >>> have TPM. User must be aware that the security of user key relies on > > >>> user space. If the root account be compromised, then the user key will > > >>> easy to be grabbed. > > >> > > >> In the TPM case, does userland have access to the key? > > > > > > In the TPM case, userland can only touch the sealed key blob. So userland > > > doesn't know the real secret. But it has risk that root unseals the key > > > before PCRs be capped. > > > > > >> Please explain your security goals. > > > > > > My security goals: > > > > > > - Encrypt and authicate hibernate snapshot image in kernel space. Userspace > > > can only touch an encrypted and signed snapshot image. > > > > Signed? > > > > I’m not entirely convinced that the keyring mechanism is what you > > want. ISTM that there are two goals here: > > > > a) Encryption: it should be as hard as can reasonably be arranged to > > extract secrets from a hibernation image. > > > > b) Authentication part 1: it should not be possible for someone in > > possession of a turned-off machine to tamper with the hibernation > > image such that the image, when booted, will leak its secrets. This > > should protect against attackers who don’t know the encryption key. > > > > c) Authentication part 2: it should be to verify, to the extent > > practical, that the image came from the same machine and was really > > created using hibernation. Or maybe by the same user. > > > > For (a) and (b), using an AE mode where the key is protected in some > > reasonable way. Joey, why are you using HMAC? Please tell me you’re > > at least doing encrypt-then-MAC. But why not use a real AE mode like > > AES-GCM? > > The reason for using HMAC is the history for development. My first patch > set is only for hibernate authentication. Then I added encryption code on > top of my authentication patches in last version. > > I am doing encrypt-then-MAC. My code ecrypts each page by AES then HMAC > whole snapshot image. I feed encrypted data pages one by one to > crypto_shash_update() API for calculating the hash for whole image. ... I think you should write down a clear description of the data format. A general problem with crypto is that the fact that it appears to work doesn't mean it's secure at all, and it's very hard to follow the code. Especially in Linux using the crypto API -- code using the crypto API tends to be mostly boilerplate. > > > > > > > I reviewed the code a bit. Here are some thoughts: > > > > > You’re explicitly checking that it’s not zero, and I don’t see why. > > > > That's because I use trampoline page to forward the key from boot > kernel to resume kernel for next hibernation cycle. When resuming, > the empty key means that the boot kernel didn't forward valid key > to resume kernel. Then the key initial failed, hibernation can not > be triggered in next cycle. > This seems like a poor design. If you need some indication of "there is no key", then implement that. Don't use a special all-zero value to mean something special. > > > the acceptable usage of trusted keys? > > > > Sorry for I didn't capture the meaning of "acceptable usage". The trusted > key already be unsealed by TPM when the key be enrolled by keyctl tool. > So my code just extract the unsealed key data (the random number) for > encryption. If someone creates a trusted key that is used for asymmetric crypto or perhaps a trusted key that is intended to be used for, say, an HMAC key, you should not also use it to derive hibernation keys. This is what I mean by "acceptable usage". > > > You are using a non-ephemeral key and generating a fresh IV each time. > > This is probably okay, but it’s needlessly fragile. Just generate an > > entirely fresh key each time, please. You also seem to be doing > > encrypt-and-MAC, which is not generally considered acceptable. And > > I have thought about using one time key before. But that means I need > attach the key with snapshot image. Keyring API doesn't provide interface > for other kernel subsystem to feed an encrypted key blob, so I choice > to use non-ephemeral key that's enrolled by userland through keyctl. I > can change to one time key if keyring subsystem allows to be modified. I don't see what this has to do with the keyring API. If you want a one time key in the hibernation code, generate a one-time key in the hibernation code and wrap the key accordingly. > > The encrypt-and-MAC is not acceptable? I am OK to change to other way > just I hope that I can encrypt/decrypt page one by one for the reason > that I just mentioned. > > > you’re not authenticating everything — just the data. This seems very > > weak. > > > > Is it too weak? Why? > > There have three parts of an snapshot image: > image header :: page table pages :: data pages > > The real data are in data pages. I thought that encrypt/hmac data pages > can protect sensitive data in pages and also avoid those pages be arbitrary > modified. IMHO arbitrary modifing page table pages is easy to cause > resume kernel crashed. First you need to define *why* you're authenticating anything. But I would guess that under any reasonable security model, a tampered-with image should not be able to take over the system. And, if you don't protect the page tables, then it's probably quite easy to tamper with an image such that the HMAC is unaffected but the image takes over the system. I think that, if this series goes in at all, it should authenticate the *entire* image. (But you still have to define what "authentic" even means. "It passed an HMAC check" is not a good definition.) > > > Can you explain the trampoline? It looks like you are using it to > > tell the resumed kernel that it was tampered with. If so, NAK to that. > > Just abort. > > > > The main job of trampoline page is using by boot kernel to forward > key to resume kernel for next hibernation cycle. The authorization result > is just an add on. > > In resume process, the key will be loaded in early boot stage. Either in > EFI stub (EFI secure key type, be rejected by EFI subsystem) or initrd. On > the other hand, PCRs may capped after TPM trusted key be loaded. So resume > kernel has no chance to load or unseal key again. The only way to get the > unsealed/decrypted key is from boot kernel. > > The trampoline page is an empty page that it's pre-reserved in snapshot image > when hibernation. When resuming, this trampoline page will be written by boot > kernel to fill unsealed key. Then resume kernel will check the trampoline > page to take the key. If the key is empty(zero), which means that boot > kernel didn't forward valid key because some reasons. Either the key is > broken (EFI key be erased) or userspace didn't enroll key to boot kernel. > That's why I check the zero key in code. I don't follow this at all. After reading the code, I couldn't figure out which stage generates the trampoline, which stage reads the trampoline, and where there are any keys at all in the trampoline. There are effectively three kernels: a) The kernel that gets hibernated and generates the hibernation image. This kernel obviously has access to all the keying information, although some of that information may actually be resident on the TPM and not in memory. b) The boot kernel that reads the hibernation image. c) The resumed kernel. This kernel has the same code as (a) but possibly different PCRs. If the encryption is going to protect anything at all, then kernel (b) needs to have a way to get the key, which is presumably done using the TPM, since it's not obvious to me that there's any other credible way to do it. (A passphrase could also make sense, but then you'd just put the hibernation image on a dm-crypt volume and the problem is solved.) Kernel (c) shouldn't need to do any crypto, since, by the time any code in kernel (c) executes at all, you've already decrypted everything and you've effectively committed to trusting the hibernation image. If something goes wrong when you hibernate a second time, this means that the first hibernation screwed up and corrupted something, e.g. PCRs. That should be fixed independently of this series IMO. So I still don't get what the trampoline is for.
On Wed, Jan 09, 2019 at 10:47:42AM -0800, Andy Lutomirski wrote: > On Wed, Jan 9, 2019 at 8:40 AM joeyli <jlee@suse.com> wrote: > > > > Hi Andy, > > > > Thanks for your review! > > > > On Tue, Jan 08, 2019 at 01:41:48PM -0800, Andy Lutomirski wrote: > > > > On Jan 7, 2019, at 9:37 AM, joeyli <jlee@suse.com> wrote: > > > > > > > > Hi Pavel, > > > > > > > > Thanks for your review! > > > > > > > >> On Sun, Jan 06, 2019 at 07:10:27PM +0100, Pavel Machek wrote: > > > >> Hi! > > > >> > > > >>> This patchset is the implementation of encryption and authentication > > > >>> for hibernate snapshot image. The image will be encrypted by AES and > > > >>> authenticated by HMAC. > > > >> > > > >> Ok, so you encrypt. > > > > > > > > Yes, encryption and authentication. > > > > > > > >>> The hibernate function can be used to snapshot memory pages to an image, > > > >>> then kernel restores the image to memory space in a appropriate time. > > > >>> There have secrets in snapshot image and cracker may modifies it for > > > >>> hacking system. Encryption and authentication of snapshot image can protect > > > >>> the system. > > > >>> > > > >>> Hibernate function requests the master key through key retention service. > > > >>> The snapshot master key can be a trusted key or a user defined key. The > > > >>> name of snapshot master key is fixed to "swsusp-kmk". User should loads > > > >>> swsusp-kmk to kernel by keyctl tool before the hibernation resume. > > > >>> e.g. The swsusp-kmk must be loaded before systemd-hibernate-resume > > > >> > > > >> But if userspace has a key, encryption is useless against root. > > > > > > > > Yes, but this concern is not only for hibernation encryption. This patch > > > > set does not provide solution against this concern. > > > > > > > > The purpose of this patch set is to encrypt and authenticate hibernate > > > > snapshot image in kernel space. It also requests key through keyring > > > > mechanism. Which means that we can easy to adapt to new key type from > > > > keyring in the future. > > > > > > > > Currently TPM trusted key or user defined key types are not against > > > > root. Even using the TPM trusted key, it still can be unsealed by root > > > > before the PCRs be capped (unless we capped PCRs in kernel). > > > > > > > > My solution for keeping the secret by kernel is the EFI secure key type: > > > > https://lkml.org/lkml/2018/8/5/31 > > > > > > > > But the EFI boot variable doesn't design for keeping secret, so Windows > > > > and OEM/ODM do not use boot variable to keep secret. So this idea can > > > > not be accepted. We must think other key type against root. > > > > > > > >>> The TPM trusted key type is preferred to be the master key. But user > > > >>> defined key can also be used for testing or when the platform doesn't > > > >>> have TPM. User must be aware that the security of user key relies on > > > >>> user space. If the root account be compromised, then the user key will > > > >>> easy to be grabbed. > > > >> > > > >> In the TPM case, does userland have access to the key? > > > > > > > > In the TPM case, userland can only touch the sealed key blob. So userland > > > > doesn't know the real secret. But it has risk that root unseals the key > > > > before PCRs be capped. > > > > > > > >> Please explain your security goals. > > > > > > > > My security goals: > > > > > > > > - Encrypt and authicate hibernate snapshot image in kernel space. Userspace > > > > can only touch an encrypted and signed snapshot image. > > > > > > Signed? > > > > > > I’m not entirely convinced that the keyring mechanism is what you > > > want. ISTM that there are two goals here: > > > > > > a) Encryption: it should be as hard as can reasonably be arranged to > > > extract secrets from a hibernation image. > > > > > > b) Authentication part 1: it should not be possible for someone in > > > possession of a turned-off machine to tamper with the hibernation > > > image such that the image, when booted, will leak its secrets. This > > > should protect against attackers who don’t know the encryption key. > > > > > > c) Authentication part 2: it should be to verify, to the extent > > > practical, that the image came from the same machine and was really > > > created using hibernation. Or maybe by the same user. > > > > > > For (a) and (b), using an AE mode where the key is protected in some > > > reasonable way. Joey, why are you using HMAC? Please tell me you’re > > > at least doing encrypt-then-MAC. But why not use a real AE mode like > > > AES-GCM? > > > > The reason for using HMAC is the history for development. My first patch > > set is only for hibernate authentication. Then I added encryption code on > > top of my authentication patches in last version. > > > > I am doing encrypt-then-MAC. My code ecrypts each page by AES then HMAC > > whole snapshot image. I feed encrypted data pages one by one to > > crypto_shash_update() API for calculating the hash for whole image. > > ... > > I think you should write down a clear description of the data format. Hibernation allocates free pages for building snapshot image. Those free pages are scattered in memory. So kernel marks those page numbers on a bitmap to locate them. Because this image buffer is discontinuous, so I use update mode hashing whole image. > A general problem with crypto is that the fact that it appears to work > doesn't mean it's secure at all, and it's very hard to follow the > code. Especially in Linux using the crypto API -- code using the > crypto API tends to be mostly boilerplate. > hm... Do you mean that the implementation of HMAC in crypto cannot be trusted? I hope at least that I can trust the update mode for normal hash like SHA256 or SHA512? > > > > > > > > > > > I reviewed the code a bit. Here are some thoughts: > > > > > > > > > You’re explicitly checking that it’s not zero, and I don’t see why. > > > > > > > That's because I use trampoline page to forward the key from boot > > kernel to resume kernel for next hibernation cycle. When resuming, > > the empty key means that the boot kernel didn't forward valid key > > to resume kernel. Then the key initial failed, hibernation can not > > be triggered in next cycle. > > > > This seems like a poor design. If you need some indication of "there > is no key", then implement that. Don't use a special all-zero value > to mean something special. > OK, I will use other way to detect the state of key. > > > > > the acceptable usage of trusted keys? > > > > > > > Sorry for I didn't capture the meaning of "acceptable usage". The trusted > > key already be unsealed by TPM when the key be enrolled by keyctl tool. > > So my code just extract the unsealed key data (the random number) for > > encryption. > > If someone creates a trusted key that is used for asymmetric crypto or > perhaps a trusted key that is intended to be used for, say, an HMAC > key, you should not also use it to derive hibernation keys. This is > what I mean by "acceptable usage". > When keyring is producing encrypted key, the trusted key be used to derive the encrypt key and authenticate key to encrypt and hmac sign a encrypted key. So trusted key can be used in symmetric crypto. > > > > > You are using a non-ephemeral key and generating a fresh IV each time. > > > This is probably okay, but it’s needlessly fragile. Just generate an > > > entirely fresh key each time, please. You also seem to be doing > > > encrypt-and-MAC, which is not generally considered acceptable. And > > > > I have thought about using one time key before. But that means I need > > attach the key with snapshot image. Keyring API doesn't provide interface > > for other kernel subsystem to feed an encrypted key blob, so I choice > > to use non-ephemeral key that's enrolled by userland through keyctl. I > > can change to one time key if keyring subsystem allows to be modified. > > I don't see what this has to do with the keyring API. If you want a > one time key in the hibernation code, generate a one-time key in the > hibernation code and wrap the key accordingly. > When using trusted key, the keyring subsystem helps to deal TPM. On the other hand, I want that hibernate can easy to support other key types. e.g. user defined key can also be used when debugging or development. If hibernation direct deals with TPM to seal the hibernation key. Then yes, we don't need keyring as the abstract layer for hibernation key. > > > > > The encrypt-and-MAC is not acceptable? I am OK to change to other way > > just I hope that I can encrypt/decrypt page one by one for the reason > > that I just mentioned. > > > > > you’re not authenticating everything — just the data. This seems very > > > weak. > > > > > > > Is it too weak? Why? > > > > There have three parts of an snapshot image: > > image header :: page table pages :: data pages > > > > The real data are in data pages. I thought that encrypt/hmac data pages > > can protect sensitive data in pages and also avoid those pages be arbitrary > > modified. IMHO arbitrary modifing page table pages is easy to cause > > resume kernel crashed. > > First you need to define *why* you're authenticating anything. But I > would guess that under any reasonable security model, a tampered-with > image should not be able to take over the system. And, if you don't > protect the page tables, then it's probably quite easy to tamper with > an image such that the HMAC is unaffected but the image takes over the > system. > OK, I will protect page tables and also fields in image header. > I think that, if this series goes in at all, it should authenticate > the *entire* image. (But you still have to define what "authentic" > even means. "It passed an HMAC check" is not a good definition.) > I thought that the authentic of image means that the image should not be tampered. I will try to protect whole image. > > > > > Can you explain the trampoline? It looks like you are using it to > > > tell the resumed kernel that it was tampered with. If so, NAK to that. > > > Just abort. > > > > > > > The main job of trampoline page is using by boot kernel to forward > > key to resume kernel for next hibernation cycle. The authorization result > > is just an add on. > > > > In resume process, the key will be loaded in early boot stage. Either in > > EFI stub (EFI secure key type, be rejected by EFI subsystem) or initrd. On > > the other hand, PCRs may capped after TPM trusted key be loaded. So resume > > kernel has no chance to load or unseal key again. The only way to get the > > unsealed/decrypted key is from boot kernel. > > > > The trampoline page is an empty page that it's pre-reserved in snapshot image > > when hibernation. When resuming, this trampoline page will be written by boot > > kernel to fill unsealed key. Then resume kernel will check the trampoline > > page to take the key. If the key is empty(zero), which means that boot > > kernel didn't forward valid key because some reasons. Either the key is > > broken (EFI key be erased) or userspace didn't enroll key to boot kernel. > > That's why I check the zero key in code. > > I don't follow this at all. After reading the code, I couldn't figure > out which stage generates the trampoline, which stage reads the > trampoline, and where there are any keys at all in the trampoline. > Very thinks for your review to my code... > There are effectively three kernels: > > a) The kernel that gets hibernated and generates the hibernation > image. This kernel obviously has access to all the keying > information, although some of that information may actually be > resident on the TPM and not in memory. > > b) The boot kernel that reads the hibernation image. > > c) The resumed kernel. This kernel has the same code as (a) but > possibly different PCRs. > > If the encryption is going to protect anything at all, then kernel (b) Sorry for I forgot mention in previous mail... Here is the point. I developed authentication before encryption, so the image is not encrypted in early version. In my original design, I try to avoid that hibernate key be snapshotted to image. So I erased hibernate key from kernel (a), which means that the kernel (b) should forwards hibernate key to kernel (c). Otherwise next hibernate cycle will be failed because no key. You are right. When the snpashot image be encrypted, the key doesn't need to be erased. Then kernel (b) doesn't need to forward key to kernel (c). I will remove trampoline. But, I still have a question when using PCRs with hibernate as below... > needs to have a way to get the key, which is presumably done using the > TPM, since it's not obvious to me that there's any other credible way > to do it. (A passphrase could also make sense, but then you'd just > put the hibernation image on a dm-crypt volume and the problem is > solved.) Kernel (c) shouldn't need to do any crypto, since, by the > time any code in kernel (c) executes at all, you've already decrypted > everything and you've effectively committed to trusting the > hibernation image. > > If something goes wrong when you hibernate a second time, this means > that the first hibernation screwed up and corrupted something, e.g. > PCRs. That should be fixed independently of this series IMO. > For kernel lockdown situation, if PCRs are not capped, which means that a sealed bundle can be unsealed by root. If root be compromised then the sealed key can also be compromised. I was thinking if kernel generates a sealed key when booting, then kernel capped the PCR with a constant value[1] before the userspace is available. Then the sealed key can not be unsealed by compromised root. In this case, kernel (b) will do the job to produce the sealed key before PCR be capped. Then the key must be forwarded by kernel (b) to kernel (c). [1] Using constant value for capping but not random number is for other subsystem or userland can continue to use the PCR. Thanks a lot! Joey Lee
On Thu, Jan 10, 2019 at 7:13 AM joeyli <jlee@suse.com> wrote: > > On Wed, Jan 09, 2019 at 10:47:42AM -0800, Andy Lutomirski wrote: > > On Wed, Jan 9, 2019 at 8:40 AM joeyli <jlee@suse.com> wrote: > > > > > > Hi Andy, > > > > > > Thanks for your review! > > > > > > On Tue, Jan 08, 2019 at 01:41:48PM -0800, Andy Lutomirski wrote: > > > > > On Jan 7, 2019, at 9:37 AM, joeyli <jlee@suse.com> wrote: > > > > > > > > > > Hi Pavel, > > > > > > > > > > Thanks for your review! > > > > > > > > > >> On Sun, Jan 06, 2019 at 07:10:27PM +0100, Pavel Machek wrote: > > > > >> Hi! > > > > >> > > > > >>> This patchset is the implementation of encryption and authentication > > > > >>> for hibernate snapshot image. The image will be encrypted by AES and > > > > >>> authenticated by HMAC. > > > > >> > > > > >> Ok, so you encrypt. > > > > > > > > > > Yes, encryption and authentication. > > > > > > > > > >>> The hibernate function can be used to snapshot memory pages to an image, > > > > >>> then kernel restores the image to memory space in a appropriate time. > > > > >>> There have secrets in snapshot image and cracker may modifies it for > > > > >>> hacking system. Encryption and authentication of snapshot image can protect > > > > >>> the system. > > > > >>> > > > > >>> Hibernate function requests the master key through key retention service. > > > > >>> The snapshot master key can be a trusted key or a user defined key. The > > > > >>> name of snapshot master key is fixed to "swsusp-kmk". User should loads > > > > >>> swsusp-kmk to kernel by keyctl tool before the hibernation resume. > > > > >>> e.g. The swsusp-kmk must be loaded before systemd-hibernate-resume > > > > >> > > > > >> But if userspace has a key, encryption is useless against root. > > > > > > > > > > Yes, but this concern is not only for hibernation encryption. This patch > > > > > set does not provide solution against this concern. > > > > > > > > > > The purpose of this patch set is to encrypt and authenticate hibernate > > > > > snapshot image in kernel space. It also requests key through keyring > > > > > mechanism. Which means that we can easy to adapt to new key type from > > > > > keyring in the future. > > > > > > > > > > Currently TPM trusted key or user defined key types are not against > > > > > root. Even using the TPM trusted key, it still can be unsealed by root > > > > > before the PCRs be capped (unless we capped PCRs in kernel). > > > > > > > > > > My solution for keeping the secret by kernel is the EFI secure key type: > > > > > https://lkml.org/lkml/2018/8/5/31 > > > > > > > > > > But the EFI boot variable doesn't design for keeping secret, so Windows > > > > > and OEM/ODM do not use boot variable to keep secret. So this idea can > > > > > not be accepted. We must think other key type against root. > > > > > > > > > >>> The TPM trusted key type is preferred to be the master key. But user > > > > >>> defined key can also be used for testing or when the platform doesn't > > > > >>> have TPM. User must be aware that the security of user key relies on > > > > >>> user space. If the root account be compromised, then the user key will > > > > >>> easy to be grabbed. > > > > >> > > > > >> In the TPM case, does userland have access to the key? > > > > > > > > > > In the TPM case, userland can only touch the sealed key blob. So userland > > > > > doesn't know the real secret. But it has risk that root unseals the key > > > > > before PCRs be capped. > > > > > > > > > >> Please explain your security goals. > > > > > > > > > > My security goals: > > > > > > > > > > - Encrypt and authicate hibernate snapshot image in kernel space. Userspace > > > > > can only touch an encrypted and signed snapshot image. > > > > > > > > Signed? > > > > > > > > I’m not entirely convinced that the keyring mechanism is what you > > > > want. ISTM that there are two goals here: > > > > > > > > a) Encryption: it should be as hard as can reasonably be arranged to > > > > extract secrets from a hibernation image. > > > > > > > > b) Authentication part 1: it should not be possible for someone in > > > > possession of a turned-off machine to tamper with the hibernation > > > > image such that the image, when booted, will leak its secrets. This > > > > should protect against attackers who don’t know the encryption key. > > > > > > > > c) Authentication part 2: it should be to verify, to the extent > > > > practical, that the image came from the same machine and was really > > > > created using hibernation. Or maybe by the same user. > > > > > > > > For (a) and (b), using an AE mode where the key is protected in some > > > > reasonable way. Joey, why are you using HMAC? Please tell me you’re > > > > at least doing encrypt-then-MAC. But why not use a real AE mode like > > > > AES-GCM? > > > > > > The reason for using HMAC is the history for development. My first patch > > > set is only for hibernate authentication. Then I added encryption code on > > > top of my authentication patches in last version. > > > > > > I am doing encrypt-then-MAC. My code ecrypts each page by AES then HMAC > > > whole snapshot image. I feed encrypted data pages one by one to > > > crypto_shash_update() API for calculating the hash for whole image. > > > > ... > > > > I think you should write down a clear description of the data format. > > Hibernation allocates free pages for building snapshot image. Those free > pages are scattered in memory. So kernel marks those page numbers on a > bitmap to locate them. Because this image buffer is discontinuous, so I > use update mode hashing whole image. > > > A general problem with crypto is that the fact that it appears to work > > doesn't mean it's secure at all, and it's very hard to follow the > > code. Especially in Linux using the crypto API -- code using the > > crypto API tends to be mostly boilerplate. > > > > hm... Do you mean that the implementation of HMAC in crypto cannot be > trusted? I hope at least that I can trust the update mode for normal > hash like SHA256 or SHA512? No, I fully expect the crypto code to do what it says. What I mean is that you can easily create utterly broken things that involve crypto, but they still work fine when you use then non-maliciously. > > > > > > Sorry for I didn't capture the meaning of "acceptable usage". The trusted > > > key already be unsealed by TPM when the key be enrolled by keyctl tool. > > > So my code just extract the unsealed key data (the random number) for > > > encryption. > > > > If someone creates a trusted key that is used for asymmetric crypto or > > perhaps a trusted key that is intended to be used for, say, an HMAC > > key, you should not also use it to derive hibernation keys. This is > > what I mean by "acceptable usage". > > > > When keyring is producing encrypted key, the trusted key be used to > derive the encrypt key and authenticate key to encrypt and hmac sign > a encrypted key. So trusted key can be used in symmetric crypto. Can it? David, you actually understand the overall kernel keyring design. Do keys in the keyring have usage constraints? But I think you need to take a big step back here. We already have kernel/power/user.c. It seems to me that you can do a better job of what you're trying to do with less code by using it. Why do you need new kernel code *at all* to accomplish your goals?
On Wed, Jan 09, 2019 at 05:47:53PM +0100, Stephan Mueller wrote: > Am Mittwoch, 9. Januar 2019, 17:39:58 CET schrieb joeyli: > > Hi joeyli, > > > > > I am doing encrypt-then-MAC. > > Note, this is what the authenc() AEAD cipher does. > OK.. Thanks for your reminding. I will look at it. Joey Lee
On Thu, Jan 10, 2019 at 05:09:46PM -0800, Andy Lutomirski wrote: > On Thu, Jan 10, 2019 at 7:13 AM joeyli <jlee@suse.com> wrote: > > > > On Wed, Jan 09, 2019 at 10:47:42AM -0800, Andy Lutomirski wrote: > > > On Wed, Jan 9, 2019 at 8:40 AM joeyli <jlee@suse.com> wrote: > > > > > > > > Hi Andy, > > > > > > > > Thanks for your review! > > > > > > > > On Tue, Jan 08, 2019 at 01:41:48PM -0800, Andy Lutomirski wrote: > > > > > > On Jan 7, 2019, at 9:37 AM, joeyli <jlee@suse.com> wrote: > > > > > > > > > > > > Hi Pavel, > > > > > > > > > > > > Thanks for your review! > > > > > > > > > > > >> On Sun, Jan 06, 2019 at 07:10:27PM +0100, Pavel Machek wrote: > > > > > >> Hi! > > > > > >> > > > > > >>> This patchset is the implementation of encryption and authentication > > > > > >>> for hibernate snapshot image. The image will be encrypted by AES and > > > > > >>> authenticated by HMAC. > > > > > >> > > > > > >> Ok, so you encrypt. > > > > > > > > > > > > Yes, encryption and authentication. > > > > > > > > > > > >>> The hibernate function can be used to snapshot memory pages to an image, > > > > > >>> then kernel restores the image to memory space in a appropriate time. > > > > > >>> There have secrets in snapshot image and cracker may modifies it for > > > > > >>> hacking system. Encryption and authentication of snapshot image can protect > > > > > >>> the system. > > > > > >>> > > > > > >>> Hibernate function requests the master key through key retention service. > > > > > >>> The snapshot master key can be a trusted key or a user defined key. The > > > > > >>> name of snapshot master key is fixed to "swsusp-kmk". User should loads > > > > > >>> swsusp-kmk to kernel by keyctl tool before the hibernation resume. > > > > > >>> e.g. The swsusp-kmk must be loaded before systemd-hibernate-resume > > > > > >> > > > > > >> But if userspace has a key, encryption is useless against root. > > > > > > > > > > > > Yes, but this concern is not only for hibernation encryption. This patch > > > > > > set does not provide solution against this concern. > > > > > > > > > > > > The purpose of this patch set is to encrypt and authenticate hibernate > > > > > > snapshot image in kernel space. It also requests key through keyring > > > > > > mechanism. Which means that we can easy to adapt to new key type from > > > > > > keyring in the future. > > > > > > > > > > > > Currently TPM trusted key or user defined key types are not against > > > > > > root. Even using the TPM trusted key, it still can be unsealed by root > > > > > > before the PCRs be capped (unless we capped PCRs in kernel). > > > > > > > > > > > > My solution for keeping the secret by kernel is the EFI secure key type: > > > > > > https://lkml.org/lkml/2018/8/5/31 > > > > > > > > > > > > But the EFI boot variable doesn't design for keeping secret, so Windows > > > > > > and OEM/ODM do not use boot variable to keep secret. So this idea can > > > > > > not be accepted. We must think other key type against root. > > > > > > > > > > > >>> The TPM trusted key type is preferred to be the master key. But user > > > > > >>> defined key can also be used for testing or when the platform doesn't > > > > > >>> have TPM. User must be aware that the security of user key relies on > > > > > >>> user space. If the root account be compromised, then the user key will > > > > > >>> easy to be grabbed. > > > > > >> > > > > > >> In the TPM case, does userland have access to the key? > > > > > > > > > > > > In the TPM case, userland can only touch the sealed key blob. So userland > > > > > > doesn't know the real secret. But it has risk that root unseals the key > > > > > > before PCRs be capped. > > > > > > > > > > > >> Please explain your security goals. > > > > > > > > > > > > My security goals: > > > > > > > > > > > > - Encrypt and authicate hibernate snapshot image in kernel space. Userspace > > > > > > can only touch an encrypted and signed snapshot image. > > > > > > > > > > Signed? > > > > > > > > > > I’m not entirely convinced that the keyring mechanism is what you > > > > > want. ISTM that there are two goals here: > > > > > > > > > > a) Encryption: it should be as hard as can reasonably be arranged to > > > > > extract secrets from a hibernation image. > > > > > > > > > > b) Authentication part 1: it should not be possible for someone in > > > > > possession of a turned-off machine to tamper with the hibernation > > > > > image such that the image, when booted, will leak its secrets. This > > > > > should protect against attackers who don’t know the encryption key. > > > > > > > > > > c) Authentication part 2: it should be to verify, to the extent > > > > > practical, that the image came from the same machine and was really > > > > > created using hibernation. Or maybe by the same user. > > > > > > > > > > For (a) and (b), using an AE mode where the key is protected in some > > > > > reasonable way. Joey, why are you using HMAC? Please tell me you’re > > > > > at least doing encrypt-then-MAC. But why not use a real AE mode like > > > > > AES-GCM? > > > > > > > > The reason for using HMAC is the history for development. My first patch > > > > set is only for hibernate authentication. Then I added encryption code on > > > > top of my authentication patches in last version. > > > > > > > > I am doing encrypt-then-MAC. My code ecrypts each page by AES then HMAC > > > > whole snapshot image. I feed encrypted data pages one by one to > > > > crypto_shash_update() API for calculating the hash for whole image. > > > > > > ... > > > > > > I think you should write down a clear description of the data format. > > > > Hibernation allocates free pages for building snapshot image. Those free > > pages are scattered in memory. So kernel marks those page numbers on a > > bitmap to locate them. Because this image buffer is discontinuous, so I > > use update mode hashing whole image. > > > > > A general problem with crypto is that the fact that it appears to work > > > doesn't mean it's secure at all, and it's very hard to follow the > > > code. Especially in Linux using the crypto API -- code using the > > > crypto API tends to be mostly boilerplate. > > > > > > > hm... Do you mean that the implementation of HMAC in crypto cannot be > > trusted? I hope at least that I can trust the update mode for normal > > hash like SHA256 or SHA512? > > No, I fully expect the crypto code to do what it says. What I mean is > that you can easily create utterly broken things that involve crypto, > but they still work fine when you use then non-maliciously. > OK, I see! I will review my code with crypto to make sure that I didn't create broken things. > > > > > > > > Sorry for I didn't capture the meaning of "acceptable usage". The trusted > > > > key already be unsealed by TPM when the key be enrolled by keyctl tool. > > > > So my code just extract the unsealed key data (the random number) for > > > > encryption. > > > > > > If someone creates a trusted key that is used for asymmetric crypto or > > > perhaps a trusted key that is intended to be used for, say, an HMAC > > > key, you should not also use it to derive hibernation keys. This is > > > what I mean by "acceptable usage". > > > > > > > When keyring is producing encrypted key, the trusted key be used to > > derive the encrypt key and authenticate key to encrypt and hmac sign > > a encrypted key. So trusted key can be used in symmetric crypto. > > Can it? > > David, you actually understand the overall kernel keyring design. Do > keys in the keyring have usage constraints? > > But I think you need to take a big step back here. We already have > kernel/power/user.c. It seems to me that you can do a better job of > what you're trying to do with less code by using it. Why do you need > new kernel code *at all* to accomplish your goals? I still very think for you, Stephan, Pavel and all kernel experts' review to my code. I will follow your suggestions to rewrite my solution. I thought that the userland hibernation is not enough against a compromised root. My original target of hibernation encryption and authentication is for kernel lockdown mode. I hope that kernel can produce encrypted/signed snapshot image. So I developed EFI secure key and hibernation encryption. Becasue my original solution relates two areas, EFI and hibernation. So I separated them and sent them to kernel upsteam for review. The EFI seucre key is not accepted so I moved to use TPM trusted key. I thought that the final problem is still how to deal with TPM against a compromised root. Thanks a lot! Joey Lee
Hi, This patchset is the implementation of encryption and authentication for hibernate snapshot image. The image will be encrypted by AES and authenticated by HMAC. The hibernate function can be used to snapshot memory pages to an image, then kernel restores the image to memory space in a appropriate time. There have secrets in snapshot image and cracker may modifies it for hacking system. Encryption and authentication of snapshot image can protect the system. Hibernate function requests the master key through key retention service. The snapshot master key can be a trusted key or a user defined key. The name of snapshot master key is fixed to "swsusp-kmk". User should loads swsusp-kmk to kernel by keyctl tool before the hibernation resume. e.g. The swsusp-kmk must be loaded before systemd-hibernate-resume The TPM trusted key type is preferred to be the master key. But user defined key can also be used for testing or when the platform doesn't have TPM. User must be aware that the security of user key relies on user space. If the root account be compromised, then the user key will easy to be grabbed. v2: - Fixed bug of trusted_key_init's return value. - Fixed wording in Kconfig - Removed VLA usage - Removed the checking of capability for writing disk_kmk. - Fixed Kconfig, select trusted key. - Add memory barrier before setting key initialized flag. - Add memory barrier after cleaning key initialized flag. Cc: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com> Cc: Pavel Machek <pavel@ucw.cz> Cc: Chen Yu <yu.c.chen@intel.com> Cc: Oliver Neukum <oneukum@suse.com> Cc: Ryan Chen <yu.chen.surf@gmail.com> Cc: David Howells <dhowells@redhat.com> Cc: Giovanni Gherdovich <ggherdovich@suse.cz> Cc: Randy Dunlap <rdunlap@infradead.org> Cc: Jann Horn <jannh@google.com> Cc: Andy Lutomirski <luto@kernel.org> Signed-off-by: "Lee, Chun-Yi" <jlee@suse.com> Lee, Chun-Yi (5): PM / hibernate: Create snapshot keys handler PM / hibernate: Generate and verify signature for snapshot image PM / hibernate: Encrypt snapshot image PM / hibernate: Erase the snapshot master key in snapshot pages PM / hibernate: An option to request that snapshot image must be authenticated Documentation/admin-guide/kernel-parameters.txt | 6 + include/linux/kernel.h | 3 +- kernel/panic.c | 1 + kernel/power/Kconfig | 25 + kernel/power/Makefile | 1 + kernel/power/hibernate.c | 59 ++- kernel/power/power.h | 59 +++ kernel/power/snapshot.c | 576 +++++++++++++++++++++++- kernel/power/snapshot_key.c | 312 +++++++++++++ kernel/power/swap.c | 6 + kernel/power/user.c | 12 + 11 files changed, 1042 insertions(+), 18 deletions(-) create mode 100644 kernel/power/snapshot_key.c