]> pilppa.org Git - linux-2.6-omap-h63xx.git/blob - arch/x86/kernel/ioport_32.c
x86: simplify set_bitmap in ioport_32.c
[linux-2.6-omap-h63xx.git] / arch / x86 / kernel / ioport_32.c
1 /*
2  * This contains the io-permission bitmap code - written by obz, with changes
3  * by Linus.
4  */
5
6 #include <linux/sched.h>
7 #include <linux/kernel.h>
8 #include <linux/capability.h>
9 #include <linux/errno.h>
10 #include <linux/types.h>
11 #include <linux/ioport.h>
12 #include <linux/smp.h>
13 #include <linux/stddef.h>
14 #include <linux/slab.h>
15 #include <linux/thread_info.h>
16 #include <linux/syscalls.h>
17
18 /* Set EXTENT bits starting at BASE in BITMAP to value TURN_ON. */
19 static void set_bitmap(unsigned long *bitmap, unsigned int base,
20                        unsigned int extent, int new_value)
21 {
22         unsigned int i;
23
24         for (i = base; i < base + extent; i++) {
25                 if (new_value)
26                         __set_bit(i, bitmap);
27                 else
28                         __clear_bit(i, bitmap);
29         }
30 }
31
32
33 /*
34  * this changes the io permissions bitmap in the current task.
35  */
36 asmlinkage long sys_ioperm(unsigned long from, unsigned long num, int turn_on)
37 {
38         unsigned long i, max_long, bytes, bytes_updated;
39         struct thread_struct * t = &current->thread;
40         struct tss_struct * tss;
41         unsigned long *bitmap;
42
43         if ((from + num <= from) || (from + num > IO_BITMAP_BITS))
44                 return -EINVAL;
45         if (turn_on && !capable(CAP_SYS_RAWIO))
46                 return -EPERM;
47
48         /*
49          * If it's the first ioperm() call in this thread's lifetime, set the
50          * IO bitmap up. ioperm() is much less timing critical than clone(),
51          * this is why we delay this operation until now:
52          */
53         if (!t->io_bitmap_ptr) {
54                 bitmap = kmalloc(IO_BITMAP_BYTES, GFP_KERNEL);
55                 if (!bitmap)
56                         return -ENOMEM;
57
58                 memset(bitmap, 0xff, IO_BITMAP_BYTES);
59                 t->io_bitmap_ptr = bitmap;
60                 set_thread_flag(TIF_IO_BITMAP);
61         }
62
63         /*
64          * do it in the per-thread copy and in the TSS ...
65          *
66          * Disable preemption via get_cpu() - we must not switch away
67          * because the ->io_bitmap_max value must match the bitmap
68          * contents:
69          */
70         tss = &per_cpu(init_tss, get_cpu());
71
72         set_bitmap(t->io_bitmap_ptr, from, num, !turn_on);
73
74         /*
75          * Search for a (possibly new) maximum. This is simple and stupid,
76          * to keep it obviously correct:
77          */
78         max_long = 0;
79         for (i = 0; i < IO_BITMAP_LONGS; i++)
80                 if (t->io_bitmap_ptr[i] != ~0UL)
81                         max_long = i;
82
83         bytes = (max_long + 1) * sizeof(long);
84         bytes_updated = max(bytes, t->io_bitmap_max);
85
86         t->io_bitmap_max = bytes;
87
88         /*
89          * Sets the lazy trigger so that the next I/O operation will
90          * reload the correct bitmap.
91          * Reset the owner so that a process switch will not set
92          * tss->io_bitmap_base to IO_BITMAP_OFFSET.
93          */
94         tss->x86_tss.io_bitmap_base = INVALID_IO_BITMAP_OFFSET_LAZY;
95         tss->io_bitmap_owner = NULL;
96
97         put_cpu();
98
99         return 0;
100 }
101
102 /*
103  * sys_iopl has to be used when you want to access the IO ports
104  * beyond the 0x3ff range: to get the full 65536 ports bitmapped
105  * you'd need 8kB of bitmaps/process, which is a bit excessive.
106  *
107  * Here we just change the eflags value on the stack: we allow
108  * only the super-user to do it. This depends on the stack-layout
109  * on system-call entry - see also fork() and the signal handling
110  * code.
111  */
112
113 asmlinkage long sys_iopl(unsigned long unused)
114 {
115         volatile struct pt_regs * regs = (struct pt_regs *) &unused;
116         unsigned int level = regs->ebx;
117         unsigned int old = (regs->eflags >> 12) & 3;
118         struct thread_struct *t = &current->thread;
119
120         if (level > 3)
121                 return -EINVAL;
122         /* Trying to gain more privileges? */
123         if (level > old) {
124                 if (!capable(CAP_SYS_RAWIO))
125                         return -EPERM;
126         }
127         t->iopl = level << 12;
128         regs->eflags = (regs->eflags & ~X86_EFLAGS_IOPL) | t->iopl;
129         set_iopl_mask(t->iopl);
130         return 0;
131 }