X.509: Support leap seconds
authorDavid Howells <dhowells@redhat.com>
Wed, 24 Feb 2016 14:37:53 +0000 (14:37 +0000)
committerDavid Howells <dhowells@redhat.com>
Mon, 29 Feb 2016 14:29:40 +0000 (14:29 +0000)
commitda02559c9f864c8d62f524c1e0b64173711a16ab
tree342f1be223e4aec80aa82b29400f7d59a29e05e0
parentede5147d515694e012cd958ec874b9daf8a65fec
X.509: Support leap seconds

The format of ASN.1 GeneralizedTime seems to be specified by ISO 8601
[X.680 46.3] and this apparently supports leap seconds (ie. the seconds
field is 60).  It's not entirely clear that ASN.1 expects it, but we can
relax the seconds check slightly for GeneralizedTime.

This results in us passing a time with sec as 60 to mktime64(), which
handles it as being a duplicate of the 0th second of the next minute.

We can't really do otherwise without giving the kernel much greater
knowledge of where all the leap seconds are.  Unfortunately, this would
require change the mapping of the kernel's current-time-in-seconds.

UTCTime, however, only supports a seconds value in the range 00-59, but for
the sake of simplicity allow this with UTCTime also.

Without this patch, certain X.509 certificates will be rejected,
potentially making a kernel unbootable.

Reported-by: Rudolf Polzer <rpolzer@google.com>
Signed-off-by: David Howells <dhowells@redhat.com>
Acked-by: Arnd Bergmann <arnd@arndb.de>
cc: David Woodhouse <David.Woodhouse@intel.com>
cc: John Stultz <john.stultz@linaro.org>
crypto/asymmetric_keys/x509_cert_parser.c
This page took 0.024524 seconds and 5 git commands to generate.