ALSA: control: Add input validation
This patch adds a new feature to enable the validation of input data to control elements in the ALSA core side. When CONFIG_SND_CTL_INPUT_VALIDATION is set, ALSA core verifies whether the each input value via control API is in the defined ranges, also checks whether it's aligned to the defined steps. If an invalid value is detected, ALSA core returns -EINVAL error immediately without passing further to the driver's callback. So this is a kind of hardening for (badly written) drivers that have no proper error checks, at the cost of a slight performance overhead. Technically seen, this reuses a part of the existing validation code for CONFIG_SND_CTL_DEBUG case with a slight modification to suppress error prints for the input validation. Link: https://lore.kernel.org/r/20220609120219.3937-5-tiwai@suse.de Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
4e54316ad2
commit
f5e829f92a
|
@ -188,6 +188,16 @@ config SND_PCM_XRUN_DEBUG
|
||||||
sound clicking when system is loaded, it may help to determine
|
sound clicking when system is loaded, it may help to determine
|
||||||
the process or driver which causes the scheduling gaps.
|
the process or driver which causes the scheduling gaps.
|
||||||
|
|
||||||
|
config SND_CTL_INPUT_VALIDATION
|
||||||
|
bool "Validate input data to control API"
|
||||||
|
help
|
||||||
|
Say Y to enable the additional validation for the input data to
|
||||||
|
each control element, including the value range checks.
|
||||||
|
An error is returned from ALSA core for invalid inputs without
|
||||||
|
passing to the driver. This is a kind of hardening for drivers
|
||||||
|
that have no proper error checks, at the cost of a slight
|
||||||
|
performance overhead.
|
||||||
|
|
||||||
config SND_CTL_DEBUG
|
config SND_CTL_DEBUG
|
||||||
bool "Enable debugging feature for control API"
|
bool "Enable debugging feature for control API"
|
||||||
depends on SND_DEBUG
|
depends on SND_DEBUG
|
||||||
|
|
|
@ -982,7 +982,7 @@ static void fill_remaining_elem_value(struct snd_ctl_elem_value *control,
|
||||||
static int sanity_check_int_value(struct snd_card *card,
|
static int sanity_check_int_value(struct snd_card *card,
|
||||||
const struct snd_ctl_elem_value *control,
|
const struct snd_ctl_elem_value *control,
|
||||||
const struct snd_ctl_elem_info *info,
|
const struct snd_ctl_elem_info *info,
|
||||||
int i)
|
int i, bool print_error)
|
||||||
{
|
{
|
||||||
long long lval, lmin, lmax, lstep;
|
long long lval, lmin, lmax, lstep;
|
||||||
u64 rem;
|
u64 rem;
|
||||||
|
@ -1016,21 +1016,23 @@ static int sanity_check_int_value(struct snd_card *card,
|
||||||
}
|
}
|
||||||
|
|
||||||
if (lval < lmin || lval > lmax) {
|
if (lval < lmin || lval > lmax) {
|
||||||
dev_err(card->dev,
|
if (print_error)
|
||||||
"control %i:%i:%i:%s:%i: value out of range %lld (%lld/%lld) at count %i\n",
|
dev_err(card->dev,
|
||||||
control->id.iface, control->id.device,
|
"control %i:%i:%i:%s:%i: value out of range %lld (%lld/%lld) at count %i\n",
|
||||||
control->id.subdevice, control->id.name,
|
control->id.iface, control->id.device,
|
||||||
control->id.index, lval, lmin, lmax, i);
|
control->id.subdevice, control->id.name,
|
||||||
|
control->id.index, lval, lmin, lmax, i);
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
if (lstep) {
|
if (lstep) {
|
||||||
div64_u64_rem(lval, lstep, &rem);
|
div64_u64_rem(lval, lstep, &rem);
|
||||||
if (rem) {
|
if (rem) {
|
||||||
dev_err(card->dev,
|
if (print_error)
|
||||||
"control %i:%i:%i:%s:%i: unaligned value %lld (step %lld) at count %i\n",
|
dev_err(card->dev,
|
||||||
control->id.iface, control->id.device,
|
"control %i:%i:%i:%s:%i: unaligned value %lld (step %lld) at count %i\n",
|
||||||
control->id.subdevice, control->id.name,
|
control->id.iface, control->id.device,
|
||||||
control->id.index, lval, lstep, i);
|
control->id.subdevice, control->id.name,
|
||||||
|
control->id.index, lval, lstep, i);
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1038,6 +1040,33 @@ static int sanity_check_int_value(struct snd_card *card,
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* check whether the all input values are valid for the given elem value */
|
||||||
|
static int sanity_check_input_values(struct snd_card *card,
|
||||||
|
const struct snd_ctl_elem_value *control,
|
||||||
|
const struct snd_ctl_elem_info *info,
|
||||||
|
bool print_error)
|
||||||
|
{
|
||||||
|
int i, ret;
|
||||||
|
|
||||||
|
switch (info->type) {
|
||||||
|
case SNDRV_CTL_ELEM_TYPE_BOOLEAN:
|
||||||
|
case SNDRV_CTL_ELEM_TYPE_INTEGER:
|
||||||
|
case SNDRV_CTL_ELEM_TYPE_INTEGER64:
|
||||||
|
case SNDRV_CTL_ELEM_TYPE_ENUMERATED:
|
||||||
|
for (i = 0; i < info->count; i++) {
|
||||||
|
ret = sanity_check_int_value(card, control, info, i,
|
||||||
|
print_error);
|
||||||
|
if (ret < 0)
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
/* perform sanity checks to the given snd_ctl_elem_value object */
|
/* perform sanity checks to the given snd_ctl_elem_value object */
|
||||||
static int sanity_check_elem_value(struct snd_card *card,
|
static int sanity_check_elem_value(struct snd_card *card,
|
||||||
const struct snd_ctl_elem_value *control,
|
const struct snd_ctl_elem_value *control,
|
||||||
|
@ -1045,23 +1074,12 @@ static int sanity_check_elem_value(struct snd_card *card,
|
||||||
u32 pattern)
|
u32 pattern)
|
||||||
{
|
{
|
||||||
size_t offset;
|
size_t offset;
|
||||||
int i, ret = 0;
|
int ret;
|
||||||
u32 *p;
|
u32 *p;
|
||||||
|
|
||||||
switch (info->type) {
|
ret = sanity_check_input_values(card, control, info, true);
|
||||||
case SNDRV_CTL_ELEM_TYPE_BOOLEAN:
|
if (ret < 0)
|
||||||
case SNDRV_CTL_ELEM_TYPE_INTEGER:
|
return ret;
|
||||||
case SNDRV_CTL_ELEM_TYPE_INTEGER64:
|
|
||||||
case SNDRV_CTL_ELEM_TYPE_ENUMERATED:
|
|
||||||
for (i = 0; i < info->count; i++) {
|
|
||||||
ret = sanity_check_int_value(card, control, info, i);
|
|
||||||
if (ret < 0)
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* check whether the remaining area kept untouched */
|
/* check whether the remaining area kept untouched */
|
||||||
offset = value_sizes[info->type] * info->count;
|
offset = value_sizes[info->type] * info->count;
|
||||||
|
@ -1249,6 +1267,17 @@ static int snd_ctl_elem_write(struct snd_card *card, struct snd_ctl_file *file,
|
||||||
|
|
||||||
snd_ctl_build_ioff(&control->id, kctl, index_offset);
|
snd_ctl_build_ioff(&control->id, kctl, index_offset);
|
||||||
result = snd_power_ref_and_wait(card);
|
result = snd_power_ref_and_wait(card);
|
||||||
|
/* validate input values */
|
||||||
|
if (IS_ENABLED(CONFIG_SND_CTL_INPUT_VALIDATION) && !result) {
|
||||||
|
struct snd_ctl_elem_info info;
|
||||||
|
|
||||||
|
memset(&info, 0, sizeof(info));
|
||||||
|
info.id = control->id;
|
||||||
|
result = __snd_ctl_elem_info(card, kctl, &info, NULL);
|
||||||
|
if (!result)
|
||||||
|
result = sanity_check_input_values(card, control, &info,
|
||||||
|
false);
|
||||||
|
}
|
||||||
if (!result)
|
if (!result)
|
||||||
result = kctl->put(kctl, control);
|
result = kctl->put(kctl, control);
|
||||||
snd_power_unref(card);
|
snd_power_unref(card);
|
||||||
|
|
Loading…
Reference in New Issue