fault.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:7k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* $Id: fault.c,v 1.5 2000/01/26 16:20:29 jsm Exp $
  2.  *
  3.  * This file is subject to the terms and conditions of the GNU General Public
  4.  * License.  See the file "COPYING" in the main directory of this archive
  5.  * for more details.
  6.  *
  7.  *
  8.  * Copyright (C) 1995, 1996, 1997, 1998 by Ralf Baechle
  9.  * Copyright 1999 SuSE GmbH (Philipp Rumpf, prumpf@tux.org)
  10.  * Copyright 1999 Hewlett Packard Co.
  11.  *
  12.  */
  13. #include <linux/mm.h>
  14. #include <linux/ptrace.h>
  15. #include <linux/sched.h>
  16. #include <linux/interrupt.h>
  17. #include <asm/uaccess.h>
  18. /* Defines for parisc_acctyp() */
  19. #define READ 0
  20. #define WRITE 1
  21. /* Various important other fields */
  22. #define bit22set(x) (x & 0x00000200)
  23. #define bits23_25set(x) (x & 0x000001c0)
  24. #define isGraphicsFlushRead(x) ((x & 0xfc003fdf) == 0x04001a80)
  25. /* extended opcode is 0x6a */
  26. #define BITSSET 0x1c0 /* for identifying LDCW */
  27. /*
  28.  * parisc_acctyp(unsigned int inst) --
  29.  *    Given a PA-RISC memory access instruction, determine if the
  30.  *    the instruction would perform a memory read or memory write
  31.  *    operation.
  32.  *
  33.  *    This function assumes that the given instruction is a memory access
  34.  *    instruction (i.e. you should really only call it if you know that
  35.  *    the instruction has generated some sort of a memory access fault).
  36.  *
  37.  * Returns:
  38.  *   VM_READ  if read operation
  39.  *   VM_WRITE if write operation
  40.  *   VM_EXEC  if execute operation
  41.  */
  42. static unsigned long
  43. parisc_acctyp(unsigned long code, unsigned int inst)
  44. {
  45. if (code == 6 || code == 16)
  46.     return VM_EXEC;
  47. switch (inst & 0xf0000000) {
  48. case 0x40000000: /* load */
  49. case 0x50000000: /* new load */
  50. return VM_READ;
  51. case 0x60000000: /* store */
  52. case 0x70000000: /* new store */
  53. return VM_WRITE;
  54. case 0x20000000: /* coproc */
  55. case 0x30000000: /* coproc2 */
  56. if (bit22set(inst))
  57. return VM_WRITE;
  58. case 0x0: /* indexed/memory management */
  59. if (bit22set(inst)) {
  60. /*
  61.  * Check for the 'Graphics Flush Read' instruction.
  62.  * It resembles an FDC instruction, except for bits
  63.  * 20 and 21. Any combination other than zero will
  64.  * utilize the block mover functionality on some
  65.  * older PA-RISC platforms.  The case where a block
  66.  * move is performed from VM to graphics IO space
  67.  * should be treated as a READ.
  68.  *
  69.  * The significance of bits 20,21 in the FDC
  70.  * instruction is:
  71.  *
  72.  *   00  Flush data cache (normal instruction behavior)
  73.  *   01  Graphics flush write  (IO space -> VM)
  74.  *   10  Graphics flush read   (VM -> IO space)
  75.  *   11  Graphics flush read/write (VM <-> IO space)
  76.  */
  77. if (isGraphicsFlushRead(inst))
  78. return VM_READ;
  79. return VM_WRITE;
  80. } else {
  81. /*
  82.  * Check for LDCWX and LDCWS (semaphore instructions).
  83.  * If bits 23 through 25 are all 1's it is one of
  84.  * the above two instructions and is a write.
  85.  *
  86.  * Note: With the limited bits we are looking at,
  87.  * this will also catch PROBEW and PROBEWI. However,
  88.  * these should never get in here because they don't
  89.  * generate exceptions of the type:
  90.  *   Data TLB miss fault/data page fault
  91.  *   Data memory protection trap
  92.  */
  93. if (bits23_25set(inst) == BITSSET)
  94. return VM_WRITE;
  95. }
  96. return VM_READ; /* Default */
  97. }
  98. return VM_READ; /* Default */
  99. }
  100. #undef bit22set
  101. #undef bits23_25set
  102. #undef isGraphicsFlushRead
  103. #undef BITSSET
  104. /* This is similar to expand_stack(), except that it is for stacks
  105.  * that grow upwards.
  106.  */
  107. static inline int expand_stackup(struct vm_area_struct * vma, unsigned long address)
  108. {
  109. unsigned long grow;
  110. address += 4 + PAGE_SIZE - 1;
  111. address &= PAGE_MASK;
  112. grow = (address - vma->vm_end) >> PAGE_SHIFT;
  113. if (address - vma->vm_start > current->rlim[RLIMIT_STACK].rlim_cur ||
  114.     ((vma->vm_mm->total_vm + grow) << PAGE_SHIFT) > current->rlim[RLIMIT_AS].rlim_cur)
  115. return -ENOMEM;
  116. vma->vm_end = address;
  117. vma->vm_mm->total_vm += grow;
  118. if (vma->vm_flags & VM_LOCKED)
  119. vma->vm_mm->locked_vm += grow;
  120. return 0;
  121. }
  122. /* This is similar to find_vma(), except that it understands that stacks
  123.  * grow up rather than down.
  124.  * XXX Optimise by making use of cache and avl tree as per find_vma().
  125.  */
  126. struct vm_area_struct * pa_find_vma(struct mm_struct * mm, unsigned long addr)
  127. {
  128. struct vm_area_struct *vma = NULL;
  129. if (mm) {
  130. vma = mm->mmap;
  131. if (!vma || addr < vma->vm_start)
  132. return NULL;
  133. while (vma->vm_next && addr >= vma->vm_next->vm_start)
  134. vma = vma->vm_next;
  135. }
  136. return vma;
  137. }
  138. /*
  139.  * This routine handles page faults.  It determines the address,
  140.  * and the problem, and then passes it off to one of the appropriate
  141.  * routines.
  142.  */
  143. extern void parisc_terminate(char *, struct pt_regs *, int, unsigned long);
  144. void do_page_fault(struct pt_regs *regs, unsigned long code,
  145.       unsigned long address)
  146. {
  147. struct vm_area_struct * vma;
  148. struct task_struct *tsk = current;
  149. struct mm_struct *mm = tsk->mm;
  150. const struct exception_table_entry *fix;
  151. unsigned long acc_type;
  152. if (in_interrupt() || !mm)
  153. goto no_context;
  154. down_read(&mm->mmap_sem);
  155. vma = pa_find_vma(mm, address);
  156. if (!vma)
  157. goto bad_area;
  158. if (address < vma->vm_end)
  159. goto good_area;
  160. if (!(vma->vm_flags & VM_GROWSUP) || expand_stackup(vma, address))
  161. goto bad_area;
  162. /*
  163.  * Ok, we have a good vm_area for this memory access. We still need to
  164.  * check the access permissions.
  165.  */
  166. good_area:
  167. acc_type = parisc_acctyp(code,regs->iir);
  168. if ((vma->vm_flags & acc_type) != acc_type)
  169. goto bad_area;
  170. /*
  171.  * If for any reason at all we couldn't handle the fault, make
  172.  * sure we exit gracefully rather than endlessly redo the
  173.  * fault.
  174.  */
  175. switch (handle_mm_fault(mm, vma, address, (acc_type & VM_WRITE) != 0)) {
  176.       case 1:
  177. ++current->min_flt;
  178. break;
  179.       case 2:
  180. ++current->maj_flt;
  181. break;
  182.       case 0:
  183. /*
  184.  * We ran out of memory, or some other thing happened
  185.  * to us that made us unable to handle the page fault
  186.  * gracefully.
  187.  */
  188. goto bad_area;
  189.       default:
  190. goto out_of_memory;
  191. }
  192. up_read(&mm->mmap_sem);
  193. return;
  194. /*
  195.  * Something tried to access memory that isn't in our memory map..
  196.  */
  197. bad_area:
  198. up_read(&mm->mmap_sem);
  199. if (user_mode(regs)) {
  200. struct siginfo si;
  201. printk("ndo_page_fault() pid=%d command='%s'n",
  202.     tsk->pid, tsk->comm);
  203. show_regs(regs);
  204. /* FIXME: actually we need to get the signo and code correct */
  205. si.si_signo = SIGSEGV;
  206. si.si_errno = 0;
  207. si.si_code = SEGV_MAPERR;
  208. si.si_addr = (void *) address;
  209. force_sig_info(SIGSEGV, &si, current);
  210. return;
  211. }
  212. no_context:
  213. if (!user_mode(regs)) {
  214. fix = search_exception_table(regs->iaoq[0]);
  215. if (fix) {
  216. if (fix->skip & 1) 
  217. regs->gr[8] = -EFAULT;
  218. if (fix->skip & 2)
  219. regs->gr[9] = 0;
  220. regs->iaoq[0] += ((fix->skip) & ~3);
  221. /*
  222.  * NOTE: In some cases the faulting instruction
  223.  * may be in the delay slot of a branch. We
  224.  * don't want to take the branch, so we don't
  225.  * increment iaoq[1], instead we set it to be
  226.  * iaoq[0]+4, and clear the B bit in the PSW
  227.  */
  228. regs->iaoq[1] = regs->iaoq[0] + 4;
  229. regs->gr[0] &= ~PSW_B; /* IPSW in gr[0] */
  230. return;
  231. }
  232. }
  233. parisc_terminate("Bad Address (null pointer deref?)",regs,code,address);
  234.   out_of_memory:
  235. up_read(&mm->mmap_sem);
  236. printk("VM: killing process %sn", current->comm);
  237. if (user_mode(regs))
  238. do_exit(SIGKILL);
  239. goto no_context;
  240. }