mm: Make failslab writable again
authorAlexander Atanasov <alexander.atanasov@virtuozzo.com>
Tue, 20 Sep 2022 12:11:11 +0000 (15:11 +0300)
committerVlastimil Babka <vbabka@suse.cz>
Mon, 24 Oct 2022 10:19:06 +0000 (12:19 +0200)
In (060807f841ac mm, slub: make remaining slub_debug related attributes
read-only) failslab was made read-only.
I think it became a collateral victim to the two other options for which
the reasons are perfectly valid.
Here is why:
 - sanity_checks and trace are slab internal debug options,
   failslab is used for fault injection.
 - for fault injections, which by presumption are random, it
   does not matter if it is not set atomically. And you need to
   set atleast one more option to trigger fault injection.
 - in a testing scenario you may need to change it at runtime
   example: module loading - you test all allocations limited
   by the space option. Then you move to test only your module's
   own slabs.
 - when set by command line flags it effectively disables all
   cache merges.

Cc: Vlastimil Babka <vbabka@suse.cz>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Kees Cook <keescook@chromium.org>
Cc: Roman Gushchin <guro@fb.com>
Cc: Christoph Lameter <cl@linux.com>
Cc: Jann Horn <jannh@google.com>
Cc: Vijayanand Jitta <vjitta@codeaurora.org>
Cc: David Rientjes <rientjes@google.com>
Cc: Joonsoo Kim <iamjoonsoo.kim@lge.com>
Cc: Pekka Enberg <penberg@kernel.org>
Link: http://lkml.kernel.org/r/20200610163135.17364-5-vbabka@suse.cz
Signed-off-by: Alexander Atanasov <alexander.atanasov@virtuozzo.com>
Signed-off-by: Vlastimil Babka <vbabka@suse.cz>
Documentation/mm/slub.rst
mm/slub.c

index 4e1578186b4f0c5a9634747b05788f2bbbd4ae8c..7f652216dabe3ba5b9342167547dc681678a6cf7 100644 (file)
@@ -116,6 +116,8 @@ options from the ``slub_debug`` parameter translate to the following files::
        T       trace
        A       failslab
 
+failslab file is writable, so writing 1 or 0 will enable or disable
+the option at runtime. Write returns -EINVAL if cache is an alias.
 Careful with tracing: It may spew out lots of information and never stop if
 used on the wrong slab.
 
index f162683f30061a1217a2bd1ad5748ffb63b692f6..3fc7d861d1f26cd44b9ccf08c38b0c94a26319f4 100644 (file)
--- a/mm/slub.c
+++ b/mm/slub.c
@@ -5586,7 +5586,21 @@ static ssize_t failslab_show(struct kmem_cache *s, char *buf)
 {
        return sysfs_emit(buf, "%d\n", !!(s->flags & SLAB_FAILSLAB));
 }
-SLAB_ATTR_RO(failslab);
+
+static ssize_t failslab_store(struct kmem_cache *s, const char *buf,
+                               size_t length)
+{
+       if (s->refcount > 1)
+               return -EINVAL;
+
+       if (buf[0] == '1')
+               WRITE_ONCE(s->flags, s->flags | SLAB_FAILSLAB);
+       else
+               WRITE_ONCE(s->flags, s->flags & ~SLAB_FAILSLAB);
+
+       return length;
+}
+SLAB_ATTR(failslab);
 #endif
 
 static ssize_t shrink_show(struct kmem_cache *s, char *buf)