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

Linux/Unix编程

开发平台:

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/slab.h>
  14. #include <linux/smp.h>
  15. #include <linux/smp_lock.h>
  16. #include <linux/stddef.h>
  17. /* Set EXTENT bits starting at BASE in BITMAP to value TURN_ON. */
  18. static void set_bitmap(unsigned long *bitmap, short base, short extent, int new_value)
  19. {
  20. int mask;
  21. unsigned long *bitmap_base = bitmap + (base >> 6);
  22. unsigned short low_index = base & 0x3f;
  23. int length = low_index + extent;
  24. if (low_index != 0) {
  25. mask = (~0 << low_index);
  26. if (length < 64)
  27. mask &= ~(~0 << length);
  28. if (new_value)
  29. *bitmap_base++ |= mask;
  30. else
  31. *bitmap_base++ &= ~mask;
  32. length -= 32;
  33. }
  34. mask = (new_value ? ~0 : 0);
  35. while (length >= 64) {
  36. *bitmap_base++ = mask;
  37. length -= 64;
  38. }
  39. if (length > 0) {
  40. mask = ~(~0 << length);
  41. if (new_value)
  42. *bitmap_base++ |= mask;
  43. else
  44. *bitmap_base++ &= ~mask;
  45. }
  46. }
  47. /*
  48.  * this changes the io permissions bitmap in the current task.
  49.  */
  50. asmlinkage int sys_ioperm(unsigned long from, unsigned long num, int turn_on)
  51. {
  52. struct thread_struct * t = &current->thread;
  53. struct tss_struct * tss = init_tss + smp_processor_id();
  54. if ((from + num <= from) || (from + num > IO_BITMAP_SIZE*32))
  55. return -EINVAL;
  56. if (turn_on && !capable(CAP_SYS_RAWIO))
  57. return -EPERM;
  58. /*
  59.  * If it's the first ioperm() call in this thread's lifetime, set the
  60.  * IO bitmap up. ioperm() is much less timing critical than clone(),
  61.  * this is why we delay this operation until now:
  62.  */
  63.   if (!t->io_bitmap_ptr) {
  64. t->io_bitmap_ptr = kmalloc((IO_BITMAP_SIZE+1)*4, GFP_KERNEL);
  65. if (!t->io_bitmap_ptr) 
  66. return -ENOMEM; 
  67. memset(t->io_bitmap_ptr,0xff,(IO_BITMAP_SIZE+1)*4);
  68. /*
  69.  * this activates it in the TSS
  70.  */
  71. tss->io_map_base = IO_BITMAP_OFFSET;
  72. }
  73. /*
  74.  * do it in the per-thread copy and in the TSS ...
  75.  */
  76. set_bitmap((unsigned long *) t->io_bitmap_ptr, from, num, !turn_on);
  77. set_bitmap((unsigned long *) 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 long sys_iopl(unsigned int level, struct pt_regs regs)
  91. {
  92. unsigned int old = (regs.eflags >> 12) & 3;
  93. if (level > 3)
  94. return -EINVAL;
  95. /* Trying to gain more privileges? */
  96. if (level > old) {
  97. if (!capable(CAP_SYS_RAWIO))
  98. return -EPERM;
  99. }
  100. regs.eflags = (regs.eflags & 0xffffffffffffcfff) | (level << 12);
  101. return 0;
  102. }