/* FR are 64bit everywhere. Need to use asm to get the content * of fpsr/fper1, and we assume that we won't have a FP Identify * in our way, otherwise we're screwed. * The fldd is used to restore the T-bit if there was one, as the * store clears it anyway.
* PA2.0 book says "thou shall not use fstw on FPSR/FPERs" - T-Bone */ asmvolatile ("fstd %%fr0,0(%1) \n\t" "fldd 0(%1),%%fr0 \n\t"
: "=m" (s) : "r" (&s) : "r0");
/* Amuse the user in a SPARC fashion */ if (err) printk(KERN_CRIT " _______________________________ \n" " < Your System ate a SPARC! Gah! >\n" " ------------------------------- \n" " \\ ^__^\n" " (__)\\ )\\/\\\n" " U ||----w |\n" " || ||\n");
/* unlock the pdc lock if necessary */
pdc_emergency_unlock();
/* * Note: The following code will probably generate a * bunch of truncation error warnings from the compiler. * Could be handled with an ifdef, but perhaps there * is a better way.
*/
regs->gr[0] = pim_wide->cr[22];
for (i = 1; i < 32; i++)
regs->gr[i] = pim_wide->gr[i];
for (i = 0; i < 32; i++)
regs->fr[i] = pim_wide->fr[i];
for (i = 0; i < 8; i++)
regs->sr[i] = pim_wide->sr[i];
/* * This routine is called as a last resort when everything else * has gone clearly wrong. We get called for faults in kernel space, * and HPMC's.
*/ void parisc_terminate(char *msg, struct pt_regs *regs, int code, unsignedlong offset)
{ static DEFINE_SPINLOCK(terminate_lock);
/* put soft power button back under hardware control; * if the user had pressed it once at any time, the
* system will shut down immediately right here. */
pdc_soft_power_button(0);
/* Call kernel panic() so reboot timeouts work properly * FIXME: This function should be on the list of * panic notifiers, and we should call panic * directly from the location that we wish. * e.g. We should not call panic from * parisc_terminate, but rather the other way around. * This hack works, prints the panic message twice, * and it enables reboot timers!
*/
panic(msg);
}
if (!irqs_disabled_flags(regs->gr[0]))
local_irq_enable();
/* Security check: * If the priority level is still user, and the * faulting space is not equal to the active space * then the user is attempting something in a space * that does not belong to them. Kill the process. * * This is normally the situation when the user * attempts to jump into the kernel space at the * wrong offset, be it at the gateway page or a * random location. * * We cannot normally signal the process because it * could *be* on the gateway page, and processes * executing on the gateway page can't have signals * delivered. * * We merely readjust the address into the users * space, at a destination address of zero, and * allow processing to continue.
*/ if (((unsignedlong)regs->iaoq[0] & 3) &&
((unsignedlong)regs->iasq[0] != (unsignedlong)regs->sr[7])) { /* Kill the user process later */
regs->iaoq[0] = 0 | PRIV_USER;
regs->iaoq[1] = regs->iaoq[0] + 4;
regs->iasq[0] = regs->iasq[1] = regs->sr[7];
regs->gr[0] &= ~PSW_B; return;
}
case 12: /* Overflow Trap, let the userland signal handler do the cleanup */
force_sig_fault(SIGFPE, FPE_INTOVF,
(void __user *) regs->iaoq[0]); return;
case 13: /* Conditional Trap The condition succeeds in an instruction which traps
on condition */ if(user_mode(regs)){ /* Let userspace app figure it out from the insn pointed * to by si_addr.
*/
force_sig_fault(SIGFPE, FPE_CONDTRAP,
(void __user *) regs->iaoq[0]); return;
} /* The kernel doesn't want to handle condition codes */ break;
case 14: /* Assist Exception Trap, i.e. floating point exception. */
die_if_kernel("Floating point exception", regs, 0); /* quiet */
__inc_irq_stat(irq_fpassist_count);
handle_fpe(regs); return;
case 15: /* Data TLB miss fault/Data page fault */
fallthrough; case 16: /* Non-access instruction TLB miss fault */ /* The instruction TLB entry needed for the target address of the FIC
is absent, and hardware can't find it, so we get to cleanup */
fallthrough; case 17: /* Non-access data TLB miss fault/Non-access data page fault */ /* FIXME: Still need to add slow path emulation code here! If the insn used a non-shadow register, then the tlb handlers could not have their side-effect (e.g. probe writing to a target register) emulated since rfir would erase the changes to said register. Instead we have to setup everything, call this function we are in, and emulate by hand. Technically we need to emulate: fdc,fdce,pdc,"fic,4f",prober,probeir,probew, probeiw
*/ if (code == 17 && handle_nadtlb_fault(regs)) return;
fault_address = regs->ior;
fault_space = regs->isr; break;
case 18: /* PCXS only -- later cpu's split this into types 26,27 & 28 */ /* Check for unaligned access */ if (check_unaligned(regs)) {
handle_unaligned(regs); return;
}
fallthrough; case 26: /* PCXL: Data memory access rights trap */
fault_address = regs->ior;
fault_space = regs->isr; break;
case 19: /* Data memory break trap */
regs->gr[0] |= PSW_X; /* So we can single-step over the trap */
fallthrough; case 21: /* Page reference trap */
handle_gdb_break(regs, TRAP_HWBKPT); return;
case 25: /* Taken branch trap */
regs->gr[0] &= ~PSW_T; if (user_space(regs))
handle_gdb_break(regs, TRAP_BRANCH); /* else this must be the start of a syscall - just let it * run.
*/ return;
case 7: /* Instruction access rights */ /* PCXL: Instruction memory protection trap */
/* * This could be caused by either: 1) a process attempting * to execute within a vma that does not have execute * permission, or 2) an access rights violation caused by a * flush only translation set up by ptep_get_and_clear(). * So we check the vma permissions to differentiate the two. * If the vma indicates we have execute permission, then * the cause is the latter one. In this case, we need to * call do_page_fault() to fix the problem.
*/
if (user_mode(regs)) { struct vm_area_struct *vma;
mmap_read_unlock(current->mm); break; /* call do_page_fault() */
}
mmap_read_unlock(current->mm);
} /* CPU could not fetch instruction, so clear stale IIR value. */
regs->iir = 0xbaadf00d;
fallthrough; case 27: /* Data memory protection ID trap */ if (code == 27 && !user_mode(regs) &&
fixup_exception(regs)) return;
case 28: /* Unaligned data reference trap */
handle_unaligned(regs); return;
default: if (user_mode(regs)) {
parisc_printk_ratelimited(0, regs, KERN_DEBUG "handle_interruption() pid=%d command='%s'\n",
task_pid_nr(current), current->comm); /* SIGBUS, for lack of a better one. */
force_sig_fault(SIGBUS, BUS_OBJERR,
(void __user *)regs->ior); return;
}
pdc_chassis_send_status(PDC_CHASSIS_DIRECT_PANIC);
parisc_terminate("Unexpected interruption", regs, code, 0); /* NOT REACHED */
}
if (user_mode(regs)) { if ((fault_space >> SPACEID_SHIFT) != (regs->sr[7] >> SPACEID_SHIFT)) {
parisc_printk_ratelimited(0, regs, KERN_DEBUG "User fault %d on space 0x%08lx, pid=%d command='%s'\n",
code, fault_space,
task_pid_nr(current), current->comm);
force_sig_fault(SIGSEGV, SEGV_MAPERR,
(void __user *)regs->ior); return;
}
} else {
/* * The kernel should never fault on its own address space, * unless pagefault_disable() was called before.
*/
if (faulthandler_disabled() || fault_space == 0)
{ /* Clean up and return if in exception table. */ if (fixup_exception(regs)) return; /* Clean up and return if handled by kfence. */ if (kfence_handle_page_fault(fault_address,
parisc_acctyp(code, regs->iir) == VM_WRITE, regs)) return;
pdc_chassis_send_status(PDC_CHASSIS_DIRECT_PANIC);
parisc_terminate("Kernel Fault", regs, code, fault_address);
}
}
if (strcmp((constchar *)iva, "cows can fly"))
panic("IVT invalid");
ivap = (u32 *)iva;
for (i = 0; i < 8; i++)
*ivap++ = 0;
/* * Use PDC_INSTR firmware function to get instruction that invokes * PDCE_CHECK in HPMC handler. See programming note at page 1-31 of * the PA 1.1 Firmware Architecture document.
*/ if (pdc_instr(&instr) == PDC_OK)
ivap[0] = instr;
/* * Rules for the checksum of the HPMC handler: * 1. The IVA does not point to PDC/PDH space (ie: the OS has installed * its own IVA). * 2. The word at IVA + 32 is nonzero. * 3. If Length (IVA + 60) is not zero, then Length (IVA + 60) and * Address (IVA + 56) are word-aligned. * 4. The checksum of the 8 words starting at IVA + 32 plus the sum of * the Length/4 words starting at Address is zero.
*/
/* Setup IVA and compute checksum for HPMC handler */
ivap[6] = (u32)__pa(os_hpmc);
/* early_trap_init() is called before we set up kernel mappings and
* write-protect the kernel */ void __init early_trap_init(void)
{ externconstvoid fault_vector_20;
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.