diff options
author | Thomas Renninger <trenn@suse.de> | 2011-05-26 06:26:24 -0400 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2011-05-29 01:50:40 -0400 |
commit | 526b4af47f44148c9d665e57723ed9f86634c6e3 (patch) | |
tree | 7906a3b45703aa730d5e7ebadc36a55aee5417ca /drivers/acpi/debugfs.c | |
parent | aecad432fd68dafa5b3b497c4816fbfce6fd4066 (diff) |
ACPI: Split out custom_method functionality into an own driver
With /sys/kernel/debug/acpi/custom_method root can write
to arbitrary memory and increase his priveleges, even if
these are restricted.
-> Make this an own debug .config option and warn about the
security issue in the config description.
-> Still keep acpi/debugfs.c which now only creates an empty
/sys/kernel/debug/acpi directory. There might be other
users of it later.
Signed-off-by: Thomas Renninger <trenn@suse.de>
Acked-by: Rafael J. Wysocki <rjw@sisk.pl>
Acked-by: rui.zhang@intel.com
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi/debugfs.c')
-rw-r--r-- | drivers/acpi/debugfs.c | 80 |
1 files changed, 1 insertions, 79 deletions
diff --git a/drivers/acpi/debugfs.c b/drivers/acpi/debugfs.c index e7abc6e3bba0..182a9fc36355 100644 --- a/drivers/acpi/debugfs.c +++ b/drivers/acpi/debugfs.c | |||
@@ -3,9 +3,6 @@ | |||
3 | */ | 3 | */ |
4 | 4 | ||
5 | #include <linux/init.h> | 5 | #include <linux/init.h> |
6 | #include <linux/module.h> | ||
7 | #include <linux/kernel.h> | ||
8 | #include <linux/uaccess.h> | ||
9 | #include <linux/debugfs.h> | 6 | #include <linux/debugfs.h> |
10 | #include <acpi/acpi_drivers.h> | 7 | #include <acpi/acpi_drivers.h> |
11 | 8 | ||
@@ -13,84 +10,9 @@ | |||
13 | ACPI_MODULE_NAME("debugfs"); | 10 | ACPI_MODULE_NAME("debugfs"); |
14 | 11 | ||
15 | struct dentry *acpi_debugfs_dir; | 12 | struct dentry *acpi_debugfs_dir; |
16 | static struct dentry *cm_dentry; | 13 | EXPORT_SYMBOL_GPL(acpi_debugfs_dir); |
17 | |||
18 | /* /sys/kernel/debug/acpi/custom_method */ | ||
19 | |||
20 | static ssize_t cm_write(struct file *file, const char __user * user_buf, | ||
21 | size_t count, loff_t *ppos) | ||
22 | { | ||
23 | static char *buf; | ||
24 | static u32 max_size; | ||
25 | static u32 uncopied_bytes; | ||
26 | |||
27 | struct acpi_table_header table; | ||
28 | acpi_status status; | ||
29 | |||
30 | if (!(*ppos)) { | ||
31 | /* parse the table header to get the table length */ | ||
32 | if (count <= sizeof(struct acpi_table_header)) | ||
33 | return -EINVAL; | ||
34 | if (copy_from_user(&table, user_buf, | ||
35 | sizeof(struct acpi_table_header))) | ||
36 | return -EFAULT; | ||
37 | uncopied_bytes = max_size = table.length; | ||
38 | buf = kzalloc(max_size, GFP_KERNEL); | ||
39 | if (!buf) | ||
40 | return -ENOMEM; | ||
41 | } | ||
42 | |||
43 | if (buf == NULL) | ||
44 | return -EINVAL; | ||
45 | |||
46 | if ((*ppos > max_size) || | ||
47 | (*ppos + count > max_size) || | ||
48 | (*ppos + count < count) || | ||
49 | (count > uncopied_bytes)) | ||
50 | return -EINVAL; | ||
51 | |||
52 | if (copy_from_user(buf + (*ppos), user_buf, count)) { | ||
53 | kfree(buf); | ||
54 | buf = NULL; | ||
55 | return -EFAULT; | ||
56 | } | ||
57 | |||
58 | uncopied_bytes -= count; | ||
59 | *ppos += count; | ||
60 | |||
61 | if (!uncopied_bytes) { | ||
62 | status = acpi_install_method(buf); | ||
63 | kfree(buf); | ||
64 | buf = NULL; | ||
65 | if (ACPI_FAILURE(status)) | ||
66 | return -EINVAL; | ||
67 | add_taint(TAINT_OVERRIDDEN_ACPI_TABLE); | ||
68 | } | ||
69 | |||
70 | return count; | ||
71 | } | ||
72 | |||
73 | static const struct file_operations cm_fops = { | ||
74 | .write = cm_write, | ||
75 | .llseek = default_llseek, | ||
76 | }; | ||
77 | |||
78 | static int __init acpi_custom_method_init(void) | ||
79 | { | ||
80 | if (!acpi_debugfs_dir) | ||
81 | return -ENOENT; | ||
82 | |||
83 | cm_dentry = debugfs_create_file("custom_method", S_IWUSR, | ||
84 | acpi_debugfs_dir, NULL, &cm_fops); | ||
85 | if (!cm_dentry) | ||
86 | return -ENODEV; | ||
87 | |||
88 | return 0; | ||
89 | } | ||
90 | 14 | ||
91 | void __init acpi_debugfs_init(void) | 15 | void __init acpi_debugfs_init(void) |
92 | { | 16 | { |
93 | acpi_debugfs_dir = debugfs_create_dir("acpi", NULL); | 17 | acpi_debugfs_dir = debugfs_create_dir("acpi", NULL); |
94 | |||
95 | acpi_custom_method_init(); | ||
96 | } | 18 | } |