x86: introduce ldt_desc type.
[deliverable/linux.git] / arch / x86 / kernel / ldt.c
CommitLineData
1da177e4 1/*
1da177e4
LT
2 * Copyright (C) 1992 Krishna Balasubramanian and Linus Torvalds
3 * Copyright (C) 1999 Ingo Molnar <mingo@redhat.com>
4 * Copyright (C) 2002 Andi Kleen
78aa1f66 5 *
1da177e4
LT
6 * This handles calls from both 32bit and 64bit mode.
7 */
8
9#include <linux/errno.h>
10#include <linux/sched.h>
11#include <linux/string.h>
12#include <linux/mm.h>
13#include <linux/smp.h>
1da177e4
LT
14#include <linux/vmalloc.h>
15#include <linux/slab.h>
16
17#include <asm/uaccess.h>
18#include <asm/system.h>
19#include <asm/ldt.h>
20#include <asm/desc.h>
70f5088d 21#include <asm/mmu_context.h>
1da177e4 22
78aa1f66 23#ifdef CONFIG_SMP
1da177e4
LT
24static void flush_ldt(void *null)
25{
26 if (current->active_mm)
78aa1f66 27 load_LDT(&current->active_mm->context);
1da177e4
LT
28}
29#endif
30
70f5088d 31static int alloc_ldt(mm_context_t *pc, int mincount, int reload)
1da177e4 32{
70f5088d
TG
33 void *oldldt, *newldt;
34 int oldsize;
1da177e4 35
70f5088d 36 if (mincount <= pc->size)
1da177e4
LT
37 return 0;
38 oldsize = pc->size;
78aa1f66
TG
39 mincount = (mincount + 511) & (~511);
40 if (mincount * LDT_ENTRY_SIZE > PAGE_SIZE)
41 newldt = vmalloc(mincount * LDT_ENTRY_SIZE);
1da177e4 42 else
78aa1f66 43 newldt = kmalloc(mincount * LDT_ENTRY_SIZE, GFP_KERNEL);
1da177e4
LT
44
45 if (!newldt)
46 return -ENOMEM;
47
48 if (oldsize)
78aa1f66 49 memcpy(newldt, pc->ldt, oldsize * LDT_ENTRY_SIZE);
1da177e4 50 oldldt = pc->ldt;
78aa1f66
TG
51 memset(newldt + oldsize * LDT_ENTRY_SIZE, 0,
52 (mincount - oldsize) * LDT_ENTRY_SIZE);
77e463d1
TG
53
54#ifdef CONFIG_X86_64
55 /* CHECKME: Do we really need this ? */
1da177e4 56 wmb();
77e463d1 57#endif
1da177e4
LT
58 pc->ldt = newldt;
59 wmb();
60 pc->size = mincount;
61 wmb();
70f5088d 62
1da177e4
LT
63 if (reload) {
64#ifdef CONFIG_SMP
65 cpumask_t mask;
66
67 preempt_disable();
1da177e4 68 load_LDT(pc);
70f5088d 69 mask = cpumask_of_cpu(smp_processor_id());
1da177e4
LT
70 if (!cpus_equal(current->mm->cpu_vm_mask, mask))
71 smp_call_function(flush_ldt, NULL, 1, 1);
72 preempt_enable();
73#else
74 load_LDT(pc);
75#endif
76 }
77 if (oldsize) {
78aa1f66 78 if (oldsize * LDT_ENTRY_SIZE > PAGE_SIZE)
1da177e4
LT
79 vfree(oldldt);
80 else
81 kfree(oldldt);
82 }
83 return 0;
84}
85
86static inline int copy_ldt(mm_context_t *new, mm_context_t *old)
87{
88 int err = alloc_ldt(new, old->size, 0);
78aa1f66 89
1da177e4
LT
90 if (err < 0)
91 return err;
78aa1f66 92 memcpy(new->ldt, old->ldt, old->size * LDT_ENTRY_SIZE);
1da177e4
LT
93 return 0;
94}
95
96/*
97 * we do not have to muck with descriptors here, that is
98 * done in switch_mm() as needed.
99 */
100int init_new_context(struct task_struct *tsk, struct mm_struct *mm)
101{
78aa1f66 102 struct mm_struct *old_mm;
1da177e4
LT
103 int retval = 0;
104
c7537ab2 105 mutex_init(&mm->context.lock);
1da177e4
LT
106 mm->context.size = 0;
107 old_mm = current->mm;
108 if (old_mm && old_mm->context.size > 0) {
c7537ab2 109 mutex_lock(&old_mm->context.lock);
1da177e4 110 retval = copy_ldt(&mm->context, &old_mm->context);
c7537ab2 111 mutex_unlock(&old_mm->context.lock);
1da177e4
LT
112 }
113 return retval;
114}
115
116/*
77e463d1
TG
117 * No need to lock the MM as we are the last user
118 *
119 * 64bit: Don't touch the LDT register - we're already in the next thread.
1da177e4
LT
120 */
121void destroy_context(struct mm_struct *mm)
122{
123 if (mm->context.size) {
77e463d1
TG
124#ifdef CONFIG_X86_32
125 /* CHECKME: Can this ever happen ? */
126 if (mm == current->active_mm)
127 clear_LDT();
128#endif
70f5088d 129 if (mm->context.size * LDT_ENTRY_SIZE > PAGE_SIZE)
1da177e4
LT
130 vfree(mm->context.ldt);
131 else
132 kfree(mm->context.ldt);
133 mm->context.size = 0;
134 }
135}
136
78aa1f66 137static int read_ldt(void __user *ptr, unsigned long bytecount)
1da177e4
LT
138{
139 int err;
140 unsigned long size;
78aa1f66 141 struct mm_struct *mm = current->mm;
1da177e4
LT
142
143 if (!mm->context.size)
144 return 0;
78aa1f66
TG
145 if (bytecount > LDT_ENTRY_SIZE * LDT_ENTRIES)
146 bytecount = LDT_ENTRY_SIZE * LDT_ENTRIES;
1da177e4 147
c7537ab2 148 mutex_lock(&mm->context.lock);
78aa1f66 149 size = mm->context.size * LDT_ENTRY_SIZE;
1da177e4
LT
150 if (size > bytecount)
151 size = bytecount;
152
153 err = 0;
154 if (copy_to_user(ptr, mm->context.ldt, size))
155 err = -EFAULT;
c7537ab2 156 mutex_unlock(&mm->context.lock);
1da177e4
LT
157 if (err < 0)
158 goto error_return;
159 if (size != bytecount) {
160 /* zero-fill the rest */
78aa1f66 161 if (clear_user(ptr + size, bytecount - size) != 0) {
1da177e4
LT
162 err = -EFAULT;
163 goto error_return;
164 }
165 }
166 return bytecount;
167error_return:
168 return err;
169}
170
78aa1f66 171static int read_default_ldt(void __user *ptr, unsigned long bytecount)
1da177e4 172{
77e463d1
TG
173 /* CHECKME: Can we use _one_ random number ? */
174#ifdef CONFIG_X86_32
175 unsigned long size = 5 * sizeof(struct desc_struct);
176#else
177 unsigned long size = 128;
178#endif
179 if (bytecount > size)
180 bytecount = size;
1da177e4
LT
181 if (clear_user(ptr, bytecount))
182 return -EFAULT;
78aa1f66 183 return bytecount;
1da177e4
LT
184}
185
78aa1f66 186static int write_ldt(void __user *ptr, unsigned long bytecount, int oldmode)
1da177e4 187{
70f5088d 188 struct mm_struct *mm = current->mm;
fc2d625c 189 __u32 entry_1, entry_2;
1da177e4
LT
190 int error;
191 struct user_desc ldt_info;
192
193 error = -EINVAL;
1da177e4
LT
194 if (bytecount != sizeof(ldt_info))
195 goto out;
78aa1f66 196 error = -EFAULT;
70f5088d 197 if (copy_from_user(&ldt_info, ptr, sizeof(ldt_info)))
1da177e4
LT
198 goto out;
199
200 error = -EINVAL;
201 if (ldt_info.entry_number >= LDT_ENTRIES)
202 goto out;
203 if (ldt_info.contents == 3) {
204 if (oldmode)
205 goto out;
206 if (ldt_info.seg_not_present == 0)
207 goto out;
208 }
209
c7537ab2 210 mutex_lock(&mm->context.lock);
70f5088d 211 if (ldt_info.entry_number >= mm->context.size) {
78aa1f66
TG
212 error = alloc_ldt(&current->mm->context,
213 ldt_info.entry_number + 1, 1);
1da177e4
LT
214 if (error < 0)
215 goto out_unlock;
216 }
217
78aa1f66
TG
218 /* Allow LDTs to be cleared by the user. */
219 if (ldt_info.base_addr == 0 && ldt_info.limit == 0) {
1da177e4
LT
220 if (oldmode || LDT_empty(&ldt_info)) {
221 entry_1 = 0;
222 entry_2 = 0;
223 goto install;
224 }
225 }
226
227 entry_1 = LDT_entry_a(&ldt_info);
228 entry_2 = LDT_entry_b(&ldt_info);
229 if (oldmode)
230 entry_2 &= ~(1 << 20);
231
232 /* Install the new entry ... */
233install:
fc2d625c
TG
234 write_ldt_entry(mm->context.ldt, ldt_info.entry_number, entry_1,
235 entry_2);
1da177e4
LT
236 error = 0;
237
238out_unlock:
c7537ab2 239 mutex_unlock(&mm->context.lock);
1da177e4
LT
240out:
241 return error;
242}
243
78aa1f66
TG
244asmlinkage int sys_modify_ldt(int func, void __user *ptr,
245 unsigned long bytecount)
1da177e4
LT
246{
247 int ret = -ENOSYS;
248
249 switch (func) {
250 case 0:
251 ret = read_ldt(ptr, bytecount);
252 break;
253 case 1:
254 ret = write_ldt(ptr, bytecount, 1);
255 break;
256 case 2:
257 ret = read_default_ldt(ptr, bytecount);
258 break;
259 case 0x11:
260 ret = write_ldt(ptr, bytecount, 0);
261 break;
262 }
263 return ret;
264}
This page took 0.45427 seconds and 5 git commands to generate.