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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  arch/s390/mm/fault.c
  3.  *
  4.  *  S390 version
  5.  *    Copyright (C) 1999 IBM Deutschland Entwicklung GmbH, IBM Corporation
  6.  *    Author(s): Hartmut Penner (hp@de.ibm.com)
  7.  *               Ulrich Weigand (uweigand@de.ibm.com)
  8.  *
  9.  *  Derived from "arch/i386/mm/fault.c"
  10.  *    Copyright (C) 1995  Linus Torvalds
  11.  */
  12. #include <linux/config.h>
  13. #include <linux/signal.h>
  14. #include <linux/sched.h>
  15. #include <linux/kernel.h>
  16. #include <linux/errno.h>
  17. #include <linux/string.h>
  18. #include <linux/types.h>
  19. #include <linux/ptrace.h>
  20. #include <linux/mman.h>
  21. #include <linux/mm.h>
  22. #include <linux/smp.h>
  23. #include <linux/smp_lock.h>
  24. #include <linux/init.h>
  25. #include <linux/console.h>
  26. #include <asm/system.h>
  27. #include <asm/uaccess.h>
  28. #include <asm/pgtable.h>
  29. #include <asm/hardirq.h>
  30. #ifdef CONFIG_SYSCTL
  31. extern int sysctl_userprocess_debug;
  32. #endif
  33. extern void die(const char *,struct pt_regs *,long);
  34. static void force_sigsegv(struct task_struct *tsk, int code, void *address);
  35. extern spinlock_t timerlist_lock;
  36. /*
  37.  * Unlock any spinlocks which will prevent us from getting the
  38.  * message out (timerlist_lock is acquired through the
  39.  * console unblank code)
  40.  */
  41. void bust_spinlocks(int yes)
  42. {
  43. spin_lock_init(&timerlist_lock);
  44. if (yes) {
  45. oops_in_progress = 1;
  46. } else {
  47. int loglevel_save = console_loglevel;
  48. oops_in_progress = 0;
  49. console_unblank();
  50. /*
  51.  * OK, the message is on the console.  Now we call printk()
  52.  * without oops_in_progress set so that printk will give klogd
  53.  * a poke.  Hold onto your hats...
  54.  */
  55. console_loglevel = 15;
  56. printk(" ");
  57. console_loglevel = loglevel_save;
  58. }
  59. }
  60. /*
  61.  * This routine handles page faults.  It determines the address,
  62.  * and the problem, and then passes it off to one of the appropriate
  63.  * routines.
  64.  *
  65.  * error_code:
  66.  *             ****0004       Protection           ->  Write-Protection  (suprression)
  67.  *             ****0010       Segment translation  ->  Not present       (nullification)
  68.  *             ****0011       Page translation     ->  Not present       (nullification)
  69.  *             ****003B       Region third exception ->  Not present       (nullification)
  70.  */
  71. asmlinkage void do_page_fault(struct pt_regs *regs, unsigned long error_code)
  72. {
  73.         struct task_struct *tsk;
  74.         struct mm_struct *mm;
  75.         struct vm_area_struct * vma;
  76.         unsigned long address;
  77.         unsigned long fixup;
  78.         int write;
  79. int si_code = SEGV_MAPERR;
  80. int kernel_address = 0;
  81.         tsk = current;
  82.         mm = tsk->mm;
  83. /* 
  84.          * Check for low-address protection.  This needs to be treated
  85.  * as a special case because the translation exception code 
  86.  * field is not guaranteed to contain valid data in this case.
  87.  */
  88. if ((error_code & 0xff) == 4 && !(S390_lowcore.trans_exc_code & 4)) {
  89. /* Low-address protection hit in kernel mode means 
  90.    NULL pointer write access in kernel mode.  */
  91.   if (!(regs->psw.mask & PSW_PROBLEM_STATE)) {
  92. address = 0;
  93. kernel_address = 1;
  94. goto no_context;
  95. }
  96. /* Low-address protection hit in user mode 'cannot happen'.  */
  97. die ("Low-address protection", regs, error_code);
  98.          do_exit(SIGKILL);
  99. }
  100.         /* 
  101.          * get the failing address 
  102.          * more specific the segment and page table portion of 
  103.          * the address 
  104.          */
  105.         address = S390_lowcore.trans_exc_code&-4096L;
  106. /*
  107.  * Check which address space the address belongs to
  108.  */
  109. switch (S390_lowcore.trans_exc_code & 3)
  110. {
  111. case 0: /* Primary Segment Table Descriptor */
  112. kernel_address = 1;
  113. goto no_context;
  114. case 1: /* STD determined via access register */
  115. if (S390_lowcore.exc_access_id == 0)
  116. {
  117. kernel_address = 1;
  118. goto no_context;
  119. }
  120. if (regs && S390_lowcore.exc_access_id < NUM_ACRS)
  121. {
  122. if (regs->acrs[S390_lowcore.exc_access_id] == 0)
  123. {
  124. kernel_address = 1;
  125. goto no_context;
  126. }
  127. if (regs->acrs[S390_lowcore.exc_access_id] == 1)
  128. {
  129. /* user space address */
  130. break;
  131. }
  132. }
  133. die("page fault via unknown access register", regs, error_code);
  134.          do_exit(SIGKILL);
  135. break;
  136. case 2: /* Secondary Segment Table Descriptor */
  137. case 3: /* Home Segment Table Descriptor */
  138. /* user space address */
  139. break;
  140. }
  141. /*
  142.  * Check whether we have a user MM in the first place.
  143.  */
  144.         if (in_interrupt() || !mm || !(regs->psw.mask & _PSW_IO_MASK_BIT))
  145.                 goto no_context;
  146. /*
  147.  * When we get here, the fault happened in the current
  148.  * task's user address space, so we can switch on the
  149.  * interrupts again and then search the VMAs
  150.  */
  151. __sti();
  152.         down_read(&mm->mmap_sem);
  153.         vma = find_vma(mm, address);
  154.         if (!vma)
  155.                 goto bad_area;
  156.         if (vma->vm_start <= address) 
  157.                 goto good_area;
  158.         if (!(vma->vm_flags & VM_GROWSDOWN))
  159.                 goto bad_area;
  160.         if (expand_stack(vma, address))
  161.                 goto bad_area;
  162. /*
  163.  * Ok, we have a good vm_area for this memory access, so
  164.  * we can handle it..
  165.  */
  166. good_area:
  167.         write = 0;
  168. si_code = SEGV_ACCERR;
  169.         switch (error_code & 0xFF) {
  170.                 case 0x04:                                /* write, present*/
  171.                         write = 1;
  172.                         break;
  173.                 case 0x10:                                   /* not present*/
  174.                 case 0x11:                                   /* not present*/
  175.                 case 0x3B:                                   /* not present*/
  176.                         if (!(vma->vm_flags & (VM_READ | VM_EXEC | VM_WRITE)))
  177.                                 goto bad_area;
  178.                         break;
  179.                 default:
  180.                        printk("code should be 4, 10 or 11 (%lX) n",error_code&0xFF);  
  181.                        goto bad_area;
  182.         }
  183.  survive:
  184. /*
  185.  * If for any reason at all we couldn't handle the fault,
  186.  * make sure we exit gracefully rather than endlessly redo
  187.  * the fault.
  188.  */
  189. switch (handle_mm_fault(mm, vma, address, write)) {
  190. case 1:
  191. tsk->min_flt++;
  192. break;
  193. case 2:
  194. tsk->maj_flt++;
  195. break;
  196. case 0:
  197. goto do_sigbus;
  198. default:
  199. goto out_of_memory;
  200. }
  201.         up_read(&mm->mmap_sem);
  202.         return;
  203. /*
  204.  * Something tried to access memory that isn't in our memory map..
  205.  * Fix it, but check if it's kernel or user first..
  206.  */
  207. bad_area:
  208.         up_read(&mm->mmap_sem);
  209.         /* User mode accesses just cause a SIGSEGV */
  210.         if (regs->psw.mask & PSW_PROBLEM_STATE) {
  211.                 tsk->thread.prot_addr = address;
  212.                 tsk->thread.trap_no = error_code;
  213. #ifndef CONFIG_SYSCTL
  214. #ifdef CONFIG_PROCESS_DEBUG
  215.                 printk("User process fault: interruption code 0x%lXn",error_code);
  216.                 printk("failing address: %lXn",address);
  217. show_regs(regs);
  218. #endif
  219. #else
  220. if (sysctl_userprocess_debug) {
  221. printk("User process fault: interruption code 0x%lXn",
  222.        error_code);
  223. printk("failing address: %lXn", address);
  224. show_regs(regs);
  225. }
  226. #endif
  227. force_sigsegv(tsk, si_code, (void *)address);
  228.                 return;
  229. }
  230. no_context:
  231.         /* Are we prepared to handle this kernel fault?  */
  232.         if ((fixup = search_exception_table(regs->psw.addr)) != 0) {
  233.                 regs->psw.addr = fixup;
  234.                 return;
  235.         }
  236. /*
  237.  * Oops. The kernel tried to access some bad page. We'll have to
  238.  * terminate things with extreme prejudice.
  239.  */
  240.         if (kernel_address)
  241.                 printk(KERN_ALERT "Unable to handle kernel pointer dereference"
  242.                 " at virtual kernel address %016lxn", address);
  243.         else
  244.                 printk(KERN_ALERT "Unable to handle kernel paging request"
  245.        " at virtual user address %016lxn", address);
  246.         die("Oops", regs, error_code);
  247.         do_exit(SIGKILL);
  248. /*
  249.  * We ran out of memory, or some other thing happened to us that made
  250.  * us unable to handle the page fault gracefully.
  251. */
  252. out_of_memory:
  253. up_read(&mm->mmap_sem);
  254. if (tsk->pid == 1) {
  255. tsk->policy |= SCHED_YIELD;
  256. schedule();
  257. down_read(&mm->mmap_sem);
  258. goto survive;
  259. }
  260. printk("VM: killing process %sn", tsk->comm);
  261. if (regs->psw.mask & PSW_PROBLEM_STATE)
  262. do_exit(SIGKILL);
  263. goto no_context;
  264. do_sigbus:
  265. up_read(&mm->mmap_sem);
  266. /*
  267.  * Send a sigbus, regardless of whether we were in kernel
  268.  * or user mode.
  269.  */
  270.         tsk->thread.prot_addr = address;
  271.         tsk->thread.trap_no = error_code;
  272. force_sig(SIGBUS, tsk);
  273. /* Kernel mode? Handle exceptions or die */
  274. if (!(regs->psw.mask & PSW_PROBLEM_STATE))
  275. goto no_context;
  276. }
  277. /*
  278.  * Send SIGSEGV to task.  This is an external routine
  279.  * to keep the stack usage of do_page_fault small.
  280.  */
  281. static void force_sigsegv(struct task_struct *tsk, int code, void *address)
  282. {
  283. struct siginfo si;
  284. si.si_signo = SIGSEGV;
  285. si.si_code = code;
  286. si.si_addr = address;
  287. force_sig_info(SIGSEGV, &si, tsk);
  288. }
  289. #ifdef CONFIG_PFAULT
  290. /*
  291.  * 'pfault' pseudo page faults routines.
  292.  */
  293. static int pfault_disable = 0;
  294. static int __init nopfault(char *str)
  295. {
  296. pfault_disable = 1;
  297. return 1;
  298. }
  299. __setup("nopfault", nopfault);
  300. typedef struct {
  301. __u16 refdiagc;
  302. __u16 reffcode;
  303. __u16 refdwlen;
  304. __u16 refversn;
  305. __u64 refgaddr;
  306. __u64 refselmk;
  307. __u64 refcmpmk;
  308. __u64 reserved;
  309. } __attribute__ ((packed)) pfault_refbk_t;
  310. typedef struct _pseudo_wait_t {
  311.        struct _pseudo_wait_t *next;
  312.        wait_queue_head_t queue;
  313.        unsigned long address;
  314.        int resolved;
  315. } pseudo_wait_t;
  316. int pfault_init(void)
  317. {
  318. pfault_refbk_t refbk =
  319. { 0x258, 0, 5, 2, __LC_KERNEL_STACK, 1ULL << 48, 1ULL << 48,
  320.           0x8000000000000000ULL };
  321.         int rc;
  322. if (pfault_disable)
  323. return -1;
  324.         __asm__ __volatile__(
  325.                 "    diag  %1,%0,0x258n"
  326. "0:  j     2fn"
  327. "1:  la    %0,8n"
  328. "2:n"
  329. ".section __ex_table,"a"n"
  330. "   .align 4n"
  331. "   .quad  0b,1bn"
  332. ".previous"
  333.                 : "=d" (rc) : "a" (&refbk) : "cc" );
  334. __ctl_set_bit(0, 9);
  335.         return rc;
  336. }
  337. void pfault_fini(void)
  338. {
  339. pfault_refbk_t refbk =
  340. { 0x258, 1, 5, 2, 0ULL, 0ULL, 0ULL, 0ULL };
  341. if (pfault_disable)
  342. return;
  343. __ctl_clear_bit(0, 9);
  344.         __asm__ __volatile__(
  345.                 "    diag  %0,0,0x258n"
  346. "0:n"
  347. ".section __ex_table,"a"n"
  348. "   .align 4n"
  349. "   .quad  0b,0bn"
  350. ".previous"
  351. : : "a" (&refbk) : "cc" );
  352. }
  353. asmlinkage void
  354. pfault_interrupt(struct pt_regs *regs, __u16 error_code)
  355. {
  356. struct task_struct *tsk;
  357. wait_queue_head_t queue;
  358. wait_queue_head_t *qp;
  359. __u16 subcode;
  360. /*
  361.  * Get the external interruption subcode & pfault
  362.  * initial/completion signal bit. VM stores this 
  363.  * in the 'cpu address' field associated with the
  364.          * external interrupt. 
  365.  */
  366. subcode = S390_lowcore.cpu_addr;
  367. if ((subcode & 0xff00) != 0x0600)
  368. return;
  369. /*
  370.  * Get the token (= address of kernel stack of affected task).
  371.  */
  372. tsk = (struct task_struct *)
  373. (*((unsigned long *) __LC_PFAULT_INTPARM) - THREAD_SIZE);
  374. /*
  375.  * We got all needed information from the lowcore and can
  376.  * now safely switch on interrupts.
  377.  */
  378. if (regs->psw.mask & PSW_PROBLEM_STATE)
  379. __sti();
  380. if (subcode & 0x0080) {
  381. /* signal bit is set -> a page has been swapped in by VM */
  382. qp = (wait_queue_head_t *)
  383. xchg(&tsk->thread.pfault_wait, -1);
  384. if (qp != NULL) {
  385. /* Initial interrupt was faster than the completion
  386.  * interrupt. pfault_wait is valid. Set pfault_wait
  387.  * back to zero and wake up the process. This can
  388.  * safely be done because the task is still sleeping
  389.  * and can't procude new pfaults. */
  390. tsk->thread.pfault_wait = 0ULL;
  391. wake_up(qp);
  392. }
  393. } else {
  394. /* signal bit not set -> a real page is missing. */
  395.                 init_waitqueue_head (&queue);
  396. qp = (wait_queue_head_t *)
  397. xchg(&tsk->thread.pfault_wait, (addr_t) &queue);
  398. if (qp != NULL) {
  399. /* Completion interrupt was faster than the initial
  400.  * interrupt (swapped in a -1 for pfault_wait). Set
  401.  * pfault_wait back to zero and exit. This can be
  402.  * done safely because tsk is running in kernel 
  403.  * mode and can't produce new pfaults. */
  404. tsk->thread.pfault_wait = 0ULL;
  405. }
  406.                 /* go to sleep */
  407.                 wait_event(queue, tsk->thread.pfault_wait == 0ULL);
  408. }
  409. }
  410. #endif