summaryrefslogtreecommitdiffstats
path: root/src/lib
diff options
context:
space:
mode:
authorWerner Zeh <werner.zeh@siemens.com>2021-05-25 14:19:50 +0200
committerPatrick Georgi <pgeorgi@google.com>2021-05-30 20:24:13 +0000
commit1724b74f693812b48fa7e36e69174b271f3b5310 (patch)
tree378ae8901d1986efac1845283956220b941ae134 /src/lib
parent80d5a05cfd08936d5a5f2c44643358d388d84d63 (diff)
downloadcoreboot-1724b74f693812b48fa7e36e69174b271f3b5310.tar.gz
coreboot-1724b74f693812b48fa7e36e69174b271f3b5310.tar.bz2
coreboot-1724b74f693812b48fa7e36e69174b271f3b5310.zip
lib/rtc: Add sanity check for time and date
Add a function to check sanity of a given RTC date and time. Invalid values in terms of overrun ranges of the registers can lead to strange issues in the OS. Change-Id: I0a381d445c894eee4f82b50fe86dad22cc587605 Signed-off-by: Werner Zeh <werner.zeh@siemens.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/54913 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-by: Paul Menzel <paulepanter@mailbox.org>
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/rtc.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/lib/rtc.c b/src/lib/rtc.c
index c5fffa0e8b89..d15148024d89 100644
--- a/src/lib/rtc.c
+++ b/src/lib/rtc.c
@@ -121,3 +121,19 @@ void rtc_display(const struct rtc_time *tm)
(tm->wday < 0 || tm->wday > 6) ? "unknown " : weekdays[tm->wday],
tm->hour, tm->min, tm->sec);
}
+
+static int rtc_month_days(unsigned int month, unsigned int year)
+{
+ int month_days[12] = { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 };
+
+ return month_days[month] + (LEAP_YEAR(year) && month == 2);
+}
+
+int rtc_invalid(const struct rtc_time *tm)
+{
+ if (tm->sec > 59 || tm->min > 59 || tm->hour > 23 || tm->mon == 0 || tm->mon > 12 ||
+ tm->year < 1970 || tm->mday > rtc_month_days(tm->mon - 1, tm->year))
+ return 1;
+ else
+ return 0;
+}