blob: c8b1b31ed7c44b9bcfc0b570d5643e80655147ab [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*---------------------------------------------------------------------------+
3 | fpu_system.h |
4 | |
5 | Copyright (C) 1992,1994,1997 |
6 | W. Metzenthen, 22 Parker St, Ormond, Vic 3163, |
7 | Australia. E-mail billm@suburbia.net |
8 | |
9 +---------------------------------------------------------------------------*/
10
11#ifndef _FPU_SYSTEM_H
12#define _FPU_SYSTEM_H
13
14/* system dependent definitions */
15
16#include <linux/sched.h>
17#include <linux/kernel.h>
18#include <linux/mm.h>
19
Juergen Gross48091462015-08-06 19:54:34 +020020#include <asm/desc.h>
21#include <asm/mmu_context.h>
22
23static inline struct desc_struct FPU_get_ldt_descriptor(unsigned seg)
24{
25 static struct desc_struct zero_desc;
26 struct desc_struct ret = zero_desc;
27
28#ifdef CONFIG_MODIFY_LDT_SYSCALL
29 seg >>= 3;
30 mutex_lock(&current->mm->context.lock);
Borislav Petkovbbf79d22017-06-06 19:31:16 +020031 if (current->mm->context.ldt && seg < current->mm->context.ldt->nr_entries)
Juergen Gross48091462015-08-06 19:54:34 +020032 ret = current->mm->context.ldt->entries[seg];
33 mutex_unlock(&current->mm->context.lock);
34#endif
35 return ret;
36}
37
Thomas Gleixner718f5d02017-08-28 08:47:39 +020038#define SEG_TYPE_WRITABLE (1U << 1)
39#define SEG_TYPE_EXPANDS_DOWN (1U << 2)
40#define SEG_TYPE_EXECUTE (1U << 3)
41#define SEG_TYPE_EXPAND_MASK (SEG_TYPE_EXPANDS_DOWN | SEG_TYPE_EXECUTE)
42#define SEG_TYPE_EXECUTE_MASK (SEG_TYPE_WRITABLE | SEG_TYPE_EXECUTE)
43
44static inline unsigned long seg_get_base(struct desc_struct *d)
45{
46 unsigned long base = (unsigned long)d->base2 << 24;
47
48 return base | ((unsigned long)d->base1 << 16) | d->base0;
49}
50
51static inline unsigned long seg_get_limit(struct desc_struct *d)
52{
Thomas Gleixner38e9e812017-08-28 08:47:41 +020053 return ((unsigned long)d->limit1 << 16) | d->limit0;
Thomas Gleixner718f5d02017-08-28 08:47:39 +020054}
55
56static inline unsigned long seg_get_granularity(struct desc_struct *d)
57{
58 return d->g ? 4096 : 1;
59}
60
61static inline bool seg_expands_down(struct desc_struct *d)
62{
63 return (d->type & SEG_TYPE_EXPAND_MASK) == SEG_TYPE_EXPANDS_DOWN;
64}
65
66static inline bool seg_execute_only(struct desc_struct *d)
67{
68 return (d->type & SEG_TYPE_EXECUTE_MASK) == SEG_TYPE_EXECUTE;
69}
70
71static inline bool seg_writable(struct desc_struct *d)
72{
73 return (d->type & SEG_TYPE_EXECUTE_MASK) == SEG_TYPE_WRITABLE;
74}
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Ingo Molnar7366ed72015-04-27 04:19:39 +020076#define I387 (&current->thread.fpu.state)
Suresh Siddha61c46282008-03-10 15:28:04 -070077#define FPU_info (I387->soft.info)
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Tejun Heod3157602009-02-09 22:17:39 +090079#define FPU_CS (*(unsigned short *) &(FPU_info->regs->cs))
80#define FPU_SS (*(unsigned short *) &(FPU_info->regs->ss))
81#define FPU_DS (*(unsigned short *) &(FPU_info->regs->ds))
82#define FPU_EAX (FPU_info->regs->ax)
83#define FPU_EFLAGS (FPU_info->regs->flags)
84#define FPU_EIP (FPU_info->regs->ip)
Linus Torvalds1da177e2005-04-16 15:20:36 -070085#define FPU_ORIG_EIP (FPU_info->___orig_eip)
86
Suresh Siddha61c46282008-03-10 15:28:04 -070087#define FPU_lookahead (I387->soft.lookahead)
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
89/* nz if ip_offset and cs_selector are not to be set for the current
90 instruction. */
Suresh Siddha61c46282008-03-10 15:28:04 -070091#define no_ip_update (*(u_char *)&(I387->soft.no_update))
92#define FPU_rm (*(u_char *)&(I387->soft.rm))
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
94/* Number of bytes of data which can be legally accessed by the current
95 instruction. This only needs to hold a number <= 108, so a byte will do. */
Suresh Siddha61c46282008-03-10 15:28:04 -070096#define access_limit (*(u_char *)&(I387->soft.alimit))
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Suresh Siddha61c46282008-03-10 15:28:04 -070098#define partial_status (I387->soft.swd)
99#define control_word (I387->soft.cwd)
100#define fpu_tag_word (I387->soft.twd)
101#define registers (I387->soft.st_space)
102#define top (I387->soft.ftop)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Suresh Siddha61c46282008-03-10 15:28:04 -0700104#define instruction_address (*(struct address *)&I387->soft.fip)
105#define operand_address (*(struct address *)&I387->soft.foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
107#define FPU_access_ok(x,y,z) if ( !access_ok(x,y,z) ) \
108 math_abort(FPU_info,SIGSEGV)
Randy Dunlapd606f882006-12-07 02:14:00 +0100109#define FPU_abort math_abort(FPU_info, SIGSEGV)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
111#undef FPU_IGNORE_CODE_SEGV
112#ifdef FPU_IGNORE_CODE_SEGV
113/* access_ok() is very expensive, and causes the emulator to run
114 about 20% slower if applied to the code. Anyway, errors due to bad
115 code addresses should be much rarer than errors due to bad data
116 addresses. */
117#define FPU_code_access_ok(z)
118#else
119/* A simpler test than access_ok() can probably be done for
120 FPU_code_access_ok() because the only possible error is to step
121 past the upper boundary of a legal code area. */
122#define FPU_code_access_ok(z) FPU_access_ok(VERIFY_READ,(void __user *)FPU_EIP,z)
123#endif
124
125#define FPU_get_user(x,y) get_user((x),(y))
126#define FPU_put_user(x,y) put_user((x),(y))
127
128#endif