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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * linux/arch/i386/kernel/ioport.c
  3.  *
  4.  * This contains the io-permission bitmap code - written by obz, with changes
  5.  * by Linus.
  6.  */
  7. #include <linux/sched.h>
  8. #include <linux/kernel.h>
  9. #include <linux/errno.h>
  10. #include <linux/types.h>
  11. #include <linux/ioport.h>
  12. #include <linux/mm.h>
  13. #include <linux/smp.h>
  14. #include <linux/smp_lock.h>
  15. #include <linux/stddef.h>
  16. /* Set EXTENT bits starting at BASE in BITMAP to value TURN_ON. */
  17. static void set_bitmap(unsigned long *bitmap, short base, short extent, int new_value)
  18. {
  19. int mask;
  20. unsigned long *bitmap_base = bitmap + (base >> 5);
  21. unsigned short low_index = base & 0x1f;
  22. int length = low_index + extent;
  23. if (low_index != 0) {
  24. mask = (~0 << low_index);
  25. if (length < 32)
  26. mask &= ~(~0 << length);
  27. if (new_value)
  28. *bitmap_base++ |= mask;
  29. else
  30. *bitmap_base++ &= ~mask;
  31. length -= 32;
  32. }
  33. mask = (new_value ? ~0 : 0);
  34. while (length >= 32) {
  35. *bitmap_base++ = mask;
  36. length -= 32;
  37. }
  38. if (length > 0) {
  39. mask = ~(~0 << length);
  40. if (new_value)
  41. *bitmap_base++ |= mask;
  42. else
  43. *bitmap_base++ &= ~mask;
  44. }
  45. }
  46. /*
  47.  * this changes the io permissions bitmap in the current task.
  48.  */
  49. asmlinkage int sys_ioperm(unsigned long from, unsigned long num, int turn_on)
  50. {
  51. struct thread_struct * t = &current->thread;
  52. struct tss_struct * tss = init_tss + smp_processor_id();
  53. if ((from + num <= from) || (from + num > IO_BITMAP_SIZE*32))
  54. return -EINVAL;
  55. if (turn_on && !capable(CAP_SYS_RAWIO))
  56. return -EPERM;
  57. /*
  58.  * If it's the first ioperm() call in this thread's lifetime, set the
  59.  * IO bitmap up. ioperm() is much less timing critical than clone(),
  60.  * this is why we delay this operation until now:
  61.  */
  62. if (!t->ioperm) {
  63. /*
  64.  * just in case ...
  65.  */
  66. memset(t->io_bitmap,0xff,(IO_BITMAP_SIZE+1)*4);
  67. t->ioperm = 1;
  68. /*
  69.  * this activates it in the TSS
  70.  */
  71. tss->bitmap = IO_BITMAP_OFFSET;
  72. }
  73. /*
  74.  * do it in the per-thread copy and in the TSS ...
  75.  */
  76. set_bitmap(t->io_bitmap, from, num, !turn_on);
  77. set_bitmap(tss->io_bitmap, from, num, !turn_on);
  78. return 0;
  79. }
  80. /*
  81.  * sys_iopl has to be used when you want to access the IO ports
  82.  * beyond the 0x3ff range: to get the full 65536 ports bitmapped
  83.  * you'd need 8kB of bitmaps/process, which is a bit excessive.
  84.  *
  85.  * Here we just change the eflags value on the stack: we allow
  86.  * only the super-user to do it. This depends on the stack-layout
  87.  * on system-call entry - see also fork() and the signal handling
  88.  * code.
  89.  */
  90. asmlinkage int sys_iopl(unsigned long unused)
  91. {
  92. struct pt_regs * regs = (struct pt_regs *) &unused;
  93. unsigned int level = regs->ebx;
  94. unsigned int old = (regs->eflags >> 12) & 3;
  95. if (level > 3)
  96. return -EINVAL;
  97. /* Trying to gain more privileges? */
  98. if (level > old) {
  99. if (!capable(CAP_SYS_RAWIO))
  100. return -EPERM;
  101. }
  102. regs->eflags = (regs->eflags & 0xffffcfff) | (level << 12);
  103. return 0;
  104. }