|
@@ -565,208 +565,6 @@ static QDF_STATUS hdd_apply_cfg_ini(struct hdd_context *hdd_ctx,
|
|
|
return ret_status;
|
|
|
}
|
|
|
|
|
|
-/**
|
|
|
- * hdd_execute_config_command() - executes an arbitrary configuration command
|
|
|
- * @reg_table: the pointer to configuration table
|
|
|
- * @tableSize: the size of the configuration table
|
|
|
- * @ini_struct: pointer to the hdd config knob
|
|
|
- * @hdd_ctx: the pointer to hdd context
|
|
|
- * @command: the command to run
|
|
|
- *
|
|
|
- * Return: QDF_STATUS_SUCCESS if the command is found and able to execute,
|
|
|
- * otherwise the appropriate QDF_STATUS will be returned
|
|
|
- */
|
|
|
-static QDF_STATUS hdd_execute_config_command(struct reg_table_entry *reg_table,
|
|
|
- unsigned long tableSize,
|
|
|
- uint8_t *ini_struct,
|
|
|
- struct hdd_context *hdd_ctx,
|
|
|
- char *command)
|
|
|
-{
|
|
|
- struct reg_table_entry *pRegEntry;
|
|
|
- char *clone;
|
|
|
- char *pCmd;
|
|
|
- void *pField;
|
|
|
- char *name;
|
|
|
- char *value_str;
|
|
|
- uint32_t value;
|
|
|
- int32_t svalue;
|
|
|
- size_t len_value_str;
|
|
|
- unsigned int idx;
|
|
|
- unsigned int i;
|
|
|
- QDF_STATUS vstatus;
|
|
|
- int rv;
|
|
|
-
|
|
|
- /* assume failure until proven otherwise */
|
|
|
- vstatus = QDF_STATUS_E_FAILURE;
|
|
|
-
|
|
|
- /* clone the command so that we can manipulate it */
|
|
|
- clone = kstrdup(command, GFP_ATOMIC);
|
|
|
- if (NULL == clone)
|
|
|
- return vstatus;
|
|
|
-
|
|
|
- /* 'clone' will point to the beginning of the string so it can be freed
|
|
|
- * 'pCmd' will be used to walk/parse the command
|
|
|
- */
|
|
|
- pCmd = clone;
|
|
|
-
|
|
|
- /* get rid of leading/trailing whitespace */
|
|
|
- pCmd = i_trim(pCmd);
|
|
|
- if ('\0' == *pCmd) {
|
|
|
- /* only whitespace */
|
|
|
- hdd_err("invalid command, only whitespace:[%s]", command);
|
|
|
- goto done;
|
|
|
- }
|
|
|
- /* parse the <name> = <value> */
|
|
|
- name = pCmd;
|
|
|
- while (('=' != *pCmd) && ('\0' != *pCmd))
|
|
|
- pCmd++;
|
|
|
-
|
|
|
- if ('\0' == *pCmd) {
|
|
|
- /* did not find '=' */
|
|
|
- hdd_err("invalid command, no '=':[%s]", command);
|
|
|
- goto done;
|
|
|
- }
|
|
|
- /* replace '=' with NUL to terminate the <name> */
|
|
|
- *pCmd++ = '\0';
|
|
|
- name = i_trim(name);
|
|
|
- if ('\0' == *name) {
|
|
|
- /* did not find a name */
|
|
|
- hdd_err("invalid command, no <name>:[%s]", command);
|
|
|
- goto done;
|
|
|
- }
|
|
|
-
|
|
|
- value_str = i_trim(pCmd);
|
|
|
- if ('\0' == *value_str) {
|
|
|
- /* did not find a value */
|
|
|
- hdd_err("invalid command, no <value>:[%s]", command);
|
|
|
- goto done;
|
|
|
- }
|
|
|
- /* lookup the configuration item */
|
|
|
- for (idx = 0; idx < tableSize; idx++) {
|
|
|
- if (0 == strcmp(name, reg_table[idx].RegName)) {
|
|
|
- /* found a match */
|
|
|
- break;
|
|
|
- }
|
|
|
- }
|
|
|
- if (tableSize == idx) {
|
|
|
- /* did not match the name */
|
|
|
- hdd_err("invalid command, unknown configuration item:[%s]", command);
|
|
|
- goto done;
|
|
|
- }
|
|
|
-
|
|
|
- pRegEntry = ®_table[idx];
|
|
|
- if (!(pRegEntry->Flags & VAR_FLAGS_DYNAMIC_CFG)) {
|
|
|
- /* does not support dynamic configuration */
|
|
|
- hdd_err("Global_Registry_Table. %s does not support "
|
|
|
- "dynamic configuration", name);
|
|
|
- vstatus = QDF_STATUS_E_PERM;
|
|
|
- goto done;
|
|
|
- }
|
|
|
-
|
|
|
- pField = ini_struct + pRegEntry->VarOffset;
|
|
|
-
|
|
|
- switch (pRegEntry->RegType) {
|
|
|
- case WLAN_PARAM_Integer:
|
|
|
- rv = kstrtou32(value_str, 10, &value);
|
|
|
- if (rv < 0)
|
|
|
- goto done;
|
|
|
- if (value < pRegEntry->VarMin) {
|
|
|
- /* out of range */
|
|
|
- hdd_err("Invalid command, value %u < min value %lu", value, pRegEntry->VarMin);
|
|
|
- goto done;
|
|
|
- }
|
|
|
- if (value > pRegEntry->VarMax) {
|
|
|
- /* out of range */
|
|
|
- hdd_err("Invalid command, value %u > max value %lu", value, pRegEntry->VarMax);
|
|
|
- goto done;
|
|
|
- }
|
|
|
- memcpy(pField, &value, pRegEntry->VarSize);
|
|
|
- break;
|
|
|
-
|
|
|
- case WLAN_PARAM_HexInteger:
|
|
|
- rv = kstrtou32(value_str, 16, &value);
|
|
|
- if (rv < 0)
|
|
|
- goto done;
|
|
|
- if (value < pRegEntry->VarMin) {
|
|
|
- /* out of range */
|
|
|
- hdd_err("Invalid command, value %x < min value %lx", value, pRegEntry->VarMin);
|
|
|
- goto done;
|
|
|
- }
|
|
|
- if (value > pRegEntry->VarMax) {
|
|
|
- /* out of range */
|
|
|
- hdd_err("Invalid command, value %x > max value %lx", value, pRegEntry->VarMax);
|
|
|
- goto done;
|
|
|
- }
|
|
|
- memcpy(pField, &value, pRegEntry->VarSize);
|
|
|
- break;
|
|
|
-
|
|
|
- case WLAN_PARAM_SignedInteger:
|
|
|
- rv = kstrtos32(value_str, 10, &svalue);
|
|
|
- if (rv < 0)
|
|
|
- goto done;
|
|
|
- if (svalue < (int32_t) pRegEntry->VarMin) {
|
|
|
- /* out of range */
|
|
|
- hdd_err("Invalid command, value %d < min value %d", svalue, (int)pRegEntry->VarMin);
|
|
|
- goto done;
|
|
|
- }
|
|
|
- if (svalue > (int32_t) pRegEntry->VarMax) {
|
|
|
- /* out of range */
|
|
|
- hdd_err("Invalid command, value %d > max value %d", svalue, (int)pRegEntry->VarMax);
|
|
|
- goto done;
|
|
|
- }
|
|
|
- memcpy(pField, &svalue, pRegEntry->VarSize);
|
|
|
- break;
|
|
|
-
|
|
|
- case WLAN_PARAM_String:
|
|
|
- len_value_str = strlen(value_str);
|
|
|
- if (len_value_str > (pRegEntry->VarSize - 1)) {
|
|
|
- /* too big */
|
|
|
- hdd_err("Invalid command, string [%s] length "
|
|
|
- "%zu exceeds maximum length %u", value_str,
|
|
|
- len_value_str, (pRegEntry->VarSize - 1));
|
|
|
- goto done;
|
|
|
- }
|
|
|
- /* copy string plus NUL */
|
|
|
- memcpy(pField, value_str, (len_value_str + 1));
|
|
|
- break;
|
|
|
-
|
|
|
- case WLAN_PARAM_MacAddr:
|
|
|
- len_value_str = strlen(value_str);
|
|
|
- if (len_value_str != (QDF_MAC_ADDR_SIZE * 2)) {
|
|
|
- /* out of range */
|
|
|
- hdd_err("Invalid command, MAC address [%s] length "
|
|
|
- "%zu is not expected length %u", value_str,
|
|
|
- len_value_str, (QDF_MAC_ADDR_SIZE * 2));
|
|
|
- goto done;
|
|
|
- }
|
|
|
- /* parse the string and store it in the byte array */
|
|
|
- for (i = 0; i < QDF_MAC_ADDR_SIZE; i++) {
|
|
|
- ((char *)pField)[i] = (char)
|
|
|
- ((parse_hex_digit(value_str[(i * 2)]) * 16) +
|
|
|
- parse_hex_digit(value_str[(i * 2) + 1]));
|
|
|
- }
|
|
|
- break;
|
|
|
-
|
|
|
- default:
|
|
|
- goto done;
|
|
|
- }
|
|
|
-
|
|
|
- /* if we get here, we had a successful modification */
|
|
|
- vstatus = QDF_STATUS_SUCCESS;
|
|
|
-
|
|
|
- /* config table has been modified, is there a notifier? */
|
|
|
- if (NULL != pRegEntry->pfnDynamicnotify)
|
|
|
- (pRegEntry->pfnDynamicnotify)(hdd_ctx, pRegEntry->notifyId);
|
|
|
-
|
|
|
- /* note that this item was explicitly configured */
|
|
|
- if (idx < MAX_CFG_INI_ITEMS)
|
|
|
- set_bit(idx, (void *)&hdd_ctx->config->bExplicitCfg);
|
|
|
-
|
|
|
-done:
|
|
|
- kfree(clone);
|
|
|
- return vstatus;
|
|
|
-}
|
|
|
-
|
|
|
/**
|
|
|
* hdd_set_power_save_offload_config() - set power save offload configuration
|
|
|
* @hdd_ctx: the pointer to hdd context
|
|
@@ -1617,22 +1415,6 @@ QDF_STATUS hdd_set_sme_config(struct hdd_context *hdd_ctx)
|
|
|
return status;
|
|
|
}
|
|
|
|
|
|
-/**
|
|
|
- * hdd_execute_global_config_command() - execute the global config command
|
|
|
- * @hdd_ctx: the pointer to hdd context
|
|
|
- * @command: the command to run
|
|
|
- *
|
|
|
- * Return: the QDF_STATUS return from hdd_execute_config_command
|
|
|
- */
|
|
|
-QDF_STATUS hdd_execute_global_config_command(struct hdd_context *hdd_ctx,
|
|
|
- char *command)
|
|
|
-{
|
|
|
- return hdd_execute_config_command(g_registry_table,
|
|
|
- ARRAY_SIZE(g_registry_table),
|
|
|
- (uint8_t *) hdd_ctx->config,
|
|
|
- hdd_ctx, command);
|
|
|
-}
|
|
|
-
|
|
|
static void print_info_handler(const char *buf)
|
|
|
{
|
|
|
hdd_nofl_info("%s", buf);
|