Commit beed13f3 authored by Jaroslav Kysela's avatar Jaroslav Kysela

[ALSA] Clean up handling of user-defined controls

Control Midlevel
Cleaned up the code to handle user-defined controls.
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent 5df8b861
...@@ -809,8 +809,6 @@ struct user_element { ...@@ -809,8 +809,6 @@ struct user_element {
unsigned long elem_data_size; /* size of element data in bytes */ unsigned long elem_data_size; /* size of element data in bytes */
void *priv_data; /* private data (like strings for enumerated type) */ void *priv_data; /* private data (like strings for enumerated type) */
unsigned long priv_data_size; /* size of private data in bytes */ unsigned long priv_data_size; /* size of private data in bytes */
unsigned short dimen_count; /* count of dimensions */
unsigned short dimen[0]; /* array of dimensions */
}; };
static int snd_ctl_elem_user_info(snd_kcontrol_t *kcontrol, snd_ctl_elem_info_t *uinfo) static int snd_ctl_elem_user_info(snd_kcontrol_t *kcontrol, snd_ctl_elem_info_t *uinfo)
...@@ -859,7 +857,7 @@ static int snd_ctl_elem_add(snd_ctl_file_t *file, snd_ctl_elem_info_t __user *_i ...@@ -859,7 +857,7 @@ static int snd_ctl_elem_add(snd_ctl_file_t *file, snd_ctl_elem_info_t __user *_i
snd_ctl_elem_info_t info; snd_ctl_elem_info_t info;
snd_kcontrol_t kctl, *_kctl; snd_kcontrol_t kctl, *_kctl;
unsigned int access; unsigned int access;
long private_size, dimen_size, extra_size; long private_size, extra_size;
struct user_element *ue; struct user_element *ue;
int idx, err; int idx, err;
...@@ -870,10 +868,7 @@ static int snd_ctl_elem_add(snd_ctl_file_t *file, snd_ctl_elem_info_t __user *_i ...@@ -870,10 +868,7 @@ static int snd_ctl_elem_add(snd_ctl_file_t *file, snd_ctl_elem_info_t __user *_i
if (info.count > 1024) if (info.count > 1024)
return -EINVAL; return -EINVAL;
access = info.access == 0 ? SNDRV_CTL_ELEM_ACCESS_READWRITE : access = info.access == 0 ? SNDRV_CTL_ELEM_ACCESS_READWRITE :
(info.access & (SNDRV_CTL_ELEM_ACCESS_READWRITE|SNDRV_CTL_ELEM_ACCESS_INACTIVE| (info.access & (SNDRV_CTL_ELEM_ACCESS_READWRITE|SNDRV_CTL_ELEM_ACCESS_INACTIVE));
SNDRV_CTL_ELEM_ACCESS_DINDIRECT|SNDRV_CTL_ELEM_ACCESS_INDIRECT));
if (access & (SNDRV_CTL_ELEM_ACCESS_DINDIRECT | SNDRV_CTL_ELEM_ACCESS_INDIRECT))
return -EINVAL;
info.id.numid = 0; info.id.numid = 0;
memset(&kctl, 0, sizeof(kctl)); memset(&kctl, 0, sizeof(kctl));
down_write(&card->controls_rwsem); down_write(&card->controls_rwsem);
...@@ -938,25 +933,14 @@ static int snd_ctl_elem_add(snd_ctl_file_t *file, snd_ctl_elem_info_t __user *_i ...@@ -938,25 +933,14 @@ static int snd_ctl_elem_add(snd_ctl_file_t *file, snd_ctl_elem_info_t __user *_i
return -EINVAL; return -EINVAL;
} }
private_size *= info.count; private_size *= info.count;
if (private_size > 1024 * 1024) ue = kcalloc(1, sizeof(struct user_element) + private_size + extra_size, GFP_KERNEL);
return -EINVAL;
dimen_size = 0;
if (!(info.access & SNDRV_CTL_ELEM_ACCESS_DINDIRECT))
for (idx = 0; idx < 4 && info.dimen.d[idx]; idx++)
dimen_size += sizeof(unsigned short);
ue = kcalloc(1, sizeof(struct user_element) + dimen_size + private_size + extra_size, GFP_KERNEL);
if (ue == NULL) if (ue == NULL)
return -ENOMEM; return -ENOMEM;
ue->info = info; ue->info = info;
if (!(info.access & SNDRV_CTL_ELEM_ACCESS_DINDIRECT)) { ue->elem_data = (char *)ue + sizeof(ue);
for (idx = 0; idx < 4 && info.dimen.d[idx]; idx++)
ue->dimen[idx] = info.dimen.d[idx];
ue->dimen_count = dimen_size / sizeof(unsigned short);
}
ue->elem_data = (char *)ue + sizeof(ue) + dimen_size;
ue->elem_data_size = private_size; ue->elem_data_size = private_size;
if (extra_size) { if (extra_size) {
ue->priv_data = (char *)ue + sizeof(ue) + dimen_size + private_size; ue->priv_data = (char *)ue + sizeof(ue) + private_size;
ue->priv_data_size = extra_size; ue->priv_data_size = extra_size;
if (ue->info.type == SNDRV_CTL_ELEM_TYPE_ENUMERATED) { if (ue->info.type == SNDRV_CTL_ELEM_TYPE_ENUMERATED) {
if (copy_from_user(ue->priv_data, *(char __user **)info.value.enumerated.name, extra_size)) if (copy_from_user(ue->priv_data, *(char __user **)info.value.enumerated.name, extra_size))
......
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