On Mon, Jun 28, 2021 at 11:33 AM Stefan Berger <stefanb@xxxxxxxxxxxxx> wrote: > > The removal is triggered by the user changing the type of key from what > is in the keyfile. I understand. But if I earlier pointed the kernel config to one my RSA keys, and then I change some key type config option to something else, I sure as hell don't want to perhaps lose my key as a result. Yes, one common situation is that the key is some automatically generated one. That's what I use personally - I want a temporary key that is thrown away and never exists except for validating that "yup, I built these modules for this kernel". Removing that temporary key is fine. But if I pointed MODULE_SIG_KEY to something outside the kernel build, I sure as hell don't want the kernel build deleting it. Ever. In fact, it should never write to it. It should extract the key information from it, and nothing else. So no. No backups either. Because there is not a single valid situation where you'd want a backup - because the kernel build should never EVER modify the original. Maybe I misunderstand what is going on, but I think the whole thing is completely wrongly designed. The _only_ key that the kernel build should touchn is the auto-generated throw-away one (ie "certs/signing_key.pem"), not CONFIG_MODULE_SIG_KEY in general. Linus