lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Date:   Tue, 25 Apr 2017 12:39:20 -0700
From:   Dan Williams <dan.j.williams@...el.com>
To:     rafael.j.wysocki@...el.com
Cc:     Anush Seetharaman <anush.seetharaman@...el.com>,
        Tiffany Kasanicky <tiffany.j.kasanicky@...el.com>,
        Ryon Jensen <ryon.jensen@...el.com>,
        linux-kernel@...r.kernel.org, stable@...r.kernel.org,
        linux-acpi@...r.kernel.org,
        Kristin Jacque <kristin.jacque@...el.com>,
        Zhang Rui <rui.zhang@...el.com>
Subject: [PATCH] acpi: fix acpi_get_table() leak / acpi-sysfs denial of
 service

Reading an ACPI table through the /sys/firmware/acpi/tables interface
more than 65,536 times leads to the following log message:

 ACPI Error: Table ffff88033595eaa8, Validation count is zero after increment
  (20170119/tbutils-423)

...and the table being unavailable until the next reboot. Add the
missing acpi_put_table() so the table ->validation_count is decremented
after each read.

Cc: <stable@...r.kernel.org>
Cc: Zhang Rui <rui.zhang@...el.com>
Cc: Rafael Wysocki <rafael.j.wysocki@...el.com>
Cc: Kristin Jacque <kristin.jacque@...el.com>
Cc: Tiffany Kasanicky <tiffany.j.kasanicky@...el.com>
Cc: Ryon Jensen <ryon.jensen@...el.com>
Reported-by: Anush Seetharaman <anush.seetharaman@...el.com>
Fixes: 1c8fce27e275 ("ACPI: introduce drivers/acpi/sysfs.c")
Signed-off-by: Dan Williams <dan.j.williams@...el.com>
---
 drivers/acpi/sysfs.c |    7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/drivers/acpi/sysfs.c b/drivers/acpi/sysfs.c
index cf05ae973381..531ddabf0390 100644
--- a/drivers/acpi/sysfs.c
+++ b/drivers/acpi/sysfs.c
@@ -333,14 +333,17 @@ static ssize_t acpi_table_show(struct file *filp, struct kobject *kobj,
 	    container_of(bin_attr, struct acpi_table_attr, attr);
 	struct acpi_table_header *table_header = NULL;
 	acpi_status status;
+	ssize_t rc;
 
 	status = acpi_get_table(table_attr->name, table_attr->instance,
 				&table_header);
 	if (ACPI_FAILURE(status))
 		return -ENODEV;
 
-	return memory_read_from_buffer(buf, count, &offset,
-				       table_header, table_header->length);
+	rc = memory_read_from_buffer(buf, count, &offset, table_header,
+			table_header->length);
+	acpi_put_table(table);
+	return rc;
 }
 
 static int acpi_table_attr_init(struct kobject *tables_obj,

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ