From: Vlastimil Babka <vbabka@suse.cz>
To: Marc Dionne <marc.c.dionne@gmail.com>,
Andrew Morton <akpm@linux-foundation.org>,
linux-mm@kvack.org, linux-kernel@vger.kernel.org
Cc: Marc Dionne <marc.dionne@auristor.com>
Subject: Re: [PATCH v4] tools/mm: Fix slabinfo crash when MAX_SLABS is exceeded
Date: Tue, 5 Nov 2024 10:22:02 +0100 [thread overview]
Message-ID: <721aaee9-2680-495a-807c-d188f8329fbb@suse.cz> (raw)
In-Reply-To: <20241031105534.565533-1-marc.c.dionne@gmail.com>
On 10/31/24 11:55, Marc Dionne wrote:
> From: Marc Dionne <marc.dionne@auristor.com>
>
> The number of slabs can easily exceed the hard coded MAX_SLABS in the
> slabinfo tool, causing it to overwrite memory and crash.
>
> Increase the value of MAX_SLABS, and check if that has been exceeded for
> each new slab, instead of at the end when it's already too late. Also
> move the check for MAX_ALIASES into the loop body.
>
> Signed-off-by: Marc Dionne <marc.dionne@auristor.com>
Acked-by: Vlastimil Babka <vbabka@suse.cz>
> ---
> tools/mm/slabinfo.c | 10 +++++-----
> 1 file changed, 5 insertions(+), 5 deletions(-)
>
> diff --git a/tools/mm/slabinfo.c b/tools/mm/slabinfo.c
> index cfaeaea71042..1a9b807a48c3 100644
> --- a/tools/mm/slabinfo.c
> +++ b/tools/mm/slabinfo.c
> @@ -21,7 +21,7 @@
> #include <regex.h>
> #include <errno.h>
>
> -#define MAX_SLABS 500
> +#define MAX_SLABS 2000
> #define MAX_ALIASES 500
> #define MAX_NODES 1024
>
> @@ -1228,6 +1228,8 @@ static void read_slab_dir(void)
> continue;
> switch (de->d_type) {
> case DT_LNK:
> + if (alias - aliasinfo == MAX_ALIASES)
> + fatal("Too many aliases\n");
> alias->name = strdup(de->d_name);
> count = readlink(de->d_name, buffer, sizeof(buffer)-1);
>
> @@ -1242,6 +1244,8 @@ static void read_slab_dir(void)
> alias++;
> break;
> case DT_DIR:
> + if (slab - slabinfo == MAX_SLABS)
> + fatal("Too many slabs\n");
> if (chdir(de->d_name))
> fatal("Unable to access slab %s\n", slab->name);
> slab->name = strdup(de->d_name);
> @@ -1310,10 +1314,6 @@ static void read_slab_dir(void)
> slabs = slab - slabinfo;
> actual_slabs = slabs;
> aliases = alias - aliasinfo;
> - if (slabs > MAX_SLABS)
> - fatal("Too many slabs\n");
> - if (aliases > MAX_ALIASES)
> - fatal("Too many aliases\n");
> }
>
> static void output_slabs(void)
prev parent reply other threads:[~2024-11-05 9:22 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-10-31 10:55 Marc Dionne
2024-11-05 9:22 ` Vlastimil Babka [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=721aaee9-2680-495a-807c-d188f8329fbb@suse.cz \
--to=vbabka@suse.cz \
--cc=akpm@linux-foundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=marc.c.dionne@gmail.com \
--cc=marc.dionne@auristor.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox