blob: e723ff3b1d53d7a85f79ed506f6678d0a26ed54e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * This contains the io-permission bitmap code - written by obz, with changes
mboton@gmail.comccafa592008-01-30 13:33:10 +01003 * by Linus. 32/64 bits code unification by Miguel Botón.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 */
5
6#include <linux/sched.h>
7#include <linux/kernel.h>
Randy Dunlapa9415642006-01-11 12:17:48 -08008#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/errno.h>
10#include <linux/types.h>
11#include <linux/ioport.h>
12#include <linux/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/stddef.h>
14#include <linux/slab.h>
15#include <linux/thread_info.h>
Adrian Bunkca906e42007-05-02 19:27:10 +020016#include <linux/syscalls.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
18/* Set EXTENT bits starting at BASE in BITMAP to value TURN_ON. */
Thomas Gleixnerf2f58172008-01-30 13:30:23 +010019static void set_bitmap(unsigned long *bitmap, unsigned int base,
20 unsigned int extent, int new_value)
Linus Torvalds1da177e2005-04-16 15:20:36 -070021{
Thomas Gleixnerf2f58172008-01-30 13:30:23 +010022 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
Thomas Gleixnerf2f58172008-01-30 13:30:23 +010024 for (i = base; i < base + extent; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 if (new_value)
Thomas Gleixnerf2f58172008-01-30 13:30:23 +010026 __set_bit(i, bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 else
Thomas Gleixnerf2f58172008-01-30 13:30:23 +010028 __clear_bit(i, bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 }
30}
31
Linus Torvalds1da177e2005-04-16 15:20:36 -070032/*
33 * this changes the io permissions bitmap in the current task.
34 */
35asmlinkage long sys_ioperm(unsigned long from, unsigned long num, int turn_on)
36{
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 struct thread_struct * t = &current->thread;
38 struct tss_struct * tss;
mboton@gmail.comccafa592008-01-30 13:33:10 +010039 unsigned int i, max_long, bytes, bytes_updated;
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41 if ((from + num <= from) || (from + num > IO_BITMAP_BITS))
42 return -EINVAL;
43 if (turn_on && !capable(CAP_SYS_RAWIO))
44 return -EPERM;
45
46 /*
47 * If it's the first ioperm() call in this thread's lifetime, set the
48 * IO bitmap up. ioperm() is much less timing critical than clone(),
49 * this is why we delay this operation until now:
50 */
51 if (!t->io_bitmap_ptr) {
Thomas Gleixner9a211ab2008-01-30 13:30:24 +010052 unsigned long *bitmap = kmalloc(IO_BITMAP_BYTES, GFP_KERNEL);
53
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 if (!bitmap)
55 return -ENOMEM;
56
57 memset(bitmap, 0xff, IO_BITMAP_BYTES);
58 t->io_bitmap_ptr = bitmap;
Stephane Eranianb3cf2572006-07-09 21:12:39 -040059 set_thread_flag(TIF_IO_BITMAP);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 }
61
62 /*
63 * do it in the per-thread copy and in the TSS ...
64 *
65 * Disable preemption via get_cpu() - we must not switch away
66 * because the ->io_bitmap_max value must match the bitmap
67 * contents:
68 */
69 tss = &per_cpu(init_tss, get_cpu());
70
71 set_bitmap(t->io_bitmap_ptr, from, num, !turn_on);
72
73 /*
74 * Search for a (possibly new) maximum. This is simple and stupid,
75 * to keep it obviously correct:
76 */
77 max_long = 0;
78 for (i = 0; i < IO_BITMAP_LONGS; i++)
79 if (t->io_bitmap_ptr[i] != ~0UL)
80 max_long = i;
81
mboton@gmail.comccafa592008-01-30 13:33:10 +010082 bytes = (max_long + 1) * sizeof(unsigned long);
83 bytes_updated = max(bytes, t->io_bitmap_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
mboton@gmail.comccafa592008-01-30 13:33:10 +010085 t->io_bitmap_max = bytes;
86
87#ifdef CONFIG_X86_32
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 /*
89 * Sets the lazy trigger so that the next I/O operation will
90 * reload the correct bitmap.
Bart Oldemanf9126962005-11-06 12:54:07 +130091 * Reset the owner so that a process switch will not set
92 * tss->io_bitmap_base to IO_BITMAP_OFFSET.
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 */
Rusty Russella75c54f2007-05-02 19:27:13 +020094 tss->x86_tss.io_bitmap_base = INVALID_IO_BITMAP_OFFSET_LAZY;
Bart Oldemanf9126962005-11-06 12:54:07 +130095 tss->io_bitmap_owner = NULL;
mboton@gmail.comccafa592008-01-30 13:33:10 +010096#else
97 /* Update the TSS: */
98 memcpy(tss->io_bitmap, t->io_bitmap_ptr, bytes_updated);
99#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
101 put_cpu();
102
103 return 0;
104}
105
106/*
107 * sys_iopl has to be used when you want to access the IO ports
108 * beyond the 0x3ff range: to get the full 65536 ports bitmapped
109 * you'd need 8kB of bitmaps/process, which is a bit excessive.
110 *
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100111 * Here we just change the flags value on the stack: we allow
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 * only the super-user to do it. This depends on the stack-layout
113 * on system-call entry - see also fork() and the signal handling
114 * code.
115 */
mboton@gmail.comccafa592008-01-30 13:33:10 +0100116#ifdef CONFIG_X86_32
Thomas Gleixner9a211ab2008-01-30 13:30:24 +0100117asmlinkage long sys_iopl(unsigned long regsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118{
Thomas Gleixner9a211ab2008-01-30 13:30:24 +0100119 volatile struct pt_regs *regs = (struct pt_regs *)&regsp;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100120 unsigned int level = regs->bx;
121 unsigned int old = (regs->flags >> 12) & 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
123 if (level > 3)
124 return -EINVAL;
125 /* Trying to gain more privileges? */
126 if (level > old) {
127 if (!capable(CAP_SYS_RAWIO))
128 return -EPERM;
129 }
mboton@gmail.comccafa592008-01-30 13:33:10 +0100130 regs->flags = (regs->flags & ~X86_EFLAGS_IOPL) | (level << 12);
Thomas Gleixner9a211ab2008-01-30 13:30:24 +0100131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 return 0;
133}
mboton@gmail.comccafa592008-01-30 13:33:10 +0100134#else
135asmlinkage long sys_iopl(unsigned int level, struct pt_regs *regs)
136{
137 unsigned int old = (regs->flags >> 12) & 3;
138
139 if (level > 3)
140 return -EINVAL;
141 /* Trying to gain more privileges? */
142 if (level > old) {
143 if (!capable(CAP_SYS_RAWIO))
144 return -EPERM;
145 }
146 regs->flags = (regs->flags & ~X86_EFLAGS_IOPL) | (level << 12);
147
148 return 0;
149}
150#endif