cregit-Linux how code gets into the kernel

Release 4.14 arch/powerpc/kernel/machine_kexec_64.c

/*
 * PPC64 code to handle Linux booting another kernel.
 *
 * Copyright (C) 2004-2005, IBM Corp.
 *
 * Created by: Milton D Miller II
 *
 * This source code is licensed under the GNU General Public License,
 * Version 2.  See the file COPYING for more details.
 */


#include <linux/kexec.h>
#include <linux/smp.h>
#include <linux/thread_info.h>
#include <linux/init_task.h>
#include <linux/errno.h>
#include <linux/kernel.h>
#include <linux/cpu.h>
#include <linux/hardirq.h>

#include <asm/page.h>
#include <asm/current.h>
#include <asm/machdep.h>
#include <asm/cacheflush.h>
#include <asm/firmware.h>
#include <asm/paca.h>
#include <asm/mmu.h>
#include <asm/sections.h>	/* _end */
#include <asm/prom.h>
#include <asm/smp.h>
#include <asm/hw_breakpoint.h>
#include <asm/asm-prototypes.h>


int default_machine_kexec_prepare(struct kimage *image) { int i; unsigned long begin, end; /* limits of segment */ unsigned long low, high; /* limits of blocked memory range */ struct device_node *node; const unsigned long *basep; const unsigned int *sizep; /* * Since we use the kernel fault handlers and paging code to * handle the virtual mode, we must make sure no destination * overlaps kernel static data or bss. */ for (i = 0; i < image->nr_segments; i++) if (image->segment[i].mem < __pa(_end)) return -ETXTBSY; /* We also should not overwrite the tce tables */ for_each_node_by_type(node, "pci") { basep = of_get_property(node, "linux,tce-base", NULL); sizep = of_get_property(node, "linux,tce-size", NULL); if (basep == NULL || sizep == NULL) continue; low = *basep; high = low + (*sizep); for (i = 0; i < image->nr_segments; i++) { begin = image->segment[i].mem; end = begin + image->segment[i].memsz; if ((begin < high) && (end > low)) return -ETXTBSY; } } return 0; }

Contributors

PersonTokensPropCommitsCommitProp
R Sharada19196.46%120.00%
Anton Blanchard21.01%120.00%
Stephen Rothwell21.01%120.00%
Jeremy Kerr21.01%120.00%
Michael Ellerman10.51%120.00%
Total198100.00%5100.00%


static void copy_segments(unsigned long ind) { unsigned long entry; unsigned long *ptr; void *dest; void *addr; /* * We rely on kexec_load to create a lists that properly * initializes these pointers before they are used. * We will still crash if the list is wrong, but at least * the compiler will be quiet. */ ptr = NULL; dest = NULL; for (entry = ind; !(entry & IND_DONE); entry = *ptr++) { addr = __va(entry & PAGE_MASK); switch (entry & IND_FLAGS) { case IND_DESTINATION: dest = addr; break; case IND_INDIRECTION: ptr = addr; break; case IND_SOURCE: copy_page(dest, addr); dest += PAGE_SIZE; } } }

Contributors

PersonTokensPropCommitsCommitProp
R Sharada104100.00%1100.00%
Total104100.00%1100.00%


void kexec_copy_flush(struct kimage *image) { long i, nr_segments = image->nr_segments; struct kexec_segment ranges[KEXEC_SEGMENT_MAX]; /* save the ranges on the stack to efficiently flush the icache */ memcpy(ranges, image->segment, sizeof(ranges)); /* * After this call we may not use anything allocated in dynamic * memory, including *image. * * Only globals and the stack are allowed. */ copy_segments(image->head); /* * we need to clear the icache for all dest pages sometime, * including ones that were in place on the original copy */ for (i = 0; i < nr_segments; i++) flush_icache_range((unsigned long)__va(ranges[i].mem), (unsigned long)__va(ranges[i].mem + ranges[i].memsz)); }

Contributors

PersonTokensPropCommitsCommitProp
R Sharada8786.14%150.00%
Michael Ellerman1413.86%150.00%
Total101100.00%2100.00%

#ifdef CONFIG_SMP static int kexec_all_irq_disabled = 0;
static void kexec_smp_down(void *arg) { local_irq_disable(); hard_irq_disable(); mb(); /* make sure our irqs are disabled before we say they are */ get_paca()->kexec_state = KEXEC_STATE_IRQS_OFF; while(kexec_all_irq_disabled == 0) cpu_relax(); mb(); /* make sure all irqs are disabled before this */ hw_breakpoint_disable(); /* * Now every CPU has IRQs off, we can clear out any pending * IPIs and be sure that no more will come in after this. */ if (ppc_md.kexec_cpu_down) ppc_md.kexec_cpu_down(0, 1); kexec_smp_wait(); /* NOTREACHED */ }

Contributors

PersonTokensPropCommitsCommitProp
Michael Neuling2844.44%114.29%
R Sharada2133.33%114.29%
Michael Ellerman57.94%228.57%
Paul Mackerras34.76%114.29%
K.Prasad34.76%114.29%
Phileas Fogg34.76%114.29%
Total63100.00%7100.00%


static void kexec_prepare_cpus_wait(int wait_state) { int my_cpu, i, notified=-1; hw_breakpoint_disable(); my_cpu = get_cpu(); /* Make sure each CPU has at least made it to the state we need. * * FIXME: There is a (slim) chance of a problem if not all of the CPUs * are correctly onlined. If somehow we start a CPU on boot with RTAS * start-cpu, but somehow that CPU doesn't write callin_cpu_map[] in * time, the boot CPU will timeout. If it does eventually execute * stuff, the secondary will start up (paca[].cpu_start was written) and * get into a peculiar state. If the platform supports * smp_ops->take_timebase(), the secondary CPU will probably be spinning * in there. If not (i.e. pseries), the secondary will continue on and * try to online itself/idle/etc. If it survives that, we need to find * these possible-but-not-online-but-should-be CPUs and chaperone them * into kexec_smp_wait(). */ for_each_online_cpu(i) { if (i == my_cpu) continue; while (paca[i].kexec_state < wait_state) { barrier(); if (i != notified) { printk(KERN_INFO "kexec: waiting for cpu %d " "(physical %d) to enter %i state\n", i, paca[i].hw_cpu_id, wait_state); notified = i; } } } mb(); }

Contributors

PersonTokensPropCommitsCommitProp
R Sharada6471.11%116.67%
Michael Neuling1213.33%116.67%
Matt Evans88.89%233.33%
Anton Blanchard33.33%116.67%
K.Prasad33.33%116.67%
Total90100.00%6100.00%

/* * We need to make sure each present CPU is online. The next kernel will scan * the device tree and assume primary threads are online and query secondary * threads via RTAS to online them if required. If we don't online primary * threads, they will be stuck. However, we also online secondary threads as we * may be using 'cede offline'. In this case RTAS doesn't see the secondary * threads as offline -- and again, these CPUs will be stuck. * * So, we online all CPUs that should be running, including secondary threads. */
static void wake_offline_cpus(void) { int cpu = 0; for_each_present_cpu(cpu) { if (!cpu_online(cpu)) { printk(KERN_INFO "kexec: Waking offline cpu %d.\n", cpu); WARN_ON(cpu_up(cpu)); } } }

Contributors

PersonTokensPropCommitsCommitProp
Matt Evans4293.33%150.00%
Srivatsa S. Bhat36.67%150.00%
Total45100.00%2100.00%


static void kexec_prepare_cpus(void) { wake_offline_cpus(); smp_call_function(kexec_smp_down, NULL, /* wait */0); local_irq_disable(); hard_irq_disable(); mb(); /* make sure IRQs are disabled before we say they are */ get_paca()->kexec_state = KEXEC_STATE_IRQS_OFF; kexec_prepare_cpus_wait(KEXEC_STATE_IRQS_OFF); /* we are sure every CPU has IRQs off at this point */ kexec_all_irq_disabled = 1; /* after we tell the others to go down */ if (ppc_md.kexec_cpu_down) ppc_md.kexec_cpu_down(0, 0); /* * Before removing MMU mappings make sure all CPUs have entered real * mode: */ kexec_prepare_cpus_wait(KEXEC_STATE_REAL_MODE); put_cpu(); }

Contributors

PersonTokensPropCommitsCommitProp
Michael Neuling4663.01%114.29%
R Sharada1317.81%114.29%
Matt Evans45.48%228.57%
Michael Ellerman45.48%114.29%
Paul Mackerras34.11%114.29%
Phileas Fogg34.11%114.29%
Total73100.00%7100.00%

#else /* ! SMP */
static void kexec_prepare_cpus(void) { /* * move the secondarys to us so that we can copy * the new kernel 0-0x100 safely * * do this if kexec in setup.c ? * * We need to release the cpus if we are ever going from an * UP to an SMP kernel. */ smp_release_cpus(); if (ppc_md.kexec_cpu_down) ppc_md.kexec_cpu_down(0, 0); local_irq_disable(); hard_irq_disable(); }

Contributors

PersonTokensPropCommitsCommitProp
R Sharada2163.64%120.00%
Michael Ellerman412.12%120.00%
Phileas Fogg39.09%120.00%
Paul Mackerras39.09%120.00%
Olof Johansson26.06%120.00%
Total33100.00%5100.00%

#endif /* SMP */ /* * kexec thread structure and stack. * * We need to make sure that this is 16384-byte aligned due to the * way process stacks are handled. It also must be statically allocated * or allocated as part of the kimage, because everything else may be * overwritten when we copy the kexec image. We piggyback on the * "init_task" linker section here to statically allocate a stack. * * We could use a smaller stack if we don't care about anything using * current, but that audit has not been performed. */ static union thread_union kexec_stack __init_task_data = { }; /* * For similar reasons to the stack above, the kexecing CPU needs to be on a * static PACA; we switch to kexec_paca. */ struct paca_struct kexec_paca; /* Our assembly helper, in misc_64.S */ extern void kexec_sequence(void *newstack, unsigned long start, void *image, void *control, void (*clear_all)(void), bool copy_with_mmu_off) __noreturn; /* too late to fail here */
void default_machine_kexec(struct kimage *image) { bool copy_with_mmu_off; /* prepare control code if any */ /* * If the kexec boot is the normal one, need to shutdown other cpus * into our wait loop and quiesce interrupts. * Otherwise, in the case of crashed mode (crashing_cpu >= 0), * stopping other CPUs and collecting their pt_regs is done before * using debugger IPI. */ if (!kdump_in_progress()) kexec_prepare_cpus(); printk("kexec: Starting switchover sequence.\n"); /* switch to a staticly allocated stack. Based on irq stack code. * We setup preempt_count to avoid using VMX in memcpy. * XXX: the task struct will likely be invalid once we do the copy! */ kexec_stack.thread_info.task = current_thread_info()->task; kexec_stack.thread_info.flags = 0; kexec_stack.thread_info.preempt_count = HARDIRQ_OFFSET; kexec_stack.thread_info.cpu = current_thread_info()->cpu; /* We need a static PACA, too; copy this CPU's PACA over and switch to * it. Also poison per_cpu_offset to catch anyone using non-static * data. */ memcpy(&kexec_paca, get_paca(), sizeof(struct paca_struct)); kexec_paca.data_offset = 0xedeaddeadeeeeeeeUL; paca = (struct paca_struct *)RELOC_HIDE(&kexec_paca, 0) - kexec_paca.paca_index; setup_paca(&kexec_paca); /* XXX: If anyone does 'dynamic lppacas' this will also need to be * switched to a static version! */ /* * On Book3S, the copy must happen with the MMU off if we are either * using Radix page tables or we are not in an LPAR since we can * overwrite the page tables while copying. * * In an LPAR, we keep the MMU on otherwise we can't access beyond * the RMA. On BookE there is no real MMU off mode, so we have to * keep it enabled as well (but then we have bolted TLB entries). */ #ifdef CONFIG_PPC_BOOK3E copy_with_mmu_off = false; #else copy_with_mmu_off = radix_enabled() || !(firmware_has_feature(FW_FEATURE_LPAR) || firmware_has_feature(FW_FEATURE_PS3_LV1)); #endif /* Some things are best done in assembly. Finding globals with * a toc is easier in C, so pass in what we can. */ kexec_sequence(&kexec_stack, image->start, image, page_address(image->control_code_page), mmu_cleanup_all, copy_with_mmu_off); /* NOTREACHED */ }

Contributors

PersonTokensPropCommitsCommitProp
Matt Evans5230.41%220.00%
Benjamin Herrenschmidt4928.65%220.00%
R Sharada4123.98%110.00%
Anton Blanchard2011.70%110.00%
Michael Ellerman52.92%220.00%
Hari Bathini31.75%110.00%
Thiago Jung Bauermann10.58%110.00%
Total171100.00%10100.00%

#ifdef CONFIG_PPC_STD_MMU_64 /* Values we need to export to the second kernel via the device tree. */ static unsigned long htab_base; static unsigned long htab_size; static struct property htab_base_prop = { .name = "linux,htab-base", .length = sizeof(unsigned long), .value = &htab_base, }; static struct property htab_size_prop = { .name = "linux,htab-size", .length = sizeof(unsigned long), .value = &htab_size, };
static int __init export_htab_values(void) { struct device_node *node; /* On machines with no htab htab_address is NULL */ if (!htab_address) return -ENODEV; node = of_find_node_by_path("/chosen"); if (!node) return -ENODEV; /* remove any stale propertys so ours can be found */ of_remove_property(node, of_find_property(node, htab_base_prop.name, NULL)); of_remove_property(node, of_find_property(node, htab_size_prop.name, NULL)); htab_base = cpu_to_be64(__pa(htab_address)); of_add_property(node, &htab_base_prop); htab_size = cpu_to_be64(htab_size_bytes); of_add_property(node, &htab_size_prop); of_node_put(node); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Michael Ellerman5447.37%333.33%
Milton D. Miller II2723.68%111.11%
Dale Farnsworth1513.16%222.22%
Anton Blanchard108.77%111.11%
Suraj Jitindar Singh54.39%111.11%
Nathan Fontenot32.63%111.11%
Total114100.00%9100.00%

late_initcall(export_htab_values); #endif /* CONFIG_PPC_STD_MMU_64 */

Overall Contributors

PersonTokensPropCommitsCommitProp
R Sharada62652.34%12.44%
Michael Ellerman15112.63%819.51%
Matt Evans1189.87%49.76%
Michael Neuling927.69%12.44%
Benjamin Herrenschmidt554.60%24.88%
Anton Blanchard443.68%49.76%
Milton D. Miller II272.26%12.44%
Dale Farnsworth171.42%24.88%
Paul Mackerras121.00%24.88%
Phileas Fogg90.75%12.44%
K.Prasad90.75%12.44%
Suraj Jitindar Singh50.42%12.44%
Joe Perches50.42%24.88%
Aneesh Kumar K.V40.33%12.44%
Hari Bathini30.25%12.44%
Srivatsa S. Bhat30.25%12.44%
Nathan Fontenot30.25%12.44%
Daniel Axtens30.25%12.44%
Jeremy Kerr20.17%12.44%
Stephen Rothwell20.17%12.44%
Tiejun Chen20.17%12.44%
Olof Johansson20.17%12.44%
Thiago Jung Bauermann10.08%12.44%
Geert Uytterhoeven10.08%12.44%
Total1196100.00%41100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.