fault.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:12k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* $Id: fault.c,v 1.58.2.2 2002/03/12 12:25:15 davem 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;
  51. __asm__ __volatile__("ldxa [%%g0] %1, %0"
  52.      : "=r" (lsubits)
  53.      : "i" (ASI_LSU_CONTROL));
  54. lsubits &= ~(LSU_CONTROL_PM | LSU_CONTROL_VM |
  55.      LSU_CONTROL_PR | LSU_CONTROL_VR |
  56.      LSU_CONTROL_PW | LSU_CONTROL_VW);
  57. __asm__ __volatile__("stxa %0, [%1] %2nt"
  58.      "membar #Sync"
  59.      : /* no outputs */
  60.      : "r" (addr), "r" (mode ? VIRT_WATCHPOINT : PHYS_WATCHPOINT),
  61.        "i" (ASI_DMMU));
  62. lsubits |= ((unsigned long)mask << (mode ? 25 : 33));
  63. if (flags & VM_READ)
  64. lsubits |= (mode ? LSU_CONTROL_VR : LSU_CONTROL_PR);
  65. if (flags & VM_WRITE)
  66. lsubits |= (mode ? LSU_CONTROL_VW : LSU_CONTROL_PW);
  67. __asm__ __volatile__("stxa %0, [%%g0] %1nt"
  68.      "membar #Sync"
  69.      : /* no outputs */
  70.      : "r" (lsubits), "i" (ASI_LSU_CONTROL)
  71.      : "memory");
  72. }
  73. /* Nice, simple, prom library does all the sweating for us. ;) */
  74. unsigned long __init prom_probe_memory (void)
  75. {
  76. register struct linux_mlist_p1275 *mlist;
  77. register unsigned long bytes, base_paddr, tally;
  78. register int i;
  79. i = 0;
  80. mlist = *prom_meminfo()->p1275_available;
  81. bytes = tally = mlist->num_bytes;
  82. base_paddr = mlist->start_adr;
  83.   
  84. sp_banks[0].base_addr = base_paddr;
  85. sp_banks[0].num_bytes = bytes;
  86. while (mlist->theres_more != (void *) 0) {
  87. i++;
  88. mlist = mlist->theres_more;
  89. bytes = mlist->num_bytes;
  90. tally += bytes;
  91. if (i >= SPARC_PHYS_BANKS-1) {
  92. printk ("The machine has more banks than "
  93. "this kernel can supportn"
  94. "Increase the SPARC_PHYS_BANKS "
  95. "setting (currently %d)n",
  96. SPARC_PHYS_BANKS);
  97. i = SPARC_PHYS_BANKS-1;
  98. break;
  99. }
  100.     
  101. sp_banks[i].base_addr = mlist->start_adr;
  102. sp_banks[i].num_bytes = mlist->num_bytes;
  103. }
  104. i++;
  105. sp_banks[i].base_addr = 0xdeadbeefbeefdeadUL;
  106. sp_banks[i].num_bytes = 0;
  107. /* Now mask all bank sizes on a page boundary, it is all we can
  108.  * use anyways.
  109.  */
  110. for (i = 0; sp_banks[i].num_bytes != 0; i++)
  111. sp_banks[i].num_bytes &= PAGE_MASK;
  112. return tally;
  113. }
  114. static void unhandled_fault(unsigned long address, struct task_struct *tsk,
  115.     struct pt_regs *regs)
  116. {
  117. if ((unsigned long) address < PAGE_SIZE) {
  118. printk(KERN_ALERT "Unable to handle kernel NULL "
  119.        "pointer dereferencen");
  120. } else {
  121. printk(KERN_ALERT "Unable to handle kernel paging request "
  122.        "at virtual address %016lxn", (unsigned long)address);
  123. }
  124. printk(KERN_ALERT "tsk->{mm,active_mm}->context = %016lxn",
  125.        (tsk->mm ? tsk->mm->context : tsk->active_mm->context));
  126. printk(KERN_ALERT "tsk->{mm,active_mm}->pgd = %016lxn",
  127.        (tsk->mm ? (unsigned long) tsk->mm->pgd :
  128.           (unsigned long) tsk->active_mm->pgd));
  129. die_if_kernel("Oops", regs);
  130. }
  131. extern void show_trace_raw(struct task_struct *, unsigned long);
  132. static void bad_kernel_pc(struct pt_regs *regs)
  133. {
  134. unsigned long ksp;
  135. printk(KERN_CRIT "OOPS: Bogus kernel PC [%016lx] in fault handlern",
  136.        regs->tpc);
  137. __asm__("mov %%sp, %0" : "=r" (ksp));
  138. show_trace_raw(current, ksp);
  139. unhandled_fault(regs->tpc, current, regs);
  140. }
  141. /*
  142.  * We now make sure that mmap_sem is held in all paths that call 
  143.  * this. Additionally, to prevent kswapd from ripping ptes from
  144.  * under us, raise interrupts around the time that we look at the
  145.  * pte, kswapd will have to wait to get his smp ipi response from
  146.  * us. This saves us having to get page_table_lock.
  147.  */
  148. static unsigned int get_user_insn(unsigned long tpc)
  149. {
  150. pgd_t *pgdp = pgd_offset(current->mm, tpc);
  151. pmd_t *pmdp;
  152. pte_t *ptep, pte;
  153. unsigned long pa;
  154. u32 insn = 0;
  155. unsigned long pstate;
  156. if (pgd_none(*pgdp))
  157. goto outret;
  158. pmdp = pmd_offset(pgdp, tpc);
  159. if (pmd_none(*pmdp))
  160. goto outret;
  161. ptep = pte_offset(pmdp, tpc);
  162. __asm__ __volatile__("rdpr %%pstate, %0" : "=r" (pstate));
  163. __asm__ __volatile__("wrpr %0, %1, %%pstate"
  164. : : "r" (pstate), "i" (PSTATE_IE));
  165. pte = *ptep;
  166. if (!pte_present(pte))
  167. goto out;
  168. pa  = (pte_val(pte) & _PAGE_PADDR);
  169. pa += (tpc & ~PAGE_MASK);
  170. /* Use phys bypass so we don't pollute dtlb/dcache. */
  171. __asm__ __volatile__("lduwa [%1] %2, %0"
  172.      : "=r" (insn)
  173.      : "r" (pa), "i" (ASI_PHYS_USE_EC));
  174. out:
  175. __asm__ __volatile__("wrpr %0, 0x0, %%pstate" : : "r" (pstate));
  176. outret:
  177. return insn;
  178. }
  179. static void do_fault_siginfo(int code, int sig, unsigned long address)
  180. {
  181. siginfo_t info;
  182. info.si_code = code;
  183. info.si_signo = sig;
  184. info.si_errno = 0;
  185. info.si_addr = (void *) address;
  186. info.si_trapno = 0;
  187. force_sig_info(sig, &info, current);
  188. }
  189. extern int handle_ldf_stq(u32, struct pt_regs *);
  190. extern int handle_ld_nf(u32, struct pt_regs *);
  191. static inline unsigned int get_fault_insn(struct pt_regs *regs, unsigned int insn)
  192. {
  193. if (!insn) {
  194. if (!regs->tpc || (regs->tpc & 0x3))
  195. return 0;
  196. if (regs->tstate & TSTATE_PRIV) {
  197. insn = *(unsigned int *) regs->tpc;
  198. } else {
  199. insn = get_user_insn(regs->tpc);
  200. }
  201. }
  202. return insn;
  203. }
  204. static void do_kernel_fault(struct pt_regs *regs, int si_code, int fault_code,
  205.     unsigned int insn, unsigned long address)
  206. {
  207. unsigned long g2;
  208. unsigned char asi = ASI_P;
  209.  
  210. if ((!insn) && (regs->tstate & TSTATE_PRIV))
  211. goto cannot_handle;
  212. /* If user insn could be read (thus insn is zero), that
  213.  * is fine.  We will just gun down the process with a signal
  214.  * in that case.
  215.  */
  216. if (!(fault_code & FAULT_CODE_WRITE) &&
  217.     (insn & 0xc0800000) == 0xc0800000) {
  218. if (insn & 0x2000)
  219. asi = (regs->tstate >> 24);
  220. else
  221. asi = (insn >> 5);
  222. if ((asi & 0xf2) == 0x82) {
  223. if (insn & 0x1000000) {
  224. handle_ldf_stq(insn, regs);
  225. } else {
  226. /* This was a non-faulting load. Just clear the
  227.  * destination register(s) and continue with the next
  228.  * instruction. -jj
  229.  */
  230. handle_ld_nf(insn, regs);
  231. }
  232. return;
  233. }
  234. }
  235. g2 = regs->u_regs[UREG_G2];
  236. /* Is this in ex_table? */
  237. if (regs->tstate & TSTATE_PRIV) {
  238. unsigned long fixup;
  239. if (asi == ASI_P && (insn & 0xc0800000) == 0xc0800000) {
  240. if (insn & 0x2000)
  241. asi = (regs->tstate >> 24);
  242. else
  243. asi = (insn >> 5);
  244. }
  245. /* Look in asi.h: All _S asis have LS bit set */
  246. if ((asi & 0x1) &&
  247.     (fixup = search_exception_table (regs->tpc, &g2))) {
  248. regs->tpc = fixup;
  249. regs->tnpc = regs->tpc + 4;
  250. regs->u_regs[UREG_G2] = g2;
  251. return;
  252. }
  253. } else {
  254. /* The si_code was set to make clear whether
  255.  * this was a SEGV_MAPERR or SEGV_ACCERR fault.
  256.  */
  257. do_fault_siginfo(si_code, SIGSEGV, address);
  258. return;
  259. }
  260. cannot_handle:
  261. unhandled_fault (address, current, regs);
  262. }
  263. asmlinkage void do_sparc64_fault(struct pt_regs *regs)
  264. {
  265. struct mm_struct *mm = current->mm;
  266. struct vm_area_struct *vma;
  267. unsigned int insn = 0;
  268. int si_code, fault_code;
  269. unsigned long address;
  270. si_code = SEGV_MAPERR;
  271. fault_code = current->thread.fault_code;
  272. address = current->thread.fault_address;
  273. if ((fault_code & FAULT_CODE_ITLB) &&
  274.     (fault_code & FAULT_CODE_DTLB))
  275. BUG();
  276. if (regs->tstate & TSTATE_PRIV) {
  277. unsigned long tpc = regs->tpc;
  278. extern unsigned int _etext;
  279. /* Sanity check the PC. */
  280. if ((tpc >= KERNBASE && tpc < (unsigned long) &_etext) ||
  281.     (tpc >= MODULES_VADDR && tpc < MODULES_END)) {
  282. /* Valid, no problems... */
  283. } else {
  284. bad_kernel_pc(regs);
  285. return;
  286. }
  287. }
  288. /*
  289.  * If we're in an interrupt or have no user
  290.  * context, we must not take the fault..
  291.  */
  292. if (in_interrupt() || !mm)
  293. goto intr_or_no_mm;
  294. if ((current->thread.flags & SPARC_FLAG_32BIT) != 0) {
  295. regs->tpc &= 0xffffffff;
  296. address &= 0xffffffff;
  297. }
  298. down_read(&mm->mmap_sem);
  299. vma = find_vma(mm, address);
  300. if (!vma)
  301. goto bad_area;
  302. /* Pure DTLB misses do not tell us whether the fault causing
  303.  * load/store/atomic was a write or not, it only says that there
  304.  * was no match.  So in such a case we (carefully) read the
  305.  * instruction to try and figure this out.  It's an optimization
  306.  * so it's ok if we can't do this.
  307.  *
  308.  * Special hack, window spill/fill knows the exact fault type.
  309.  */
  310. if (((fault_code &
  311.       (FAULT_CODE_DTLB | FAULT_CODE_WRITE | FAULT_CODE_WINFIXUP)) == FAULT_CODE_DTLB) &&
  312.     (vma->vm_flags & VM_WRITE) != 0) {
  313. insn = get_fault_insn(regs, 0);
  314. if (!insn)
  315. goto continue_fault;
  316. if ((insn & 0xc0200000) == 0xc0200000 &&
  317.     (insn & 0x1780000) != 0x1680000) {
  318. /* Don't bother updating thread struct value,
  319.  * because update_mmu_cache only cares which tlb
  320.  * the access came from.
  321.  */
  322. fault_code |= FAULT_CODE_WRITE;
  323. }
  324. }
  325. continue_fault:
  326. if (vma->vm_start <= address)
  327. goto good_area;
  328. if (!(vma->vm_flags & VM_GROWSDOWN))
  329. goto bad_area;
  330. if (!(fault_code & FAULT_CODE_WRITE)) {
  331. /* Non-faulting loads shouldn't expand stack. */
  332. insn = get_fault_insn(regs, insn);
  333. if ((insn & 0xc0800000) == 0xc0800000) {
  334. unsigned char asi;
  335. if (insn & 0x2000)
  336. asi = (regs->tstate >> 24);
  337. else
  338. asi = (insn >> 5);
  339. if ((asi & 0xf2) == 0x82)
  340. goto bad_area;
  341. }
  342. }
  343. if (expand_stack(vma, address))
  344. goto bad_area;
  345. /*
  346.  * Ok, we have a good vm_area for this memory access, so
  347.  * we can handle it..
  348.  */
  349. good_area:
  350. si_code = SEGV_ACCERR;
  351. if (fault_code & FAULT_CODE_WRITE) {
  352. if (!(vma->vm_flags & VM_WRITE))
  353. goto bad_area;
  354. /* Spitfire has an icache which does not snoop
  355.  * processor stores.  Later processors do...
  356.  */
  357. if (tlb_type == spitfire &&
  358.     (vma->vm_flags & VM_EXEC) != 0 &&
  359.     vma->vm_file != NULL)
  360. current->thread.use_blkcommit = 1;
  361. } else {
  362. /* Allow reads even for write-only mappings */
  363. if (!(vma->vm_flags & (VM_READ | VM_EXEC)))
  364. goto bad_area;
  365. }
  366. switch (handle_mm_fault(mm, vma, address, (fault_code & FAULT_CODE_WRITE))) {
  367. case 1:
  368. current->min_flt++;
  369. break;
  370. case 2:
  371. current->maj_flt++;
  372. break;
  373. case 0:
  374. goto do_sigbus;
  375. default:
  376. goto out_of_memory;
  377. }
  378. up_read(&mm->mmap_sem);
  379. goto fault_done;
  380. /*
  381.  * Something tried to access memory that isn't in our memory map..
  382.  * Fix it, but check if it's kernel or user first..
  383.  */
  384. bad_area:
  385. insn = get_fault_insn(regs, insn);
  386. up_read(&mm->mmap_sem);
  387. handle_kernel_fault:
  388. do_kernel_fault(regs, si_code, fault_code, insn, address);
  389. goto fault_done;
  390. /*
  391.  * We ran out of memory, or some other thing happened to us that made
  392.  * us unable to handle the page fault gracefully.
  393.  */
  394. out_of_memory:
  395. insn = get_fault_insn(regs, insn);
  396. up_read(&mm->mmap_sem);
  397. printk("VM: killing process %sn", current->comm);
  398. if (!(regs->tstate & TSTATE_PRIV))
  399. do_exit(SIGKILL);
  400. goto handle_kernel_fault;
  401. intr_or_no_mm:
  402. insn = get_fault_insn(regs, 0);
  403. goto handle_kernel_fault;
  404. do_sigbus:
  405. insn = get_fault_insn(regs, insn);
  406. up_read(&mm->mmap_sem);
  407. /*
  408.  * Send a sigbus, regardless of whether we were in kernel
  409.  * or user mode.
  410.  */
  411. do_fault_siginfo(BUS_ADRERR, SIGBUS, address);
  412. /* Kernel mode? Handle exceptions or die */
  413. if (regs->tstate & TSTATE_PRIV)
  414. goto handle_kernel_fault;
  415. fault_done:
  416. /* These values are no longer needed, clear them. */
  417. current->thread.fault_code = 0;
  418. current->thread.use_blkcommit = 0;
  419. current->thread.fault_address = 0;
  420. }