]> git.ipfire.org Git - thirdparty/postgresql.git/commitdiff
Allocate freechunks bitmap as part of SlabContext
authorTomas Vondra <tomas.vondra@postgresql.org>
Fri, 17 Jan 2020 13:06:28 +0000 (14:06 +0100)
committerTomas Vondra <tomas.vondra@postgresql.org>
Fri, 17 Jan 2020 14:32:03 +0000 (15:32 +0100)
The bitmap used by SlabCheck to cross-check free chunks in a block used
to be allocated for each SlabCheck call, and was never freed. The memory
leak could be fixed by simply adding a pfree call, but it's actually a
bad idea to do any allocations in SlabCheck at all as it assumes the
state of the memory management as a whole is sane.

So instead we allocate the bitmap as part of SlabContext, which means
we don't need to do any allocations in SlabCheck and the bitmap goes
away together with the SlabContext.

Backpatch to 10, where the Slab context was introduced.

Author: Tomas Vondra
Reported-by: Andres Freund
Reviewed-by: Tom Lane
Backpatch-through: 10
Discussion: https://www.postgresql.org/message-id/20200116044119.g45f7pmgz4jmodxj%40alap3.anarazel.de

src/backend/utils/mmgr/slab.c

index 35de6b6d82a537f708987691677d65112473f924..638af8b7aa9936b981feb023378acdec4fd4130b 100644 (file)
@@ -70,6 +70,9 @@ typedef struct SlabContext
        int                     chunksPerBlock; /* number of chunks per block */
        int                     minFreeChunks;  /* min number of free chunks in any block */
        int                     nblocks;                /* number of blocks allocated */
+#ifdef MEMORY_CONTEXT_CHECKING
+       bool       *freechunks;         /* bitmap of free chunks in a block */
+#endif
        /* blocks with free space, grouped by number of free chunks: */
        dlist_head      freelist[FLEXIBLE_ARRAY_MEMBER];
 } SlabContext;
@@ -188,6 +191,7 @@ SlabContextCreate(MemoryContext parent,
        int                     chunksPerBlock;
        Size            fullChunkSize;
        Size            freelistSize;
+       Size            headerSize;
        SlabContext *slab;
 
        StaticAssertStmt(offsetof(SlabChunk, slab) + sizeof(MemoryContext) ==
@@ -218,10 +222,22 @@ SlabContextCreate(MemoryContext parent,
        /* make sure the chunks actually fit on the block       */
        Assert((fullChunkSize * chunksPerBlock) + sizeof(SlabBlock) <= blockSize);
 
+       /* Size of the memory context header */
+       headerSize = offsetof(SlabContext, freelist) + freelistSize;
+
+#ifdef MEMORY_CONTEXT_CHECKING
+       /*
+        * With memory checking, we need to allocate extra space for the bitmap
+        * of free chunks. The bitmap is an array of bools, so we don't need to
+        * worry about alignment.
+        */
+       headerSize += chunksPerBlock * sizeof(bool);
+#endif
+
        /* Do the type-independent part of context creation */
        slab = (SlabContext *)
                MemoryContextCreate(T_SlabContext,
-                                                       (offsetof(SlabContext, freelist) + freelistSize),
+                                                       headerSize,
                                                        &SlabMethods,
                                                        parent,
                                                        name);
@@ -233,6 +249,12 @@ SlabContextCreate(MemoryContext parent,
        slab->nblocks = 0;
        slab->minFreeChunks = 0;
 
+#ifdef MEMORY_CONTEXT_CHECKING
+       /* set the freechunks pointer right after the freelists array */
+       slab->freechunks
+               = (bool *) slab + offsetof(SlabContext, freelist) + freelistSize;
+#endif
+
        return (MemoryContext) slab;
 }
 
@@ -674,14 +696,10 @@ SlabCheck(MemoryContext context)
        int                     i;
        SlabContext *slab = castNode(SlabContext, context);
        char       *name = slab->header.name;
-       char       *freechunks;
 
        Assert(slab);
        Assert(slab->chunksPerBlock > 0);
 
-       /* bitmap of free chunks on a block */
-       freechunks = palloc(slab->chunksPerBlock * sizeof(bool));
-
        /* walk all the freelists */
        for (i = 0; i <= slab->chunksPerBlock; i++)
        {
@@ -704,7 +722,7 @@ SlabCheck(MemoryContext context)
                                         name, block->nfree, block, i);
 
                        /* reset the bitmap of free chunks for this block */
-                       memset(freechunks, 0, (slab->chunksPerBlock * sizeof(bool)));
+                       memset(slab->freechunks, 0, (slab->chunksPerBlock * sizeof(bool)));
                        idx = block->firstFreeChunk;
 
                        /*
@@ -721,7 +739,7 @@ SlabCheck(MemoryContext context)
 
                                /* count the chunk as free, add it to the bitmap */
                                nfree++;
-                               freechunks[idx] = true;
+                               slab->freechunks[idx] = true;
 
                                /* read index of the next free chunk */
                                chunk = SlabBlockGetChunk(slab, block, idx);
@@ -732,7 +750,7 @@ SlabCheck(MemoryContext context)
                        for (j = 0; j < slab->chunksPerBlock; j++)
                        {
                                /* non-zero bit in the bitmap means chunk the chunk is used */
-                               if (!freechunks[j])
+                               if (!slab->freechunks[j])
                                {
                                        SlabChunk  *chunk = SlabBlockGetChunk(slab, block, j);