Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2000, 2001 Jeff Dike (jdike@karaya.com) |
| 3 | * Licensed under the GPL |
| 4 | */ |
| 5 | |
| 6 | #include "linux/kernel.h" |
| 7 | #include "asm/errno.h" |
| 8 | #include "linux/sched.h" |
| 9 | #include "linux/mm.h" |
| 10 | #include "linux/spinlock.h" |
| 11 | #include "linux/config.h" |
| 12 | #include "linux/init.h" |
| 13 | #include "linux/ptrace.h" |
| 14 | #include "asm/semaphore.h" |
| 15 | #include "asm/pgtable.h" |
| 16 | #include "asm/pgalloc.h" |
| 17 | #include "asm/tlbflush.h" |
| 18 | #include "asm/a.out.h" |
| 19 | #include "asm/current.h" |
| 20 | #include "asm/irq.h" |
| 21 | #include "user_util.h" |
| 22 | #include "kern_util.h" |
| 23 | #include "kern.h" |
| 24 | #include "chan_kern.h" |
| 25 | #include "mconsole_kern.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #include "mem.h" |
| 27 | #include "mem_kern.h" |
| 28 | |
Paolo 'Blaisorblade' Giarrusso | 3b52166 | 2005-09-03 15:57:26 -0700 | [diff] [blame^] | 29 | /* Note this is constrained to return 0, -EFAULT, -EACCESS, -ENOMEM by segv(). */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | int handle_page_fault(unsigned long address, unsigned long ip, |
| 31 | int is_write, int is_user, int *code_out) |
| 32 | { |
| 33 | struct mm_struct *mm = current->mm; |
| 34 | struct vm_area_struct *vma; |
| 35 | pgd_t *pgd; |
| 36 | pud_t *pud; |
| 37 | pmd_t *pmd; |
| 38 | pte_t *pte; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | int err = -EFAULT; |
| 40 | |
| 41 | *code_out = SEGV_MAPERR; |
| 42 | down_read(&mm->mmap_sem); |
| 43 | vma = find_vma(mm, address); |
| 44 | if(!vma) |
| 45 | goto out; |
| 46 | else if(vma->vm_start <= address) |
| 47 | goto good_area; |
| 48 | else if(!(vma->vm_flags & VM_GROWSDOWN)) |
| 49 | goto out; |
Jeff Dike | 2d58cc9 | 2005-05-06 21:30:55 -0700 | [diff] [blame] | 50 | else if(is_user && !ARCH_IS_STACKGROW(address)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | goto out; |
| 52 | else if(expand_stack(vma, address)) |
| 53 | goto out; |
| 54 | |
Paolo 'Blaisorblade' Giarrusso | 3b52166 | 2005-09-03 15:57:26 -0700 | [diff] [blame^] | 55 | good_area: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | *code_out = SEGV_ACCERR; |
| 57 | if(is_write && !(vma->vm_flags & VM_WRITE)) |
| 58 | goto out; |
Jeff Dike | 13479d5 | 2005-05-20 13:59:08 -0700 | [diff] [blame] | 59 | |
| 60 | if(!(vma->vm_flags & (VM_READ | VM_EXEC))) |
| 61 | goto out; |
| 62 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | do { |
Paolo 'Blaisorblade' Giarrusso | 3b52166 | 2005-09-03 15:57:26 -0700 | [diff] [blame^] | 64 | survive: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | switch (handle_mm_fault(mm, vma, address, is_write)){ |
| 66 | case VM_FAULT_MINOR: |
| 67 | current->min_flt++; |
| 68 | break; |
| 69 | case VM_FAULT_MAJOR: |
| 70 | current->maj_flt++; |
| 71 | break; |
| 72 | case VM_FAULT_SIGBUS: |
| 73 | err = -EACCES; |
| 74 | goto out; |
| 75 | case VM_FAULT_OOM: |
| 76 | err = -ENOMEM; |
| 77 | goto out_of_memory; |
| 78 | default: |
| 79 | BUG(); |
| 80 | } |
Paolo 'Blaisorblade' Giarrusso | 3b52166 | 2005-09-03 15:57:26 -0700 | [diff] [blame^] | 81 | pgd = pgd_offset(mm, address); |
| 82 | pud = pud_offset(pgd, address); |
| 83 | pmd = pmd_offset(pud, address); |
| 84 | pte = pte_offset_kernel(pmd, address); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | } while(!pte_present(*pte)); |
| 86 | err = 0; |
| 87 | *pte = pte_mkyoung(*pte); |
| 88 | if(pte_write(*pte)) *pte = pte_mkdirty(*pte); |
Paolo 'Blaisorblade' Giarrusso | 3b52166 | 2005-09-03 15:57:26 -0700 | [diff] [blame^] | 89 | flush_tlb_page(vma, address); |
| 90 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | up_read(&mm->mmap_sem); |
| 92 | return(err); |
| 93 | |
| 94 | /* |
| 95 | * We ran out of memory, or some other thing happened to us that made |
| 96 | * us unable to handle the page fault gracefully. |
| 97 | */ |
| 98 | out_of_memory: |
| 99 | if (current->pid == 1) { |
| 100 | up_read(&mm->mmap_sem); |
| 101 | yield(); |
| 102 | down_read(&mm->mmap_sem); |
| 103 | goto survive; |
| 104 | } |
| 105 | goto out; |
| 106 | } |
| 107 | |
Bodo Stroesser | c578455 | 2005-05-05 16:15:31 -0700 | [diff] [blame] | 108 | /* |
| 109 | * We give a *copy* of the faultinfo in the regs to segv. |
| 110 | * This must be done, since nesting SEGVs could overwrite |
| 111 | * the info in the regs. A pointer to the info then would |
| 112 | * give us bad data! |
| 113 | */ |
| 114 | unsigned long segv(struct faultinfo fi, unsigned long ip, int is_user, void *sc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | { |
| 116 | struct siginfo si; |
| 117 | void *catcher; |
| 118 | int err; |
Bodo Stroesser | c578455 | 2005-05-05 16:15:31 -0700 | [diff] [blame] | 119 | int is_write = FAULT_WRITE(fi); |
| 120 | unsigned long address = FAULT_ADDRESS(fi); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | |
| 122 | if(!is_user && (address >= start_vm) && (address < end_vm)){ |
| 123 | flush_tlb_kernel_vm(); |
| 124 | return(0); |
| 125 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | else if(current->mm == NULL) |
| 127 | panic("Segfault with no mm"); |
| 128 | err = handle_page_fault(address, ip, is_write, is_user, &si.si_code); |
| 129 | |
| 130 | catcher = current->thread.fault_catcher; |
| 131 | if(!err) |
| 132 | return(0); |
| 133 | else if(catcher != NULL){ |
| 134 | current->thread.fault_addr = (void *) address; |
| 135 | do_longjmp(catcher, 1); |
| 136 | } |
| 137 | else if(current->thread.fault_addr != NULL) |
| 138 | panic("fault_addr set but no fault catcher"); |
Bodo Stroesser | c578455 | 2005-05-05 16:15:31 -0700 | [diff] [blame] | 139 | else if(!is_user && arch_fixup(ip, sc)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | return(0); |
| 141 | |
| 142 | if(!is_user) |
| 143 | panic("Kernel mode fault at addr 0x%lx, ip 0x%lx", |
| 144 | address, ip); |
| 145 | |
Paolo 'Blaisorblade' Giarrusso | 3b52166 | 2005-09-03 15:57:26 -0700 | [diff] [blame^] | 146 | if (err == -EACCES) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | si.si_signo = SIGBUS; |
| 148 | si.si_errno = 0; |
| 149 | si.si_code = BUS_ADRERR; |
| 150 | si.si_addr = (void *)address; |
Bodo Stroesser | c578455 | 2005-05-05 16:15:31 -0700 | [diff] [blame] | 151 | current->thread.arch.faultinfo = fi; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | force_sig_info(SIGBUS, &si, current); |
Paolo 'Blaisorblade' Giarrusso | 3b52166 | 2005-09-03 15:57:26 -0700 | [diff] [blame^] | 153 | } else if (err == -ENOMEM) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | printk("VM: killing process %s\n", current->comm); |
| 155 | do_exit(SIGKILL); |
Paolo 'Blaisorblade' Giarrusso | 3b52166 | 2005-09-03 15:57:26 -0700 | [diff] [blame^] | 156 | } else { |
| 157 | BUG_ON(err != -EFAULT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | si.si_signo = SIGSEGV; |
| 159 | si.si_addr = (void *) address; |
Bodo Stroesser | c578455 | 2005-05-05 16:15:31 -0700 | [diff] [blame] | 160 | current->thread.arch.faultinfo = fi; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | force_sig_info(SIGSEGV, &si, current); |
| 162 | } |
| 163 | return(0); |
| 164 | } |
| 165 | |
Bodo Stroesser | c578455 | 2005-05-05 16:15:31 -0700 | [diff] [blame] | 166 | void bad_segv(struct faultinfo fi, unsigned long ip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | { |
| 168 | struct siginfo si; |
| 169 | |
| 170 | si.si_signo = SIGSEGV; |
| 171 | si.si_code = SEGV_ACCERR; |
Bodo Stroesser | c578455 | 2005-05-05 16:15:31 -0700 | [diff] [blame] | 172 | si.si_addr = (void *) FAULT_ADDRESS(fi); |
| 173 | current->thread.arch.faultinfo = fi; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | force_sig_info(SIGSEGV, &si, current); |
| 175 | } |
| 176 | |
| 177 | void relay_signal(int sig, union uml_pt_regs *regs) |
| 178 | { |
| 179 | if(arch_handle_signal(sig, regs)) return; |
| 180 | if(!UPT_IS_USER(regs)) |
| 181 | panic("Kernel mode signal %d", sig); |
Bodo Stroesser | c578455 | 2005-05-05 16:15:31 -0700 | [diff] [blame] | 182 | current->thread.arch.faultinfo = *UPT_FAULTINFO(regs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | force_sig(sig, current); |
| 184 | } |
| 185 | |
| 186 | void bus_handler(int sig, union uml_pt_regs *regs) |
| 187 | { |
| 188 | if(current->thread.fault_catcher != NULL) |
| 189 | do_longjmp(current->thread.fault_catcher, 1); |
| 190 | else relay_signal(sig, regs); |
| 191 | } |
| 192 | |
| 193 | void winch(int sig, union uml_pt_regs *regs) |
| 194 | { |
| 195 | do_IRQ(WINCH_IRQ, regs); |
| 196 | } |
| 197 | |
| 198 | void trap_init(void) |
| 199 | { |
| 200 | } |