All of lore.kernel.org
 help / color / mirror / Atom feed
From: Harry Yoo <harry.yoo@oracle.com>
To: Kees Cook <kees@kernel.org>
Cc: linux-kernel@vger.kernel.org
Subject: Re: [PATCH] lkdtm: use SLAB_NO_MERGE instead of an empty constructor
Date: Wed, 9 Apr 2025 23:13:49 +0900	[thread overview]
Message-ID: <Z_aAnUr5Rq46Jsp4@harry> (raw)
In-Reply-To: <20250318014533.1624852-1-harry.yoo@oracle.com>

On Tue, Mar 18, 2025 at 10:45:33AM +0900, Harry Yoo wrote:
> Use SLAB_NO_MERGE flag to prevent merging instead of providing an
> empty constructor. Using an empty constructor in this manner is an abuse
> of slab interface.
> 
> The SLAB_NO_MERGE flag should be used with caution, but in this case,
> it is acceptable as the cache is intended soley for debugging purposes.
> 
> No functional changes intended.
> 
> Signed-off-by: Harry Yoo <harry.yoo@oracle.com>

Kindly ping :)

-- 
Cheers,
Harry / Hyeonggon

> ---
>  drivers/misc/lkdtm/heap.c | 17 +++--------------
>  1 file changed, 3 insertions(+), 14 deletions(-)
> 
> diff --git a/drivers/misc/lkdtm/heap.c b/drivers/misc/lkdtm/heap.c
> index b1b316f99703..c1a05b935894 100644
> --- a/drivers/misc/lkdtm/heap.c
> +++ b/drivers/misc/lkdtm/heap.c
> @@ -355,23 +355,12 @@ static void lkdtm_SLAB_FREE_PAGE(void)
>  	free_page(p);
>  }
>  
> -/*
> - * We have constructors to keep the caches distinctly separated without
> - * needing to boot with "slab_nomerge".
> - */
> -static void ctor_double_free(void *region)
> -{ }
> -static void ctor_a(void *region)
> -{ }
> -static void ctor_b(void *region)
> -{ }
> -
>  void __init lkdtm_heap_init(void)
>  {
>  	double_free_cache = kmem_cache_create("lkdtm-heap-double_free",
> -					      64, 0, 0, ctor_double_free);
> -	a_cache = kmem_cache_create("lkdtm-heap-a", 64, 0, 0, ctor_a);
> -	b_cache = kmem_cache_create("lkdtm-heap-b", 64, 0, 0, ctor_b);
> +					      64, 0, SLAB_NO_MERGE, NULL);
> +	a_cache = kmem_cache_create("lkdtm-heap-a", 64, 0, SLAB_NO_MERGE, NULL);
> +	b_cache = kmem_cache_create("lkdtm-heap-b", 64, 0, SLAB_NO_MERGE, NULL);
>  }
>  
>  void __exit lkdtm_heap_exit(void)
> -- 
> 2.43.0
> 

  reply	other threads:[~2025-04-09 14:14 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-03-18  1:45 [PATCH] lkdtm: use SLAB_NO_MERGE instead of an empty constructor Harry Yoo
2025-04-09 14:13 ` Harry Yoo [this message]
2025-04-09 16:15 ` Kees Cook

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=Z_aAnUr5Rq46Jsp4@harry \
    --to=harry.yoo@oracle.com \
    --cc=kees@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.