]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
ALSA: pcm: replace simple_strtoul to kstrtoul
authorHongbo Li <lihongbo22@huawei.com>
Sat, 31 Aug 2024 08:06:39 +0000 (16:06 +0800)
committerTakashi Iwai <tiwai@suse.de>
Sat, 31 Aug 2024 10:57:53 +0000 (12:57 +0200)
As mentioned in [1], "...simple_strtol(), simple_strtoll(),
simple_strtoul(), and simple_strtoull() functions explicitly
ignore overflows, which may lead to unexpected results in callers."
Hence, the use of those functions is discouraged.

This patch replace the use of the simple_strtoul with the safer
alternatives kstrtoul.

[1] https://www.kernel.org/doc/html/latest/process/deprecated.html#simple-strtol-simple-strtoll-simple-strtoul-simple-strtoull

Signed-off-by: Hongbo Li <lihongbo22@huawei.com>
Link: https://patch.msgid.link/20240831080639.3985143-1-lihongbo22@huawei.com
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/core/pcm_memory.c

index 8e4c68e3bbd0a581b499d0cf2b024c21bcd1e5bf..73d4fc49a0ca33a3cd03e022bc974765073705a4 100644 (file)
@@ -193,7 +193,10 @@ static void snd_pcm_lib_preallocate_proc_write(struct snd_info_entry *entry,
        }
        if (!snd_info_get_line(buffer, line, sizeof(line))) {
                snd_info_get_str(str, line, sizeof(str));
-               size = simple_strtoul(str, NULL, 10) * 1024;
+               buffer->error = kstrtoul(str, 10, &size);
+               if (buffer->error != 0)
+                       return;
+               size *= 1024;
                if ((size != 0 && size < 8192) || size > substream->dma_max) {
                        buffer->error = -EINVAL;
                        return;