diff options
author | Roman Smirnov <r.smirnov@omp.ru> | 2024-03-27 16:27:55 +0300 |
---|---|---|
committer | Jan Kara <jack@suse.cz> | 2024-04-10 14:10:12 +0300 |
commit | 3b84adf460381169c085e4bc09e7b57e9e16db0a (patch) | |
tree | 55a1b62160e32e17cb33f76096015ef09cdb9679 /fs/udf | |
parent | 3e90417f41f41a7d4a6d5ee0ca216698e9ab4381 (diff) | |
download | linux-3b84adf460381169c085e4bc09e7b57e9e16db0a.tar.xz |
udf: udftime: prevent overflow in udf_disk_stamp_to_time()
An overflow can occur in a situation where src.centiseconds
takes the value of 255. This situation is unlikely, but there
is no validation check anywere in the code.
Found by Linux Verification Center (linuxtesting.org) with Svace.
Suggested-by: Jan Kara <jack@suse.cz>
Signed-off-by: Roman Smirnov <r.smirnov@omp.ru>
Reviewed-by: Sergey Shtylyov <s.shtylyov@omp.ru>
Signed-off-by: Jan Kara <jack@suse.cz>
Message-Id: <20240327132755.13945-1-r.smirnov@omp.ru>
Diffstat (limited to 'fs/udf')
-rw-r--r-- | fs/udf/udftime.c | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/fs/udf/udftime.c b/fs/udf/udftime.c index 758163af39c2..78ecc633606f 100644 --- a/fs/udf/udftime.c +++ b/fs/udf/udftime.c @@ -46,13 +46,18 @@ udf_disk_stamp_to_time(struct timespec64 *dest, struct timestamp src) dest->tv_sec = mktime64(year, src.month, src.day, src.hour, src.minute, src.second); dest->tv_sec -= offset * 60; - dest->tv_nsec = 1000 * (src.centiseconds * 10000 + - src.hundredsOfMicroseconds * 100 + src.microseconds); + /* * Sanitize nanosecond field since reportedly some filesystems are * recorded with bogus sub-second values. */ - dest->tv_nsec %= NSEC_PER_SEC; + if (src.centiseconds < 100 && src.hundredsOfMicroseconds < 100 && + src.microseconds < 100) { + dest->tv_nsec = 1000 * (src.centiseconds * 10000 + + src.hundredsOfMicroseconds * 100 + src.microseconds); + } else { + dest->tv_nsec = 0; + } } void |