vm86_32.c 21.8 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4
/*
 *  Copyright (C) 1994  Linus Torvalds
 *
 *  29 dec 2001 - Fixed oopses caused by unchecked access to the vm86
5
 *                stack - Manfred Spraul <manfred@colorfullife.com>
L
Linus Torvalds 已提交
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
 *
 *  22 mar 2002 - Manfred detected the stackfaults, but didn't handle
 *                them correctly. Now the emulation will be in a
 *                consistent state after stackfaults - Kasper Dupont
 *                <kasperd@daimi.au.dk>
 *
 *  22 mar 2002 - Added missing clear_IF in set_vflags_* Kasper Dupont
 *                <kasperd@daimi.au.dk>
 *
 *  ?? ??? 2002 - Fixed premature returns from handle_vm86_fault
 *                caused by Kasper Dupont's changes - Stas Sergeev
 *
 *   4 apr 2002 - Fixed CHECK_IF_IN_TRAP broken by Stas' changes.
 *                Kasper Dupont <kasperd@daimi.au.dk>
 *
 *   9 apr 2002 - Changed syntax of macros in handle_vm86_fault.
 *                Kasper Dupont <kasperd@daimi.au.dk>
 *
 *   9 apr 2002 - Changed stack access macros to jump to a label
 *                instead of returning to userspace. This simplifies
 *                do_int, and is needed by handle_vm6_fault. Kasper
 *                Dupont <kasperd@daimi.au.dk>
 *
 */

31
#include <linux/capability.h>
L
Linus Torvalds 已提交
32 33 34 35 36 37 38 39 40 41
#include <linux/errno.h>
#include <linux/interrupt.h>
#include <linux/sched.h>
#include <linux/kernel.h>
#include <linux/signal.h>
#include <linux/string.h>
#include <linux/mm.h>
#include <linux/smp.h>
#include <linux/highmem.h>
#include <linux/ptrace.h>
42
#include <linux/audit.h>
43
#include <linux/stddef.h>
L
Linus Torvalds 已提交
44 45 46 47 48

#include <asm/uaccess.h>
#include <asm/io.h>
#include <asm/tlbflush.h>
#include <asm/irq.h>
49
#include <asm/syscalls.h>
L
Linus Torvalds 已提交
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67

/*
 * Known problems:
 *
 * Interrupt handling is not guaranteed:
 * - a real x86 will disable all interrupts for one instruction
 *   after a "mov ss,xx" to make stack handling atomic even without
 *   the 'lss' instruction. We can't guarantee this in v86 mode,
 *   as the next instruction might result in a page fault or similar.
 * - a real x86 will have interrupts disabled for one instruction
 *   past the 'sti' that enables them. We don't bother with all the
 *   details yet.
 *
 * Let's hope these problems do not actually matter for anything.
 */


#define KVM86	((struct kernel_vm86_struct *)regs)
68
#define VMPI	KVM86->vm86plus
L
Linus Torvalds 已提交
69 70 71 72 73


/*
 * 8- and 16-bit register defines..
 */
74 75 76 77
#define AL(regs)	(((unsigned char *)&((regs)->pt.ax))[0])
#define AH(regs)	(((unsigned char *)&((regs)->pt.ax))[1])
#define IP(regs)	(*(unsigned short *)&((regs)->pt.ip))
#define SP(regs)	(*(unsigned short *)&((regs)->pt.sp))
L
Linus Torvalds 已提交
78 79 80 81 82 83 84

/*
 * virtual flags (16 and 32-bit versions)
 */
#define VFLAGS	(*(unsigned short *)&(current->thread.v86flags))
#define VEFLAGS	(current->thread.v86flags)

85
#define set_flags(X, new, mask) \
L
Linus Torvalds 已提交
86 87 88 89 90
((X) = ((X) & ~(mask)) | ((new) & (mask)))

#define SAFE_MASK	(0xDD5)
#define RETURN_MASK	(0xDFF)

91 92 93 94 95 96
/* convert kernel_vm86_regs to vm86_regs */
static int copy_vm86_regs_to_user(struct vm86_regs __user *user,
				  const struct kernel_vm86_regs *regs)
{
	int ret = 0;

97 98 99 100
	/*
	 * kernel_vm86_regs is missing gs, so copy everything up to
	 * (but not including) orig_eax, and then rest including orig_eax.
	 */
101 102
	ret += copy_to_user(user, regs, offsetof(struct kernel_vm86_regs, pt.orig_ax));
	ret += copy_to_user(&user->orig_eax, &regs->pt.orig_ax,
103
			    sizeof(struct kernel_vm86_regs) -
104
			    offsetof(struct kernel_vm86_regs, pt.orig_ax));
105 106 107 108 109 110 111 112 113 114 115

	return ret;
}

/* convert vm86_regs to kernel_vm86_regs */
static int copy_vm86_regs_from_user(struct kernel_vm86_regs *regs,
				    const struct vm86_regs __user *user,
				    unsigned extra)
{
	int ret = 0;

116 117 118 119
	/* copy ax-fs inclusive */
	ret += copy_from_user(regs, user, offsetof(struct kernel_vm86_regs, pt.orig_ax));
	/* copy orig_ax-__gsh+extra */
	ret += copy_from_user(&regs->pt.orig_ax, &user->orig_eax,
120
			      sizeof(struct kernel_vm86_regs) -
121
			      offsetof(struct kernel_vm86_regs, pt.orig_ax) +
122 123 124
			      extra);
	return ret;
}
L
Linus Torvalds 已提交
125

126
struct pt_regs *save_v86_state(struct kernel_vm86_regs *regs)
L
Linus Torvalds 已提交
127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142
{
	struct tss_struct *tss;
	struct pt_regs *ret;
	unsigned long tmp;

	/*
	 * This gets called from entry.S with interrupts disabled, but
	 * from process context. Enable interrupts here, before trying
	 * to access user space.
	 */
	local_irq_enable();

	if (!current->thread.vm86_info) {
		printk("no vm86_info: BAD\n");
		do_exit(SIGSEGV);
	}
143
	set_flags(regs->pt.flags, VEFLAGS, X86_EFLAGS_VIF | current->thread.v86mask);
144 145
	tmp = copy_vm86_regs_to_user(&current->thread.vm86_info->regs, regs);
	tmp += put_user(current->thread.screen_bitmap, &current->thread.vm86_info->screen_bitmap);
L
Linus Torvalds 已提交
146 147 148 149 150 151
	if (tmp) {
		printk("vm86: could not access userspace vm86_info\n");
		do_exit(SIGSEGV);
	}

	tss = &per_cpu(init_tss, get_cpu());
152
	current->thread.sp0 = current->thread.saved_sp0;
L
Linus Torvalds 已提交
153
	current->thread.sysenter_cs = __KERNEL_CS;
154 155
	load_sp0(tss, &current->thread);
	current->thread.saved_sp0 = 0;
L
Linus Torvalds 已提交
156 157 158
	put_cpu();

	ret = KVM86->regs32;
159

160
	ret->fs = current->thread.saved_fs;
T
Tejun Heo 已提交
161
	set_user_gs(ret, current->thread.saved_gs);
162

L
Linus Torvalds 已提交
163 164 165
	return ret;
}

166
static void mark_screen_rdonly(struct mm_struct *mm)
L
Linus Torvalds 已提交
167 168 169 170
{
	pgd_t *pgd;
	pud_t *pud;
	pmd_t *pmd;
171 172
	pte_t *pte;
	spinlock_t *ptl;
L
Linus Torvalds 已提交
173 174
	int i;

175
	down_write(&mm->mmap_sem);
176
	pgd = pgd_offset(mm, 0xA0000);
L
Linus Torvalds 已提交
177 178 179 180 181 182
	if (pgd_none_or_clear_bad(pgd))
		goto out;
	pud = pud_offset(pgd, 0xA0000);
	if (pud_none_or_clear_bad(pud))
		goto out;
	pmd = pmd_offset(pud, 0xA0000);
A
Andrea Arcangeli 已提交
183
	split_huge_page_pmd(mm, pmd);
L
Linus Torvalds 已提交
184 185
	if (pmd_none_or_clear_bad(pmd))
		goto out;
186
	pte = pte_offset_map_lock(mm, pmd, 0xA0000, &ptl);
L
Linus Torvalds 已提交
187 188 189 190 191
	for (i = 0; i < 32; i++) {
		if (pte_present(*pte))
			set_pte(pte, pte_wrprotect(*pte));
		pte++;
	}
192
	pte_unmap_unlock(pte, ptl);
L
Linus Torvalds 已提交
193
out:
194
	up_write(&mm->mmap_sem);
L
Linus Torvalds 已提交
195 196 197 198 199 200 201 202
	flush_tlb();
}



static int do_vm86_irq_handling(int subfunction, int irqnumber);
static void do_sys_vm86(struct kernel_vm86_struct *info, struct task_struct *tsk);

203
int sys_vm86old(struct vm86_struct __user *v86, struct pt_regs *regs)
L
Linus Torvalds 已提交
204 205 206 207 208 209 210 211 212 213
{
	struct kernel_vm86_struct info; /* declare this _on top_,
					 * this avoids wasting of stack space.
					 * This remains on the stack until we
					 * return to 32 bit user space.
					 */
	struct task_struct *tsk;
	int tmp, ret = -EPERM;

	tsk = current;
214
	if (tsk->thread.saved_sp0)
L
Linus Torvalds 已提交
215
		goto out;
216 217 218
	tmp = copy_vm86_regs_from_user(&info.regs, &v86->regs,
				       offsetof(struct kernel_vm86_struct, vm86plus) -
				       sizeof(info.regs));
L
Linus Torvalds 已提交
219 220 221 222
	ret = -EFAULT;
	if (tmp)
		goto out;
	memset(&info.vm86plus, 0, (int)&info.regs32 - (int)&info.vm86plus);
223
	info.regs32 = regs;
L
Linus Torvalds 已提交
224 225 226 227 228 229 230 231
	tsk->thread.vm86_info = v86;
	do_sys_vm86(&info, tsk);
	ret = 0;	/* we never return here */
out:
	return ret;
}


232
int sys_vm86(unsigned long cmd, unsigned long arg, struct pt_regs *regs)
L
Linus Torvalds 已提交
233 234 235 236 237 238 239 240 241 242 243
{
	struct kernel_vm86_struct info; /* declare this _on top_,
					 * this avoids wasting of stack space.
					 * This remains on the stack until we
					 * return to 32 bit user space.
					 */
	struct task_struct *tsk;
	int tmp, ret;
	struct vm86plus_struct __user *v86;

	tsk = current;
244
	switch (cmd) {
245 246 247 248
	case VM86_REQUEST_IRQ:
	case VM86_FREE_IRQ:
	case VM86_GET_IRQ_BITS:
	case VM86_GET_AND_RESET_IRQ:
249
		ret = do_vm86_irq_handling(cmd, (int)arg);
250 251 252 253 254 255 256 257 258 259
		goto out;
	case VM86_PLUS_INSTALL_CHECK:
		/*
		 * NOTE: on old vm86 stuff this will return the error
		 *  from access_ok(), because the subfunction is
		 *  interpreted as (invalid) address to vm86_struct.
		 *  So the installation check works.
		 */
		ret = 0;
		goto out;
L
Linus Torvalds 已提交
260 261 262 263
	}

	/* we come here only for functions VM86_ENTER, VM86_ENTER_NO_BYPASS */
	ret = -EPERM;
264
	if (tsk->thread.saved_sp0)
L
Linus Torvalds 已提交
265
		goto out;
266
	v86 = (struct vm86plus_struct __user *)arg;
267 268 269
	tmp = copy_vm86_regs_from_user(&info.regs, &v86->regs,
				       offsetof(struct kernel_vm86_struct, regs32) -
				       sizeof(info.regs));
L
Linus Torvalds 已提交
270 271 272
	ret = -EFAULT;
	if (tmp)
		goto out;
273
	info.regs32 = regs;
L
Linus Torvalds 已提交
274 275 276 277 278 279 280 281 282 283 284 285 286 287 288
	info.vm86plus.is_vm86pus = 1;
	tsk->thread.vm86_info = (struct vm86_struct __user *)v86;
	do_sys_vm86(&info, tsk);
	ret = 0;	/* we never return here */
out:
	return ret;
}


static void do_sys_vm86(struct kernel_vm86_struct *info, struct task_struct *tsk)
{
	struct tss_struct *tss;
/*
 * make sure the vm86() system call doesn't try to do anything silly
 */
289 290 291
	info->regs.pt.ds = 0;
	info->regs.pt.es = 0;
	info->regs.pt.fs = 0;
292 293 294
#ifndef CONFIG_X86_32_LAZY_GS
	info->regs.pt.gs = 0;
#endif
L
Linus Torvalds 已提交
295 296

/*
297
 * The flags register is also special: we cannot trust that the user
L
Linus Torvalds 已提交
298 299 300
 * has set it up safely, so this makes sure interrupt etc flags are
 * inherited from protected mode.
 */
301 302 303
	VEFLAGS = info->regs.pt.flags;
	info->regs.pt.flags &= SAFE_MASK;
	info->regs.pt.flags |= info->regs32->flags & ~SAFE_MASK;
304
	info->regs.pt.flags |= X86_VM_MASK;
L
Linus Torvalds 已提交
305 306

	switch (info->cpu_type) {
307 308 309 310
	case CPU_286:
		tsk->thread.v86mask = 0;
		break;
	case CPU_386:
311
		tsk->thread.v86mask = X86_EFLAGS_NT | X86_EFLAGS_IOPL;
312 313
		break;
	case CPU_486:
314
		tsk->thread.v86mask = X86_EFLAGS_AC | X86_EFLAGS_NT | X86_EFLAGS_IOPL;
315 316
		break;
	default:
317
		tsk->thread.v86mask = X86_EFLAGS_ID | X86_EFLAGS_AC | X86_EFLAGS_NT | X86_EFLAGS_IOPL;
318
		break;
L
Linus Torvalds 已提交
319 320 321
	}

/*
322
 * Save old state, set default return value (%ax) to 0 (VM86_SIGNAL)
L
Linus Torvalds 已提交
323
 */
324
	info->regs32->ax = VM86_SIGNAL;
325
	tsk->thread.saved_sp0 = tsk->thread.sp0;
326
	tsk->thread.saved_fs = info->regs32->fs;
T
Tejun Heo 已提交
327
	tsk->thread.saved_gs = get_user_gs(info->regs32);
L
Linus Torvalds 已提交
328 329

	tss = &per_cpu(init_tss, get_cpu());
330
	tsk->thread.sp0 = (unsigned long) &info->VM86_TSS_ESP0;
L
Linus Torvalds 已提交
331 332
	if (cpu_has_sep)
		tsk->thread.sysenter_cs = 0;
333
	load_sp0(tss, &tsk->thread);
L
Linus Torvalds 已提交
334 335 336 337
	put_cpu();

	tsk->thread.screen_bitmap = info->screen_bitmap;
	if (info->flags & VM86_SCREEN_BITMAP)
338
		mark_screen_rdonly(tsk->mm);
339

340
	/*call __audit_syscall_exit since we do not exit via the normal paths */
341
#ifdef CONFIG_AUDITSYSCALL
342
	if (unlikely(current->audit_context))
343
		__audit_syscall_exit(1, 0);
344
#endif
345

L
Linus Torvalds 已提交
346 347 348
	__asm__ __volatile__(
		"movl %0,%%esp\n\t"
		"movl %1,%%ebp\n\t"
349
#ifdef CONFIG_X86_32_LAZY_GS
350
		"mov  %2, %%gs\n\t"
351
#endif
L
Linus Torvalds 已提交
352 353
		"jmp resume_userspace"
		: /* no outputs */
354
		:"r" (&info->regs), "r" (task_thread_info(tsk)), "r" (0));
L
Linus Torvalds 已提交
355 356 357
	/* we never return here */
}

358
static inline void return_to_32bit(struct kernel_vm86_regs *regs16, int retval)
L
Linus Torvalds 已提交
359
{
360
	struct pt_regs *regs32;
L
Linus Torvalds 已提交
361 362

	regs32 = save_v86_state(regs16);
363
	regs32->ax = retval;
L
Linus Torvalds 已提交
364 365 366 367 368 369
	__asm__ __volatile__("movl %0,%%esp\n\t"
		"movl %1,%%ebp\n\t"
		"jmp resume_userspace"
		: : "r" (regs32), "r" (current_thread_info()));
}

370
static inline void set_IF(struct kernel_vm86_regs *regs)
L
Linus Torvalds 已提交
371
{
372 373
	VEFLAGS |= X86_EFLAGS_VIF;
	if (VEFLAGS & X86_EFLAGS_VIP)
L
Linus Torvalds 已提交
374 375 376
		return_to_32bit(regs, VM86_STI);
}

377
static inline void clear_IF(struct kernel_vm86_regs *regs)
L
Linus Torvalds 已提交
378
{
379
	VEFLAGS &= ~X86_EFLAGS_VIF;
L
Linus Torvalds 已提交
380 381
}

382
static inline void clear_TF(struct kernel_vm86_regs *regs)
L
Linus Torvalds 已提交
383
{
384
	regs->pt.flags &= ~X86_EFLAGS_TF;
L
Linus Torvalds 已提交
385 386
}

387
static inline void clear_AC(struct kernel_vm86_regs *regs)
L
Linus Torvalds 已提交
388
{
389
	regs->pt.flags &= ~X86_EFLAGS_AC;
L
Linus Torvalds 已提交
390 391
}

392 393
/*
 * It is correct to call set_IF(regs) from the set_vflags_*
L
Linus Torvalds 已提交
394 395 396
 * functions. However someone forgot to call clear_IF(regs)
 * in the opposite case.
 * After the command sequence CLI PUSHF STI POPF you should
J
Joe Perches 已提交
397
 * end up with interrupts disabled, but you ended up with
L
Linus Torvalds 已提交
398 399 400 401 402 403
 * interrupts enabled.
 *  ( I was testing my own changes, but the only bug I
 *    could find was in a function I had not changed. )
 * [KD]
 */

404
static inline void set_vflags_long(unsigned long flags, struct kernel_vm86_regs *regs)
L
Linus Torvalds 已提交
405
{
406 407
	set_flags(VEFLAGS, flags, current->thread.v86mask);
	set_flags(regs->pt.flags, flags, SAFE_MASK);
408
	if (flags & X86_EFLAGS_IF)
L
Linus Torvalds 已提交
409 410 411 412 413
		set_IF(regs);
	else
		clear_IF(regs);
}

414
static inline void set_vflags_short(unsigned short flags, struct kernel_vm86_regs *regs)
L
Linus Torvalds 已提交
415 416
{
	set_flags(VFLAGS, flags, current->thread.v86mask);
417
	set_flags(regs->pt.flags, flags, SAFE_MASK);
418
	if (flags & X86_EFLAGS_IF)
L
Linus Torvalds 已提交
419 420 421 422 423
		set_IF(regs);
	else
		clear_IF(regs);
}

424
static inline unsigned long get_vflags(struct kernel_vm86_regs *regs)
L
Linus Torvalds 已提交
425
{
426
	unsigned long flags = regs->pt.flags & RETURN_MASK;
L
Linus Torvalds 已提交
427

428 429 430
	if (VEFLAGS & X86_EFLAGS_VIF)
		flags |= X86_EFLAGS_IF;
	flags |= X86_EFLAGS_IOPL;
L
Linus Torvalds 已提交
431 432 433
	return flags | (VEFLAGS & current->thread.v86mask);
}

434
static inline int is_revectored(int nr, struct revectored_struct *bitmap)
L
Linus Torvalds 已提交
435 436 437
{
	__asm__ __volatile__("btl %2,%1\n\tsbbl %0,%0"
		:"=r" (nr)
438
		:"m" (*bitmap), "r" (nr));
L
Linus Torvalds 已提交
439 440 441 442 443 444 445 446 447 448 449
	return nr;
}

#define val_byte(val, n) (((__u8 *)&val)[n])

#define pushb(base, ptr, val, err_label) \
	do { \
		__u8 __val = val; \
		ptr--; \
		if (put_user(__val, base + ptr) < 0) \
			goto err_label; \
450
	} while (0)
L
Linus Torvalds 已提交
451 452 453 454 455 456 457 458 459 460

#define pushw(base, ptr, val, err_label) \
	do { \
		__u16 __val = val; \
		ptr--; \
		if (put_user(val_byte(__val, 1), base + ptr) < 0) \
			goto err_label; \
		ptr--; \
		if (put_user(val_byte(__val, 0), base + ptr) < 0) \
			goto err_label; \
461
	} while (0)
L
Linus Torvalds 已提交
462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477

#define pushl(base, ptr, val, err_label) \
	do { \
		__u32 __val = val; \
		ptr--; \
		if (put_user(val_byte(__val, 3), base + ptr) < 0) \
			goto err_label; \
		ptr--; \
		if (put_user(val_byte(__val, 2), base + ptr) < 0) \
			goto err_label; \
		ptr--; \
		if (put_user(val_byte(__val, 1), base + ptr) < 0) \
			goto err_label; \
		ptr--; \
		if (put_user(val_byte(__val, 0), base + ptr) < 0) \
			goto err_label; \
478
	} while (0)
L
Linus Torvalds 已提交
479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524

#define popb(base, ptr, err_label) \
	({ \
		__u8 __res; \
		if (get_user(__res, base + ptr) < 0) \
			goto err_label; \
		ptr++; \
		__res; \
	})

#define popw(base, ptr, err_label) \
	({ \
		__u16 __res; \
		if (get_user(val_byte(__res, 0), base + ptr) < 0) \
			goto err_label; \
		ptr++; \
		if (get_user(val_byte(__res, 1), base + ptr) < 0) \
			goto err_label; \
		ptr++; \
		__res; \
	})

#define popl(base, ptr, err_label) \
	({ \
		__u32 __res; \
		if (get_user(val_byte(__res, 0), base + ptr) < 0) \
			goto err_label; \
		ptr++; \
		if (get_user(val_byte(__res, 1), base + ptr) < 0) \
			goto err_label; \
		ptr++; \
		if (get_user(val_byte(__res, 2), base + ptr) < 0) \
			goto err_label; \
		ptr++; \
		if (get_user(val_byte(__res, 3), base + ptr) < 0) \
			goto err_label; \
		ptr++; \
		__res; \
	})

/* There are so many possible reasons for this function to return
 * VM86_INTx, so adding another doesn't bother me. We can expect
 * userspace programs to be able to handle it. (Getting a problem
 * in userspace is always better than an Oops anyway.) [KD]
 */
static void do_int(struct kernel_vm86_regs *regs, int i,
525
    unsigned char __user *ssp, unsigned short sp)
L
Linus Torvalds 已提交
526 527 528 529
{
	unsigned long __user *intr_ptr;
	unsigned long segoffs;

530
	if (regs->pt.cs == BIOSSEG)
L
Linus Torvalds 已提交
531 532 533
		goto cannot_handle;
	if (is_revectored(i, &KVM86->int_revectored))
		goto cannot_handle;
534
	if (i == 0x21 && is_revectored(AH(regs), &KVM86->int21_revectored))
L
Linus Torvalds 已提交
535 536 537 538 539 540 541
		goto cannot_handle;
	intr_ptr = (unsigned long __user *) (i << 2);
	if (get_user(segoffs, intr_ptr))
		goto cannot_handle;
	if ((segoffs >> 16) == BIOSSEG)
		goto cannot_handle;
	pushw(ssp, sp, get_vflags(regs), cannot_handle);
542
	pushw(ssp, sp, regs->pt.cs, cannot_handle);
L
Linus Torvalds 已提交
543
	pushw(ssp, sp, IP(regs), cannot_handle);
544
	regs->pt.cs = segoffs >> 16;
L
Linus Torvalds 已提交
545 546 547 548 549 550 551 552 553 554 555
	SP(regs) -= 6;
	IP(regs) = segoffs & 0xffff;
	clear_TF(regs);
	clear_IF(regs);
	clear_AC(regs);
	return;

cannot_handle:
	return_to_32bit(regs, VM86_INTx + (i << 8));
}

556
int handle_vm86_trap(struct kernel_vm86_regs *regs, long error_code, int trapno)
L
Linus Torvalds 已提交
557 558
{
	if (VMPI.is_vm86pus) {
559 560 561 562 563 564 565 566
		if ((trapno == 3) || (trapno == 1)) {
			KVM86->regs32->ax = VM86_TRAP + (trapno << 8);
			/* setting this flag forces the code in entry_32.S to
			   call save_v86_state() and change the stack pointer
			   to KVM86->regs32 */
			set_thread_flag(TIF_IRET);
			return 0;
		}
567
		do_int(regs, trapno, (unsigned char __user *) (regs->pt.ss << 4), SP(regs));
L
Linus Torvalds 已提交
568 569
		return 0;
	}
570
	if (trapno != 1)
L
Linus Torvalds 已提交
571
		return 1; /* we let this handle by the calling routine */
572
	current->thread.trap_nr = trapno;
L
Linus Torvalds 已提交
573
	current->thread.error_code = error_code;
R
Roland McGrath 已提交
574
	force_sig(SIGTRAP, current);
L
Linus Torvalds 已提交
575 576 577
	return 0;
}

578
void handle_vm86_fault(struct kernel_vm86_regs *regs, long error_code)
L
Linus Torvalds 已提交
579 580 581 582
{
	unsigned char opcode;
	unsigned char __user *csp;
	unsigned char __user *ssp;
583
	unsigned short ip, sp, orig_flags;
L
Linus Torvalds 已提交
584 585 586 587
	int data32, pref_done;

#define CHECK_IF_IN_TRAP \
	if (VMPI.vm86dbg_active && VMPI.vm86dbg_TFpendig) \
588
		newflags |= X86_EFLAGS_TF
L
Linus Torvalds 已提交
589
#define VM86_FAULT_RETURN do { \
590
	if (VMPI.force_return_for_pic  && (VEFLAGS & (X86_EFLAGS_IF | X86_EFLAGS_VIF))) \
L
Linus Torvalds 已提交
591
		return_to_32bit(regs, VM86_PICRETURN); \
592
	if (orig_flags & X86_EFLAGS_TF) \
593
		handle_vm86_trap(regs, 0, 1); \
L
Linus Torvalds 已提交
594 595
	return; } while (0)

596
	orig_flags = *(unsigned short *)&regs->pt.flags;
597

598 599
	csp = (unsigned char __user *) (regs->pt.cs << 4);
	ssp = (unsigned char __user *) (regs->pt.ss << 4);
L
Linus Torvalds 已提交
600 601 602 603 604 605 606
	sp = SP(regs);
	ip = IP(regs);

	data32 = 0;
	pref_done = 0;
	do {
		switch (opcode = popb(csp, ip, simulate_sigsegv)) {
607 608 609 610 611 612 613 614 615 616 617
		case 0x66:      /* 32-bit data */     data32 = 1; break;
		case 0x67:      /* 32-bit address */  break;
		case 0x2e:      /* CS */              break;
		case 0x3e:      /* DS */              break;
		case 0x26:      /* ES */              break;
		case 0x36:      /* SS */              break;
		case 0x65:      /* GS */              break;
		case 0x64:      /* FS */              break;
		case 0xf2:      /* repnz */       break;
		case 0xf3:      /* rep */             break;
		default: pref_done = 1;
L
Linus Torvalds 已提交
618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639
		}
	} while (!pref_done);

	switch (opcode) {

	/* pushf */
	case 0x9c:
		if (data32) {
			pushl(ssp, sp, get_vflags(regs), simulate_sigsegv);
			SP(regs) -= 4;
		} else {
			pushw(ssp, sp, get_vflags(regs), simulate_sigsegv);
			SP(regs) -= 2;
		}
		IP(regs) = ip;
		VM86_FAULT_RETURN;

	/* popf */
	case 0x9d:
		{
		unsigned long newflags;
		if (data32) {
640
			newflags = popl(ssp, sp, simulate_sigsegv);
L
Linus Torvalds 已提交
641 642 643 644 645 646 647
			SP(regs) += 4;
		} else {
			newflags = popw(ssp, sp, simulate_sigsegv);
			SP(regs) += 2;
		}
		IP(regs) = ip;
		CHECK_IF_IN_TRAP;
648
		if (data32)
L
Linus Torvalds 已提交
649
			set_vflags_long(newflags, regs);
650
		else
L
Linus Torvalds 已提交
651
			set_vflags_short(newflags, regs);
652

L
Linus Torvalds 已提交
653 654 655 656 657
		VM86_FAULT_RETURN;
		}

	/* int xx */
	case 0xcd: {
658
		int intno = popb(csp, ip, simulate_sigsegv);
L
Linus Torvalds 已提交
659 660
		IP(regs) = ip;
		if (VMPI.vm86dbg_active) {
661
			if ((1 << (intno & 7)) & VMPI.vm86dbg_intxxtab[intno >> 3])
L
Linus Torvalds 已提交
662 663 664 665 666 667 668 669 670 671 672 673 674
				return_to_32bit(regs, VM86_INTx + (intno << 8));
		}
		do_int(regs, intno, ssp, sp);
		return;
	}

	/* iret */
	case 0xcf:
		{
		unsigned long newip;
		unsigned long newcs;
		unsigned long newflags;
		if (data32) {
675 676 677
			newip = popl(ssp, sp, simulate_sigsegv);
			newcs = popl(ssp, sp, simulate_sigsegv);
			newflags = popl(ssp, sp, simulate_sigsegv);
L
Linus Torvalds 已提交
678 679 680 681 682 683 684 685
			SP(regs) += 12;
		} else {
			newip = popw(ssp, sp, simulate_sigsegv);
			newcs = popw(ssp, sp, simulate_sigsegv);
			newflags = popw(ssp, sp, simulate_sigsegv);
			SP(regs) += 6;
		}
		IP(regs) = newip;
686
		regs->pt.cs = newcs;
L
Linus Torvalds 已提交
687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745
		CHECK_IF_IN_TRAP;
		if (data32) {
			set_vflags_long(newflags, regs);
		} else {
			set_vflags_short(newflags, regs);
		}
		VM86_FAULT_RETURN;
		}

	/* cli */
	case 0xfa:
		IP(regs) = ip;
		clear_IF(regs);
		VM86_FAULT_RETURN;

	/* sti */
	/*
	 * Damn. This is incorrect: the 'sti' instruction should actually
	 * enable interrupts after the /next/ instruction. Not good.
	 *
	 * Probably needs some horsing around with the TF flag. Aiee..
	 */
	case 0xfb:
		IP(regs) = ip;
		set_IF(regs);
		VM86_FAULT_RETURN;

	default:
		return_to_32bit(regs, VM86_UNKNOWN);
	}

	return;

simulate_sigsegv:
	/* FIXME: After a long discussion with Stas we finally
	 *        agreed, that this is wrong. Here we should
	 *        really send a SIGSEGV to the user program.
	 *        But how do we create the correct context? We
	 *        are inside a general protection fault handler
	 *        and has just returned from a page fault handler.
	 *        The correct context for the signal handler
	 *        should be a mixture of the two, but how do we
	 *        get the information? [KD]
	 */
	return_to_32bit(regs, VM86_UNKNOWN);
}

/* ---------------- vm86 special IRQ passing stuff ----------------- */

#define VM86_IRQNAME		"vm86irq"

static struct vm86_irqs {
	struct task_struct *tsk;
	int sig;
} vm86_irqs[16];

static DEFINE_SPINLOCK(irqbits_lock);
static int irqbits;

746
#define ALLOWED_SIGS (1 /* 0 = don't send a signal */ \
L
Linus Torvalds 已提交
747
	| (1 << SIGUSR1) | (1 << SIGUSR2) | (1 << SIGIO)  | (1 << SIGURG) \
748 749
	| (1 << SIGUNUSED))

750
static irqreturn_t irq_handler(int intno, void *dev_id)
L
Linus Torvalds 已提交
751 752 753 754
{
	int irq_bit;
	unsigned long flags;

755
	spin_lock_irqsave(&irqbits_lock, flags);
L
Linus Torvalds 已提交
756
	irq_bit = 1 << intno;
757
	if ((irqbits & irq_bit) || !vm86_irqs[intno].tsk)
L
Linus Torvalds 已提交
758 759 760 761 762 763 764 765
		goto out;
	irqbits |= irq_bit;
	if (vm86_irqs[intno].sig)
		send_sig(vm86_irqs[intno].sig, vm86_irqs[intno].tsk, 1);
	/*
	 * IRQ will be re-enabled when user asks for the irq (whether
	 * polling or as a result of the signal)
	 */
766 767
	disable_irq_nosync(intno);
	spin_unlock_irqrestore(&irqbits_lock, flags);
L
Linus Torvalds 已提交
768 769 770
	return IRQ_HANDLED;

out:
771
	spin_unlock_irqrestore(&irqbits_lock, flags);
L
Linus Torvalds 已提交
772 773 774 775 776 777 778 779 780 781
	return IRQ_NONE;
}

static inline void free_vm86_irq(int irqnumber)
{
	unsigned long flags;

	free_irq(irqnumber, NULL);
	vm86_irqs[irqnumber].tsk = NULL;

782
	spin_lock_irqsave(&irqbits_lock, flags);
L
Linus Torvalds 已提交
783
	irqbits &= ~(1 << irqnumber);
784
	spin_unlock_irqrestore(&irqbits_lock, flags);
L
Linus Torvalds 已提交
785 786 787 788 789 790 791 792 793 794 795 796 797 798
}

void release_vm86_irqs(struct task_struct *task)
{
	int i;
	for (i = FIRST_VM86_IRQ ; i <= LAST_VM86_IRQ; i++)
	    if (vm86_irqs[i].tsk == task)
		free_vm86_irq(i);
}

static inline int get_and_reset_irq(int irqnumber)
{
	int bit;
	unsigned long flags;
799
	int ret = 0;
800

L
Linus Torvalds 已提交
801 802
	if (invalid_vm86_irq(irqnumber)) return 0;
	if (vm86_irqs[irqnumber].tsk != current) return 0;
803
	spin_lock_irqsave(&irqbits_lock, flags);
L
Linus Torvalds 已提交
804 805
	bit = irqbits & (1 << irqnumber);
	irqbits &= ~bit;
806 807 808 809 810
	if (bit) {
		enable_irq(irqnumber);
		ret = 1;
	}

811
	spin_unlock_irqrestore(&irqbits_lock, flags);
812
	return ret;
L
Linus Torvalds 已提交
813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849
}


static int do_vm86_irq_handling(int subfunction, int irqnumber)
{
	int ret;
	switch (subfunction) {
		case VM86_GET_AND_RESET_IRQ: {
			return get_and_reset_irq(irqnumber);
		}
		case VM86_GET_IRQ_BITS: {
			return irqbits;
		}
		case VM86_REQUEST_IRQ: {
			int sig = irqnumber >> 8;
			int irq = irqnumber & 255;
			if (!capable(CAP_SYS_ADMIN)) return -EPERM;
			if (!((1 << sig) & ALLOWED_SIGS)) return -EPERM;
			if (invalid_vm86_irq(irq)) return -EPERM;
			if (vm86_irqs[irq].tsk) return -EPERM;
			ret = request_irq(irq, &irq_handler, 0, VM86_IRQNAME, NULL);
			if (ret) return ret;
			vm86_irqs[irq].sig = sig;
			vm86_irqs[irq].tsk = current;
			return irq;
		}
		case  VM86_FREE_IRQ: {
			if (invalid_vm86_irq(irqnumber)) return -EPERM;
			if (!vm86_irqs[irqnumber].tsk) return 0;
			if (vm86_irqs[irqnumber].tsk != current) return -EPERM;
			free_vm86_irq(irqnumber);
			return 0;
		}
	}
	return -EINVAL;
}