From: Kay Sievers Date: Wed, 9 Oct 2013 23:38:11 +0000 (+0200) Subject: do not accept "garbage" from acpi firmware performance data (FPDT) X-Git-Tag: v209~1950 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=6c7980093c4e39d07bf06484f96f489e236c7c29;hp=8552b17660033812080a11533bd0edce74401039;p=elogind.git do not accept "garbage" from acpi firmware performance data (FPDT) 00000000 46 42 50 54 38 00 00 00 02 00 30 02 00 00 00 00 |FBPT8.....0.....| 00000010 23 45 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |#E..............| 00000020 f5 6a 51 00 00 00 00 00 00 00 00 00 00 00 00 00 |.jQ.............| 00000030 00 00 00 00 00 00 00 00 70 74 61 6c 58 00 00 00 |........ptalX...| --- diff --git a/src/shared/acpi-fpdt.c b/src/shared/acpi-fpdt.c index af58c7cca..75648b4d8 100644 --- a/src/shared/acpi-fpdt.c +++ b/src/shared/acpi-fpdt.c @@ -146,6 +146,11 @@ int acpi_get_boot_usec(usec_t *loader_start, usec_t *loader_exit) { if (brec.type != ACPI_FPDT_BOOT_REC) return -EINVAL; + if (brec.startup_start == 0 || brec.exit_services_exit < brec.startup_start) + return -EINVAL; + if (brec.exit_services_exit > NSEC_PER_HOUR) + return -EINVAL; + if (loader_start) *loader_start = brec.startup_start / 1000; if (loader_exit)