Commit 6424da7d authored by Nivas Varadharajan Mugunthakumar's avatar Nivas Varadharajan Mugunthakumar Committed by Herbert Xu

crypto: qat - extend scope of lock in adf_cfg_add_key_value_param()

The function adf_cfg_add_key_value_param() attempts to access and modify
the key value store of the driver without locking.

Extend the scope of cfg->lock to avoid a potential race condition.

Fixes: 92bf269f ("crypto: qat - change behaviour of adf_cfg_add_key_value_param()")
Signed-off-by: default avatarNivas Varadharajan Mugunthakumar <nivasx.varadharajan.mugunthakumar@intel.com>
Signed-off-by: default avatarGiovanni Cabiddu <giovanni.cabiddu@intel.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent d26cb4f5
...@@ -290,17 +290,19 @@ int adf_cfg_add_key_value_param(struct adf_accel_dev *accel_dev, ...@@ -290,17 +290,19 @@ int adf_cfg_add_key_value_param(struct adf_accel_dev *accel_dev,
* 3. if the key exists with the same value, then return without doing * 3. if the key exists with the same value, then return without doing
* anything (the newly created key_val is freed). * anything (the newly created key_val is freed).
*/ */
down_write(&cfg->lock);
if (!adf_cfg_key_val_get(accel_dev, section_name, key, temp_val)) { if (!adf_cfg_key_val_get(accel_dev, section_name, key, temp_val)) {
if (strncmp(temp_val, key_val->val, sizeof(temp_val))) { if (strncmp(temp_val, key_val->val, sizeof(temp_val))) {
adf_cfg_keyval_remove(key, section); adf_cfg_keyval_remove(key, section);
} else { } else {
kfree(key_val); kfree(key_val);
return 0; goto out;
} }
} }
down_write(&cfg->lock);
adf_cfg_keyval_add(key_val, section); adf_cfg_keyval_add(key_val, section);
out:
up_write(&cfg->lock); up_write(&cfg->lock);
return 0; return 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment