cregit-Linux how code gets into the kernel

Release 4.14 arch/x86/mm/pageattr-test.c

Directory: arch/x86/mm
// SPDX-License-Identifier: GPL-2.0
/*
 * self test for change_page_attr.
 *
 * Clears the a test pte bit on random pages in the direct mapping,
 * then reverts and compares page tables forwards and afterwards.
 */
#include <linux/bootmem.h>
#include <linux/kthread.h>
#include <linux/random.h>
#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/mm.h>
#include <linux/vmalloc.h>

#include <asm/cacheflush.h>
#include <asm/pgtable.h>
#include <asm/kdebug.h>

/*
 * Only print the results of the first pass:
 */

static __read_mostly int print = 1;

enum {
	
NTEST			= 400,
#ifdef CONFIG_X86_64
	
LPS			= (1 << PMD_SHIFT),
#elif defined(CONFIG_X86_PAE)
	LPS			= (1 << PMD_SHIFT),
#else
	LPS			= (1 << 22),
#endif
	
GPS			= (1<<30)
};


#define PAGE_CPA_TEST	__pgprot(_PAGE_CPA_TEST)


static int pte_testbit(pte_t pte) { return pte_flags(pte) & _PAGE_SOFTW1; }

Contributors

PersonTokensPropCommitsCommitProp
Jeremy Fitzhardinge1694.12%150.00%
Mel Gorman15.88%150.00%
Total17100.00%2100.00%

struct split_state { long lpg, gpg, spg, exec; long min_exec, max_exec; };
static int print_split(struct split_state *s) { long i, expected, missed = 0; int err = 0; s->lpg = s->gpg = s->spg = s->exec = 0; s->min_exec = ~0UL; s->max_exec = 0; for (i = 0; i < max_pfn_mapped; ) { unsigned long addr = (unsigned long)__va(i << PAGE_SHIFT); unsigned int level; pte_t *pte; pte = lookup_address(addr, &level); if (!pte) { missed++; i++; continue; } if (level == PG_LEVEL_1G && sizeof(long) == 8) { s->gpg++; i += GPS/PAGE_SIZE; } else if (level == PG_LEVEL_2M) { if ((pte_val(*pte) & _PAGE_PRESENT) && !(pte_val(*pte) & _PAGE_PSE)) { printk(KERN_ERR "%lx level %d but not PSE %Lx\n", addr, level, (u64)pte_val(*pte)); err = 1; } s->lpg++; i += LPS/PAGE_SIZE; } else { s->spg++; i++; } if (!(pte_val(*pte) & _PAGE_NX)) { s->exec++; if (addr < s->min_exec) s->min_exec = addr; if (addr > s->max_exec) s->max_exec = addr; } } if (print) { printk(KERN_INFO " 4k %lu large %lu gb %lu x %lu[%lx-%lx] miss %lu\n", s->spg, s->lpg, s->gpg, s->exec, s->min_exec != ~0UL ? s->min_exec : 0, s->max_exec, missed); } expected = (s->gpg*GPS + s->lpg*LPS)/PAGE_SIZE + s->spg + missed; if (expected != i) { printk(KERN_ERR "CPA max_pfn_mapped %lu but expected %lu\n", max_pfn_mapped, expected); return 1; } return err; }

Contributors

PersonTokensPropCommitsCommitProp
Andi Kleen32388.74%114.29%
Ingo Molnar277.42%342.86%
Andrea Arcangeli102.75%114.29%
Thomas Gleixner30.82%114.29%
Harvey Harrison10.27%114.29%
Total364100.00%7100.00%

static unsigned long addr[NTEST]; static unsigned int len[NTEST]; /* Change the global bit on random pages in the direct mapping */
static int pageattr_test(void) { struct split_state sa, sb, sc; unsigned long *bm; pte_t *pte, pte0; int failed = 0; unsigned int level; int i, k; int err; unsigned long test_addr; if (print) printk(KERN_INFO "CPA self-test:\n"); bm = vzalloc((max_pfn_mapped + 7) / 8); if (!bm) { printk(KERN_ERR "CPA Cannot vmalloc bitmap\n"); return -ENOMEM; } failed += print_split(&sa); for (i = 0; i < NTEST; i++) { unsigned long pfn = prandom_u32() % max_pfn_mapped; addr[i] = (unsigned long)__va(pfn << PAGE_SHIFT); len[i] = prandom_u32() % 100; len[i] = min_t(unsigned long, len[i], max_pfn_mapped - pfn - 1); if (len[i] == 0) len[i] = 1; pte = NULL; pte0 = pfn_pte(0, __pgprot(0)); /* shut gcc up */ for (k = 0; k < len[i]; k++) { pte = lookup_address(addr[i] + k*PAGE_SIZE, &level); if (!pte || pgprot_val(pte_pgprot(*pte)) == 0 || !(pte_val(*pte) & _PAGE_PRESENT)) { addr[i] = 0; break; } if (k == 0) { pte0 = *pte; } else { if (pgprot_val(pte_pgprot(*pte)) != pgprot_val(pte_pgprot(pte0))) { len[i] = k; break; } } if (test_bit(pfn + k, bm)) { len[i] = k; break; } __set_bit(pfn + k, bm); } if (!addr[i] || !pte || !k) { addr[i] = 0; continue; } test_addr = addr[i]; err = change_page_attr_set(&test_addr, len[i], PAGE_CPA_TEST, 0); if (err < 0) { printk(KERN_ERR "CPA %d failed %d\n", i, err); failed++; } pte = lookup_address(addr[i], &level); if (!pte || !pte_testbit(*pte) || pte_huge(*pte)) { printk(KERN_ERR "CPA %lx: bad pte %Lx\n", addr[i], pte ? (u64)pte_val(*pte) : 0ULL); failed++; } if (level != PG_LEVEL_4K) { printk(KERN_ERR "CPA %lx: unexpected level %d\n", addr[i], level); failed++; } } vfree(bm); failed += print_split(&sb); for (i = 0; i < NTEST; i++) { if (!addr[i]) continue; pte = lookup_address(addr[i], &level); if (!pte) { printk(KERN_ERR "CPA lookup of %lx failed\n", addr[i]); failed++; continue; } test_addr = addr[i]; err = change_page_attr_clear(&test_addr, len[i], PAGE_CPA_TEST, 0); if (err < 0) { printk(KERN_ERR "CPA reverting failed: %d\n", err); failed++; } pte = lookup_address(addr[i], &level); if (!pte || pte_testbit(*pte)) { printk(KERN_ERR "CPA %lx: bad pte after revert %Lx\n", addr[i], pte ? (u64)pte_val(*pte) : 0ULL); failed++; } } failed += print_split(&sc); if (failed) { WARN(1, KERN_ERR "NOT PASSED. Please report.\n"); return -EINVAL; } else { if (print) printk(KERN_INFO "ok.\n"); } return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Andi Kleen59985.09%17.14%
Ingo Molnar557.81%428.57%
David Shaohua Li243.41%17.14%
Thomas Gleixner141.99%214.29%
Jeremy Fitzhardinge50.71%214.29%
Arjan van de Ven30.43%17.14%
Akinobu Mita20.28%17.14%
Harvey Harrison10.14%17.14%
Joe Perches10.14%17.14%
Total704100.00%14100.00%


static int do_pageattr_test(void *__unused) { while (!kthread_should_stop()) { schedule_timeout_interruptible(HZ*30); if (pageattr_test() < 0) break; if (print) print--; } return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Ingo Molnar43100.00%1100.00%
Total43100.00%1100.00%


static int start_pageattr_test(void) { struct task_struct *p; p = kthread_create(do_pageattr_test, NULL, "pageattr-test"); if (!IS_ERR(p)) wake_up_process(p); else WARN_ON(1); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Ingo Molnar46100.00%1100.00%
Total46100.00%1100.00%

device_initcall(start_pageattr_test);

Overall Contributors

PersonTokensPropCommitsCommitProp
Andi Kleen102778.34%15.00%
Ingo Molnar18714.26%420.00%
Jeremy Fitzhardinge261.98%210.00%
David Shaohua Li241.83%15.00%
Thomas Gleixner201.53%315.00%
Andrea Arcangeli100.76%15.00%
Paul Gortmaker40.31%15.00%
Arjan van de Ven30.23%15.00%
Stephen Rothwell30.23%15.00%
Akinobu Mita20.15%15.00%
Harvey Harrison20.15%15.00%
Mel Gorman10.08%15.00%
Greg Kroah-Hartman10.08%15.00%
Joe Perches10.08%15.00%
Total1311100.00%20100.00%
Directory: arch/x86/mm
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.