License cleanup: add SPDX GPL-2.0 license identifier to files with no license
Many source files in the tree are missing licensing information, which
makes it harder for compliance tools to determine the correct license.
By default all files without license information are under the default
license of the kernel, which is GPL version 2.
Update the files which contain no license information with the 'GPL-2.0'
SPDX license identifier. The SPDX identifier is a legally binding
shorthand, which can be used instead of the full boiler plate text.
This patch is based on work done by Thomas Gleixner and Kate Stewart and
Philippe Ombredanne.
How this work was done:
Patches were generated and checked against linux-4.14-rc6 for a subset of
the use cases:
- file had no licensing information it it.
- file was a */uapi/* one with no licensing information in it,
- file was a */uapi/* one with existing licensing information,
Further patches will be generated in subsequent months to fix up cases
where non-standard license headers were used, and references to license
had to be inferred by heuristics based on keywords.
The analysis to determine which SPDX License Identifier to be applied to
a file was done in a spreadsheet of side by side results from of the
output of two independent scanners (ScanCode & Windriver) producing SPDX
tag:value files created by Philippe Ombredanne. Philippe prepared the
base worksheet, and did an initial spot review of a few 1000 files.
The 4.13 kernel was the starting point of the analysis with 60,537 files
assessed. Kate Stewart did a file by file comparison of the scanner
results in the spreadsheet to determine which SPDX license identifier(s)
to be applied to the file. She confirmed any determination that was not
immediately clear with lawyers working with the Linux Foundation.
Criteria used to select files for SPDX license identifier tagging was:
- Files considered eligible had to be source code files.
- Make and config files were included as candidates if they contained >5
lines of source
- File already had some variant of a license header in it (even if <5
lines).
All documentation files were explicitly excluded.
The following heuristics were used to determine which SPDX license
identifiers to apply.
- when both scanners couldn't find any license traces, file was
considered to have no license information in it, and the top level
COPYING file license applied.
For non */uapi/* files that summary was:
SPDX license identifier # files
---------------------------------------------------|-------
GPL-2.0 11139
and resulted in the first patch in this series.
If that file was a */uapi/* path one, it was "GPL-2.0 WITH
Linux-syscall-note" otherwise it was "GPL-2.0". Results of that was:
SPDX license identifier # files
---------------------------------------------------|-------
GPL-2.0 WITH Linux-syscall-note 930
and resulted in the second patch in this series.
- if a file had some form of licensing information in it, and was one
of the */uapi/* ones, it was denoted with the Linux-syscall-note if
any GPL family license was found in the file or had no licensing in
it (per prior point). Results summary:
SPDX license identifier # files
---------------------------------------------------|------
GPL-2.0 WITH Linux-syscall-note 270
GPL-2.0+ WITH Linux-syscall-note 169
((GPL-2.0 WITH Linux-syscall-note) OR BSD-2-Clause) 21
((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause) 17
LGPL-2.1+ WITH Linux-syscall-note 15
GPL-1.0+ WITH Linux-syscall-note 14
((GPL-2.0+ WITH Linux-syscall-note) OR BSD-3-Clause) 5
LGPL-2.0+ WITH Linux-syscall-note 4
LGPL-2.1 WITH Linux-syscall-note 3
((GPL-2.0 WITH Linux-syscall-note) OR MIT) 3
((GPL-2.0 WITH Linux-syscall-note) AND MIT) 1
and that resulted in the third patch in this series.
- when the two scanners agreed on the detected license(s), that became
the concluded license(s).
- when there was disagreement between the two scanners (one detected a
license but the other didn't, or they both detected different
licenses) a manual inspection of the file occurred.
- In most cases a manual inspection of the information in the file
resulted in a clear resolution of the license that should apply (and
which scanner probably needed to revisit its heuristics).
- When it was not immediately clear, the license identifier was
confirmed with lawyers working with the Linux Foundation.
- If there was any question as to the appropriate license identifier,
the file was flagged for further research and to be revisited later
in time.
In total, over 70 hours of logged manual review was done on the
spreadsheet to determine the SPDX license identifiers to apply to the
source files by Kate, Philippe, Thomas and, in some cases, confirmation
by lawyers working with the Linux Foundation.
Kate also obtained a third independent scan of the 4.13 code base from
FOSSology, and compared selected files where the other two scanners
disagreed against that SPDX file, to see if there was new insights. The
Windriver scanner is based on an older version of FOSSology in part, so
they are related.
Thomas did random spot checks in about 500 files from the spreadsheets
for the uapi headers and agreed with SPDX license identifier in the
files he inspected. For the non-uapi files Thomas did random spot checks
in about 15000 files.
In initial set of patches against 4.14-rc6, 3 files were found to have
copy/paste license identifier errors, and have been fixed to reflect the
correct identifier.
Additionally Philippe spent 10 hours this week doing a detailed manual
inspection and review of the 12,461 patched files from the initial patch
version early this week with:
- a full scancode scan run, collecting the matched texts, detected
license ids and scores
- reviewing anything where there was a license detected (about 500+
files) to ensure that the applied SPDX license was correct
- reviewing anything where there was no detection but the patch license
was not GPL-2.0 WITH Linux-syscall-note to ensure that the applied
SPDX license was correct
This produced a worksheet with 20 files needing minor correction. This
worksheet was then exported into 3 different .csv files for the
different types of files to be modified.
These .csv files were then reviewed by Greg. Thomas wrote a script to
parse the csv files and add the proper SPDX tag to the file, in the
format that the file expected. This script was further refined by Greg
based on the output to detect more types of files automatically and to
distinguish between header and source .c files (which need different
comment types.) Finally Greg ran the script using the .csv files to
generate the patches.
Reviewed-by: Kate Stewart <kstewart@linuxfoundation.org>
Reviewed-by: Philippe Ombredanne <pombredanne@nexb.com>
Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2017-11-01 15:07:57 +01:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2005-04-17 00:20:36 +02:00
|
|
|
/*
|
|
|
|
* fs/proc/kcore.c kernel ELF core dumper
|
|
|
|
*
|
|
|
|
* Modelled on fs/exec.c:aout_core_dump()
|
|
|
|
* Jeremy Fitzhardinge <jeremy@sw.oz.au>
|
|
|
|
* ELF version written by David Howells <David.Howells@nexor.co.uk>
|
|
|
|
* Modified and incorporated into 2.3.x by Tigran Aivazian <tigran@veritas.com>
|
|
|
|
* Support to dump vmalloc'd areas (ELF only), Tigran Aivazian <tigran@veritas.com>
|
|
|
|
* Safe accesses to vmalloc/direct-mapped discontiguous areas, Kanoj Sarcar <kanoj@sgi.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/mm.h>
|
|
|
|
#include <linux/proc_fs.h>
|
2013-04-12 01:10:25 +02:00
|
|
|
#include <linux/kcore.h>
|
2005-04-17 00:20:36 +02:00
|
|
|
#include <linux/user.h>
|
2006-01-11 21:17:46 +01:00
|
|
|
#include <linux/capability.h>
|
2005-04-17 00:20:36 +02:00
|
|
|
#include <linux/elf.h>
|
|
|
|
#include <linux/elfcore.h>
|
2013-04-30 00:08:08 +02:00
|
|
|
#include <linux/notifier.h>
|
2005-04-17 00:20:36 +02:00
|
|
|
#include <linux/vmalloc.h>
|
|
|
|
#include <linux/highmem.h>
|
2013-02-28 02:03:16 +01:00
|
|
|
#include <linux/printk.h>
|
2009-09-23 01:45:48 +02:00
|
|
|
#include <linux/bootmem.h>
|
2005-04-17 00:20:36 +02:00
|
|
|
#include <linux/init.h>
|
include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
percpu.h is included by sched.h and module.h and thus ends up being
included when building most .c files. percpu.h includes slab.h which
in turn includes gfp.h making everything defined by the two files
universally available and complicating inclusion dependencies.
percpu.h -> slab.h dependency is about to be removed. Prepare for
this change by updating users of gfp and slab facilities include those
headers directly instead of assuming availability. As this conversion
needs to touch large number of source files, the following script is
used as the basis of conversion.
http://userweb.kernel.org/~tj/misc/slabh-sweep.py
The script does the followings.
* Scan files for gfp and slab usages and update includes such that
only the necessary includes are there. ie. if only gfp is used,
gfp.h, if slab is used, slab.h.
* When the script inserts a new include, it looks at the include
blocks and try to put the new include such that its order conforms
to its surrounding. It's put in the include block which contains
core kernel includes, in the same order that the rest are ordered -
alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
doesn't seem to be any matching order.
* If the script can't find a place to put a new include (mostly
because the file doesn't have fitting include block), it prints out
an error message indicating which .h file needs to be added to the
file.
The conversion was done in the following steps.
1. The initial automatic conversion of all .c files updated slightly
over 4000 files, deleting around 700 includes and adding ~480 gfp.h
and ~3000 slab.h inclusions. The script emitted errors for ~400
files.
2. Each error was manually checked. Some didn't need the inclusion,
some needed manual addition while adding it to implementation .h or
embedding .c file was more appropriate for others. This step added
inclusions to around 150 files.
3. The script was run again and the output was compared to the edits
from #2 to make sure no file was left behind.
4. Several build tests were done and a couple of problems were fixed.
e.g. lib/decompress_*.c used malloc/free() wrappers around slab
APIs requiring slab.h to be added manually.
5. The script was run on all .h files but without automatically
editing them as sprinkling gfp.h and slab.h inclusions around .h
files could easily lead to inclusion dependency hell. Most gfp.h
inclusion directives were ignored as stuff from gfp.h was usually
wildly available and often used in preprocessor macros. Each
slab.h inclusion directive was examined and added manually as
necessary.
6. percpu.h was updated not to include slab.h.
7. Build test were done on the following configurations and failures
were fixed. CONFIG_GCOV_KERNEL was turned off for all tests (as my
distributed build env didn't work with gcov compiles) and a few
more options had to be turned off depending on archs to make things
build (like ipr on powerpc/64 which failed due to missing writeq).
* x86 and x86_64 UP and SMP allmodconfig and a custom test config.
* powerpc and powerpc64 SMP allmodconfig
* sparc and sparc64 SMP allmodconfig
* ia64 SMP allmodconfig
* s390 SMP allmodconfig
* alpha SMP allmodconfig
* um on x86_64 SMP allmodconfig
8. percpu.h modifications were reverted so that it could be applied as
a separate patch and serve as bisection point.
Given the fact that I had only a couple of failures from tests on step
6, I'm fairly confident about the coverage of this conversion patch.
If there is a breakage, it's likely to be something in one of the arch
headers which should be easily discoverable easily on most builds of
the specific arch.
Signed-off-by: Tejun Heo <tj@kernel.org>
Guess-its-ok-by: Christoph Lameter <cl@linux-foundation.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
2010-03-24 09:04:11 +01:00
|
|
|
#include <linux/slab.h>
|
2016-12-24 20:46:01 +01:00
|
|
|
#include <linux/uaccess.h>
|
2005-04-17 00:20:36 +02:00
|
|
|
#include <asm/io.h>
|
2009-09-23 01:45:41 +02:00
|
|
|
#include <linux/list.h>
|
2009-09-23 01:45:48 +02:00
|
|
|
#include <linux/ioport.h>
|
|
|
|
#include <linux/memory.h>
|
2017-02-08 18:51:36 +01:00
|
|
|
#include <linux/sched/task.h>
|
2009-09-23 01:45:45 +02:00
|
|
|
#include <asm/sections.h>
|
2013-04-11 14:34:43 +02:00
|
|
|
#include "internal.h"
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2006-12-07 05:38:00 +01:00
|
|
|
#define CORE_STR "CORE"
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2008-07-25 10:48:10 +02:00
|
|
|
#ifndef ELF_CORE_EFLAGS
|
|
|
|
#define ELF_CORE_EFLAGS 0
|
|
|
|
#endif
|
|
|
|
|
2008-10-06 12:14:19 +02:00
|
|
|
static struct proc_dir_entry *proc_root_kcore;
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
#ifndef kc_vaddr_to_offset
|
|
|
|
#define kc_vaddr_to_offset(v) ((v) - PAGE_OFFSET)
|
|
|
|
#endif
|
|
|
|
#ifndef kc_offset_to_vaddr
|
|
|
|
#define kc_offset_to_vaddr(o) ((o) + PAGE_OFFSET)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* An ELF note in memory */
|
|
|
|
struct memelfnote
|
|
|
|
{
|
|
|
|
const char *name;
|
|
|
|
int type;
|
|
|
|
unsigned int datasz;
|
|
|
|
void *data;
|
|
|
|
};
|
|
|
|
|
2009-09-23 01:45:41 +02:00
|
|
|
static LIST_HEAD(kclist_head);
|
2005-04-17 00:20:36 +02:00
|
|
|
static DEFINE_RWLOCK(kclist_lock);
|
2009-09-23 01:45:48 +02:00
|
|
|
static int kcore_need_update = 1;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2018-08-22 06:54:51 +02:00
|
|
|
/* This doesn't grab kclist_lock, so it should only be used at init time. */
|
|
|
|
void __init kclist_add(struct kcore_list *new, void *addr, size_t size,
|
|
|
|
int type)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
|
|
|
new->addr = (unsigned long)addr;
|
|
|
|
new->size = size;
|
2009-09-23 01:45:43 +02:00
|
|
|
new->type = type;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2009-09-23 01:45:41 +02:00
|
|
|
list_add_tail(&new->list, &kclist_head);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static size_t get_kcore_size(int *nphdr, size_t *elf_buflen)
|
|
|
|
{
|
|
|
|
size_t try, size;
|
|
|
|
struct kcore_list *m;
|
|
|
|
|
|
|
|
*nphdr = 1; /* PT_NOTE */
|
|
|
|
size = 0;
|
|
|
|
|
2009-09-23 01:45:41 +02:00
|
|
|
list_for_each_entry(m, &kclist_head, list) {
|
2005-04-17 00:20:36 +02:00
|
|
|
try = kc_vaddr_to_offset((size_t)m->addr + m->size);
|
|
|
|
if (try > size)
|
|
|
|
size = try;
|
|
|
|
*nphdr = *nphdr + 1;
|
|
|
|
}
|
|
|
|
*elf_buflen = sizeof(struct elfhdr) +
|
|
|
|
(*nphdr + 2)*sizeof(struct elf_phdr) +
|
2006-12-07 05:38:00 +01:00
|
|
|
3 * ((sizeof(struct elf_note)) +
|
|
|
|
roundup(sizeof(CORE_STR), 4)) +
|
|
|
|
roundup(sizeof(struct elf_prstatus), 4) +
|
|
|
|
roundup(sizeof(struct elf_prpsinfo), 4) +
|
2015-07-17 12:28:12 +02:00
|
|
|
roundup(arch_task_struct_size, 4);
|
2005-04-17 00:20:36 +02:00
|
|
|
*elf_buflen = PAGE_ALIGN(*elf_buflen);
|
|
|
|
return size + *elf_buflen;
|
|
|
|
}
|
|
|
|
|
2009-09-23 01:45:48 +02:00
|
|
|
static void free_kclist_ents(struct list_head *head)
|
|
|
|
{
|
|
|
|
struct kcore_list *tmp, *pos;
|
|
|
|
|
|
|
|
list_for_each_entry_safe(pos, tmp, head, list) {
|
|
|
|
list_del(&pos->list);
|
|
|
|
kfree(pos);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/*
|
2009-09-23 01:45:49 +02:00
|
|
|
* Replace all KCORE_RAM/KCORE_VMEMMAP information with passed list.
|
2009-09-23 01:45:48 +02:00
|
|
|
*/
|
|
|
|
static void __kcore_update_ram(struct list_head *list)
|
|
|
|
{
|
2009-09-23 01:45:51 +02:00
|
|
|
int nphdr;
|
|
|
|
size_t size;
|
2009-09-23 01:45:48 +02:00
|
|
|
struct kcore_list *tmp, *pos;
|
|
|
|
LIST_HEAD(garbage);
|
|
|
|
|
|
|
|
write_lock(&kclist_lock);
|
2018-08-22 06:54:55 +02:00
|
|
|
if (xchg(&kcore_need_update, 0)) {
|
2009-09-23 01:45:48 +02:00
|
|
|
list_for_each_entry_safe(pos, tmp, &kclist_head, list) {
|
2009-09-23 01:45:49 +02:00
|
|
|
if (pos->type == KCORE_RAM
|
|
|
|
|| pos->type == KCORE_VMEMMAP)
|
2009-09-23 01:45:48 +02:00
|
|
|
list_move(&pos->list, &garbage);
|
|
|
|
}
|
|
|
|
list_splice_tail(list, &kclist_head);
|
|
|
|
} else
|
|
|
|
list_splice(list, &garbage);
|
2009-09-23 01:45:51 +02:00
|
|
|
proc_root_kcore->size = get_kcore_size(&nphdr, &size);
|
2009-09-23 01:45:48 +02:00
|
|
|
write_unlock(&kclist_lock);
|
|
|
|
|
|
|
|
free_kclist_ents(&garbage);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef CONFIG_HIGHMEM
|
|
|
|
/*
|
|
|
|
* If no highmem, we can assume [0...max_low_pfn) continuous range of memory
|
|
|
|
* because memory hole is not as big as !HIGHMEM case.
|
|
|
|
* (HIGHMEM is special because part of memory is _invisible_ from the kernel.)
|
|
|
|
*/
|
|
|
|
static int kcore_update_ram(void)
|
|
|
|
{
|
|
|
|
LIST_HEAD(head);
|
|
|
|
struct kcore_list *ent;
|
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
ent = kmalloc(sizeof(*ent), GFP_KERNEL);
|
|
|
|
if (!ent)
|
|
|
|
return -ENOMEM;
|
|
|
|
ent->addr = (unsigned long)__va(0);
|
|
|
|
ent->size = max_low_pfn << PAGE_SHIFT;
|
|
|
|
ent->type = KCORE_RAM;
|
|
|
|
list_add(&ent->list, &head);
|
|
|
|
__kcore_update_ram(&head);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
#else /* !CONFIG_HIGHMEM */
|
|
|
|
|
2009-09-23 01:45:49 +02:00
|
|
|
#ifdef CONFIG_SPARSEMEM_VMEMMAP
|
|
|
|
/* calculate vmemmap's address from given system ram pfn and register it */
|
2012-03-23 23:02:52 +01:00
|
|
|
static int
|
|
|
|
get_sparsemem_vmemmap_info(struct kcore_list *ent, struct list_head *head)
|
2009-09-23 01:45:49 +02:00
|
|
|
{
|
|
|
|
unsigned long pfn = __pa(ent->addr) >> PAGE_SHIFT;
|
|
|
|
unsigned long nr_pages = ent->size >> PAGE_SHIFT;
|
|
|
|
unsigned long start, end;
|
|
|
|
struct kcore_list *vmm, *tmp;
|
|
|
|
|
|
|
|
|
|
|
|
start = ((unsigned long)pfn_to_page(pfn)) & PAGE_MASK;
|
|
|
|
end = ((unsigned long)pfn_to_page(pfn + nr_pages)) - 1;
|
2014-08-08 23:21:20 +02:00
|
|
|
end = PAGE_ALIGN(end);
|
2009-09-23 01:45:49 +02:00
|
|
|
/* overlap check (because we have to align page */
|
|
|
|
list_for_each_entry(tmp, head, list) {
|
|
|
|
if (tmp->type != KCORE_VMEMMAP)
|
|
|
|
continue;
|
|
|
|
if (start < tmp->addr + tmp->size)
|
|
|
|
if (end > tmp->addr)
|
|
|
|
end = tmp->addr;
|
|
|
|
}
|
|
|
|
if (start < end) {
|
|
|
|
vmm = kmalloc(sizeof(*vmm), GFP_KERNEL);
|
|
|
|
if (!vmm)
|
|
|
|
return 0;
|
|
|
|
vmm->addr = start;
|
|
|
|
vmm->size = end - start;
|
|
|
|
vmm->type = KCORE_VMEMMAP;
|
|
|
|
list_add_tail(&vmm->list, head);
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
}
|
|
|
|
#else
|
2012-03-23 23:02:52 +01:00
|
|
|
static int
|
|
|
|
get_sparsemem_vmemmap_info(struct kcore_list *ent, struct list_head *head)
|
2009-09-23 01:45:49 +02:00
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2009-09-23 01:45:48 +02:00
|
|
|
static int
|
|
|
|
kclist_add_private(unsigned long pfn, unsigned long nr_pages, void *arg)
|
|
|
|
{
|
|
|
|
struct list_head *head = (struct list_head *)arg;
|
|
|
|
struct kcore_list *ent;
|
2018-05-12 01:01:57 +02:00
|
|
|
struct page *p;
|
|
|
|
|
|
|
|
if (!pfn_valid(pfn))
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
p = pfn_to_page(pfn);
|
|
|
|
if (!memmap_valid_within(pfn, p, page_zone(p)))
|
|
|
|
return 1;
|
2009-09-23 01:45:48 +02:00
|
|
|
|
|
|
|
ent = kmalloc(sizeof(*ent), GFP_KERNEL);
|
|
|
|
if (!ent)
|
|
|
|
return -ENOMEM;
|
2018-05-12 01:01:57 +02:00
|
|
|
ent->addr = (unsigned long)page_to_virt(p);
|
2009-09-23 01:45:48 +02:00
|
|
|
ent->size = nr_pages << PAGE_SHIFT;
|
|
|
|
|
2018-05-12 01:01:57 +02:00
|
|
|
if (!virt_addr_valid(ent->addr))
|
2009-09-23 01:45:48 +02:00
|
|
|
goto free_out;
|
|
|
|
|
|
|
|
/* cut not-mapped area. ....from ppc-32 code. */
|
|
|
|
if (ULONG_MAX - ent->addr < ent->size)
|
|
|
|
ent->size = ULONG_MAX - ent->addr;
|
|
|
|
|
2018-05-12 01:01:57 +02:00
|
|
|
/*
|
|
|
|
* We've already checked virt_addr_valid so we know this address
|
|
|
|
* is a valid pointer, therefore we can check against it to determine
|
|
|
|
* if we need to trim
|
|
|
|
*/
|
|
|
|
if (VMALLOC_START > ent->addr) {
|
2009-09-23 01:45:48 +02:00
|
|
|
if (VMALLOC_START - ent->addr < ent->size)
|
|
|
|
ent->size = VMALLOC_START - ent->addr;
|
|
|
|
}
|
|
|
|
|
|
|
|
ent->type = KCORE_RAM;
|
|
|
|
list_add_tail(&ent->list, head);
|
2009-09-23 01:45:49 +02:00
|
|
|
|
|
|
|
if (!get_sparsemem_vmemmap_info(ent, head)) {
|
|
|
|
list_del(&ent->list);
|
|
|
|
goto free_out;
|
|
|
|
}
|
|
|
|
|
2009-09-23 01:45:48 +02:00
|
|
|
return 0;
|
|
|
|
free_out:
|
|
|
|
kfree(ent);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int kcore_update_ram(void)
|
|
|
|
{
|
|
|
|
int nid, ret;
|
|
|
|
unsigned long end_pfn;
|
|
|
|
LIST_HEAD(head);
|
|
|
|
|
|
|
|
/* Not inialized....update now */
|
|
|
|
/* find out "max pfn" */
|
|
|
|
end_pfn = 0;
|
2012-12-12 22:51:25 +01:00
|
|
|
for_each_node_state(nid, N_MEMORY) {
|
2009-09-23 01:45:48 +02:00
|
|
|
unsigned long node_end;
|
2013-11-13 00:07:19 +01:00
|
|
|
node_end = node_end_pfn(nid);
|
2009-09-23 01:45:48 +02:00
|
|
|
if (end_pfn < node_end)
|
|
|
|
end_pfn = node_end;
|
|
|
|
}
|
|
|
|
/* scan 0 to max_pfn */
|
|
|
|
ret = walk_system_ram_range(0, end_pfn, &head, kclist_add_private);
|
|
|
|
if (ret) {
|
|
|
|
free_kclist_ents(&head);
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
__kcore_update_ram(&head);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_HIGHMEM */
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
/*
|
|
|
|
* determine size of ELF note
|
|
|
|
*/
|
|
|
|
static int notesize(struct memelfnote *en)
|
|
|
|
{
|
|
|
|
int sz;
|
|
|
|
|
|
|
|
sz = sizeof(struct elf_note);
|
2006-09-29 11:01:45 +02:00
|
|
|
sz += roundup((strlen(en->name) + 1), 4);
|
2005-04-17 00:20:36 +02:00
|
|
|
sz += roundup(en->datasz, 4);
|
|
|
|
|
|
|
|
return sz;
|
|
|
|
} /* end notesize() */
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
/*
|
|
|
|
* store a note in the header buffer
|
|
|
|
*/
|
|
|
|
static char *storenote(struct memelfnote *men, char *bufp)
|
|
|
|
{
|
|
|
|
struct elf_note en;
|
|
|
|
|
|
|
|
#define DUMP_WRITE(addr,nr) do { memcpy(bufp,addr,nr); bufp += nr; } while(0)
|
|
|
|
|
2006-09-29 11:01:45 +02:00
|
|
|
en.n_namesz = strlen(men->name) + 1;
|
2005-04-17 00:20:36 +02:00
|
|
|
en.n_descsz = men->datasz;
|
|
|
|
en.n_type = men->type;
|
|
|
|
|
|
|
|
DUMP_WRITE(&en, sizeof(en));
|
|
|
|
DUMP_WRITE(men->name, en.n_namesz);
|
|
|
|
|
|
|
|
/* XXX - cast from long long to long to avoid need for libgcc.a */
|
|
|
|
bufp = (char*) roundup((unsigned long)bufp,4);
|
|
|
|
DUMP_WRITE(men->data, men->datasz);
|
|
|
|
bufp = (char*) roundup((unsigned long)bufp,4);
|
|
|
|
|
|
|
|
#undef DUMP_WRITE
|
|
|
|
|
|
|
|
return bufp;
|
|
|
|
} /* end storenote() */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* store an ELF coredump header in the supplied buffer
|
|
|
|
* nphdr is the number of elf_phdr to insert
|
|
|
|
*/
|
|
|
|
static void elf_kcore_store_hdr(char *bufp, int nphdr, int dataoff)
|
|
|
|
{
|
|
|
|
struct elf_prstatus prstatus; /* NT_PRSTATUS */
|
|
|
|
struct elf_prpsinfo prpsinfo; /* NT_PRPSINFO */
|
|
|
|
struct elf_phdr *nhdr, *phdr;
|
|
|
|
struct elfhdr *elf;
|
|
|
|
struct memelfnote notes[3];
|
|
|
|
off_t offset = 0;
|
|
|
|
struct kcore_list *m;
|
|
|
|
|
|
|
|
/* setup ELF header */
|
|
|
|
elf = (struct elfhdr *) bufp;
|
|
|
|
bufp += sizeof(struct elfhdr);
|
|
|
|
offset += sizeof(struct elfhdr);
|
|
|
|
memcpy(elf->e_ident, ELFMAG, SELFMAG);
|
|
|
|
elf->e_ident[EI_CLASS] = ELF_CLASS;
|
|
|
|
elf->e_ident[EI_DATA] = ELF_DATA;
|
|
|
|
elf->e_ident[EI_VERSION]= EV_CURRENT;
|
|
|
|
elf->e_ident[EI_OSABI] = ELF_OSABI;
|
|
|
|
memset(elf->e_ident+EI_PAD, 0, EI_NIDENT-EI_PAD);
|
|
|
|
elf->e_type = ET_CORE;
|
|
|
|
elf->e_machine = ELF_ARCH;
|
|
|
|
elf->e_version = EV_CURRENT;
|
|
|
|
elf->e_entry = 0;
|
|
|
|
elf->e_phoff = sizeof(struct elfhdr);
|
|
|
|
elf->e_shoff = 0;
|
2008-07-25 10:48:10 +02:00
|
|
|
elf->e_flags = ELF_CORE_EFLAGS;
|
2005-04-17 00:20:36 +02:00
|
|
|
elf->e_ehsize = sizeof(struct elfhdr);
|
|
|
|
elf->e_phentsize= sizeof(struct elf_phdr);
|
|
|
|
elf->e_phnum = nphdr;
|
|
|
|
elf->e_shentsize= 0;
|
|
|
|
elf->e_shnum = 0;
|
|
|
|
elf->e_shstrndx = 0;
|
|
|
|
|
|
|
|
/* setup ELF PT_NOTE program header */
|
|
|
|
nhdr = (struct elf_phdr *) bufp;
|
|
|
|
bufp += sizeof(struct elf_phdr);
|
|
|
|
offset += sizeof(struct elf_phdr);
|
|
|
|
nhdr->p_type = PT_NOTE;
|
|
|
|
nhdr->p_offset = 0;
|
|
|
|
nhdr->p_vaddr = 0;
|
|
|
|
nhdr->p_paddr = 0;
|
|
|
|
nhdr->p_filesz = 0;
|
|
|
|
nhdr->p_memsz = 0;
|
|
|
|
nhdr->p_flags = 0;
|
|
|
|
nhdr->p_align = 0;
|
|
|
|
|
|
|
|
/* setup ELF PT_LOAD program header for every area */
|
2009-09-23 01:45:41 +02:00
|
|
|
list_for_each_entry(m, &kclist_head, list) {
|
2005-04-17 00:20:36 +02:00
|
|
|
phdr = (struct elf_phdr *) bufp;
|
|
|
|
bufp += sizeof(struct elf_phdr);
|
|
|
|
offset += sizeof(struct elf_phdr);
|
|
|
|
|
|
|
|
phdr->p_type = PT_LOAD;
|
|
|
|
phdr->p_flags = PF_R|PF_W|PF_X;
|
|
|
|
phdr->p_offset = kc_vaddr_to_offset(m->addr) + dataoff;
|
|
|
|
phdr->p_vaddr = (size_t)m->addr;
|
2018-08-22 06:54:48 +02:00
|
|
|
if (m->type == KCORE_RAM)
|
/proc/kcore: update physical address for kcore ram and text
Currently all the p_paddr of PT_LOAD headers are assigned to 0, which is
not true and could be misleading, since 0 is a valid physical address.
User space tools like makedumpfile needs to know physical address for
PT_LOAD segments of direct mapped regions. Therefore this patch updates
paddr for such regions. It also sets an invalid paddr (-1) for other
regions, so that user space tool can know whether a physical address
provided in PT_LOAD is correct or not.
I do not know why it was 0, which is a valid physical address. But
certainly, it might break some user space tools, and those need to be
fixed. For example, see following code from kexec-tools
kexec/kexec-elf.c:build_mem_phdrs()
if ((phdr->p_paddr + phdr->p_memsz) < phdr->p_paddr) {
/* The memory address wraps */
if (probe_debug) {
fprintf(stderr, "ELF address wrap around\n");
}
return -1;
}
We do not need to perform above check for an invalid physical address.
I think, kexec-tools and makedumpfile will need fixup. I already have
those fixup which will be sent upstream once this patch makes through.
Pro with this approach is that, it will help to calculate variable like
page_offset, phys_base from PT_LOAD even when they are randomized and
therefore will reduce many variable and version specific values in user
space tools.
Having an ASLR offset information can help to translate an identity
mapped virtual address to a physical address. But that would be an
additional field in PT_LOAD header structure and an arch dependent
value.
Moreover, sending a valid physical address like 0 does not seem right.
So, IMHO it is better to fix that and send valid physical address when
available (identity mapped).
Link: http://lkml.kernel.org/r/f951340d2917cdd2a329fae9837a83f2059dc3b2.1485318868.git.panand@redhat.com
Signed-off-by: Pratyush Anand <panand@redhat.com>
Cc: Baoquan He <bhe@redhat.com>
Cc: Dave Young <dyoung@redhat.com>
Cc: Dave Anderson <anderson@redhat.com>
Cc: Atsushi Kumagai <kumagai-atsushi@mxc.nes.nec.co.jp>
Cc: Simon Horman <simon.horman@netronome.com>
Cc: Kees Cook <keescook@chromium.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2017-02-27 23:27:31 +01:00
|
|
|
phdr->p_paddr = __pa(m->addr);
|
2018-08-22 06:54:48 +02:00
|
|
|
else if (m->type == KCORE_TEXT)
|
|
|
|
phdr->p_paddr = __pa_symbol(m->addr);
|
/proc/kcore: update physical address for kcore ram and text
Currently all the p_paddr of PT_LOAD headers are assigned to 0, which is
not true and could be misleading, since 0 is a valid physical address.
User space tools like makedumpfile needs to know physical address for
PT_LOAD segments of direct mapped regions. Therefore this patch updates
paddr for such regions. It also sets an invalid paddr (-1) for other
regions, so that user space tool can know whether a physical address
provided in PT_LOAD is correct or not.
I do not know why it was 0, which is a valid physical address. But
certainly, it might break some user space tools, and those need to be
fixed. For example, see following code from kexec-tools
kexec/kexec-elf.c:build_mem_phdrs()
if ((phdr->p_paddr + phdr->p_memsz) < phdr->p_paddr) {
/* The memory address wraps */
if (probe_debug) {
fprintf(stderr, "ELF address wrap around\n");
}
return -1;
}
We do not need to perform above check for an invalid physical address.
I think, kexec-tools and makedumpfile will need fixup. I already have
those fixup which will be sent upstream once this patch makes through.
Pro with this approach is that, it will help to calculate variable like
page_offset, phys_base from PT_LOAD even when they are randomized and
therefore will reduce many variable and version specific values in user
space tools.
Having an ASLR offset information can help to translate an identity
mapped virtual address to a physical address. But that would be an
additional field in PT_LOAD header structure and an arch dependent
value.
Moreover, sending a valid physical address like 0 does not seem right.
So, IMHO it is better to fix that and send valid physical address when
available (identity mapped).
Link: http://lkml.kernel.org/r/f951340d2917cdd2a329fae9837a83f2059dc3b2.1485318868.git.panand@redhat.com
Signed-off-by: Pratyush Anand <panand@redhat.com>
Cc: Baoquan He <bhe@redhat.com>
Cc: Dave Young <dyoung@redhat.com>
Cc: Dave Anderson <anderson@redhat.com>
Cc: Atsushi Kumagai <kumagai-atsushi@mxc.nes.nec.co.jp>
Cc: Simon Horman <simon.horman@netronome.com>
Cc: Kees Cook <keescook@chromium.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2017-02-27 23:27:31 +01:00
|
|
|
else
|
|
|
|
phdr->p_paddr = (elf_addr_t)-1;
|
2005-04-17 00:20:36 +02:00
|
|
|
phdr->p_filesz = phdr->p_memsz = m->size;
|
|
|
|
phdr->p_align = PAGE_SIZE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Set up the notes in similar form to SVR4 core dumps made
|
|
|
|
* with info from their /proc.
|
|
|
|
*/
|
|
|
|
nhdr->p_offset = offset;
|
|
|
|
|
|
|
|
/* set up the process status */
|
2006-12-07 05:38:00 +01:00
|
|
|
notes[0].name = CORE_STR;
|
2005-04-17 00:20:36 +02:00
|
|
|
notes[0].type = NT_PRSTATUS;
|
|
|
|
notes[0].datasz = sizeof(struct elf_prstatus);
|
|
|
|
notes[0].data = &prstatus;
|
|
|
|
|
|
|
|
memset(&prstatus, 0, sizeof(struct elf_prstatus));
|
|
|
|
|
|
|
|
nhdr->p_filesz = notesize(¬es[0]);
|
|
|
|
bufp = storenote(¬es[0], bufp);
|
|
|
|
|
|
|
|
/* set up the process info */
|
2006-12-07 05:38:00 +01:00
|
|
|
notes[1].name = CORE_STR;
|
2005-04-17 00:20:36 +02:00
|
|
|
notes[1].type = NT_PRPSINFO;
|
|
|
|
notes[1].datasz = sizeof(struct elf_prpsinfo);
|
|
|
|
notes[1].data = &prpsinfo;
|
|
|
|
|
|
|
|
memset(&prpsinfo, 0, sizeof(struct elf_prpsinfo));
|
|
|
|
prpsinfo.pr_state = 0;
|
|
|
|
prpsinfo.pr_sname = 'R';
|
|
|
|
prpsinfo.pr_zomb = 0;
|
|
|
|
|
|
|
|
strcpy(prpsinfo.pr_fname, "vmlinux");
|
2013-07-04 00:08:28 +02:00
|
|
|
strlcpy(prpsinfo.pr_psargs, saved_command_line, sizeof(prpsinfo.pr_psargs));
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
nhdr->p_filesz += notesize(¬es[1]);
|
|
|
|
bufp = storenote(¬es[1], bufp);
|
|
|
|
|
|
|
|
/* set up the task structure */
|
2006-12-07 05:38:00 +01:00
|
|
|
notes[2].name = CORE_STR;
|
2005-04-17 00:20:36 +02:00
|
|
|
notes[2].type = NT_TASKSTRUCT;
|
2015-07-17 12:28:12 +02:00
|
|
|
notes[2].datasz = arch_task_struct_size;
|
2005-04-17 00:20:36 +02:00
|
|
|
notes[2].data = current;
|
|
|
|
|
|
|
|
nhdr->p_filesz += notesize(¬es[2]);
|
|
|
|
bufp = storenote(¬es[2], bufp);
|
|
|
|
|
|
|
|
} /* end elf_kcore_store_hdr() */
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
/*
|
|
|
|
* read from the ELF header and then kernel memory
|
|
|
|
*/
|
|
|
|
static ssize_t
|
|
|
|
read_kcore(struct file *file, char __user *buffer, size_t buflen, loff_t *fpos)
|
|
|
|
{
|
2016-09-08 09:57:07 +02:00
|
|
|
char *buf = file->private_data;
|
2005-04-17 00:20:36 +02:00
|
|
|
ssize_t acc = 0;
|
|
|
|
size_t size, tsz;
|
|
|
|
size_t elf_buflen;
|
|
|
|
int nphdr;
|
|
|
|
unsigned long start;
|
|
|
|
|
|
|
|
read_lock(&kclist_lock);
|
2009-09-23 01:45:51 +02:00
|
|
|
size = get_kcore_size(&nphdr, &elf_buflen);
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
if (buflen == 0 || *fpos >= size) {
|
|
|
|
read_unlock(&kclist_lock);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* trim buflen to not go beyond EOF */
|
|
|
|
if (buflen > size - *fpos)
|
|
|
|
buflen = size - *fpos;
|
|
|
|
|
|
|
|
/* construct an ELF core header if we'll need some of it */
|
|
|
|
if (*fpos < elf_buflen) {
|
|
|
|
char * elf_buf;
|
|
|
|
|
|
|
|
tsz = elf_buflen - *fpos;
|
|
|
|
if (buflen < tsz)
|
|
|
|
tsz = buflen;
|
2006-09-27 10:49:37 +02:00
|
|
|
elf_buf = kzalloc(elf_buflen, GFP_ATOMIC);
|
2005-04-17 00:20:36 +02:00
|
|
|
if (!elf_buf) {
|
|
|
|
read_unlock(&kclist_lock);
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
elf_kcore_store_hdr(elf_buf, nphdr, elf_buflen);
|
|
|
|
read_unlock(&kclist_lock);
|
|
|
|
if (copy_to_user(buffer, elf_buf + *fpos, tsz)) {
|
|
|
|
kfree(elf_buf);
|
|
|
|
return -EFAULT;
|
|
|
|
}
|
|
|
|
kfree(elf_buf);
|
|
|
|
buflen -= tsz;
|
|
|
|
*fpos += tsz;
|
|
|
|
buffer += tsz;
|
|
|
|
acc += tsz;
|
|
|
|
|
|
|
|
/* leave now if filled buffer already */
|
|
|
|
if (buflen == 0)
|
|
|
|
return acc;
|
|
|
|
} else
|
|
|
|
read_unlock(&kclist_lock);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Check to see if our file offset matches with any of
|
|
|
|
* the addresses in the elf_phdr on our list.
|
|
|
|
*/
|
|
|
|
start = kc_offset_to_vaddr(*fpos - elf_buflen);
|
|
|
|
if ((tsz = (PAGE_SIZE - (start & ~PAGE_MASK))) > buflen)
|
|
|
|
tsz = buflen;
|
|
|
|
|
|
|
|
while (buflen) {
|
|
|
|
struct kcore_list *m;
|
|
|
|
|
|
|
|
read_lock(&kclist_lock);
|
2009-09-23 01:45:41 +02:00
|
|
|
list_for_each_entry(m, &kclist_head, list) {
|
2005-04-17 00:20:36 +02:00
|
|
|
if (start >= m->addr && start < (m->addr+m->size))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
read_unlock(&kclist_lock);
|
|
|
|
|
2010-03-23 21:35:42 +01:00
|
|
|
if (&m->list == &kclist_head) {
|
2005-04-17 00:20:36 +02:00
|
|
|
if (clear_user(buffer, tsz))
|
|
|
|
return -EFAULT;
|
2017-06-14 12:43:54 +02:00
|
|
|
} else if (m->type == KCORE_VMALLOC) {
|
2016-09-08 09:57:07 +02:00
|
|
|
vread(buf, (char *)start, tsz);
|
2009-09-22 02:02:35 +02:00
|
|
|
/* we have to zero-fill user buffer even if no read */
|
2016-09-08 09:57:07 +02:00
|
|
|
if (copy_to_user(buffer, buf, tsz))
|
2005-04-17 00:20:36 +02:00
|
|
|
return -EFAULT;
|
2018-02-12 15:44:53 +01:00
|
|
|
} else if (m->type == KCORE_USER) {
|
|
|
|
/* User page is handled prior to normal kernel page: */
|
|
|
|
if (copy_to_user(buffer, (char *)start, tsz))
|
|
|
|
return -EFAULT;
|
2005-04-17 00:20:36 +02:00
|
|
|
} else {
|
|
|
|
if (kern_addr_valid(start)) {
|
2016-09-08 09:57:08 +02:00
|
|
|
/*
|
|
|
|
* Using bounce buffer to bypass the
|
|
|
|
* hardened user copy kernel text checks.
|
|
|
|
*/
|
2018-02-07 00:37:13 +01:00
|
|
|
if (probe_kernel_read(buf, (void *) start, tsz)) {
|
|
|
|
if (clear_user(buffer, tsz))
|
|
|
|
return -EFAULT;
|
|
|
|
} else {
|
|
|
|
if (copy_to_user(buffer, buf, tsz))
|
2005-04-17 00:20:36 +02:00
|
|
|
return -EFAULT;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (clear_user(buffer, tsz))
|
|
|
|
return -EFAULT;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
buflen -= tsz;
|
|
|
|
*fpos += tsz;
|
|
|
|
buffer += tsz;
|
|
|
|
acc += tsz;
|
|
|
|
start += tsz;
|
|
|
|
tsz = (buflen > PAGE_SIZE ? PAGE_SIZE : buflen);
|
|
|
|
}
|
|
|
|
|
|
|
|
return acc;
|
|
|
|
}
|
2008-10-06 12:14:19 +02:00
|
|
|
|
2009-09-23 01:45:48 +02:00
|
|
|
|
|
|
|
static int open_kcore(struct inode *inode, struct file *filp)
|
|
|
|
{
|
|
|
|
if (!capable(CAP_SYS_RAWIO))
|
|
|
|
return -EPERM;
|
2016-09-08 09:57:07 +02:00
|
|
|
|
|
|
|
filp->private_data = kmalloc(PAGE_SIZE, GFP_KERNEL);
|
|
|
|
if (!filp->private_data)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
2009-09-23 01:45:48 +02:00
|
|
|
if (kcore_need_update)
|
|
|
|
kcore_update_ram();
|
2009-09-23 01:45:52 +02:00
|
|
|
if (i_size_read(inode) != proc_root_kcore->size) {
|
2016-01-22 21:40:57 +01:00
|
|
|
inode_lock(inode);
|
2009-09-23 01:45:52 +02:00
|
|
|
i_size_write(inode, proc_root_kcore->size);
|
2016-01-22 21:40:57 +01:00
|
|
|
inode_unlock(inode);
|
2009-09-23 01:45:52 +02:00
|
|
|
}
|
2009-09-23 01:45:48 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-09-08 09:57:07 +02:00
|
|
|
static int release_kcore(struct inode *inode, struct file *file)
|
|
|
|
{
|
|
|
|
kfree(file->private_data);
|
|
|
|
return 0;
|
|
|
|
}
|
2009-09-23 01:45:48 +02:00
|
|
|
|
|
|
|
static const struct file_operations proc_kcore_operations = {
|
|
|
|
.read = read_kcore,
|
|
|
|
.open = open_kcore,
|
2016-09-08 09:57:07 +02:00
|
|
|
.release = release_kcore,
|
2011-01-13 02:00:36 +01:00
|
|
|
.llseek = default_llseek,
|
2009-09-23 01:45:48 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/* just remember that we have to update kcore */
|
|
|
|
static int __meminit kcore_callback(struct notifier_block *self,
|
|
|
|
unsigned long action, void *arg)
|
|
|
|
{
|
|
|
|
switch (action) {
|
|
|
|
case MEM_ONLINE:
|
|
|
|
case MEM_OFFLINE:
|
|
|
|
kcore_need_update = 1;
|
2018-08-22 06:54:55 +02:00
|
|
|
break;
|
2009-09-23 01:45:48 +02:00
|
|
|
}
|
|
|
|
return NOTIFY_OK;
|
|
|
|
}
|
|
|
|
|
2013-04-30 00:08:08 +02:00
|
|
|
static struct notifier_block kcore_callback_nb __meminitdata = {
|
|
|
|
.notifier_call = kcore_callback,
|
|
|
|
.priority = 0,
|
|
|
|
};
|
2009-09-23 01:45:48 +02:00
|
|
|
|
2009-09-23 01:45:44 +02:00
|
|
|
static struct kcore_list kcore_vmalloc;
|
|
|
|
|
2009-09-23 01:45:45 +02:00
|
|
|
#ifdef CONFIG_ARCH_PROC_KCORE_TEXT
|
|
|
|
static struct kcore_list kcore_text;
|
|
|
|
/*
|
|
|
|
* If defined, special segment is used for mapping kernel text instead of
|
|
|
|
* direct-map area. We need to create special TEXT section.
|
|
|
|
*/
|
|
|
|
static void __init proc_kcore_text_init(void)
|
|
|
|
{
|
kcore: add _text to KCORE_TEXT
Extend KCORE_TEXT to cover the pages between _text and _stext, to allow
examining some important page table pages.
`readelf -a` output on x86_64 before and after patch:
Type Offset VirtAddr PhysAddr
before LOAD 0x00007fff8100c000 0xffffffff81009000 0x0000000000000000
after LOAD 0x00007fff81003000 0xffffffff81000000 0x0000000000000000
The newly covered pages are:
0xffffffff81000000 <startup_64> etc.
0xffffffff81001000 <init_level4_pgt>
0xffffffff81002000 <level3_ident_pgt>
0xffffffff81003000 <level3_kernel_pgt>
0xffffffff81004000 <level2_fixmap_pgt>
0xffffffff81005000 <level1_fixmap_pgt>
0xffffffff81006000 <level2_ident_pgt>
0xffffffff81007000 <level2_kernel_pgt>
0xffffffff81008000 <level2_spare_pgt>
Before patch, /proc/kcore shows outdated contents for the above page
table pages, for example:
(gdb) p level3_ident_pgt
$1 = {<text variable, no debug info>} 0xffffffff81002000 <level3_ident_pgt>
(gdb) p/x *((pud_t *)&level3_ident_pgt)@512
$2 = {{pud = 0x1006063}, {pud = 0x0} <repeats 511 times>}
while the real content is:
root@hp /home/wfg# hexdump -s 0x1002000 -n 4096 /dev/mem
1002000 6063 0100 0000 0000 8067 0000 0000 0000
1002010 0000 0000 0000 0000 0000 0000 0000 0000
*
1003000
That is, on a x86_64 box with 2GB memory, we can see first-1GB / full-2GB
identity mapping before/after patch:
(gdb) p/x *((pud_t *)&level3_ident_pgt)@512
before $1 = {{pud = 0x1006063}, {pud = 0x0} <repeats 511 times>}
after $1 = {{pud = 0x1006063}, {pud = 0x8067}, {pud = 0x0} <repeats 510 times>}
Obviously the content before patch is wrong.
Signed-off-by: Wu Fengguang <fengguang.wu@intel.com>
Cc: Andi Kleen <andi@firstfloor.org>
Cc: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2010-05-26 23:43:27 +02:00
|
|
|
kclist_add(&kcore_text, _text, _end - _text, KCORE_TEXT);
|
2009-09-23 01:45:45 +02:00
|
|
|
}
|
|
|
|
#else
|
|
|
|
static void __init proc_kcore_text_init(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2009-09-23 01:45:49 +02:00
|
|
|
#if defined(CONFIG_MODULES) && defined(MODULES_VADDR)
|
|
|
|
/*
|
|
|
|
* MODULES_VADDR has no intersection with VMALLOC_ADDR.
|
|
|
|
*/
|
|
|
|
struct kcore_list kcore_modules;
|
|
|
|
static void __init add_modules_range(void)
|
|
|
|
{
|
2014-10-10 00:25:56 +02:00
|
|
|
if (MODULES_VADDR != VMALLOC_START && MODULES_END != VMALLOC_END) {
|
|
|
|
kclist_add(&kcore_modules, (void *)MODULES_VADDR,
|
2009-09-23 01:45:49 +02:00
|
|
|
MODULES_END - MODULES_VADDR, KCORE_VMALLOC);
|
2014-10-10 00:25:56 +02:00
|
|
|
}
|
2009-09-23 01:45:49 +02:00
|
|
|
}
|
|
|
|
#else
|
|
|
|
static void __init add_modules_range(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2008-10-06 12:14:19 +02:00
|
|
|
static int __init proc_kcore_init(void)
|
|
|
|
{
|
2009-09-23 01:45:48 +02:00
|
|
|
proc_root_kcore = proc_create("kcore", S_IRUSR, NULL,
|
|
|
|
&proc_kcore_operations);
|
2009-09-23 01:45:50 +02:00
|
|
|
if (!proc_root_kcore) {
|
2013-02-28 02:03:16 +01:00
|
|
|
pr_err("couldn't create /proc/kcore\n");
|
2009-09-23 01:45:50 +02:00
|
|
|
return 0; /* Always returns 0. */
|
|
|
|
}
|
2009-09-23 01:45:48 +02:00
|
|
|
/* Store text area if it's special */
|
2009-09-23 01:45:45 +02:00
|
|
|
proc_kcore_text_init();
|
2009-09-23 01:45:48 +02:00
|
|
|
/* Store vmalloc area */
|
2009-09-23 01:45:44 +02:00
|
|
|
kclist_add(&kcore_vmalloc, (void *)VMALLOC_START,
|
|
|
|
VMALLOC_END - VMALLOC_START, KCORE_VMALLOC);
|
2009-09-23 01:45:49 +02:00
|
|
|
add_modules_range();
|
2009-09-23 01:45:48 +02:00
|
|
|
/* Store direct-map area from physical memory map */
|
|
|
|
kcore_update_ram();
|
2013-04-30 00:08:08 +02:00
|
|
|
register_hotmemory_notifier(&kcore_callback_nb);
|
2009-09-23 01:45:48 +02:00
|
|
|
|
2008-10-06 12:14:19 +02:00
|
|
|
return 0;
|
|
|
|
}
|
2014-01-24 00:55:45 +01:00
|
|
|
fs_initcall(proc_kcore_init);
|