mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-25 01:50:53 +07:00
ASoC: rockchip: Allocate enough memory so we don't overflow routes
In the recent commitd9f9c167ed
("ASoC: rockchip: Init dapm routes dynamically") we improperly allocated memory for the card->dapm_routes causing us to overflow the allocation on every boot. Oops. Let's allocate the correct amount of memory. We'll also add a check to make sure that we don't overrun memory even if we encounter some sort of weird device tree. Fixes:d9f9c167ed
("ASoC: rockchip: Init dapm routes dynamically") Signed-off-by: Douglas Anderson <dianders@chromium.org> Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
7e0dc9aeae
commit
8eae6c2585
@ -494,13 +494,17 @@ static int rockchip_sound_of_parse_dais(struct device *dev,
|
||||
struct snd_soc_dai_link *dai;
|
||||
struct snd_soc_dapm_route *routes;
|
||||
int i, index;
|
||||
int num_routes;
|
||||
|
||||
card->dai_link = devm_kzalloc(dev, sizeof(rockchip_dais),
|
||||
GFP_KERNEL);
|
||||
if (!card->dai_link)
|
||||
return -ENOMEM;
|
||||
|
||||
routes = devm_kzalloc(dev, sizeof(rockchip_routes),
|
||||
num_routes = 0;
|
||||
for (i = 0; i < ARRAY_SIZE(rockchip_routes); i++)
|
||||
num_routes += rockchip_routes[i].num_routes;
|
||||
routes = devm_kzalloc(dev, num_routes * sizeof(*routes),
|
||||
GFP_KERNEL);
|
||||
if (!routes)
|
||||
return -ENOMEM;
|
||||
@ -538,6 +542,12 @@ static int rockchip_sound_of_parse_dais(struct device *dev,
|
||||
dai->platform_of_node = np_cpu;
|
||||
dai->cpu_of_node = np_cpu;
|
||||
|
||||
if (card->num_dapm_routes + rockchip_routes[index].num_routes >
|
||||
num_routes) {
|
||||
dev_err(dev, "Too many routes\n");
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
memcpy(routes + card->num_dapm_routes,
|
||||
rockchip_routes[index].routes,
|
||||
rockchip_routes[index].num_routes * sizeof(*routes));
|
||||
|
Loading…
Reference in New Issue
Block a user