2 * linux/arch/x86_64/kernel/ldt.c
4 * Copyright (C) 1992 Krishna Balasubramanian and Linus Torvalds
5 * Copyright (C) 1999 Ingo Molnar <mingo@redhat.com>
6 * Copyright (C) 2002 Andi Kleen
8 * This handles calls from both 32bit and 64bit mode.
11 #include <linux/errno.h>
12 #include <linux/sched.h>
13 #include <linux/string.h>
15 #include <linux/smp.h>
16 #include <linux/vmalloc.h>
17 #include <linux/slab.h>
19 #include <asm/uaccess.h>
20 #include <asm/system.h>
23 #include <asm/proto.h>
25 #ifdef CONFIG_SMP /* avoids "defined but not used" warnig */
26 static void flush_ldt(void *null)
28 if (current->active_mm)
29 load_LDT(¤t->active_mm->context);
33 static int alloc_ldt(mm_context_t *pc, unsigned mincount, int reload)
39 if (mincount <= (unsigned)pc->size)
42 mincount = (mincount+511)&(~511);
43 if (mincount*LDT_ENTRY_SIZE > PAGE_SIZE)
44 newldt = vmalloc(mincount*LDT_ENTRY_SIZE);
46 newldt = kmalloc(mincount*LDT_ENTRY_SIZE, GFP_KERNEL);
52 memcpy(newldt, pc->ldt, oldsize*LDT_ENTRY_SIZE);
54 memset(newldt+oldsize*LDT_ENTRY_SIZE, 0, (mincount-oldsize)*LDT_ENTRY_SIZE);
65 mask = cpumask_of_cpu(smp_processor_id());
67 if (!cpus_equal(current->mm->cpu_vm_mask, mask))
68 smp_call_function(flush_ldt, NULL, 1, 1);
75 if (oldsize*LDT_ENTRY_SIZE > PAGE_SIZE)
83 static inline int copy_ldt(mm_context_t *new, mm_context_t *old)
85 int err = alloc_ldt(new, old->size, 0);
88 memcpy(new->ldt, old->ldt, old->size*LDT_ENTRY_SIZE);
93 * we do not have to muck with descriptors here, that is
94 * done in switch_mm() as needed.
96 int init_new_context(struct task_struct *tsk, struct mm_struct *mm)
98 struct mm_struct * old_mm;
101 init_MUTEX(&mm->context.sem);
102 mm->context.size = 0;
103 old_mm = current->mm;
104 if (old_mm && old_mm->context.size > 0) {
105 down(&old_mm->context.sem);
106 retval = copy_ldt(&mm->context, &old_mm->context);
107 up(&old_mm->context.sem);
114 * Don't touch the LDT register - we're already in the next thread.
116 void destroy_context(struct mm_struct *mm)
118 if (mm->context.size) {
119 if ((unsigned)mm->context.size*LDT_ENTRY_SIZE > PAGE_SIZE)
120 vfree(mm->context.ldt);
122 kfree(mm->context.ldt);
123 mm->context.size = 0;
127 static int read_ldt(void __user * ptr, unsigned long bytecount)
131 struct mm_struct * mm = current->mm;
133 if (!mm->context.size)
135 if (bytecount > LDT_ENTRY_SIZE*LDT_ENTRIES)
136 bytecount = LDT_ENTRY_SIZE*LDT_ENTRIES;
138 down(&mm->context.sem);
139 size = mm->context.size*LDT_ENTRY_SIZE;
140 if (size > bytecount)
144 if (copy_to_user(ptr, mm->context.ldt, size))
146 up(&mm->context.sem);
149 if (size != bytecount) {
150 /* zero-fill the rest */
151 if (clear_user(ptr+size, bytecount-size) != 0) {
161 static int read_default_ldt(void __user * ptr, unsigned long bytecount)
163 /* Arbitrary number */
164 /* x86-64 default LDT is all zeros */
167 if (clear_user(ptr, bytecount))
172 static int write_ldt(void __user * ptr, unsigned long bytecount, int oldmode)
174 struct task_struct *me = current;
175 struct mm_struct * mm = me->mm;
176 __u32 entry_1, entry_2, *lp;
178 struct user_desc ldt_info;
182 if (bytecount != sizeof(ldt_info))
185 if (copy_from_user(&ldt_info, ptr, bytecount))
189 if (ldt_info.entry_number >= LDT_ENTRIES)
191 if (ldt_info.contents == 3) {
194 if (ldt_info.seg_not_present == 0)
198 down(&mm->context.sem);
199 if (ldt_info.entry_number >= (unsigned)mm->context.size) {
200 error = alloc_ldt(¤t->mm->context, ldt_info.entry_number+1, 1);
205 lp = (__u32 *) ((ldt_info.entry_number << 3) + (char *) mm->context.ldt);
207 /* Allow LDTs to be cleared by the user. */
208 if (ldt_info.base_addr == 0 && ldt_info.limit == 0) {
209 if (oldmode || LDT_empty(&ldt_info)) {
216 entry_1 = LDT_entry_a(&ldt_info);
217 entry_2 = LDT_entry_b(&ldt_info);
219 entry_2 &= ~(1 << 20);
221 /* Install the new entry ... */
228 up(&mm->context.sem);
233 asmlinkage int sys_modify_ldt(int func, void __user *ptr, unsigned long bytecount)
239 ret = read_ldt(ptr, bytecount);
242 ret = write_ldt(ptr, bytecount, 1);
245 ret = read_default_ldt(ptr, bytecount);
248 ret = write_ldt(ptr, bytecount, 0);