2022-09-15 15:03:51 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
/*
|
|
|
|
* KMSAN initialization routines.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2017-2021 Google LLC
|
|
|
|
* Author: Alexander Potapenko <glider@google.com>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "kmsan.h"
|
|
|
|
|
|
|
|
#include <asm/sections.h>
|
|
|
|
#include <linux/mm.h>
|
|
|
|
#include <linux/memblock.h>
|
|
|
|
|
|
|
|
#include "../internal.h"
|
|
|
|
|
|
|
|
#define NUM_FUTURE_RANGES 128
|
|
|
|
struct start_end_pair {
|
|
|
|
u64 start, end;
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct start_end_pair start_end_pairs[NUM_FUTURE_RANGES] __initdata;
|
|
|
|
static int future_index __initdata;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Record a range of memory for which the metadata pages will be created once
|
|
|
|
* the page allocator becomes available.
|
|
|
|
*/
|
|
|
|
static void __init kmsan_record_future_shadow_range(void *start, void *end)
|
|
|
|
{
|
|
|
|
u64 nstart = (u64)start, nend = (u64)end, cstart, cend;
|
|
|
|
bool merged = false;
|
|
|
|
|
|
|
|
KMSAN_WARN_ON(future_index == NUM_FUTURE_RANGES);
|
2024-06-21 11:35:05 +00:00
|
|
|
KMSAN_WARN_ON((nstart >= nend) ||
|
|
|
|
/* Virtual address 0 is valid on s390. */
|
|
|
|
(!IS_ENABLED(CONFIG_S390) && !nstart) ||
|
|
|
|
!nend);
|
2022-09-15 15:03:51 +00:00
|
|
|
nstart = ALIGN_DOWN(nstart, PAGE_SIZE);
|
|
|
|
nend = ALIGN(nend, PAGE_SIZE);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Scan the existing ranges to see if any of them overlaps with
|
|
|
|
* [start, end). In that case, merge the two ranges instead of
|
|
|
|
* creating a new one.
|
|
|
|
* The number of ranges is less than 20, so there is no need to organize
|
|
|
|
* them into a more intelligent data structure.
|
|
|
|
*/
|
|
|
|
for (int i = 0; i < future_index; i++) {
|
|
|
|
cstart = start_end_pairs[i].start;
|
|
|
|
cend = start_end_pairs[i].end;
|
|
|
|
if ((cstart < nstart && cend < nstart) ||
|
|
|
|
(cstart > nend && cend > nend))
|
|
|
|
/* ranges are disjoint - do not merge */
|
|
|
|
continue;
|
|
|
|
start_end_pairs[i].start = min(nstart, cstart);
|
|
|
|
start_end_pairs[i].end = max(nend, cend);
|
|
|
|
merged = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (merged)
|
|
|
|
return;
|
|
|
|
start_end_pairs[future_index].start = nstart;
|
|
|
|
start_end_pairs[future_index].end = nend;
|
|
|
|
future_index++;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Initialize the shadow for existing mappings during kernel initialization.
|
|
|
|
* These include kernel text/data sections, NODE_DATA and future ranges
|
|
|
|
* registered while creating other data (e.g. percpu).
|
|
|
|
*
|
|
|
|
* Allocations via memblock can be only done before slab is initialized.
|
|
|
|
*/
|
|
|
|
void __init kmsan_init_shadow(void)
|
|
|
|
{
|
2024-06-21 11:34:59 +00:00
|
|
|
const size_t nd_size = sizeof(pg_data_t);
|
2022-09-15 15:03:51 +00:00
|
|
|
phys_addr_t p_start, p_end;
|
|
|
|
u64 loop;
|
|
|
|
int nid;
|
|
|
|
|
|
|
|
for_each_reserved_mem_range(loop, &p_start, &p_end)
|
|
|
|
kmsan_record_future_shadow_range(phys_to_virt(p_start),
|
|
|
|
phys_to_virt(p_end));
|
|
|
|
/* Allocate shadow for .data */
|
|
|
|
kmsan_record_future_shadow_range(_sdata, _edata);
|
|
|
|
|
|
|
|
for_each_online_node(nid)
|
|
|
|
kmsan_record_future_shadow_range(
|
|
|
|
NODE_DATA(nid), (char *)NODE_DATA(nid) + nd_size);
|
|
|
|
|
|
|
|
for (int i = 0; i < future_index; i++)
|
|
|
|
kmsan_init_alloc_meta_for_range(
|
|
|
|
(void *)start_end_pairs[i].start,
|
|
|
|
(void *)start_end_pairs[i].end);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct metadata_page_pair {
|
|
|
|
struct page *shadow, *origin;
|
|
|
|
};
|
2023-12-28 14:47:03 +00:00
|
|
|
static struct metadata_page_pair held_back[NR_PAGE_ORDERS] __initdata;
|
2022-09-15 15:03:51 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Eager metadata allocation. When the memblock allocator is freeing pages to
|
|
|
|
* pagealloc, we use 2/3 of them as metadata for the remaining 1/3.
|
|
|
|
* We store the pointers to the returned blocks of pages in held_back[] grouped
|
|
|
|
* by their order: when kmsan_memblock_free_pages() is called for the first
|
|
|
|
* time with a certain order, it is reserved as a shadow block, for the second
|
|
|
|
* time - as an origin block. On the third time the incoming block receives its
|
|
|
|
* shadow and origin ranges from the previously saved shadow and origin blocks,
|
|
|
|
* after which held_back[order] can be used again.
|
|
|
|
*
|
|
|
|
* At the very end there may be leftover blocks in held_back[]. They are
|
|
|
|
* collected later by kmsan_memblock_discard().
|
|
|
|
*/
|
|
|
|
bool kmsan_memblock_free_pages(struct page *page, unsigned int order)
|
|
|
|
{
|
|
|
|
struct page *shadow, *origin;
|
|
|
|
|
|
|
|
if (!held_back[order].shadow) {
|
|
|
|
held_back[order].shadow = page;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (!held_back[order].origin) {
|
|
|
|
held_back[order].origin = page;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
shadow = held_back[order].shadow;
|
|
|
|
origin = held_back[order].origin;
|
|
|
|
kmsan_setup_meta(page, shadow, origin, order);
|
|
|
|
|
|
|
|
held_back[order].shadow = NULL;
|
|
|
|
held_back[order].origin = NULL;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define MAX_BLOCKS 8
|
|
|
|
struct smallstack {
|
|
|
|
struct page *items[MAX_BLOCKS];
|
|
|
|
int index;
|
|
|
|
int order;
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct smallstack collect = {
|
|
|
|
.index = 0,
|
2023-12-28 14:47:04 +00:00
|
|
|
.order = MAX_PAGE_ORDER,
|
2022-09-15 15:03:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static void smallstack_push(struct smallstack *stack, struct page *pages)
|
|
|
|
{
|
|
|
|
KMSAN_WARN_ON(stack->index == MAX_BLOCKS);
|
|
|
|
stack->items[stack->index] = pages;
|
|
|
|
stack->index++;
|
|
|
|
}
|
|
|
|
#undef MAX_BLOCKS
|
|
|
|
|
|
|
|
static struct page *smallstack_pop(struct smallstack *stack)
|
|
|
|
{
|
|
|
|
struct page *ret;
|
|
|
|
|
|
|
|
KMSAN_WARN_ON(stack->index == 0);
|
|
|
|
stack->index--;
|
|
|
|
ret = stack->items[stack->index];
|
|
|
|
stack->items[stack->index] = NULL;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void do_collection(void)
|
|
|
|
{
|
|
|
|
struct page *page, *shadow, *origin;
|
|
|
|
|
|
|
|
while (collect.index >= 3) {
|
|
|
|
page = smallstack_pop(&collect);
|
|
|
|
shadow = smallstack_pop(&collect);
|
|
|
|
origin = smallstack_pop(&collect);
|
|
|
|
kmsan_setup_meta(page, shadow, origin, collect.order);
|
mm: pass meminit_context to __free_pages_core()
Patch series "mm/memory_hotplug: use PageOffline() instead of
PageReserved() for !ZONE_DEVICE".
This can be a considered a long-overdue follow-up to some parts of [1].
The patches are based on [2], but they are not strictly required -- just
makes it clearer why we can use adjust_managed_page_count() for memory
hotplug without going into details about highmem.
We stop initializing pages with PageReserved() in memory hotplug code --
except when dealing with ZONE_DEVICE for now. Instead, we use
PageOffline(): all pages are initialized to PageOffline() when onlining a
memory section, and only the ones actually getting exposed to the
system/page allocator will get PageOffline cleared.
This way, we enlighten memory hotplug more about PageOffline() pages and
can cleanup some hacks we have in virtio-mem code.
What about ZONE_DEVICE? PageOffline() is wrong, but we might just stop
using PageReserved() for them later by simply checking for
is_zone_device_page() at suitable places. That will be a separate patch
set / proposal.
This primarily affects virtio-mem, HV-balloon and XEN balloon. I only
briefly tested with virtio-mem, which benefits most from these cleanups.
[1] https://lore.kernel.org/all/20191024120938.11237-1-david@redhat.com/
[2] https://lkml.kernel.org/r/20240607083711.62833-1-david@redhat.com
This patch (of 3):
In preparation for further changes, let's teach __free_pages_core() about
the differences of memory hotplug handling.
Move the memory hotplug specific handling from generic_online_page() to
__free_pages_core(), use adjust_managed_page_count() on the memory hotplug
path, and spell out why memory freed via memblock cannot currently use
adjust_managed_page_count().
[david@redhat.com: add missed CONFIG_DEFERRED_STRUCT_PAGE_INIT]
Link: https://lkml.kernel.org/r/b72e6efd-fb0a-459c-b1a0-88a98e5b19e2@redhat.com
[david@redhat.com: fix up the memblock comment, per Oscar]
Link: https://lkml.kernel.org/r/2ed64218-7f3b-4302-a5dc-27f060654fe2@redhat.com
[david@redhat.com: add the parameter name also in the declaration]
Link: https://lkml.kernel.org/r/ca575956-f0dd-4fb9-a307-6b7621681ed9@redhat.com
Link: https://lkml.kernel.org/r/20240607090939.89524-1-david@redhat.com
Link: https://lkml.kernel.org/r/20240607090939.89524-2-david@redhat.com
Signed-off-by: David Hildenbrand <david@redhat.com>
Cc: Alexander Potapenko <glider@google.com>
Cc: Dexuan Cui <decui@microsoft.com>
Cc: Dmitry Vyukov <dvyukov@google.com>
Cc: Eugenio Pérez <eperezma@redhat.com>
Cc: Haiyang Zhang <haiyangz@microsoft.com>
Cc: Jason Wang <jasowang@redhat.com>
Cc: Juergen Gross <jgross@suse.com>
Cc: "K. Y. Srinivasan" <kys@microsoft.com>
Cc: Marco Elver <elver@google.com>
Cc: Michael S. Tsirkin <mst@redhat.com>
Cc: Mike Rapoport (IBM) <rppt@kernel.org>
Cc: Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
Cc: Oscar Salvador <osalvador@suse.de>
Cc: Stefano Stabellini <sstabellini@kernel.org>
Cc: Wei Liu <wei.liu@kernel.org>
Cc: Xuan Zhuo <xuanzhuo@linux.alibaba.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
2024-06-07 09:09:36 +00:00
|
|
|
__free_pages_core(page, collect.order, MEMINIT_EARLY);
|
2022-09-15 15:03:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void collect_split(void)
|
|
|
|
{
|
|
|
|
struct smallstack tmp = {
|
|
|
|
.order = collect.order - 1,
|
|
|
|
.index = 0,
|
|
|
|
};
|
|
|
|
struct page *page;
|
|
|
|
|
|
|
|
if (!collect.order)
|
|
|
|
return;
|
|
|
|
while (collect.index) {
|
|
|
|
page = smallstack_pop(&collect);
|
|
|
|
smallstack_push(&tmp, &page[0]);
|
|
|
|
smallstack_push(&tmp, &page[1 << tmp.order]);
|
|
|
|
}
|
|
|
|
__memcpy(&collect, &tmp, sizeof(tmp));
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Memblock is about to go away. Split the page blocks left over in held_back[]
|
|
|
|
* and return 1/3 of that memory to the system.
|
|
|
|
*/
|
|
|
|
static void kmsan_memblock_discard(void)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* For each order=N:
|
|
|
|
* - push held_back[N].shadow and .origin to @collect;
|
|
|
|
* - while there are >= 3 elements in @collect, do garbage collection:
|
|
|
|
* - pop 3 ranges from @collect;
|
|
|
|
* - use two of them as shadow and origin for the third one;
|
|
|
|
* - repeat;
|
|
|
|
* - split each remaining element from @collect into 2 ranges of
|
|
|
|
* order=N-1,
|
|
|
|
* - repeat.
|
|
|
|
*/
|
2023-12-28 14:47:04 +00:00
|
|
|
collect.order = MAX_PAGE_ORDER;
|
|
|
|
for (int i = MAX_PAGE_ORDER; i >= 0; i--) {
|
2022-09-15 15:03:51 +00:00
|
|
|
if (held_back[i].shadow)
|
|
|
|
smallstack_push(&collect, held_back[i].shadow);
|
|
|
|
if (held_back[i].origin)
|
|
|
|
smallstack_push(&collect, held_back[i].origin);
|
|
|
|
held_back[i].shadow = NULL;
|
|
|
|
held_back[i].origin = NULL;
|
|
|
|
do_collection();
|
|
|
|
collect_split();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void __init kmsan_init_runtime(void)
|
|
|
|
{
|
|
|
|
/* Assuming current is init_task */
|
|
|
|
kmsan_internal_task_create(current);
|
|
|
|
kmsan_memblock_discard();
|
|
|
|
pr_info("Starting KernelMemorySanitizer\n");
|
|
|
|
pr_info("ATTENTION: KMSAN is a debugging tool! Do not use it on production machines!\n");
|
|
|
|
kmsan_enabled = true;
|
|
|
|
}
|