// SPDX-License-Identifier: GPL-2.0 /* * Functions corresponding to string type attributes under * HP_WMI_BIOS_STRING_GUID for use with hp-bioscfg driver. * * Copyright (c) 2022 HP Development Company, L.P.
*/
/** * validate_string_input() - * Validate input of current_value against min and max lengths * * @instance_id: The instance on which input is validated * @buf: Input value
*/ staticint validate_string_input(int instance_id, constchar *buf)
{ int in_len = strlen(buf); struct string_data *string_data = &bioscfg_drv.string_data[instance_id];
/* BIOS treats it as a read only attribute */ if (string_data->common.is_readonly) return -EIO;
if (in_len < string_data->min_length || in_len > string_data->max_length) return -ERANGE;
staticint hp_populate_string_elements_from_package(union acpi_object *string_obj, int string_obj_count, int instance_id)
{ char *str_value = NULL; int value_len; int ret = 0;
u32 int_value = 0; int elem; int reqs; int eloc; int size; struct string_data *string_data = &bioscfg_drv.string_data[instance_id];
if (!string_obj) return -EINVAL;
for (elem = 1, eloc = 1; elem < string_obj_count; elem++, eloc++) { /* ONLY look at the first STRING_ELEM_CNT elements */ if (eloc == STR_ELEM_CNT) goto exit_string_package;
switch (string_obj[elem].type) { case ACPI_TYPE_STRING: if (elem != PREREQUISITES) {
ret = hp_convert_hexstr_to_str(string_obj[elem].string.pointer,
string_obj[elem].string.length,
&str_value, &value_len);
if (ret) continue;
} break; case ACPI_TYPE_INTEGER:
int_value = (u32)string_obj[elem].integer.value; break; default:
pr_warn("Unsupported object type [%d]\n", string_obj[elem].type); continue;
}
/* Check that both expected and read object type match */ if (expected_string_types[eloc] != string_obj[elem].type) {
pr_err("Error expected type %d for elem %d, but got type %d instead\n",
expected_string_types[eloc], elem, string_obj[elem].type);
kfree(str_value); return -EIO;
}
/* Assign appropriate element value to corresponding field*/ switch (eloc) { case VALUE:
strscpy(string_data->current_value, str_value); break; case PATH:
strscpy(string_data->common.path, str_value); break; case IS_READONLY:
string_data->common.is_readonly = int_value; break; case DISPLAY_IN_UI:
string_data->common.display_in_ui = int_value; break; case REQUIRES_PHYSICAL_PRESENCE:
string_data->common.requires_physical_presence = int_value; break; case SEQUENCE:
string_data->common.sequence = int_value; break; case PREREQUISITES_SIZE: if (int_value > MAX_PREREQUISITES_SIZE) {
pr_warn("Prerequisites size value exceeded the maximum number of elements supported or data may be malformed\n");
int_value = MAX_PREREQUISITES_SIZE;
}
string_data->common.prerequisites_size = int_value;
/* * This step is needed to keep the expected * element list pointing to the right obj[elem].type * when the size is zero. PREREQUISITES * object is omitted by BIOS when the size is * zero.
*/ if (string_data->common.prerequisites_size == 0)
eloc++; break; case PREREQUISITES:
size = min_t(u32, string_data->common.prerequisites_size,
MAX_PREREQUISITES_SIZE);
for (reqs = 0; reqs < size; reqs++) { if (elem >= string_obj_count) {
pr_err("Error elem-objects package is too small\n"); return -EINVAL;
}
ret = hp_convert_hexstr_to_str(string_obj[elem + reqs].string.pointer,
string_obj[elem + reqs].string.length,
&str_value, &value_len);
case SECURITY_LEVEL:
string_data->common.security_level = int_value; break; case STR_MIN_LENGTH:
string_data->min_length = int_value; break; case STR_MAX_LENGTH:
string_data->max_length = int_value; break; default:
pr_warn("Invalid element: %d found in String attribute or data may be malformed\n", elem); break;
}
/** * hp_populate_string_package_data() - * Populate all properties of an instance under string attribute * * @string_obj: ACPI object with string data * @instance_id: The instance to enumerate * @attr_name_kobj: The parent kernel object
*/ int hp_populate_string_package_data(union acpi_object *string_obj, int instance_id, struct kobject *attr_name_kobj)
{ struct string_data *string_data = &bioscfg_drv.string_data[instance_id];
staticint hp_populate_string_elements_from_buffer(u8 *buffer_ptr, u32 *buffer_size, int instance_id)
{ int ret = 0; struct string_data *string_data = &bioscfg_drv.string_data[instance_id];
/* * Only data relevant to this driver and its functionality is * read. BIOS defines the order in which each * element is * read. Element 0 data is not relevant to this * driver hence it is ignored. For clarity, all element names * (DISPLAY_IN_UI) which defines the order in which is read * and the name matches the variable where the data is stored. * * In earlier implementation, reported errors were ignored * causing the data to remain uninitialized. It is not * possible to determine if data read from BIOS is valid or * not. It is for this reason functions may return a error * without validating the data itself.
*/
// VALUE:
ret = hp_get_string_from_buffer(&buffer_ptr, buffer_size, string_data->current_value, sizeof(string_data->current_value)); if (ret < 0) goto buffer_exit;
// COMMON:
ret = hp_get_common_data_from_buffer(&buffer_ptr, buffer_size, &string_data->common); if (ret < 0) goto buffer_exit;
// STR_MIN_LENGTH:
ret = hp_get_integer_from_buffer(&buffer_ptr, buffer_size,
&string_data->min_length); if (ret < 0) goto buffer_exit;
// STR_MAX_LENGTH:
ret = hp_get_integer_from_buffer(&buffer_ptr, buffer_size,
&string_data->max_length);
buffer_exit:
return ret;
}
/** * hp_populate_string_buffer_data() - * Populate all properties of an instance under string attribute * * @buffer_ptr: Buffer pointer * @buffer_size: Buffer size * @instance_id: The instance to enumerate * @attr_name_kobj: The parent kernel object
*/ int hp_populate_string_buffer_data(u8 *buffer_ptr, u32 *buffer_size, int instance_id, struct kobject *attr_name_kobj)
{ struct string_data *string_data = &bioscfg_drv.string_data[instance_id]; int ret = 0;
string_data->attr_name_kobj = attr_name_kobj;
ret = hp_populate_string_elements_from_buffer(buffer_ptr, buffer_size,
instance_id); if (ret < 0) return ret;
/** * hp_exit_string_attributes() - Clear all attribute data * * Clears all data allocated for this group of attributes
*/ void hp_exit_string_attributes(void)
{ int instance_id;
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.