]> git.karo-electronics.de Git - karo-tx-linux.git/blob - arch/x86/kernel/ioport.c
Merge branch 'for-linus' of git://git.kernel.dk/linux-block
[karo-tx-linux.git] / arch / x86 / kernel / ioport.c
1 /*
2  * This contains the io-permission bitmap code - written by obz, with changes
3  * by Linus. 32/64 bits code unification by Miguel Botón.
4  */
5
6 #include <linux/sched.h>
7 #include <linux/sched/task_stack.h>
8 #include <linux/kernel.h>
9 #include <linux/capability.h>
10 #include <linux/errno.h>
11 #include <linux/types.h>
12 #include <linux/ioport.h>
13 #include <linux/smp.h>
14 #include <linux/stddef.h>
15 #include <linux/slab.h>
16 #include <linux/thread_info.h>
17 #include <linux/syscalls.h>
18 #include <linux/bitmap.h>
19 #include <asm/syscalls.h>
20 #include <asm/desc.h>
21
22 /*
23  * this changes the io permissions bitmap in the current task.
24  */
25 asmlinkage long sys_ioperm(unsigned long from, unsigned long num, int turn_on)
26 {
27         struct thread_struct *t = &current->thread;
28         struct tss_struct *tss;
29         unsigned int i, max_long, bytes, bytes_updated;
30
31         if ((from + num <= from) || (from + num > IO_BITMAP_BITS))
32                 return -EINVAL;
33         if (turn_on && !capable(CAP_SYS_RAWIO))
34                 return -EPERM;
35
36         /*
37          * If it's the first ioperm() call in this thread's lifetime, set the
38          * IO bitmap up. ioperm() is much less timing critical than clone(),
39          * this is why we delay this operation until now:
40          */
41         if (!t->io_bitmap_ptr) {
42                 unsigned long *bitmap = kmalloc(IO_BITMAP_BYTES, GFP_KERNEL);
43
44                 if (!bitmap)
45                         return -ENOMEM;
46
47                 memset(bitmap, 0xff, IO_BITMAP_BYTES);
48                 t->io_bitmap_ptr = bitmap;
49                 set_thread_flag(TIF_IO_BITMAP);
50
51                 preempt_disable();
52                 refresh_TR();
53                 preempt_enable();
54         }
55
56         /*
57          * do it in the per-thread copy and in the TSS ...
58          *
59          * Disable preemption via get_cpu() - we must not switch away
60          * because the ->io_bitmap_max value must match the bitmap
61          * contents:
62          */
63         tss = &per_cpu(cpu_tss, get_cpu());
64
65         if (turn_on)
66                 bitmap_clear(t->io_bitmap_ptr, from, num);
67         else
68                 bitmap_set(t->io_bitmap_ptr, from, num);
69
70         /*
71          * Search for a (possibly new) maximum. This is simple and stupid,
72          * to keep it obviously correct:
73          */
74         max_long = 0;
75         for (i = 0; i < IO_BITMAP_LONGS; i++)
76                 if (t->io_bitmap_ptr[i] != ~0UL)
77                         max_long = i;
78
79         bytes = (max_long + 1) * sizeof(unsigned long);
80         bytes_updated = max(bytes, t->io_bitmap_max);
81
82         t->io_bitmap_max = bytes;
83
84         /* Update the TSS: */
85         memcpy(tss->io_bitmap, t->io_bitmap_ptr, bytes_updated);
86
87         put_cpu();
88
89         return 0;
90 }
91
92 /*
93  * sys_iopl has to be used when you want to access the IO ports
94  * beyond the 0x3ff range: to get the full 65536 ports bitmapped
95  * you'd need 8kB of bitmaps/process, which is a bit excessive.
96  *
97  * Here we just change the flags value on the stack: we allow
98  * only the super-user to do it. This depends on the stack-layout
99  * on system-call entry - see also fork() and the signal handling
100  * code.
101  */
102 SYSCALL_DEFINE1(iopl, unsigned int, level)
103 {
104         struct pt_regs *regs = current_pt_regs();
105         struct thread_struct *t = &current->thread;
106
107         /*
108          * Careful: the IOPL bits in regs->flags are undefined under Xen PV
109          * and changing them has no effect.
110          */
111         unsigned int old = t->iopl >> X86_EFLAGS_IOPL_BIT;
112
113         if (level > 3)
114                 return -EINVAL;
115         /* Trying to gain more privileges? */
116         if (level > old) {
117                 if (!capable(CAP_SYS_RAWIO))
118                         return -EPERM;
119         }
120         regs->flags = (regs->flags & ~X86_EFLAGS_IOPL) |
121                 (level << X86_EFLAGS_IOPL_BIT);
122         t->iopl = level << X86_EFLAGS_IOPL_BIT;
123         set_iopl_mask(t->iopl);
124
125         return 0;
126 }