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/mmu_context.h>
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, int mincount, int reload)
33 void *oldldt, *newldt;
36 if (mincount <= pc->size)
39 mincount = (mincount + 511) & (~511);
40 if (mincount * LDT_ENTRY_SIZE > PAGE_SIZE)
41 newldt = vmalloc(mincount * LDT_ENTRY_SIZE);
43 newldt = kmalloc(mincount * LDT_ENTRY_SIZE, GFP_KERNEL);
49 memcpy(newldt, pc->ldt, oldsize * LDT_ENTRY_SIZE);
51 memset(newldt + oldsize * LDT_ENTRY_SIZE, 0,
52 (mincount - oldsize) * LDT_ENTRY_SIZE);
55 /* CHECKME: Do we really need this ? */
69 mask = cpumask_of_cpu(smp_processor_id());
70 if (!cpus_equal(current->mm->cpu_vm_mask, mask))
71 smp_call_function(flush_ldt, NULL, 1, 1);
78 if (oldsize * LDT_ENTRY_SIZE > PAGE_SIZE)
86 static inline int copy_ldt(mm_context_t *new, mm_context_t *old)
88 int err = alloc_ldt(new, old->size, 0);
92 memcpy(new->ldt, old->ldt, old->size * LDT_ENTRY_SIZE);
97 * we do not have to muck with descriptors here, that is
98 * done in switch_mm() as needed.
100 int init_new_context(struct task_struct *tsk, struct mm_struct *mm)
102 struct mm_struct *old_mm;
105 mutex_init(&mm->context.lock);
106 mm->context.size = 0;
107 old_mm = current->mm;
108 if (old_mm && old_mm->context.size > 0) {
109 mutex_lock(&old_mm->context.lock);
110 retval = copy_ldt(&mm->context, &old_mm->context);
111 mutex_unlock(&old_mm->context.lock);
117 * No need to lock the MM as we are the last user
119 * 64bit: Don't touch the LDT register - we're already in the next thread.
121 void destroy_context(struct mm_struct *mm)
123 if (mm->context.size) {
125 /* CHECKME: Can this ever happen ? */
126 if (mm == current->active_mm)
129 if (mm->context.size * LDT_ENTRY_SIZE > PAGE_SIZE)
130 vfree(mm->context.ldt);
132 kfree(mm->context.ldt);
133 mm->context.size = 0;
137 static int read_ldt(void __user *ptr, unsigned long bytecount)
141 struct mm_struct *mm = current->mm;
143 if (!mm->context.size)
145 if (bytecount > LDT_ENTRY_SIZE * LDT_ENTRIES)
146 bytecount = LDT_ENTRY_SIZE * LDT_ENTRIES;
148 mutex_lock(&mm->context.lock);
149 size = mm->context.size * LDT_ENTRY_SIZE;
150 if (size > bytecount)
154 if (copy_to_user(ptr, mm->context.ldt, size))
156 mutex_unlock(&mm->context.lock);
159 if (size != bytecount) {
160 /* zero-fill the rest */
161 if (clear_user(ptr + size, bytecount - size) != 0) {
171 static int read_default_ldt(void __user *ptr, unsigned long bytecount)
173 /* CHECKME: Can we use _one_ random number ? */
175 unsigned long size = 5 * sizeof(struct desc_struct);
177 unsigned long size = 128;
179 if (bytecount > size)
181 if (clear_user(ptr, bytecount))
186 static int write_ldt(void __user *ptr, unsigned long bytecount, int oldmode)
188 struct mm_struct *mm = current->mm;
189 struct desc_struct ldt;
191 struct user_desc ldt_info;
194 if (bytecount != sizeof(ldt_info))
197 if (copy_from_user(&ldt_info, ptr, sizeof(ldt_info)))
201 if (ldt_info.entry_number >= LDT_ENTRIES)
203 if (ldt_info.contents == 3) {
206 if (ldt_info.seg_not_present == 0)
210 mutex_lock(&mm->context.lock);
211 if (ldt_info.entry_number >= mm->context.size) {
212 error = alloc_ldt(¤t->mm->context,
213 ldt_info.entry_number + 1, 1);
218 /* Allow LDTs to be cleared by the user. */
219 if (ldt_info.base_addr == 0 && ldt_info.limit == 0) {
220 if (oldmode || LDT_empty(&ldt_info)) {
221 memset(&ldt, 0, sizeof(ldt));
226 fill_ldt(&ldt, &ldt_info);
230 /* Install the new entry ... */
232 write_ldt_entry(mm->context.ldt, ldt_info.entry_number,
237 mutex_unlock(&mm->context.lock);
242 asmlinkage int sys_modify_ldt(int func, void __user *ptr,
243 unsigned long bytecount)
249 ret = read_ldt(ptr, bytecount);
252 ret = write_ldt(ptr, bytecount, 1);
255 ret = read_default_ldt(ptr, bytecount);
258 ret = write_ldt(ptr, bytecount, 0);