2 * Copyright (C) 1994 Linus Torvalds
4 * 29 dec 2001 - Fixed oopses caused by unchecked access to the vm86
5 * stack - Manfred Spraul <manfred@colorfullife.com>
7 * 22 mar 2002 - Manfred detected the stackfaults, but didn't handle
8 * them correctly. Now the emulation will be in a
9 * consistent state after stackfaults - Kasper Dupont
10 * <kasperd@daimi.au.dk>
12 * 22 mar 2002 - Added missing clear_IF in set_vflags_* Kasper Dupont
13 * <kasperd@daimi.au.dk>
15 * ?? ??? 2002 - Fixed premature returns from handle_vm86_fault
16 * caused by Kasper Dupont's changes - Stas Sergeev
18 * 4 apr 2002 - Fixed CHECK_IF_IN_TRAP broken by Stas' changes.
19 * Kasper Dupont <kasperd@daimi.au.dk>
21 * 9 apr 2002 - Changed syntax of macros in handle_vm86_fault.
22 * Kasper Dupont <kasperd@daimi.au.dk>
24 * 9 apr 2002 - Changed stack access macros to jump to a label
25 * instead of returning to userspace. This simplifies
26 * do_int, and is needed by handle_vm6_fault. Kasper
27 * Dupont <kasperd@daimi.au.dk>
31 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
33 #include <linux/capability.h>
34 #include <linux/errno.h>
35 #include <linux/interrupt.h>
36 #include <linux/sched.h>
37 #include <linux/kernel.h>
38 #include <linux/signal.h>
39 #include <linux/string.h>
41 #include <linux/smp.h>
42 #include <linux/highmem.h>
43 #include <linux/ptrace.h>
44 #include <linux/audit.h>
45 #include <linux/stddef.h>
47 #include <asm/uaccess.h>
49 #include <asm/tlbflush.h>
51 #include <asm/syscalls.h>
56 * Interrupt handling is not guaranteed:
57 * - a real x86 will disable all interrupts for one instruction
58 * after a "mov ss,xx" to make stack handling atomic even without
59 * the 'lss' instruction. We can't guarantee this in v86 mode,
60 * as the next instruction might result in a page fault or similar.
61 * - a real x86 will have interrupts disabled for one instruction
62 * past the 'sti' that enables them. We don't bother with all the
65 * Let's hope these problems do not actually matter for anything.
69 #define KVM86 ((struct kernel_vm86_struct *)regs)
70 #define VMPI KVM86->vm86plus
74 * 8- and 16-bit register defines..
76 #define AL(regs) (((unsigned char *)&((regs)->pt.ax))[0])
77 #define AH(regs) (((unsigned char *)&((regs)->pt.ax))[1])
78 #define IP(regs) (*(unsigned short *)&((regs)->pt.ip))
79 #define SP(regs) (*(unsigned short *)&((regs)->pt.sp))
82 * virtual flags (16 and 32-bit versions)
84 #define VFLAGS (*(unsigned short *)&(current->thread.v86flags))
85 #define VEFLAGS (current->thread.v86flags)
87 #define set_flags(X, new, mask) \
88 ((X) = ((X) & ~(mask)) | ((new) & (mask)))
90 #define SAFE_MASK (0xDD5)
91 #define RETURN_MASK (0xDFF)
93 /* convert kernel_vm86_regs to vm86_regs */
94 static int copy_vm86_regs_to_user(struct vm86_regs __user
*user
,
95 const struct kernel_vm86_regs
*regs
)
100 * kernel_vm86_regs is missing gs, so copy everything up to
101 * (but not including) orig_eax, and then rest including orig_eax.
103 ret
+= copy_to_user(user
, regs
, offsetof(struct kernel_vm86_regs
, pt
.orig_ax
));
104 ret
+= copy_to_user(&user
->orig_eax
, ®s
->pt
.orig_ax
,
105 sizeof(struct kernel_vm86_regs
) -
106 offsetof(struct kernel_vm86_regs
, pt
.orig_ax
));
111 /* convert vm86_regs to kernel_vm86_regs */
112 static int copy_vm86_regs_from_user(struct kernel_vm86_regs
*regs
,
113 const struct vm86_regs __user
*user
,
118 /* copy ax-fs inclusive */
119 ret
+= copy_from_user(regs
, user
, offsetof(struct kernel_vm86_regs
, pt
.orig_ax
));
120 /* copy orig_ax-__gsh+extra */
121 ret
+= copy_from_user(®s
->pt
.orig_ax
, &user
->orig_eax
,
122 sizeof(struct kernel_vm86_regs
) -
123 offsetof(struct kernel_vm86_regs
, pt
.orig_ax
) +
128 struct pt_regs
*save_v86_state(struct kernel_vm86_regs
*regs
)
130 struct tss_struct
*tss
;
135 * This gets called from entry.S with interrupts disabled, but
136 * from process context. Enable interrupts here, before trying
137 * to access user space.
141 if (!current
->thread
.vm86_info
) {
142 pr_alert("no vm86_info: BAD\n");
145 set_flags(regs
->pt
.flags
, VEFLAGS
, X86_EFLAGS_VIF
| current
->thread
.v86mask
);
146 tmp
= copy_vm86_regs_to_user(¤t
->thread
.vm86_info
->regs
, regs
);
147 tmp
+= put_user(current
->thread
.screen_bitmap
, ¤t
->thread
.vm86_info
->screen_bitmap
);
149 pr_alert("could not access userspace vm86_info\n");
153 tss
= &per_cpu(init_tss
, get_cpu());
154 current
->thread
.sp0
= current
->thread
.saved_sp0
;
155 current
->thread
.sysenter_cs
= __KERNEL_CS
;
156 load_sp0(tss
, ¤t
->thread
);
157 current
->thread
.saved_sp0
= 0;
162 ret
->fs
= current
->thread
.saved_fs
;
163 set_user_gs(ret
, current
->thread
.saved_gs
);
168 static void mark_screen_rdonly(struct mm_struct
*mm
)
177 down_write(&mm
->mmap_sem
);
178 pgd
= pgd_offset(mm
, 0xA0000);
179 if (pgd_none_or_clear_bad(pgd
))
181 pud
= pud_offset(pgd
, 0xA0000);
182 if (pud_none_or_clear_bad(pud
))
184 pmd
= pmd_offset(pud
, 0xA0000);
185 split_huge_page_pmd_mm(mm
, 0xA0000, pmd
);
186 if (pmd_none_or_clear_bad(pmd
))
188 pte
= pte_offset_map_lock(mm
, pmd
, 0xA0000, &ptl
);
189 for (i
= 0; i
< 32; i
++) {
190 if (pte_present(*pte
))
191 set_pte(pte
, pte_wrprotect(*pte
));
194 pte_unmap_unlock(pte
, ptl
);
196 up_write(&mm
->mmap_sem
);
202 static int do_vm86_irq_handling(int subfunction
, int irqnumber
);
203 static void do_sys_vm86(struct kernel_vm86_struct
*info
, struct task_struct
*tsk
);
205 int sys_vm86old(struct vm86_struct __user
*v86
)
207 struct kernel_vm86_struct info
; /* declare this _on top_,
208 * this avoids wasting of stack space.
209 * This remains on the stack until we
210 * return to 32 bit user space.
212 struct task_struct
*tsk
;
213 int tmp
, ret
= -EPERM
;
216 if (tsk
->thread
.saved_sp0
)
218 tmp
= copy_vm86_regs_from_user(&info
.regs
, &v86
->regs
,
219 offsetof(struct kernel_vm86_struct
, vm86plus
) -
224 memset(&info
.vm86plus
, 0, (int)&info
.regs32
- (int)&info
.vm86plus
);
225 info
.regs32
= current_pt_regs();
226 tsk
->thread
.vm86_info
= v86
;
227 do_sys_vm86(&info
, tsk
);
228 ret
= 0; /* we never return here */
234 int sys_vm86(unsigned long cmd
, unsigned long arg
)
236 struct kernel_vm86_struct info
; /* declare this _on top_,
237 * this avoids wasting of stack space.
238 * This remains on the stack until we
239 * return to 32 bit user space.
241 struct task_struct
*tsk
;
243 struct vm86plus_struct __user
*v86
;
247 case VM86_REQUEST_IRQ
:
249 case VM86_GET_IRQ_BITS
:
250 case VM86_GET_AND_RESET_IRQ
:
251 ret
= do_vm86_irq_handling(cmd
, (int)arg
);
253 case VM86_PLUS_INSTALL_CHECK
:
255 * NOTE: on old vm86 stuff this will return the error
256 * from access_ok(), because the subfunction is
257 * interpreted as (invalid) address to vm86_struct.
258 * So the installation check works.
264 /* we come here only for functions VM86_ENTER, VM86_ENTER_NO_BYPASS */
266 if (tsk
->thread
.saved_sp0
)
268 v86
= (struct vm86plus_struct __user
*)arg
;
269 tmp
= copy_vm86_regs_from_user(&info
.regs
, &v86
->regs
,
270 offsetof(struct kernel_vm86_struct
, regs32
) -
275 info
.regs32
= current_pt_regs();
276 info
.vm86plus
.is_vm86pus
= 1;
277 tsk
->thread
.vm86_info
= (struct vm86_struct __user
*)v86
;
278 do_sys_vm86(&info
, tsk
);
279 ret
= 0; /* we never return here */
285 static void do_sys_vm86(struct kernel_vm86_struct
*info
, struct task_struct
*tsk
)
287 struct tss_struct
*tss
;
289 * make sure the vm86() system call doesn't try to do anything silly
291 info
->regs
.pt
.ds
= 0;
292 info
->regs
.pt
.es
= 0;
293 info
->regs
.pt
.fs
= 0;
294 #ifndef CONFIG_X86_32_LAZY_GS
295 info
->regs
.pt
.gs
= 0;
299 * The flags register is also special: we cannot trust that the user
300 * has set it up safely, so this makes sure interrupt etc flags are
301 * inherited from protected mode.
303 VEFLAGS
= info
->regs
.pt
.flags
;
304 info
->regs
.pt
.flags
&= SAFE_MASK
;
305 info
->regs
.pt
.flags
|= info
->regs32
->flags
& ~SAFE_MASK
;
306 info
->regs
.pt
.flags
|= X86_VM_MASK
;
308 switch (info
->cpu_type
) {
310 tsk
->thread
.v86mask
= 0;
313 tsk
->thread
.v86mask
= X86_EFLAGS_NT
| X86_EFLAGS_IOPL
;
316 tsk
->thread
.v86mask
= X86_EFLAGS_AC
| X86_EFLAGS_NT
| X86_EFLAGS_IOPL
;
319 tsk
->thread
.v86mask
= X86_EFLAGS_ID
| X86_EFLAGS_AC
| X86_EFLAGS_NT
| X86_EFLAGS_IOPL
;
324 * Save old state, set default return value (%ax) to 0 (VM86_SIGNAL)
326 info
->regs32
->ax
= VM86_SIGNAL
;
327 tsk
->thread
.saved_sp0
= tsk
->thread
.sp0
;
328 tsk
->thread
.saved_fs
= info
->regs32
->fs
;
329 tsk
->thread
.saved_gs
= get_user_gs(info
->regs32
);
331 tss
= &per_cpu(init_tss
, get_cpu());
332 tsk
->thread
.sp0
= (unsigned long) &info
->VM86_TSS_ESP0
;
334 tsk
->thread
.sysenter_cs
= 0;
335 load_sp0(tss
, &tsk
->thread
);
338 tsk
->thread
.screen_bitmap
= info
->screen_bitmap
;
339 if (info
->flags
& VM86_SCREEN_BITMAP
)
340 mark_screen_rdonly(tsk
->mm
);
342 /*call __audit_syscall_exit since we do not exit via the normal paths */
343 #ifdef CONFIG_AUDITSYSCALL
344 if (unlikely(current
->audit_context
))
345 __audit_syscall_exit(1, 0);
348 __asm__
__volatile__(
351 #ifdef CONFIG_X86_32_LAZY_GS
354 "jmp resume_userspace"
356 :"r" (&info
->regs
), "r" (task_thread_info(tsk
)), "r" (0));
357 /* we never return here */
360 static inline void return_to_32bit(struct kernel_vm86_regs
*regs16
, int retval
)
362 struct pt_regs
*regs32
;
364 regs32
= save_v86_state(regs16
);
366 __asm__
__volatile__("movl %0,%%esp\n\t"
368 "jmp resume_userspace"
369 : : "r" (regs32
), "r" (current_thread_info()));
372 static inline void set_IF(struct kernel_vm86_regs
*regs
)
374 VEFLAGS
|= X86_EFLAGS_VIF
;
375 if (VEFLAGS
& X86_EFLAGS_VIP
)
376 return_to_32bit(regs
, VM86_STI
);
379 static inline void clear_IF(struct kernel_vm86_regs
*regs
)
381 VEFLAGS
&= ~X86_EFLAGS_VIF
;
384 static inline void clear_TF(struct kernel_vm86_regs
*regs
)
386 regs
->pt
.flags
&= ~X86_EFLAGS_TF
;
389 static inline void clear_AC(struct kernel_vm86_regs
*regs
)
391 regs
->pt
.flags
&= ~X86_EFLAGS_AC
;
395 * It is correct to call set_IF(regs) from the set_vflags_*
396 * functions. However someone forgot to call clear_IF(regs)
397 * in the opposite case.
398 * After the command sequence CLI PUSHF STI POPF you should
399 * end up with interrupts disabled, but you ended up with
400 * interrupts enabled.
401 * ( I was testing my own changes, but the only bug I
402 * could find was in a function I had not changed. )
406 static inline void set_vflags_long(unsigned long flags
, struct kernel_vm86_regs
*regs
)
408 set_flags(VEFLAGS
, flags
, current
->thread
.v86mask
);
409 set_flags(regs
->pt
.flags
, flags
, SAFE_MASK
);
410 if (flags
& X86_EFLAGS_IF
)
416 static inline void set_vflags_short(unsigned short flags
, struct kernel_vm86_regs
*regs
)
418 set_flags(VFLAGS
, flags
, current
->thread
.v86mask
);
419 set_flags(regs
->pt
.flags
, flags
, SAFE_MASK
);
420 if (flags
& X86_EFLAGS_IF
)
426 static inline unsigned long get_vflags(struct kernel_vm86_regs
*regs
)
428 unsigned long flags
= regs
->pt
.flags
& RETURN_MASK
;
430 if (VEFLAGS
& X86_EFLAGS_VIF
)
431 flags
|= X86_EFLAGS_IF
;
432 flags
|= X86_EFLAGS_IOPL
;
433 return flags
| (VEFLAGS
& current
->thread
.v86mask
);
436 static inline int is_revectored(int nr
, struct revectored_struct
*bitmap
)
438 __asm__
__volatile__("btl %2,%1\n\tsbbl %0,%0"
440 :"m" (*bitmap
), "r" (nr
));
444 #define val_byte(val, n) (((__u8 *)&val)[n])
446 #define pushb(base, ptr, val, err_label) \
450 if (put_user(__val, base + ptr) < 0) \
454 #define pushw(base, ptr, val, err_label) \
458 if (put_user(val_byte(__val, 1), base + ptr) < 0) \
461 if (put_user(val_byte(__val, 0), base + ptr) < 0) \
465 #define pushl(base, ptr, val, err_label) \
469 if (put_user(val_byte(__val, 3), base + ptr) < 0) \
472 if (put_user(val_byte(__val, 2), base + ptr) < 0) \
475 if (put_user(val_byte(__val, 1), base + ptr) < 0) \
478 if (put_user(val_byte(__val, 0), base + ptr) < 0) \
482 #define popb(base, ptr, err_label) \
485 if (get_user(__res, base + ptr) < 0) \
491 #define popw(base, ptr, err_label) \
494 if (get_user(val_byte(__res, 0), base + ptr) < 0) \
497 if (get_user(val_byte(__res, 1), base + ptr) < 0) \
503 #define popl(base, ptr, err_label) \
506 if (get_user(val_byte(__res, 0), base + ptr) < 0) \
509 if (get_user(val_byte(__res, 1), base + ptr) < 0) \
512 if (get_user(val_byte(__res, 2), base + ptr) < 0) \
515 if (get_user(val_byte(__res, 3), base + ptr) < 0) \
521 /* There are so many possible reasons for this function to return
522 * VM86_INTx, so adding another doesn't bother me. We can expect
523 * userspace programs to be able to handle it. (Getting a problem
524 * in userspace is always better than an Oops anyway.) [KD]
526 static void do_int(struct kernel_vm86_regs
*regs
, int i
,
527 unsigned char __user
*ssp
, unsigned short sp
)
529 unsigned long __user
*intr_ptr
;
530 unsigned long segoffs
;
532 if (regs
->pt
.cs
== BIOSSEG
)
534 if (is_revectored(i
, &KVM86
->int_revectored
))
536 if (i
== 0x21 && is_revectored(AH(regs
), &KVM86
->int21_revectored
))
538 intr_ptr
= (unsigned long __user
*) (i
<< 2);
539 if (get_user(segoffs
, intr_ptr
))
541 if ((segoffs
>> 16) == BIOSSEG
)
543 pushw(ssp
, sp
, get_vflags(regs
), cannot_handle
);
544 pushw(ssp
, sp
, regs
->pt
.cs
, cannot_handle
);
545 pushw(ssp
, sp
, IP(regs
), cannot_handle
);
546 regs
->pt
.cs
= segoffs
>> 16;
548 IP(regs
) = segoffs
& 0xffff;
555 return_to_32bit(regs
, VM86_INTx
+ (i
<< 8));
558 int handle_vm86_trap(struct kernel_vm86_regs
*regs
, long error_code
, int trapno
)
560 if (VMPI
.is_vm86pus
) {
561 if ((trapno
== 3) || (trapno
== 1)) {
562 KVM86
->regs32
->ax
= VM86_TRAP
+ (trapno
<< 8);
563 /* setting this flag forces the code in entry_32.S to
564 the path where we call save_v86_state() and change
565 the stack pointer to KVM86->regs32 */
566 set_thread_flag(TIF_NOTIFY_RESUME
);
569 do_int(regs
, trapno
, (unsigned char __user
*) (regs
->pt
.ss
<< 4), SP(regs
));
573 return 1; /* we let this handle by the calling routine */
574 current
->thread
.trap_nr
= trapno
;
575 current
->thread
.error_code
= error_code
;
576 force_sig(SIGTRAP
, current
);
580 void handle_vm86_fault(struct kernel_vm86_regs
*regs
, long error_code
)
582 unsigned char opcode
;
583 unsigned char __user
*csp
;
584 unsigned char __user
*ssp
;
585 unsigned short ip
, sp
, orig_flags
;
586 int data32
, pref_done
;
588 #define CHECK_IF_IN_TRAP \
589 if (VMPI.vm86dbg_active && VMPI.vm86dbg_TFpendig) \
590 newflags |= X86_EFLAGS_TF
591 #define VM86_FAULT_RETURN do { \
592 if (VMPI.force_return_for_pic && (VEFLAGS & (X86_EFLAGS_IF | X86_EFLAGS_VIF))) \
593 return_to_32bit(regs, VM86_PICRETURN); \
594 if (orig_flags & X86_EFLAGS_TF) \
595 handle_vm86_trap(regs, 0, 1); \
598 orig_flags
= *(unsigned short *)®s
->pt
.flags
;
600 csp
= (unsigned char __user
*) (regs
->pt
.cs
<< 4);
601 ssp
= (unsigned char __user
*) (regs
->pt
.ss
<< 4);
608 switch (opcode
= popb(csp
, ip
, simulate_sigsegv
)) {
609 case 0x66: /* 32-bit data */ data32
= 1; break;
610 case 0x67: /* 32-bit address */ break;
611 case 0x2e: /* CS */ break;
612 case 0x3e: /* DS */ break;
613 case 0x26: /* ES */ break;
614 case 0x36: /* SS */ break;
615 case 0x65: /* GS */ break;
616 case 0x64: /* FS */ break;
617 case 0xf2: /* repnz */ break;
618 case 0xf3: /* rep */ break;
619 default: pref_done
= 1;
621 } while (!pref_done
);
628 pushl(ssp
, sp
, get_vflags(regs
), simulate_sigsegv
);
631 pushw(ssp
, sp
, get_vflags(regs
), simulate_sigsegv
);
640 unsigned long newflags
;
642 newflags
= popl(ssp
, sp
, simulate_sigsegv
);
645 newflags
= popw(ssp
, sp
, simulate_sigsegv
);
651 set_vflags_long(newflags
, regs
);
653 set_vflags_short(newflags
, regs
);
660 int intno
= popb(csp
, ip
, simulate_sigsegv
);
662 if (VMPI
.vm86dbg_active
) {
663 if ((1 << (intno
& 7)) & VMPI
.vm86dbg_intxxtab
[intno
>> 3])
664 return_to_32bit(regs
, VM86_INTx
+ (intno
<< 8));
666 do_int(regs
, intno
, ssp
, sp
);
675 unsigned long newflags
;
677 newip
= popl(ssp
, sp
, simulate_sigsegv
);
678 newcs
= popl(ssp
, sp
, simulate_sigsegv
);
679 newflags
= popl(ssp
, sp
, simulate_sigsegv
);
682 newip
= popw(ssp
, sp
, simulate_sigsegv
);
683 newcs
= popw(ssp
, sp
, simulate_sigsegv
);
684 newflags
= popw(ssp
, sp
, simulate_sigsegv
);
691 set_vflags_long(newflags
, regs
);
693 set_vflags_short(newflags
, regs
);
706 * Damn. This is incorrect: the 'sti' instruction should actually
707 * enable interrupts after the /next/ instruction. Not good.
709 * Probably needs some horsing around with the TF flag. Aiee..
717 return_to_32bit(regs
, VM86_UNKNOWN
);
723 /* FIXME: After a long discussion with Stas we finally
724 * agreed, that this is wrong. Here we should
725 * really send a SIGSEGV to the user program.
726 * But how do we create the correct context? We
727 * are inside a general protection fault handler
728 * and has just returned from a page fault handler.
729 * The correct context for the signal handler
730 * should be a mixture of the two, but how do we
731 * get the information? [KD]
733 return_to_32bit(regs
, VM86_UNKNOWN
);
736 /* ---------------- vm86 special IRQ passing stuff ----------------- */
738 #define VM86_IRQNAME "vm86irq"
740 static struct vm86_irqs
{
741 struct task_struct
*tsk
;
745 static DEFINE_SPINLOCK(irqbits_lock
);
748 #define ALLOWED_SIGS (1 /* 0 = don't send a signal */ \
749 | (1 << SIGUSR1) | (1 << SIGUSR2) | (1 << SIGIO) | (1 << SIGURG) \
752 static irqreturn_t
irq_handler(int intno
, void *dev_id
)
757 spin_lock_irqsave(&irqbits_lock
, flags
);
758 irq_bit
= 1 << intno
;
759 if ((irqbits
& irq_bit
) || !vm86_irqs
[intno
].tsk
)
762 if (vm86_irqs
[intno
].sig
)
763 send_sig(vm86_irqs
[intno
].sig
, vm86_irqs
[intno
].tsk
, 1);
765 * IRQ will be re-enabled when user asks for the irq (whether
766 * polling or as a result of the signal)
768 disable_irq_nosync(intno
);
769 spin_unlock_irqrestore(&irqbits_lock
, flags
);
773 spin_unlock_irqrestore(&irqbits_lock
, flags
);
777 static inline void free_vm86_irq(int irqnumber
)
781 free_irq(irqnumber
, NULL
);
782 vm86_irqs
[irqnumber
].tsk
= NULL
;
784 spin_lock_irqsave(&irqbits_lock
, flags
);
785 irqbits
&= ~(1 << irqnumber
);
786 spin_unlock_irqrestore(&irqbits_lock
, flags
);
789 void release_vm86_irqs(struct task_struct
*task
)
792 for (i
= FIRST_VM86_IRQ
; i
<= LAST_VM86_IRQ
; i
++)
793 if (vm86_irqs
[i
].tsk
== task
)
797 static inline int get_and_reset_irq(int irqnumber
)
803 if (invalid_vm86_irq(irqnumber
)) return 0;
804 if (vm86_irqs
[irqnumber
].tsk
!= current
) return 0;
805 spin_lock_irqsave(&irqbits_lock
, flags
);
806 bit
= irqbits
& (1 << irqnumber
);
809 enable_irq(irqnumber
);
813 spin_unlock_irqrestore(&irqbits_lock
, flags
);
818 static int do_vm86_irq_handling(int subfunction
, int irqnumber
)
821 switch (subfunction
) {
822 case VM86_GET_AND_RESET_IRQ
: {
823 return get_and_reset_irq(irqnumber
);
825 case VM86_GET_IRQ_BITS
: {
828 case VM86_REQUEST_IRQ
: {
829 int sig
= irqnumber
>> 8;
830 int irq
= irqnumber
& 255;
831 if (!capable(CAP_SYS_ADMIN
)) return -EPERM
;
832 if (!((1 << sig
) & ALLOWED_SIGS
)) return -EPERM
;
833 if (invalid_vm86_irq(irq
)) return -EPERM
;
834 if (vm86_irqs
[irq
].tsk
) return -EPERM
;
835 ret
= request_irq(irq
, &irq_handler
, 0, VM86_IRQNAME
, NULL
);
837 vm86_irqs
[irq
].sig
= sig
;
838 vm86_irqs
[irq
].tsk
= current
;
841 case VM86_FREE_IRQ
: {
842 if (invalid_vm86_irq(irqnumber
)) return -EPERM
;
843 if (!vm86_irqs
[irqnumber
].tsk
) return 0;
844 if (vm86_irqs
[irqnumber
].tsk
!= current
) return -EPERM
;
845 free_vm86_irq(irqnumber
);