2 * Copyright (C) 1992 Krishna Balasubramanian and Linus Torvalds
3 * Copyright (C) 1999 Ingo Molnar <mingo@redhat.com>
4 * Copyright (C) 2002 Andi Kleen
6 * This handles calls from both 32bit and 64bit mode.
9 #include <linux/errno.h>
10 #include <linux/sched.h>
11 #include <linux/string.h>
13 #include <linux/smp.h>
14 #include <linux/vmalloc.h>
15 #include <linux/slab.h>
17 #include <asm/uaccess.h>
18 #include <asm/system.h>
21 #include <asm/proto.h>
23 #ifdef CONFIG_SMP /* avoids "defined but not used" warnig */
24 static void flush_ldt(void *null
)
26 if (current
->active_mm
)
27 load_LDT(¤t
->active_mm
->context
);
31 static int alloc_ldt(mm_context_t
*pc
, unsigned mincount
, int reload
)
37 if (mincount
<= (unsigned)pc
->size
)
40 mincount
= (mincount
+511)&(~511);
41 if (mincount
*LDT_ENTRY_SIZE
> PAGE_SIZE
)
42 newldt
= vmalloc(mincount
*LDT_ENTRY_SIZE
);
44 newldt
= kmalloc(mincount
*LDT_ENTRY_SIZE
, GFP_KERNEL
);
50 memcpy(newldt
, pc
->ldt
, oldsize
*LDT_ENTRY_SIZE
);
52 memset(newldt
+oldsize
*LDT_ENTRY_SIZE
, 0, (mincount
-oldsize
)*LDT_ENTRY_SIZE
);
63 mask
= cpumask_of_cpu(smp_processor_id());
65 if (!cpus_equal(current
->mm
->cpu_vm_mask
, mask
))
66 smp_call_function(flush_ldt
, NULL
, 1, 1);
73 if (oldsize
*LDT_ENTRY_SIZE
> PAGE_SIZE
)
81 static inline int copy_ldt(mm_context_t
*new, mm_context_t
*old
)
83 int err
= alloc_ldt(new, old
->size
, 0);
86 memcpy(new->ldt
, old
->ldt
, old
->size
*LDT_ENTRY_SIZE
);
91 * we do not have to muck with descriptors here, that is
92 * done in switch_mm() as needed.
94 int init_new_context(struct task_struct
*tsk
, struct mm_struct
*mm
)
96 struct mm_struct
* old_mm
;
99 mutex_init(&mm
->context
.lock
);
100 mm
->context
.size
= 0;
101 old_mm
= current
->mm
;
102 if (old_mm
&& old_mm
->context
.size
> 0) {
103 mutex_lock(&old_mm
->context
.lock
);
104 retval
= copy_ldt(&mm
->context
, &old_mm
->context
);
105 mutex_unlock(&old_mm
->context
.lock
);
112 * Don't touch the LDT register - we're already in the next thread.
114 void destroy_context(struct mm_struct
*mm
)
116 if (mm
->context
.size
) {
117 if ((unsigned)mm
->context
.size
*LDT_ENTRY_SIZE
> PAGE_SIZE
)
118 vfree(mm
->context
.ldt
);
120 kfree(mm
->context
.ldt
);
121 mm
->context
.size
= 0;
125 static int read_ldt(void __user
* ptr
, unsigned long bytecount
)
129 struct mm_struct
* mm
= current
->mm
;
131 if (!mm
->context
.size
)
133 if (bytecount
> LDT_ENTRY_SIZE
*LDT_ENTRIES
)
134 bytecount
= LDT_ENTRY_SIZE
*LDT_ENTRIES
;
136 mutex_lock(&mm
->context
.lock
);
137 size
= mm
->context
.size
*LDT_ENTRY_SIZE
;
138 if (size
> bytecount
)
142 if (copy_to_user(ptr
, mm
->context
.ldt
, size
))
144 mutex_unlock(&mm
->context
.lock
);
147 if (size
!= bytecount
) {
148 /* zero-fill the rest */
149 if (clear_user(ptr
+size
, bytecount
-size
) != 0) {
159 static int read_default_ldt(void __user
* ptr
, unsigned long bytecount
)
161 /* Arbitrary number */
162 /* x86-64 default LDT is all zeros */
165 if (clear_user(ptr
, bytecount
))
170 static int write_ldt(void __user
* ptr
, unsigned long bytecount
, int oldmode
)
172 struct task_struct
*me
= current
;
173 struct mm_struct
* mm
= me
->mm
;
174 __u32 entry_1
, entry_2
, *lp
;
176 struct user_desc ldt_info
;
180 if (bytecount
!= sizeof(ldt_info
))
183 if (copy_from_user(&ldt_info
, ptr
, bytecount
))
187 if (ldt_info
.entry_number
>= LDT_ENTRIES
)
189 if (ldt_info
.contents
== 3) {
192 if (ldt_info
.seg_not_present
== 0)
196 mutex_lock(&mm
->context
.lock
);
197 if (ldt_info
.entry_number
>= (unsigned)mm
->context
.size
) {
198 error
= alloc_ldt(¤t
->mm
->context
, ldt_info
.entry_number
+1, 1);
203 lp
= (__u32
*) ((ldt_info
.entry_number
<< 3) + (char *) mm
->context
.ldt
);
205 /* Allow LDTs to be cleared by the user. */
206 if (ldt_info
.base_addr
== 0 && ldt_info
.limit
== 0) {
207 if (oldmode
|| LDT_empty(&ldt_info
)) {
214 entry_1
= LDT_entry_a(&ldt_info
);
215 entry_2
= LDT_entry_b(&ldt_info
);
217 entry_2
&= ~(1 << 20);
219 /* Install the new entry ... */
226 mutex_unlock(&mm
->context
.lock
);
231 asmlinkage
int sys_modify_ldt(int func
, void __user
*ptr
, unsigned long bytecount
)
237 ret
= read_ldt(ptr
, bytecount
);
240 ret
= write_ldt(ptr
, bytecount
, 1);
243 ret
= read_default_ldt(ptr
, bytecount
);
246 ret
= write_ldt(ptr
, bytecount
, 0);