/* * Oops. The kernel tried to access some bad page. We'll have to * terminate things with extreme prejudice.
*/ if ((unsignedlong)addr < PAGE_SIZE)
pr_alert("Unable to handle kernel NULL pointer dereference"); else
pr_alert("Unable to handle kernel access");
pr_cont(" at virtual address %p\n", addr);
die_if_kernel("Oops", regs, 0 /*error_code*/);
make_task_dead(SIGKILL);
}
return 1;
}
/* * This routine handles page faults. It determines the problem, and * then passes it off to one of the appropriate routines. * * error_code: * bit 0 == 0 means no page found, 1 means protection fault * bit 1 == 0 means read, 1 means write * * If this routine detects a bad access, it returns 1, otherwise it * returns 0.
*/ int do_page_fault(struct pt_regs *regs, unsignedlong address, unsignedlong error_code)
{ struct mm_struct *mm = current->mm; struct vm_area_struct * vma;
vm_fault_t fault; unsignedint flags = FAULT_FLAG_DEFAULT;
vma = find_vma(mm, address); if (!vma) goto map_err; if (vma->vm_start <= address) goto good_area; if (!(vma->vm_flags & VM_GROWSDOWN)) goto map_err; if (user_mode(regs)) { /* Accessing the stack below usp is always a bug. The "+ 256" is there due to some instructions doing pre-decrement on the stack and that doesn't show up
until later. */ if (address + 256 < rdusp()) goto map_err;
}
vma = expand_stack(mm, address); if (!vma) goto map_err_nosemaphore;
/* * Ok, we have a good vm_area for this memory access, so * we can handle it..
*/
good_area:
pr_debug("do_page_fault: good_area\n"); switch (error_code & 3) { default: /* 3: write, present */
fallthrough; case 2: /* write, not present */ if (!(vma->vm_flags & VM_WRITE)) goto acc_err;
flags |= FAULT_FLAG_WRITE; break; case 1: /* read, present */ goto acc_err; case 0: /* read, not present */ if (unlikely(!vma_is_accessible(vma))) goto acc_err;
}
/* * If for any reason at all we couldn't handle the fault, * make sure we exit gracefully rather than endlessly redo * the fault.
*/
if (fault & VM_FAULT_RETRY) {
flags |= FAULT_FLAG_TRIED;
/* * No need to mmap_read_unlock(mm) as we would * have already released it in __lock_page_or_retry * in mm/filemap.c.
*/
goto retry;
}
mmap_read_unlock(mm); return 0;
/* * We ran out of memory, or some other thing happened to us that made * us unable to handle the page fault gracefully.
*/
out_of_memory:
mmap_read_unlock(mm); if (!user_mode(regs)) goto no_context;
pagefault_out_of_memory(); return 0;
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.