this post was submitted on 25 Dec 2023
89 points (97.8% liked)

Linux

48072 readers
1 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 6 years ago
MODERATORS
 

I'm curious about the possible uses of the hardware Trusted Protection Module for automatic login or transfer encryption. I'm not really looking to solve anything or pry. I'm just curious about the use cases as I'm exploring network attached storage and to a lesser extent self hosting. I see a lot of places where public private keys are generated and wonder why I don't see people mention generating the public key from TPM where the private key is never accessible at all.

all 23 comments
sorted by: hot top controversial new old
[–] savvywolf@pawb.social 34 points 2 years ago (2 children)

Personally, I don't see how a TPM module is more useful than full disk encryption with a password you enter on boot.

I struggle to see how it makes automatic login safer given it does nothing to protect against the really common threat of someone physically stealing your laptop or desktop.

I don't trust any encryption or authentication system that I don't have access to the keys for. Microsoft has also kinda made me feel it's more for vendor lock in, like they did with secure boot.

Still, I'm probably being unreasonably pessimistic about it though - be interested to see any practical use cases of it.

[–] baseless_discourse@mander.xyz 2 points 2 years ago* (last edited 2 years ago)

The key is only released into ram, so unless the thief can read content from ram they cannot easily decrypt your disk. And most common thief probably do not have that ability.

That being said, you do need a login password to prevent the thief straight up booting into your OS and copy everything using the file manager...

One of the advantage of using TPM with FDE, is that you can use a much longer random password. If I dont use TPM I am forced to use a password I can remember, which is likely the same password I use somewhere else. This means if someone close to me stole my laptop, they will have reasonable chance of guessing my password.

[–] monk@lemmy.unboiled.info -1 points 2 years ago* (last edited 2 years ago) (1 children)

You can use insecure boot and not enter the password. It can't make stuff meaningfully more secure though, it just plain doesn't add any protection against evil maid.

[–] Static_Rocket@lemmy.world 11 points 2 years ago

I use it for Data-at-rest Encryption. Not much else though.

[–] ArbiterXero@lemmy.world 8 points 2 years ago (1 children)

The problem with this is that the key would be “machine based” and not “person”

So it’s better for “service accounts”

[–] NekkoDroid@programming.dev 4 points 2 years ago* (last edited 2 years ago)

Having read poetterings blog posts a bit and he explains that the TPM2 based encryption is entirely just for system resources (basically everything under / with exception of /home). For home he still "envisions" (its already possible and not really hard with sd-homed) that the encryption is based on the users passphrase/key/whatever and not unlockable by anyone else than the users passphrase/...

So user specific stuff is tied to user keys while system stuff is tied to the system & OS.
If you wanna read the post: https://0pointer.net/blog/fitting-everything-together.html

[–] barkdoor 8 points 2 years ago

100% Yes

  • Currently using systemd-creds to displace any secrets in env

  • Spending time getting to grips with Keylime

[–] library_napper@monyet.cc 7 points 2 years ago

Usually because its not portable. A USB security key costs more than the TPM you already have, but you can make a backup and store it in a safe

[–] richardisaguy@lemmy.world 5 points 2 years ago (1 children)

I use it for storing luks credentials, so every time I boot I get dropped at my login manager. It leaves my system vunerable to attacks to it, but its quite convenient.

Besides, if anyone tries to boot any other OS which is not mine, the keys are erased.

[–] baseless_discourse@mander.xyz 1 points 2 years ago (1 children)

Can you explain a bit on how the key erasure works? AFAIK TPM only refuse to release the key when certain PCR dont match, is there a setting to let it erase key?

[–] richardisaguy@lemmy.world 1 points 2 years ago (1 children)

https://fedoramagazine.org/automatically-decrypt-your-disk-using-tpm2/

I've read this article to make my setup, but its very informative about the function of TPM too

[–] baseless_discourse@mander.xyz 1 points 2 years ago (1 children)

I have read that article, it doesn't seem to mention that TPM will erase key if a different OS is loaded, maybe I missed something?

[–] richardisaguy@lemmy.world 1 points 2 years ago

It talsk about pcr, every time another OS is booted some pcsrs are changed, and if the keys are installed on the correct ones, this will lead to it being erased

[–] gregorum@lemm.ee 2 points 2 years ago (1 children)

Outside of Microsoft and Windows, what’s the application for it? Does Linux or UNIX have much use for TPM? Pardon, my ignorance, but I bet this is a good place to ask!

[–] Kidplayer_666@lemm.ee 0 points 2 years ago (1 children)

Hardware accelerated disk encryption if I’m not mistaken

[–] astray@lemm.ee 2 points 2 years ago

A security module or a key fob/smart card processes the key internally using its own dedicated ram and cpu without any debugging support. This way, even something will full ram and cpu access or a compromise of your machine, there is no way to export or access the key. Data is passed to the module and it returns the scrambled or unscrambled result based on the key which no body knows or has ever seen. A key locked with no way to access can’t be hacked without physically stealing the module, which is where your pin comes in to save you. The TPM is a very important part of a secure boot chain. If you want to secure other things I wouldn’t blame you for using a separate module or fob that isn’t always connected util it’s actually needed and it should only be activated with a physical button or something so you have to be present to engage with it. This adds even more security. So you could use the TPM for boot chain security and a separate fob or data privacy for example.

[–] Discover5164@lemm.ee 0 points 2 years ago

i use it to auto unlock luks. if someone messed with the hardware/ bios, it will ask for the password next boot.