Merge tag 'trace-v5.11-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt...
[linux/fpc-iii.git] / drivers / acpi / custom_method.c
blob7b54dc95d36b3171035ed6642d42c8605ce67869
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * custom_method.c - debugfs interface for customizing ACPI control method
4 */
6 #include <linux/init.h>
7 #include <linux/module.h>
8 #include <linux/kernel.h>
9 #include <linux/uaccess.h>
10 #include <linux/debugfs.h>
11 #include <linux/acpi.h>
12 #include <linux/security.h>
14 #include "internal.h"
16 MODULE_LICENSE("GPL");
18 static struct dentry *cm_dentry;
20 /* /sys/kernel/debug/acpi/custom_method */
22 static ssize_t cm_write(struct file *file, const char __user * user_buf,
23 size_t count, loff_t *ppos)
25 static char *buf;
26 static u32 max_size;
27 static u32 uncopied_bytes;
29 struct acpi_table_header table;
30 acpi_status status;
31 int ret;
33 ret = security_locked_down(LOCKDOWN_ACPI_TABLES);
34 if (ret)
35 return ret;
37 if (!(*ppos)) {
38 /* parse the table header to get the table length */
39 if (count <= sizeof(struct acpi_table_header))
40 return -EINVAL;
41 if (copy_from_user(&table, user_buf,
42 sizeof(struct acpi_table_header)))
43 return -EFAULT;
44 uncopied_bytes = max_size = table.length;
45 buf = kzalloc(max_size, GFP_KERNEL);
46 if (!buf)
47 return -ENOMEM;
50 if (buf == NULL)
51 return -EINVAL;
53 if ((*ppos > max_size) ||
54 (*ppos + count > max_size) ||
55 (*ppos + count < count) ||
56 (count > uncopied_bytes)) {
57 kfree(buf);
58 return -EINVAL;
61 if (copy_from_user(buf + (*ppos), user_buf, count)) {
62 kfree(buf);
63 buf = NULL;
64 return -EFAULT;
67 uncopied_bytes -= count;
68 *ppos += count;
70 if (!uncopied_bytes) {
71 status = acpi_install_method(buf);
72 kfree(buf);
73 buf = NULL;
74 if (ACPI_FAILURE(status))
75 return -EINVAL;
76 add_taint(TAINT_OVERRIDDEN_ACPI_TABLE, LOCKDEP_NOW_UNRELIABLE);
79 kfree(buf);
80 return count;
83 static const struct file_operations cm_fops = {
84 .write = cm_write,
85 .llseek = default_llseek,
88 static int __init acpi_custom_method_init(void)
90 cm_dentry = debugfs_create_file("custom_method", S_IWUSR,
91 acpi_debugfs_dir, NULL, &cm_fops);
92 return 0;
95 static void __exit acpi_custom_method_exit(void)
97 debugfs_remove(cm_dentry);
100 module_init(acpi_custom_method_init);
101 module_exit(acpi_custom_method_exit);