lkml.org 
[lkml]   [2019]   [Jan]   [31]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
From
Date
SubjectRe: [PATCH v9 1/3] mm: Shuffle initial free memory to improve memory-side-cache utilization
On Thu, Jan 31, 2019 at 2:15 PM Andrew Morton <akpm@linux-foundation.org> wrote:
> On Tue, 29 Jan 2019 21:02:16 -0800 Dan Williams <dan.j.williams@intel.com> wrote:
[..]
> > Introduce shuffle_free_memory(), and its helper shuffle_zone(), to
> > perform a Fisher-Yates shuffle of the page allocator 'free_area' lists
> > when they are initially populated with free memory at boot and at
> > hotplug time. Do this based on either the presence of a
> > page_alloc.shuffle=Y command line parameter, or autodetection of a
> > memory-side-cache (to be added in a follow-on patch).
>
> This is unfortunate from a testing and coverage point of view. At
> least initially it is desirable that all testers run this feature.
>
> Also, it's unfortunate that enableing the feature requires a reboot.
> What happens if we do away with the boot-time (and maybe hotplug-time)
> randomization and permit the feature to be switched on/off at runtime?

Currently there's the 'shuffle' at memory online time and a random
front-back freeing of max_order pages to the free lists at runtime.
The random front-back freeing behavior would be trivial to toggle at
runtime, however testing showed that the entropy it injects is only
enough to preserve the randomization of the initial 'shuffle', but not
enough entropy to improve cache utilization on its own.

The shuffling could be done dynamically at runtime, but it only
shuffles free memory, the effectiveness is diminished if the workload
has already taken pages off the free list. It's also diminished if the
free lists are polluted with sub MAX_ORDER pages.

The number of caveats that need to be documented makes me skeptical
that runtime triggered shuffling would be reliable.

That said, I see your point about experimentation and validation. What
about allowing it to be settable as a sysfs parameter for
memory-blocks that are being hot-added? That way we know the shuffle
will be effective and the administrator can validate shuffling with a
hot-unplug/replug?

> > The shuffling is done in terms of CONFIG_SHUFFLE_PAGE_ORDER sized free
> > pages where the default CONFIG_SHUFFLE_PAGE_ORDER is MAX_ORDER-1 i.e.
> > 10, 4MB this trades off randomization granularity for time spent
> > shuffling. MAX_ORDER-1 was chosen to be minimally invasive to the page
> > allocator while still showing memory-side cache behavior improvements,
> > and the expectation that the security implications of finer granularity
> > randomization is mitigated by CONFIG_SLAB_FREELIST_RANDOM.
> >
> > The performance impact of the shuffling appears to be in the noise
> > compared to other memory initialization work. Also the bulk of the work
> > is done in the background as a part of deferred_init_memmap().
> >
> > This initial randomization can be undone over time so a follow-on patch
> > is introduced to inject entropy on page free decisions. It is reasonable
> > to ask if the page free entropy is sufficient, but it is not enough due
> > to the in-order initial freeing of pages. At the start of that process
> > putting page1 in front or behind page0 still keeps them close together,
> > page2 is still near page1 and has a high chance of being adjacent. As
> > more pages are added ordering diversity improves, but there is still
> > high page locality for the low address pages and this leads to no
> > significant impact to the cache conflict rate.
> >
> > ...
> >
> > include/linux/list.h | 17 ++++
> > include/linux/mmzone.h | 4 +
> > include/linux/shuffle.h | 45 +++++++++++
> > init/Kconfig | 23 ++++++
> > mm/Makefile | 7 ++
> > mm/memblock.c | 1
> > mm/memory_hotplug.c | 3 +
> > mm/page_alloc.c | 6 +-
> > mm/shuffle.c | 188 +++++++++++++++++++++++++++++++++++++++++++++++
>
> Can we get a Documentation update for the new kernel parameter?

Yes.

>
> >
> > ...
> >
> > --- /dev/null
> > +++ b/mm/shuffle.c
> > @@ -0,0 +1,188 @@
> > +// SPDX-License-Identifier: GPL-2.0
> > +// Copyright(c) 2018 Intel Corporation. All rights reserved.
> > +
> > +#include <linux/mm.h>
> > +#include <linux/init.h>
> > +#include <linux/mmzone.h>
> > +#include <linux/random.h>
> > +#include <linux/shuffle.h>
>
> Does shuffle.h need to be available to the whole kernel or can we put
> it in mm/?

The wider kernel just needs page_alloc_shuffle() so that
platform-firmware parsing code that detects a memory-side-cache can
enable the shuffle. The rest can be constrained to an mm/ local
header.

>
> > +#include <linux/moduleparam.h>
> > +#include "internal.h"
> > +
> > +DEFINE_STATIC_KEY_FALSE(page_alloc_shuffle_key);
> > +static unsigned long shuffle_state __ro_after_init;
> > +
> > +/*
> > + * Depending on the architecture, module parameter parsing may run
> > + * before, or after the cache detection. SHUFFLE_FORCE_DISABLE prevents,
> > + * or reverts the enabling of the shuffle implementation. SHUFFLE_ENABLE
> > + * attempts to turn on the implementation, but aborts if it finds
> > + * SHUFFLE_FORCE_DISABLE already set.
> > + */
> > +void page_alloc_shuffle(enum mm_shuffle_ctl ctl)
> > +{
> > + if (ctl == SHUFFLE_FORCE_DISABLE)
> > + set_bit(SHUFFLE_FORCE_DISABLE, &shuffle_state);
> > +
> > + if (test_bit(SHUFFLE_FORCE_DISABLE, &shuffle_state)) {
> > + if (test_and_clear_bit(SHUFFLE_ENABLE, &shuffle_state))
> > + static_branch_disable(&page_alloc_shuffle_key);
> > + } else if (ctl == SHUFFLE_ENABLE
> > + && !test_and_set_bit(SHUFFLE_ENABLE, &shuffle_state))
> > + static_branch_enable(&page_alloc_shuffle_key);
> > +}
>
> Can this be __meminit?

Yes.

>
> > +static bool shuffle_param;
> > +extern int shuffle_show(char *buffer, const struct kernel_param *kp)
> > +{
> > + return sprintf(buffer, "%c\n", test_bit(SHUFFLE_ENABLE, &shuffle_state)
> > + ? 'Y' : 'N');
> > +}
> > +static int shuffle_store(const char *val, const struct kernel_param *kp)
> > +{
> > + int rc = param_set_bool(val, kp);
> > +
> > + if (rc < 0)
> > + return rc;
> > + if (shuffle_param)
> > + page_alloc_shuffle(SHUFFLE_ENABLE);
> > + else
> > + page_alloc_shuffle(SHUFFLE_FORCE_DISABLE);
> > + return 0;
> > +}
> > +module_param_call(shuffle, shuffle_store, shuffle_show, &shuffle_param, 0400);
> >
> > ...
> >
> > +/*
> > + * Fisher-Yates shuffle the freelist which prescribes iterating through
> > + * an array, pfns in this case, and randomly swapping each entry with
> > + * another in the span, end_pfn - start_pfn.
> > + *
> > + * To keep the implementation simple it does not attempt to correct for
> > + * sources of bias in the distribution, like modulo bias or
> > + * pseudo-random number generator bias. I.e. the expectation is that
> > + * this shuffling raises the bar for attacks that exploit the
> > + * predictability of page allocations, but need not be a perfect
> > + * shuffle.
>
> Reflowing the comment to use all 80 cols would save a line :)

WIll do.

>
> > + */
> > +#define SHUFFLE_RETRY 10
> > +void __meminit __shuffle_zone(struct zone *z)
> > +{
> > + unsigned long i, flags;
> > + unsigned long start_pfn = z->zone_start_pfn;
> > + unsigned long end_pfn = zone_end_pfn(z);
> > + const int order = SHUFFLE_ORDER;
> > + const int order_pages = 1 << order;
> > +
> > + spin_lock_irqsave(&z->lock, flags);
> > + start_pfn = ALIGN(start_pfn, order_pages);
> > + for (i = start_pfn; i < end_pfn; i += order_pages) {
> > + unsigned long j;
> > + int migratetype, retry;
> > + struct page *page_i, *page_j;
> > +
> > + /*
> > + * We expect page_i, in the sub-range of a zone being
> > + * added (@start_pfn to @end_pfn), to more likely be
> > + * valid compared to page_j randomly selected in the
> > + * span @zone_start_pfn to @spanned_pages.
> > + */
> > + page_i = shuffle_valid_page(i, order);
> > + if (!page_i)
> > + continue;
> > +
> > + for (retry = 0; retry < SHUFFLE_RETRY; retry++) {
> > + /*
> > + * Pick a random order aligned page from the
> > + * start of the zone. Use the *whole* zone here
> > + * so that if it is freed in tiny pieces that we
> > + * randomize in the whole zone, not just within
> > + * those fragments.
>
> Second sentence is hard to parse.

Earlier versions only arranged to shuffle over non-hole ranges, but
the SHUFFLE_RETRY works around that now. I'll update the comment.

>
> > + *
> > + * Since page_j comes from a potentially sparse
> > + * address range we want to try a bit harder to
> > + * find a shuffle point for page_i.
> > + */
>
> Reflow the comment...

yup.

>
> > + j = z->zone_start_pfn +
> > + ALIGN_DOWN(get_random_long() % z->spanned_pages,
> > + order_pages);
> > + page_j = shuffle_valid_page(j, order);
> > + if (page_j && page_j != page_i)
> > + break;
> > + }
> > + if (retry >= SHUFFLE_RETRY) {
> > + pr_debug("%s: failed to swap %#lx\n", __func__, i);
> > + continue;
> > + }
> > +
> > + /*
> > + * Each migratetype corresponds to its own list, make
> > + * sure the types match otherwise we're moving pages to
> > + * lists where they do not belong.
> > + */
>
> Reflow.

ok.

\
 
 \ /
  Last update: 2019-02-01 00:05    [W:0.438 / U:0.472 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site