Am 14.03.2013 13:24, schrieb David Woodhouse:
The x509_key_preparse() function will refuse to even *parse* a certificate when the system clock happens to be set to a time before the ValidFrom or after the ValidTo date. This is wrong. If date checks are to be done, they need to be done at the time the cert is *used*. It should be perfectly possible to load a cert which is post-dated, and can only be used for validation at some point in the future. The key in question should immediately start working at its ValidFrom date, and stop again at its ValidTo date. It should be allowed to *exist* in the kernel both before and after those times. On systems where the hardware clock is inaccurate (a common occurrence and one which doesn't even get noticed when you use NTP or something else to fix it during the boot sequence), this was preventing the module signing cert from being loaded during boot. When the clock got fixed later on in he boot sequence, things *should* have started working. But they didn't... Signed-off-by: David Woodhouse <David.Woodhouse@xxxxxxxxx> --- Arguably, for the specific case of module signing we shouldn't bother checking for a current time before the ValidFrom date *at all*. It's *always* going to be a screwed up system clock, because we don't have a usage model of post-dating module signatures. We should simply document that the date is *not* checked for module signing, and have done with it. But that's a separate issue. diff --git a/crypto/asymmetric_keys/x509_public_key.c b/crypto/asymmetric_keys/x509_public_key.c index 06007f0..326dc80 100644 --- a/crypto/asymmetric_keys/x509_public_key.c +++ b/crypto/asymmetric_keys/x509_public_key.c @@ -154,8 +154,6 @@ static int x509_key_preparse(struct key_preparsed_payload *prep) (now.tm_sec < cert->valid_from.tm_sec ))))))))))) { pr_warn("Cert %s is not yet valid\n", cert->fingerprint); - ret = -EKEYREJECTED; - goto error_free_cert; } if (now.tm_year > cert->valid_to.tm_year || (now.tm_year == cert->valid_to.tm_year && @@ -170,8 +168,6 @@ static int x509_key_preparse(struct key_preparsed_payload *prep) (now.tm_sec > cert->valid_to.tm_sec ))))))))))) { pr_warn("Cert %s has expired\n", cert->fingerprint); - ret = -EKEYEXPIRED; - goto error_free_cert; } cert->pub->algo = x509_public_key_algorithms[cert->pkey_algo];
Why not remove the check and warning there too? Regards, Alexander -- To unsubscribe from this list: send the line "unsubscribe linux-crypto" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html