James Bottomley <james.bottom...@hansenpartnership.com> wrote: > As a step by step process, I agree. However, I think we can automate > it to the point where you install a package and it says "insert your > yubikey" every time you upgrade the kernel
That's a very bad idea. You train people to unlock their private key on request. It can be abused like one of those emails that tells you that your account has been suspended - just follow the link and put in your password please. Further, you expose the unlocked key on a machine that might be compromised. > Mehmet's patches don't require building a new kernel. They merely > require the added key be linked into the Red Hat built bzImage and then > the resulting blob be signed. You can still identify that the original > bzImage is the Red Hat one. No, you can't. You might *think* that it is, but the signature you're checking is after the image has being fiddled with by the key-adder - and that means there's a window in which someone else can fiddle with the image too. Mehmet's patches make sense from the reproducible kernel build PoV, but don't actually help with the security so much since they're replacing, say, a RH generated key with one you've generated locally, likely on the box that you don't necessarily trust. The bootloader would need to check the kernel image with the keys and the image with the keys stripped off. And if you're doing that, it doesn't make sense to modify the kernel image, but rather load the keys separately, possibly by an initrd=-like option on the bootloader or in your initrd. > > That's the problem is right there. AIUI, we *don't* want to set up a > > third party signing process. As I said, it potentially comes with lawyers > > attached. > > Right so generate a business pressure to overcome the legal one. No. We *really* don't want to do this, and the legal reasons are minor ones like people suing us for GPL infringement[*] or because we said no. The primary reason is that we aren't willing to just rubber stamp any old kernel module. The signature is, in effect, a certification. We'd be putting our name to something and we would want to be absolutely sure we know what it does, review all the sources and have thoroughly tested it internally - and we'd have to be willing to support it to some extent. That takes a lot of resources - and also requires the module vendor to be willing to open up their sources to us. We also don't want to sign the keys of third party vendors because then we give away a certain degree of control over whatever they do with that, though we would have the option of blacklisting it - after the fact. [*] I've had people demand the transient private keys for Fedora kernels under the GPL. They didn't seem to like the answer that I couldn't give them those keys because no one had them anymore; they seemed to think that this in some way violated their rights under the GPL. David