diff --git a/X.509-Fix-the-time-validation-ver-3.patch b/X.509-Fix-the-time-validation-ver-3.patch new file mode 100644 index 0000000..40c50c9 --- /dev/null +++ b/X.509-Fix-the-time-validation-ver-3.patch @@ -0,0 +1,85 @@ +From 7db4b65eb11683e19ecb607501fa96a8cfac835f Mon Sep 17 00:00:00 2001 +From: David Howells +Date: Thu, 12 Nov 2015 11:38:40 +0000 +Subject: [PATCH] X.509: Fix the time validation [ver #3] + +This fixes CVE-2015-5327. It affects kernels from 4.3-rc1 onwards. + +Fix the X.509 time validation to use month number-1 when looking up the +number of days in that month. Also put the month number validation before +doing the lookup so as not to risk overrunning the array. + +This can be tested by doing the following: + +cat < +Signed-off-by: David Howells +Tested-by: Mimi Zohar +Acked-by: David Woodhouse +--- + crypto/asymmetric_keys/x509_cert_parser.c | 12 +++++++----- + 1 file changed, 7 insertions(+), 5 deletions(-) + +diff --git a/crypto/asymmetric_keys/x509_cert_parser.c b/crypto/asymmetric_keys/x509_cert_parser.c +index 3000ea3b6687..021d39c0ba75 100644 +--- a/crypto/asymmetric_keys/x509_cert_parser.c ++++ b/crypto/asymmetric_keys/x509_cert_parser.c +@@ -531,7 +531,11 @@ int x509_decode_time(time64_t *_t, size_t hdrlen, + if (*p != 'Z') + goto unsupported_time; + +- mon_len = month_lengths[mon]; ++ if (year < 1970 || ++ mon < 1 || mon > 12) ++ goto invalid_time; ++ ++ mon_len = month_lengths[mon - 1]; + if (mon == 2) { + if (year % 4 == 0) { + mon_len = 29; +@@ -543,14 +547,12 @@ int x509_decode_time(time64_t *_t, size_t hdrlen, + } + } + +- if (year < 1970 || +- mon < 1 || mon > 12 || +- day < 1 || day > mon_len || ++ if (day < 1 || day > mon_len || + hour > 23 || + min > 59 || + sec > 59) + goto invalid_time; +- ++ + *_t = mktime64(year, mon, day, hour, min, sec); + return 0; + +-- +2.4.3 + diff --git a/kernel.spec b/kernel.spec index 9719c34..99729cf 100644 --- a/kernel.spec +++ b/kernel.spec @@ -600,6 +600,9 @@ Patch552: megaraid_sas-Do-not-use-PAGE_SIZE-for-max_sectors.patch #rhbz 1275490 Patch553: ideapad-laptop-Add-Lenovo-Yoga-900-to-no_hw_rfkill-d.patch +#CVE-2015-5327 +Patch554: X.509-Fix-the-time-validation-ver-3.patch + # END OF PATCH DEFINITIONS %endif @@ -2043,6 +2046,9 @@ fi # # %changelog +* Thu Nov 12 2015 Josh Boyer +- CVE-2015-5327 x509 time validation + * Wed Nov 11 2015 Laura Abbott - 4.4.0-0.rc0.git7.2 - Drop CONFIG_DRM_DW_HDMI_AHB_AUDIO for now