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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* $Id: fault.c,v 1.58 2001/09/01 00:11:16 kanoj Exp $
  2.  * arch/sparc64/mm/fault.c: Page fault handlers for the 64-bit Sparc.
  3.  *
  4.  * Copyright (C) 1996 David S. Miller (davem@caip.rutgers.edu)
  5.  * Copyright (C) 1997, 1999 Jakub Jelinek (jj@ultra.linux.cz)
  6.  */
  7. #include <asm/head.h>
  8. #include <linux/string.h>
  9. #include <linux/types.h>
  10. #include <linux/ptrace.h>
  11. #include <linux/mman.h>
  12. #include <linux/signal.h>
  13. #include <linux/mm.h>
  14. #include <linux/smp_lock.h>
  15. #include <linux/init.h>
  16. #include <linux/interrupt.h>
  17. #include <asm/page.h>
  18. #include <asm/pgtable.h>
  19. #include <asm/openprom.h>
  20. #include <asm/oplib.h>
  21. #include <asm/uaccess.h>
  22. #include <asm/asi.h>
  23. #include <asm/lsu.h>
  24. #define ELEMENTS(arr) (sizeof (arr)/sizeof (arr[0]))
  25. extern struct sparc_phys_banks sp_banks[SPARC_PHYS_BANKS];
  26. /*
  27.  * To debug kernel during syscall entry.
  28.  */
  29. void syscall_trace_entry(struct pt_regs *regs)
  30. {
  31. printk("scall entry: %s[%d]/cpu%d: %dn", current->comm, current->pid, smp_processor_id(), (int) regs->u_regs[UREG_G1]);
  32. }
  33. /*
  34.  * To debug kernel during syscall exit.
  35.  */
  36. void syscall_trace_exit(struct pt_regs *regs)
  37. {
  38. printk("scall exit: %s[%d]/cpu%d: %dn", current->comm, current->pid, smp_processor_id(), (int) regs->u_regs[UREG_G1]);
  39. }
  40. /*
  41.  * To debug kernel to catch accesses to certain virtual/physical addresses.
  42.  * Mode = 0 selects physical watchpoints, mode = 1 selects virtual watchpoints.
  43.  * flags = VM_READ watches memread accesses, flags = VM_WRITE watches memwrite accesses.
  44.  * Caller passes in a 64bit aligned addr, with mask set to the bytes that need to be
  45.  * watched. This is only useful on a single cpu machine for now. After the watchpoint
  46.  * is detected, the process causing it will be killed, thus preventing an infinite loop.
  47.  */
  48. void set_brkpt(unsigned long addr, unsigned char mask, int flags, int mode)
  49. {
  50. unsigned long lsubits = LSU_CONTROL_IC|LSU_CONTROL_DC|LSU_CONTROL_IM|LSU_CONTROL_DM;
  51. __asm__ __volatile__("stxa %0, [%1] %2nt"
  52.      "membar #Sync"
  53.      : /* no outputs */
  54.      : "r" (addr), "r" (mode ? VIRT_WATCHPOINT : PHYS_WATCHPOINT),
  55.        "i" (ASI_DMMU));
  56. lsubits |= ((unsigned long)mask << (mode ? 25 : 33));
  57. if (flags & VM_READ)
  58. lsubits |= (mode ? LSU_CONTROL_VR : LSU_CONTROL_PR);
  59. if (flags & VM_WRITE)
  60. lsubits |= (mode ? LSU_CONTROL_VW : LSU_CONTROL_PW);
  61. __asm__ __volatile__("stxa %0, [%%g0] %1nt"
  62.      "membar #Sync"
  63.      : /* no outputs */
  64.      : "r" (lsubits), "i" (ASI_LSU_CONTROL)
  65.      : "memory");
  66. }
  67. /* Nice, simple, prom library does all the sweating for us. ;) */
  68. unsigned long __init prom_probe_memory (void)
  69. {
  70. register struct linux_mlist_p1275 *mlist;
  71. register unsigned long bytes, base_paddr, tally;
  72. register int i;
  73. i = 0;
  74. mlist = *prom_meminfo()->p1275_available;
  75. bytes = tally = mlist->num_bytes;
  76. base_paddr = mlist->start_adr;
  77.   
  78. sp_banks[0].base_addr = base_paddr;
  79. sp_banks[0].num_bytes = bytes;
  80. while (mlist->theres_more != (void *) 0) {
  81. i++;
  82. mlist = mlist->theres_more;
  83. bytes = mlist->num_bytes;
  84. tally += bytes;
  85. if (i >= SPARC_PHYS_BANKS-1) {
  86. printk ("The machine has more banks than "
  87. "this kernel can supportn"
  88. "Increase the SPARC_PHYS_BANKS "
  89. "setting (currently %d)n",
  90. SPARC_PHYS_BANKS);
  91. i = SPARC_PHYS_BANKS-1;
  92. break;
  93. }
  94.     
  95. sp_banks[i].base_addr = mlist->start_adr;
  96. sp_banks[i].num_bytes = mlist->num_bytes;
  97. }
  98. i++;
  99. sp_banks[i].base_addr = 0xdeadbeefbeefdeadUL;
  100. sp_banks[i].num_bytes = 0;
  101. /* Now mask all bank sizes on a page boundary, it is all we can
  102.  * use anyways.
  103.  */
  104. for (i = 0; sp_banks[i].num_bytes != 0; i++)
  105. sp_banks[i].num_bytes &= PAGE_MASK;
  106. return tally;
  107. }
  108. void unhandled_fault(unsigned long address, struct task_struct *tsk,
  109.                      struct pt_regs *regs)
  110. {
  111. if ((unsigned long) address < PAGE_SIZE) {
  112. printk(KERN_ALERT "Unable to handle kernel NULL "
  113.        "pointer dereferencen");
  114. } else {
  115. printk(KERN_ALERT "Unable to handle kernel paging request "
  116.        "at virtual address %016lxn", (unsigned long)address);
  117. }
  118. printk(KERN_ALERT "tsk->{mm,active_mm}->context = %016lxn",
  119.        (tsk->mm ? tsk->mm->context : tsk->active_mm->context));
  120. printk(KERN_ALERT "tsk->{mm,active_mm}->pgd = %016lxn",
  121.        (tsk->mm ? (unsigned long) tsk->mm->pgd :
  122.           (unsigned long) tsk->active_mm->pgd));
  123. die_if_kernel("Oops", regs);
  124. }
  125. /*
  126.  * We now make sure that mmap_sem is held in all paths that call 
  127.  * this. Additionally, to prevent kswapd from ripping ptes from
  128.  * under us, raise interrupts around the time that we look at the
  129.  * pte, kswapd will have to wait to get his smp ipi response from
  130.  * us. This saves us having to get page_table_lock.
  131.  */
  132. static unsigned int get_user_insn(unsigned long tpc)
  133. {
  134. pgd_t *pgdp = pgd_offset(current->mm, tpc);
  135. pmd_t *pmdp;
  136. pte_t *ptep, pte;
  137. unsigned long pa;
  138. u32 insn = 0;
  139. unsigned long pstate;
  140. if (pgd_none(*pgdp))
  141. goto outret;
  142. pmdp = pmd_offset(pgdp, tpc);
  143. if (pmd_none(*pmdp))
  144. goto outret;
  145. ptep = pte_offset(pmdp, tpc);
  146. __asm__ __volatile__("rdpr %%pstate, %0" : "=r" (pstate));
  147. __asm__ __volatile__("wrpr %0, %1, %%pstate"
  148. : : "r" (pstate), "i" (PSTATE_IE));
  149. pte = *ptep;
  150. if (!pte_present(pte))
  151. goto out;
  152. pa  = (pte_val(pte) & _PAGE_PADDR);
  153. pa += (tpc & ~PAGE_MASK);
  154. /* Use phys bypass so we don't pollute dtlb/dcache. */
  155. __asm__ __volatile__("lduwa [%1] %2, %0"
  156.      : "=r" (insn)
  157.      : "r" (pa), "i" (ASI_PHYS_USE_EC));
  158. out:
  159. __asm__ __volatile__("wrpr %0, 0x0, %%pstate" : : "r" (pstate));
  160. outret:
  161. return insn;
  162. }
  163. static void do_fault_siginfo(int code, int sig, unsigned long address)
  164. {
  165. siginfo_t info;
  166. info.si_code = code;
  167. info.si_signo = sig;
  168. info.si_errno = 0;
  169. info.si_addr = (void *) address;
  170. info.si_trapno = 0;
  171. force_sig_info(sig, &info, current);
  172. }
  173. extern int handle_ldf_stq(u32, struct pt_regs *);
  174. extern int handle_ld_nf(u32, struct pt_regs *);
  175. static inline unsigned int get_fault_insn(struct pt_regs *regs, unsigned int insn)
  176. {
  177. if (!insn) {
  178. if (!regs->tpc || (regs->tpc & 0x3))
  179. return 0;
  180. if (regs->tstate & TSTATE_PRIV) {
  181. insn = *(unsigned int *)regs->tpc;
  182. } else {
  183. insn = get_user_insn(regs->tpc);
  184. }
  185. }
  186. return insn;
  187. }
  188. static void do_kernel_fault(struct pt_regs *regs, int si_code, int fault_code,
  189.     unsigned int insn, unsigned long address)
  190. {
  191. unsigned long g2;
  192. unsigned char asi = ASI_P;
  193.  
  194. if ((!insn) && (regs->tstate & TSTATE_PRIV))
  195. goto cannot_handle;
  196. /* If user insn could be read (thus insn is zero), that
  197.  * is fine.  We will just gun down the process with a signal
  198.  * in that case.
  199.  */
  200. if (!(fault_code & FAULT_CODE_WRITE) &&
  201.     (insn & 0xc0800000) == 0xc0800000) {
  202. if (insn & 0x2000)
  203. asi = (regs->tstate >> 24);
  204. else
  205. asi = (insn >> 5);
  206. if ((asi & 0xf2) == 0x82) {
  207. if (insn & 0x1000000) {
  208. handle_ldf_stq(insn, regs);
  209. } else {
  210. /* This was a non-faulting load. Just clear the
  211.  * destination register(s) and continue with the next
  212.  * instruction. -jj
  213.  */
  214. handle_ld_nf(insn, regs);
  215. }
  216. return;
  217. }
  218. }
  219. g2 = regs->u_regs[UREG_G2];
  220. /* Is this in ex_table? */
  221. if (regs->tstate & TSTATE_PRIV) {
  222. unsigned long fixup;
  223. if (asi == ASI_P && (insn & 0xc0800000) == 0xc0800000) {
  224. if (insn & 0x2000)
  225. asi = (regs->tstate >> 24);
  226. else
  227. asi = (insn >> 5);
  228. }
  229. /* Look in asi.h: All _S asis have LS bit set */
  230. if ((asi & 0x1) &&
  231.     (fixup = search_exception_table (regs->tpc, &g2))) {
  232. regs->tpc = fixup;
  233. regs->tnpc = regs->tpc + 4;
  234. regs->u_regs[UREG_G2] = g2;
  235. return;
  236. }
  237. } else {
  238. /* The si_code was set to make clear whether
  239.  * this was a SEGV_MAPERR or SEGV_ACCERR fault.
  240.  */
  241. do_fault_siginfo(si_code, SIGSEGV, address);
  242. return;
  243. }
  244. cannot_handle:
  245. unhandled_fault (address, current, regs);
  246. }
  247. asmlinkage void do_sparc64_fault(struct pt_regs *regs)
  248. {
  249. struct mm_struct *mm = current->mm;
  250. struct vm_area_struct *vma;
  251. unsigned int insn = 0;
  252. int si_code, fault_code;
  253. unsigned long address;
  254. si_code = SEGV_MAPERR;
  255. fault_code = current->thread.fault_code;
  256. address = current->thread.fault_address;
  257. if ((fault_code & FAULT_CODE_ITLB) &&
  258.     (fault_code & FAULT_CODE_DTLB))
  259. BUG();
  260. /*
  261.  * If we're in an interrupt or have no user
  262.  * context, we must not take the fault..
  263.  */
  264. if (in_interrupt() || !mm)
  265. goto intr_or_no_mm;
  266. if ((current->thread.flags & SPARC_FLAG_32BIT) != 0) {
  267. regs->tpc &= 0xffffffff;
  268. address &= 0xffffffff;
  269. }
  270. down_read(&mm->mmap_sem);
  271. vma = find_vma(mm, address);
  272. if (!vma)
  273. goto bad_area;
  274. /* Pure DTLB misses do not tell us whether the fault causing
  275.  * load/store/atomic was a write or not, it only says that there
  276.  * was no match.  So in such a case we (carefully) read the
  277.  * instruction to try and figure this out.  It's an optimization
  278.  * so it's ok if we can't do this.
  279.  *
  280.  * Special hack, window spill/fill knows the exact fault type.
  281.  */
  282. if (((fault_code &
  283.       (FAULT_CODE_DTLB | FAULT_CODE_WRITE | FAULT_CODE_WINFIXUP)) == FAULT_CODE_DTLB) &&
  284.     (vma->vm_flags & VM_WRITE) != 0) {
  285. insn = get_fault_insn(regs, 0);
  286. if (!insn)
  287. goto continue_fault;
  288. if ((insn & 0xc0200000) == 0xc0200000 &&
  289.     (insn & 0x1780000) != 0x1680000) {
  290. /* Don't bother updating thread struct value,
  291.  * because update_mmu_cache only cares which tlb
  292.  * the access came from.
  293.  */
  294. fault_code |= FAULT_CODE_WRITE;
  295. }
  296. }
  297. continue_fault:
  298. if (vma->vm_start <= address)
  299. goto good_area;
  300. if (!(vma->vm_flags & VM_GROWSDOWN))
  301. goto bad_area;
  302. if (expand_stack(vma, address))
  303. goto bad_area;
  304. /*
  305.  * Ok, we have a good vm_area for this memory access, so
  306.  * we can handle it..
  307.  */
  308. good_area:
  309. si_code = SEGV_ACCERR;
  310. if (fault_code & FAULT_CODE_WRITE) {
  311. if (!(vma->vm_flags & VM_WRITE))
  312. goto bad_area;
  313. /* Spitfire has an icache which does not snoop
  314.  * processor stores.  Later processors do...
  315.  */
  316. if (tlb_type == spitfire &&
  317.     (vma->vm_flags & VM_EXEC) != 0 &&
  318.     vma->vm_file != NULL)
  319. current->thread.use_blkcommit = 1;
  320. } else {
  321. /* Allow reads even for write-only mappings */
  322. if (!(vma->vm_flags & (VM_READ | VM_EXEC)))
  323. goto bad_area;
  324. }
  325. switch (handle_mm_fault(mm, vma, address, (fault_code & FAULT_CODE_WRITE))) {
  326. case 1:
  327. current->min_flt++;
  328. break;
  329. case 2:
  330. current->maj_flt++;
  331. break;
  332. case 0:
  333. goto do_sigbus;
  334. default:
  335. goto out_of_memory;
  336. }
  337. up_read(&mm->mmap_sem);
  338. goto fault_done;
  339. /*
  340.  * Something tried to access memory that isn't in our memory map..
  341.  * Fix it, but check if it's kernel or user first..
  342.  */
  343. bad_area:
  344. insn = get_fault_insn(regs, insn);
  345. up_read(&mm->mmap_sem);
  346. handle_kernel_fault:
  347. do_kernel_fault(regs, si_code, fault_code, insn, address);
  348. goto fault_done;
  349. /*
  350.  * We ran out of memory, or some other thing happened to us that made
  351.  * us unable to handle the page fault gracefully.
  352.  */
  353. out_of_memory:
  354. insn = get_fault_insn(regs, insn);
  355. up_read(&mm->mmap_sem);
  356. printk("VM: killing process %sn", current->comm);
  357. if (!(regs->tstate & TSTATE_PRIV))
  358. do_exit(SIGKILL);
  359. goto handle_kernel_fault;
  360. intr_or_no_mm:
  361. insn = get_fault_insn(regs, 0);
  362. goto handle_kernel_fault;
  363. do_sigbus:
  364. insn = get_fault_insn(regs, insn);
  365. up_read(&mm->mmap_sem);
  366. /*
  367.  * Send a sigbus, regardless of whether we were in kernel
  368.  * or user mode.
  369.  */
  370. do_fault_siginfo(BUS_ADRERR, SIGBUS, address);
  371. /* Kernel mode? Handle exceptions or die */
  372. if (regs->tstate & TSTATE_PRIV)
  373. goto handle_kernel_fault;
  374. fault_done:
  375. /* These values are no longer needed, clear them. */
  376. current->thread.fault_code = 0;
  377. current->thread.use_blkcommit = 0;
  378. current->thread.fault_address = 0;
  379. }