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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*---------------------------------------------------------------------------+
  2.  |  get_address.c                                                            |
  3.  |                                                                           |
  4.  | Get the effective address from an FPU instruction.                        |
  5.  |                                                                           |
  6.  | Copyright (C) 1992,1993,1994,1997                                         |
  7.  |                       W. Metzenthen, 22 Parker St, Ormond, Vic 3163,      |
  8.  |                       Australia.  E-mail   billm@suburbia.net             |
  9.  |                                                                           |
  10.  |                                                                           |
  11.  +---------------------------------------------------------------------------*/
  12. /*---------------------------------------------------------------------------+
  13.  | Note:                                                                     |
  14.  |    The file contains code which accesses user memory.                     |
  15.  |    Emulator static data may change when user memory is accessed, due to   |
  16.  |    other processes using the emulator while swapping is in progress.      |
  17.  +---------------------------------------------------------------------------*/
  18. #include <linux/stddef.h>
  19. #include <asm/uaccess.h>
  20. #include <asm/desc.h>
  21. #include "fpu_system.h"
  22. #include "exception.h"
  23. #include "fpu_emu.h"
  24. #define FPU_WRITE_BIT 0x10
  25. static int reg_offset[] = {
  26. offsetof(struct info,___eax),
  27. offsetof(struct info,___ecx),
  28. offsetof(struct info,___edx),
  29. offsetof(struct info,___ebx),
  30. offsetof(struct info,___esp),
  31. offsetof(struct info,___ebp),
  32. offsetof(struct info,___esi),
  33. offsetof(struct info,___edi)
  34. };
  35. #define REG_(x) (*(long *)(reg_offset[(x)]+(u_char *) FPU_info))
  36. static int reg_offset_vm86[] = {
  37. offsetof(struct info,___cs),
  38. offsetof(struct info,___vm86_ds),
  39. offsetof(struct info,___vm86_es),
  40. offsetof(struct info,___vm86_fs),
  41. offsetof(struct info,___vm86_gs),
  42. offsetof(struct info,___ss),
  43. offsetof(struct info,___vm86_ds)
  44.       };
  45. #define VM86_REG_(x) (*(unsigned short *) 
  46.       (reg_offset_vm86[((unsigned)x)]+(u_char *) FPU_info))
  47. /* These are dummy, fs and gs are not saved on the stack. */
  48. #define ___FS ___ds
  49. #define ___GS ___ds
  50. static int reg_offset_pm[] = {
  51. offsetof(struct info,___cs),
  52. offsetof(struct info,___ds),
  53. offsetof(struct info,___es),
  54. offsetof(struct info,___FS),
  55. offsetof(struct info,___GS),
  56. offsetof(struct info,___ss),
  57. offsetof(struct info,___ds)
  58.       };
  59. #define PM_REG_(x) (*(unsigned short *) 
  60.       (reg_offset_pm[((unsigned)x)]+(u_char *) FPU_info))
  61. /* Decode the SIB byte. This function assumes mod != 0 */
  62. static int sib(int mod, unsigned long *fpu_eip)
  63. {
  64.   u_char ss,index,base;
  65.   long offset;
  66.   RE_ENTRANT_CHECK_OFF;
  67.   FPU_code_verify_area(1);
  68.   FPU_get_user(base, (u_char *) (*fpu_eip));   /* The SIB byte */
  69.   RE_ENTRANT_CHECK_ON;
  70.   (*fpu_eip)++;
  71.   ss = base >> 6;
  72.   index = (base >> 3) & 7;
  73.   base &= 7;
  74.   if ((mod == 0) && (base == 5))
  75.     offset = 0;              /* No base register */
  76.   else
  77.     offset = REG_(base);
  78.   if (index == 4)
  79.     {
  80.       /* No index register */
  81.       /* A non-zero ss is illegal */
  82.       if ( ss )
  83. EXCEPTION(EX_Invalid);
  84.     }
  85.   else
  86.     {
  87.       offset += (REG_(index)) << ss;
  88.     }
  89.   if (mod == 1)
  90.     {
  91.       /* 8 bit signed displacement */
  92.       long displacement;
  93.       RE_ENTRANT_CHECK_OFF;
  94.       FPU_code_verify_area(1);
  95.       FPU_get_user(displacement, (signed char *) (*fpu_eip));
  96.       offset += displacement;
  97.       RE_ENTRANT_CHECK_ON;
  98.       (*fpu_eip)++;
  99.     }
  100.   else if (mod == 2 || base == 5) /* The second condition also has mod==0 */
  101.     {
  102.       /* 32 bit displacement */
  103.       long displacement;
  104.       RE_ENTRANT_CHECK_OFF;
  105.       FPU_code_verify_area(4);
  106.       FPU_get_user(displacement, (long *) (*fpu_eip));
  107.       offset += displacement;
  108.       RE_ENTRANT_CHECK_ON;
  109.       (*fpu_eip) += 4;
  110.     }
  111.   return offset;
  112. }
  113. static unsigned long vm86_segment(u_char segment,
  114.   struct address *addr)
  115. {
  116.   segment--;
  117. #ifdef PARANOID
  118.   if ( segment > PREFIX_SS_ )
  119.     {
  120.       EXCEPTION(EX_INTERNAL|0x130);
  121.       math_abort(FPU_info,SIGSEGV);
  122.     }
  123. #endif /* PARANOID */
  124.   addr->selector = VM86_REG_(segment);
  125.   return (unsigned long)VM86_REG_(segment) << 4;
  126. }
  127. /* This should work for 16 and 32 bit protected mode. */
  128. static long pm_address(u_char FPU_modrm, u_char segment,
  129.        struct address *addr, long offset)
  130.   struct desc_struct descriptor;
  131.   unsigned long base_address, limit, address, seg_top;
  132.   unsigned short selector;
  133.   segment--;
  134. #ifdef PARANOID
  135.   /* segment is unsigned, so this also detects if segment was 0: */
  136.   if ( segment > PREFIX_SS_ )
  137.     {
  138.       EXCEPTION(EX_INTERNAL|0x132);
  139.       math_abort(FPU_info,SIGSEGV);
  140.     }
  141. #endif /* PARANOID */
  142.   switch ( segment )
  143.     {
  144.       /* fs and gs aren't used by the kernel, so they still have their
  145.  user-space values. */
  146.     case PREFIX_FS_-1:
  147.       /* The cast is needed here to get gcc 2.8.0 to use a 16 bit register
  148.  in the assembler statement. */
  149.       __asm__("mov %%fs,%0":"=r" (selector));
  150.       addr->selector = selector;
  151.       break;
  152.     case PREFIX_GS_-1:
  153.       /* The cast is needed here to get gcc 2.8.0 to use a 16 bit register
  154.  in the assembler statement. */
  155.       __asm__("mov %%gs,%0":"=r" (selector));
  156.       addr->selector = selector;
  157.       break;
  158.     default:
  159.       addr->selector = PM_REG_(segment);
  160.     }
  161.   descriptor = LDT_DESCRIPTOR(PM_REG_(segment));
  162.   base_address = SEG_BASE_ADDR(descriptor);
  163.   address = base_address + offset;
  164.   limit = base_address
  165. + (SEG_LIMIT(descriptor)+1) * SEG_GRANULARITY(descriptor) - 1;
  166.   if ( limit < base_address ) limit = 0xffffffff;
  167.   if ( SEG_EXPAND_DOWN(descriptor) )
  168.     {
  169.       if ( SEG_G_BIT(descriptor) )
  170. seg_top = 0xffffffff;
  171.       else
  172. {
  173.   seg_top = base_address + (1 << 20);
  174.   if ( seg_top < base_address ) seg_top = 0xffffffff;
  175. }
  176.       access_limit =
  177. (address <= limit) || (address >= seg_top) ? 0 :
  178.   ((seg_top-address) >= 255 ? 255 : seg_top-address);
  179.     }
  180.   else
  181.     {
  182.       access_limit =
  183. (address > limit) || (address < base_address) ? 0 :
  184.   ((limit-address) >= 254 ? 255 : limit-address+1);
  185.     }
  186.   if ( SEG_EXECUTE_ONLY(descriptor) ||
  187.       (!SEG_WRITE_PERM(descriptor) && (FPU_modrm & FPU_WRITE_BIT)) )
  188.     {
  189.       access_limit = 0;
  190.     }
  191.   return address;
  192. }
  193. /*
  194.        MOD R/M byte:  MOD == 3 has a special use for the FPU
  195.                       SIB byte used iff R/M = 100b
  196.        7   6   5   4   3   2   1   0
  197.        .....   .........   .........
  198.         MOD    OPCODE(2)     R/M
  199.        SIB byte
  200.        7   6   5   4   3   2   1   0
  201.        .....   .........   .........
  202.         SS      INDEX        BASE
  203. */
  204. void *FPU_get_address(u_char FPU_modrm, unsigned long *fpu_eip,
  205.   struct address *addr,
  206.   fpu_addr_modes addr_modes)
  207. {
  208.   u_char mod;
  209.   unsigned rm = FPU_modrm & 7;
  210.   long *cpu_reg_ptr;
  211.   int address = 0;     /* Initialized just to stop compiler warnings. */
  212.   /* Memory accessed via the cs selector is write protected
  213.      in `non-segmented' 32 bit protected mode. */
  214.   if ( !addr_modes.default_mode && (FPU_modrm & FPU_WRITE_BIT)
  215.       && (addr_modes.override.segment == PREFIX_CS_) )
  216.     {
  217.       math_abort(FPU_info,SIGSEGV);
  218.     }
  219.   addr->selector = FPU_DS;   /* Default, for 32 bit non-segmented mode. */
  220.   mod = (FPU_modrm >> 6) & 3;
  221.   if (rm == 4 && mod != 3)
  222.     {
  223.       address = sib(mod, fpu_eip);
  224.     }
  225.   else
  226.     {
  227.       cpu_reg_ptr = & REG_(rm);
  228.       switch (mod)
  229. {
  230. case 0:
  231.   if (rm == 5)
  232.     {
  233.       /* Special case: disp32 */
  234.       RE_ENTRANT_CHECK_OFF;
  235.       FPU_code_verify_area(4);
  236.       FPU_get_user(address, (unsigned long *) (*fpu_eip));
  237.       (*fpu_eip) += 4;
  238.       RE_ENTRANT_CHECK_ON;
  239.       addr->offset = address;
  240.       return (void *) address;
  241.     }
  242.   else
  243.     {
  244.       address = *cpu_reg_ptr;  /* Just return the contents
  245.   of the cpu register */
  246.       addr->offset = address;
  247.       return (void *) address;
  248.     }
  249. case 1:
  250.   /* 8 bit signed displacement */
  251.   RE_ENTRANT_CHECK_OFF;
  252.   FPU_code_verify_area(1);
  253.   FPU_get_user(address, (signed char *) (*fpu_eip));
  254.   RE_ENTRANT_CHECK_ON;
  255.   (*fpu_eip)++;
  256.   break;
  257. case 2:
  258.   /* 32 bit displacement */
  259.   RE_ENTRANT_CHECK_OFF;
  260.   FPU_code_verify_area(4);
  261.   FPU_get_user(address, (long *) (*fpu_eip));
  262.   (*fpu_eip) += 4;
  263.   RE_ENTRANT_CHECK_ON;
  264.   break;
  265. case 3:
  266.   /* Not legal for the FPU */
  267.   EXCEPTION(EX_Invalid);
  268. }
  269.       address += *cpu_reg_ptr;
  270.     }
  271.   addr->offset = address;
  272.   switch ( addr_modes.default_mode )
  273.     {
  274.     case 0:
  275.       break;
  276.     case VM86:
  277.       address += vm86_segment(addr_modes.override.segment, addr);
  278.       break;
  279.     case PM16:
  280.     case SEG32:
  281.       address = pm_address(FPU_modrm, addr_modes.override.segment,
  282.    addr, address);
  283.       break;
  284.     default:
  285.       EXCEPTION(EX_INTERNAL|0x133);
  286.     }
  287.   return (void *)address;
  288. }
  289. void *FPU_get_address_16(u_char FPU_modrm, unsigned long *fpu_eip,
  290.      struct address *addr,
  291.      fpu_addr_modes addr_modes)
  292. {
  293.   u_char mod;
  294.   unsigned rm = FPU_modrm & 7;
  295.   int address = 0;     /* Default used for mod == 0 */
  296.   /* Memory accessed via the cs selector is write protected
  297.      in `non-segmented' 32 bit protected mode. */
  298.   if ( !addr_modes.default_mode && (FPU_modrm & FPU_WRITE_BIT)
  299.       && (addr_modes.override.segment == PREFIX_CS_) )
  300.     {
  301.       math_abort(FPU_info,SIGSEGV);
  302.     }
  303.   addr->selector = FPU_DS;   /* Default, for 32 bit non-segmented mode. */
  304.   mod = (FPU_modrm >> 6) & 3;
  305.   switch (mod)
  306.     {
  307.     case 0:
  308.       if (rm == 6)
  309. {
  310.   /* Special case: disp16 */
  311.   RE_ENTRANT_CHECK_OFF;
  312.   FPU_code_verify_area(2);
  313.   FPU_get_user(address, (unsigned short *) (*fpu_eip));
  314.   (*fpu_eip) += 2;
  315.   RE_ENTRANT_CHECK_ON;
  316.   goto add_segment;
  317. }
  318.       break;
  319.     case 1:
  320.       /* 8 bit signed displacement */
  321.       RE_ENTRANT_CHECK_OFF;
  322.       FPU_code_verify_area(1);
  323.       FPU_get_user(address, (signed char *) (*fpu_eip));
  324.       RE_ENTRANT_CHECK_ON;
  325.       (*fpu_eip)++;
  326.       break;
  327.     case 2:
  328.       /* 16 bit displacement */
  329.       RE_ENTRANT_CHECK_OFF;
  330.       FPU_code_verify_area(2);
  331.       FPU_get_user(address, (unsigned short *) (*fpu_eip));
  332.       (*fpu_eip) += 2;
  333.       RE_ENTRANT_CHECK_ON;
  334.       break;
  335.     case 3:
  336.       /* Not legal for the FPU */
  337.       EXCEPTION(EX_Invalid);
  338.       break;
  339.     }
  340.   switch ( rm )
  341.     {
  342.     case 0:
  343.       address += FPU_info->___ebx + FPU_info->___esi;
  344.       break;
  345.     case 1:
  346.       address += FPU_info->___ebx + FPU_info->___edi;
  347.       break;
  348.     case 2:
  349.       address += FPU_info->___ebp + FPU_info->___esi;
  350.       if ( addr_modes.override.segment == PREFIX_DEFAULT )
  351. addr_modes.override.segment = PREFIX_SS_;
  352.       break;
  353.     case 3:
  354.       address += FPU_info->___ebp + FPU_info->___edi;
  355.       if ( addr_modes.override.segment == PREFIX_DEFAULT )
  356. addr_modes.override.segment = PREFIX_SS_;
  357.       break;
  358.     case 4:
  359.       address += FPU_info->___esi;
  360.       break;
  361.     case 5:
  362.       address += FPU_info->___edi;
  363.       break;
  364.     case 6:
  365.       address += FPU_info->___ebp;
  366.       if ( addr_modes.override.segment == PREFIX_DEFAULT )
  367. addr_modes.override.segment = PREFIX_SS_;
  368.       break;
  369.     case 7:
  370.       address += FPU_info->___ebx;
  371.       break;
  372.     }
  373.  add_segment:
  374.   address &= 0xffff;
  375.   addr->offset = address;
  376.   switch ( addr_modes.default_mode )
  377.     {
  378.     case 0:
  379.       break;
  380.     case VM86:
  381.       address += vm86_segment(addr_modes.override.segment, addr);
  382.       break;
  383.     case PM16:
  384.     case SEG32:
  385.       address = pm_address(FPU_modrm, addr_modes.override.segment,
  386.    addr, address);
  387.       break;
  388.     default:
  389.       EXCEPTION(EX_INTERNAL|0x131);
  390.     }
  391.   return (void *)address ;
  392. }