Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 | // SPDX-License-Identifier: GPL-2.0 /* * Functions corresponding to SET password methods under BIOS attributes interface GUID * * Copyright (c) 2020 Dell Inc. */ #include <linux/wmi.h> #include "dell-wmi-sysman.h" static int call_password_interface(struct wmi_device *wdev, char *in_args, size_t size) { struct acpi_buffer output = {ACPI_ALLOCATE_BUFFER, NULL}; struct acpi_buffer input; union acpi_object *obj; acpi_status status; int ret = -EIO; input.length = (acpi_size) size; input.pointer = in_args; status = wmidev_evaluate_method(wdev, 0, 1, &input, &output); if (ACPI_FAILURE(status)) return -EIO; obj = (union acpi_object *)output.pointer; if (obj->type == ACPI_TYPE_INTEGER) ret = obj->integer.value; kfree(output.pointer); /* let userland know it may need to check is_password_set again */ kobject_uevent(&wmi_priv.class_dev->kobj, KOBJ_CHANGE); return map_wmi_error(ret); } /** * set_new_password() - Sets a system admin password * @password_type: The type of password to set * @new: The new password * * Sets the password using plaintext interface */ int set_new_password(const char *password_type, const char *new) { size_t password_type_size, current_password_size, new_size; size_t security_area_size, buffer_size; char *buffer = NULL, *start; char *current_password; int ret; mutex_lock(&wmi_priv.mutex); if (!wmi_priv.password_attr_wdev) { ret = -ENODEV; goto out; } if (strcmp(password_type, "Admin") == 0) { current_password = wmi_priv.current_admin_password; } else if (strcmp(password_type, "System") == 0) { current_password = wmi_priv.current_system_password; } else { ret = -EINVAL; dev_err(&wmi_priv.password_attr_wdev->dev, "unknown password type %s\n", password_type); goto out; } /* build/calculate buffer */ security_area_size = calculate_security_buffer(wmi_priv.current_admin_password); password_type_size = calculate_string_buffer(password_type); current_password_size = calculate_string_buffer(current_password); new_size = calculate_string_buffer(new); buffer_size = security_area_size + password_type_size + current_password_size + new_size; buffer = kzalloc(buffer_size, GFP_KERNEL); if (!buffer) { ret = -ENOMEM; goto out; } /* build security area */ populate_security_buffer(buffer, wmi_priv.current_admin_password); /* build variables to set */ start = buffer + security_area_size; ret = populate_string_buffer(start, password_type_size, password_type); if (ret < 0) goto out; start += ret; ret = populate_string_buffer(start, current_password_size, current_password); if (ret < 0) goto out; start += ret; ret = populate_string_buffer(start, new_size, new); if (ret < 0) goto out; print_hex_dump_bytes("set new password data: ", DUMP_PREFIX_NONE, buffer, buffer_size); ret = call_password_interface(wmi_priv.password_attr_wdev, buffer, buffer_size); /* on success copy the new password to current password */ if (!ret) strscpy(current_password, new, MAX_BUFF); /* explain to user the detailed failure reason */ else if (ret == -EOPNOTSUPP) dev_err(&wmi_priv.password_attr_wdev->dev, "admin password must be configured\n"); else if (ret == -EACCES) dev_err(&wmi_priv.password_attr_wdev->dev, "invalid password\n"); out: kfree(buffer); mutex_unlock(&wmi_priv.mutex); return ret; } static int bios_attr_pass_interface_probe(struct wmi_device *wdev, const void *context) { mutex_lock(&wmi_priv.mutex); wmi_priv.password_attr_wdev = wdev; mutex_unlock(&wmi_priv.mutex); return 0; } static void bios_attr_pass_interface_remove(struct wmi_device *wdev) { mutex_lock(&wmi_priv.mutex); wmi_priv.password_attr_wdev = NULL; mutex_unlock(&wmi_priv.mutex); } static const struct wmi_device_id bios_attr_pass_interface_id_table[] = { { .guid_string = DELL_WMI_BIOS_PASSWORD_INTERFACE_GUID }, { }, }; static struct wmi_driver bios_attr_pass_interface_driver = { .driver = { .name = DRIVER_NAME"-password" }, .probe = bios_attr_pass_interface_probe, .remove = bios_attr_pass_interface_remove, .id_table = bios_attr_pass_interface_id_table, }; int init_bios_attr_pass_interface(void) { return wmi_driver_register(&bios_attr_pass_interface_driver); } void exit_bios_attr_pass_interface(void) { wmi_driver_unregister(&bios_attr_pass_interface_driver); } MODULE_DEVICE_TABLE(wmi, bios_attr_pass_interface_id_table); |