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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * Kernel exception handling table support.  Derived from arch/alpha/mm/extable.c.
  3.  *
  4.  * Copyright (C) 1998, 1999, 2001-2002 Hewlett-Packard Co
  5.  * David Mosberger-Tang <davidm@hpl.hp.com>
  6.  */
  7. #include <linux/config.h>
  8. #include <asm/uaccess.h>
  9. #include <asm/module.h>
  10. extern const struct exception_table_entry __start___ex_table[];
  11. extern const struct exception_table_entry __stop___ex_table[];
  12. static inline const struct exception_table_entry *
  13. search_one_table (const struct exception_table_entry *first,
  14.   const struct exception_table_entry *last,
  15.   unsigned long ip, unsigned long gp)
  16. {
  17.         while (first <= last) {
  18. const struct exception_table_entry *mid;
  19. long diff;
  20. mid = &first[(last - first)/2];
  21. diff = (mid->addr + gp) - ip;
  22.                 if (diff == 0)
  23.                         return mid;
  24.                 else if (diff < 0)
  25.                         first = mid + 1;
  26.                 else
  27.                         last = mid - 1;
  28.         }
  29.         return 0;
  30. }
  31. #ifndef CONFIG_MODULES
  32. register unsigned long main_gp __asm__("gp");
  33. #endif
  34. struct exception_fixup
  35. search_exception_table (unsigned long addr)
  36. {
  37. const struct exception_table_entry *entry;
  38. struct exception_fixup fix = { 0 };
  39. #ifndef CONFIG_MODULES
  40. /* There is only the kernel to search.  */
  41. entry = search_one_table(__start___ex_table, __stop___ex_table - 1, addr, main_gp);
  42. if (entry)
  43. fix.cont = entry->cont + main_gp;
  44. return fix;
  45. #else
  46. struct archdata *archdata;
  47. struct module *mp;
  48. /* The kernel is the last "module" -- no need to treat it special. */
  49. for (mp = module_list; mp; mp = mp->next) {
  50. if (!mp->ex_table_start)
  51. continue;
  52. archdata = (struct archdata *) mp->archdata_start;
  53. if (!archdata)
  54. continue;
  55. entry = search_one_table(mp->ex_table_start, mp->ex_table_end - 1,
  56.  addr, (unsigned long) archdata->gp);
  57. if (entry) {
  58. fix.cont = entry->cont + (unsigned long) archdata->gp;
  59. return fix;
  60. }
  61. }
  62. #endif
  63. return fix;
  64. }
  65. void
  66. handle_exception (struct pt_regs *regs, struct exception_fixup fix)
  67. {
  68. regs->r8 = -EFAULT;
  69. if (fix.cont & 4)
  70. regs->r9 = 0;
  71. regs->cr_iip = (long) fix.cont & ~0xf;
  72. ia64_psr(regs)->ri = fix.cont & 0x3; /* set continuation slot number */
  73. }