blob: 67c0958eb984266e7e59eaf682754b3c25746642 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Jeff Dikeba180fd2007-10-16 01:27:00 -07002 * Copyright (C) 2001 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * Licensed under the GPL
4 */
5
Jeff Dikeba180fd2007-10-16 01:27:00 -07006#include "linux/mm.h"
Bodo Stroesser858259c2005-11-07 00:58:55 -08007#include "asm/unistd.h"
Bodo Stroesser12919aa2006-01-18 17:42:39 -08008#include "os.h"
Jeff Dikeba180fd2007-10-16 01:27:00 -07009#include "proc_mm.h"
Bodo Stroesser858259c2005-11-07 00:58:55 -080010#include "skas.h"
11#include "skas_ptrace.h"
Jeff Dikeba180fd2007-10-16 01:27:00 -070012#include "sysdep/tls.h"
13
14extern int modify_ldt(int func, void *ptr, unsigned long bytecount);
Bodo Stroesser858259c2005-11-07 00:58:55 -080015
16long write_ldt_entry(struct mm_id * mm_idp, int func, struct user_desc * desc,
17 void **addr, int done)
18{
19 long res;
20
Jeff Dikeba180fd2007-10-16 01:27:00 -070021 if (proc_mm) {
22 /*
23 * This is a special handling for the case, that the mm to
Bodo Stroesser858259c2005-11-07 00:58:55 -080024 * modify isn't current->active_mm.
25 * If this is called directly by modify_ldt,
26 * (current->active_mm->context.skas.u == mm_idp)
Jeff Dike77bf4402007-10-16 01:26:58 -070027 * will be true. So no call to __switch_mm(mm_idp) is done.
Bodo Stroesser858259c2005-11-07 00:58:55 -080028 * If this is called in case of init_new_ldt or PTRACE_LDT,
29 * mm_idp won't belong to current->active_mm, but child->mm.
30 * So we need to switch child's mm into our userspace, then
31 * later switch back.
32 *
Paolo 'Blaisorblade' Giarrusso07f4e2c2006-02-24 13:03:55 -080033 * Note: I'm unsure: should interrupts be disabled here?
Bodo Stroesser858259c2005-11-07 00:58:55 -080034 */
Jeff Dikeba180fd2007-10-16 01:27:00 -070035 if (!current->active_mm || current->active_mm == &init_mm ||
Jeff Dike6c738ff2007-10-16 01:27:06 -070036 mm_idp != &current->active_mm->context.id)
Jeff Dike77bf4402007-10-16 01:26:58 -070037 __switch_mm(mm_idp);
Bodo Stroesser858259c2005-11-07 00:58:55 -080038 }
39
Jeff Dikeba180fd2007-10-16 01:27:00 -070040 if (ptrace_ldt) {
Bodo Stroesser858259c2005-11-07 00:58:55 -080041 struct ptrace_ldt ldt_op = (struct ptrace_ldt) {
42 .func = func,
43 .ptr = desc,
44 .bytecount = sizeof(*desc)};
45 u32 cpu;
46 int pid;
47
Jeff Dikeba180fd2007-10-16 01:27:00 -070048 if (!proc_mm)
Bodo Stroesser858259c2005-11-07 00:58:55 -080049 pid = mm_idp->u.pid;
50 else {
51 cpu = get_cpu();
52 pid = userspace_pid[cpu];
53 }
54
Paolo 'Blaisorblade' Giarrusso07f4e2c2006-02-24 13:03:55 -080055 res = os_ptrace_ldt(pid, 0, (unsigned long) &ldt_op);
Bodo Stroesser858259c2005-11-07 00:58:55 -080056
Jeff Dikeba180fd2007-10-16 01:27:00 -070057 if (proc_mm)
Bodo Stroesser858259c2005-11-07 00:58:55 -080058 put_cpu();
59 }
60 else {
61 void *stub_addr;
62 res = syscall_stub_data(mm_idp, (unsigned long *)desc,
63 (sizeof(*desc) + sizeof(long) - 1) &
64 ~(sizeof(long) - 1),
65 addr, &stub_addr);
Jeff Dikeba180fd2007-10-16 01:27:00 -070066 if (!res) {
Bodo Stroesser858259c2005-11-07 00:58:55 -080067 unsigned long args[] = { func,
68 (unsigned long)stub_addr,
69 sizeof(*desc),
70 0, 0, 0 };
71 res = run_syscall_stub(mm_idp, __NR_modify_ldt, args,
72 0, addr, done);
73 }
74 }
75
Jeff Dikeba180fd2007-10-16 01:27:00 -070076 if (proc_mm) {
77 /*
78 * This is the second part of special handling, that makes
Bodo Stroesser858259c2005-11-07 00:58:55 -080079 * PTRACE_LDT possible to implement.
80 */
Jeff Dikeba180fd2007-10-16 01:27:00 -070081 if (current->active_mm && current->active_mm != &init_mm &&
Jeff Dike6c738ff2007-10-16 01:27:06 -070082 mm_idp != &current->active_mm->context.id)
83 __switch_mm(&current->active_mm->context.id);
Bodo Stroesser858259c2005-11-07 00:58:55 -080084 }
85
86 return res;
87}
88
89static long read_ldt_from_host(void __user * ptr, unsigned long bytecount)
90{
91 int res, n;
92 struct ptrace_ldt ptrace_ldt = (struct ptrace_ldt) {
93 .func = 0,
94 .bytecount = bytecount,
Robert P. J. Day5cbded52006-12-13 00:35:56 -080095 .ptr = kmalloc(bytecount, GFP_KERNEL)};
Bodo Stroesser858259c2005-11-07 00:58:55 -080096 u32 cpu;
97
Jeff Dikeba180fd2007-10-16 01:27:00 -070098 if (ptrace_ldt.ptr == NULL)
Bodo Stroesser858259c2005-11-07 00:58:55 -080099 return -ENOMEM;
100
Jeff Dikeba180fd2007-10-16 01:27:00 -0700101 /*
102 * This is called from sys_modify_ldt only, so userspace_pid gives
Bodo Stroesser858259c2005-11-07 00:58:55 -0800103 * us the right number
104 */
105
106 cpu = get_cpu();
Paolo 'Blaisorblade' Giarrusso07f4e2c2006-02-24 13:03:55 -0800107 res = os_ptrace_ldt(userspace_pid[cpu], 0, (unsigned long) &ptrace_ldt);
Bodo Stroesser858259c2005-11-07 00:58:55 -0800108 put_cpu();
Jeff Dikeba180fd2007-10-16 01:27:00 -0700109 if (res < 0)
Bodo Stroesser858259c2005-11-07 00:58:55 -0800110 goto out;
111
112 n = copy_to_user(ptr, ptrace_ldt.ptr, res);
Jeff Dikeba180fd2007-10-16 01:27:00 -0700113 if (n != 0)
Bodo Stroesser858259c2005-11-07 00:58:55 -0800114 res = -EFAULT;
115
116 out:
117 kfree(ptrace_ldt.ptr);
118
119 return res;
120}
121
122/*
123 * In skas mode, we hold our own ldt data in UML.
124 * Thus, the code implementing sys_modify_ldt_skas
125 * is very similar to (and mostly stolen from) sys_modify_ldt
126 * for arch/i386/kernel/ldt.c
127 * The routines copied and modified in part are:
128 * - read_ldt
129 * - read_default_ldt
130 * - write_ldt
131 * - sys_modify_ldt_skas
132 */
133
134static int read_ldt(void __user * ptr, unsigned long bytecount)
135{
136 int i, err = 0;
137 unsigned long size;
Jeff Dike6c738ff2007-10-16 01:27:06 -0700138 uml_ldt_t * ldt = &current->mm->context.ldt;
Bodo Stroesser858259c2005-11-07 00:58:55 -0800139
Jeff Dikeba180fd2007-10-16 01:27:00 -0700140 if (!ldt->entry_count)
Bodo Stroesser858259c2005-11-07 00:58:55 -0800141 goto out;
Jeff Dikeba180fd2007-10-16 01:27:00 -0700142 if (bytecount > LDT_ENTRY_SIZE*LDT_ENTRIES)
Bodo Stroesser858259c2005-11-07 00:58:55 -0800143 bytecount = LDT_ENTRY_SIZE*LDT_ENTRIES;
144 err = bytecount;
145
Jeff Dikeba180fd2007-10-16 01:27:00 -0700146 if (ptrace_ldt)
Bodo Stroesser858259c2005-11-07 00:58:55 -0800147 return read_ldt_from_host(ptr, bytecount);
Bodo Stroesser858259c2005-11-07 00:58:55 -0800148
149 down(&ldt->semaphore);
Jeff Dikeba180fd2007-10-16 01:27:00 -0700150 if (ldt->entry_count <= LDT_DIRECT_ENTRIES) {
Bodo Stroesser858259c2005-11-07 00:58:55 -0800151 size = LDT_ENTRY_SIZE*LDT_DIRECT_ENTRIES;
Jeff Dikeba180fd2007-10-16 01:27:00 -0700152 if (size > bytecount)
Bodo Stroesser858259c2005-11-07 00:58:55 -0800153 size = bytecount;
Jeff Dikeba180fd2007-10-16 01:27:00 -0700154 if (copy_to_user(ptr, ldt->u.entries, size))
Bodo Stroesser858259c2005-11-07 00:58:55 -0800155 err = -EFAULT;
156 bytecount -= size;
157 ptr += size;
158 }
159 else {
Jeff Dikeba180fd2007-10-16 01:27:00 -0700160 for (i=0; i<ldt->entry_count/LDT_ENTRIES_PER_PAGE && bytecount;
161 i++) {
Bodo Stroesser858259c2005-11-07 00:58:55 -0800162 size = PAGE_SIZE;
Jeff Dikeba180fd2007-10-16 01:27:00 -0700163 if (size > bytecount)
Bodo Stroesser858259c2005-11-07 00:58:55 -0800164 size = bytecount;
Jeff Dikeba180fd2007-10-16 01:27:00 -0700165 if (copy_to_user(ptr, ldt->u.pages[i], size)) {
Bodo Stroesser858259c2005-11-07 00:58:55 -0800166 err = -EFAULT;
167 break;
168 }
169 bytecount -= size;
170 ptr += size;
171 }
172 }
173 up(&ldt->semaphore);
174
Jeff Dikeba180fd2007-10-16 01:27:00 -0700175 if (bytecount == 0 || err == -EFAULT)
Bodo Stroesser858259c2005-11-07 00:58:55 -0800176 goto out;
177
Jeff Dikeba180fd2007-10-16 01:27:00 -0700178 if (clear_user(ptr, bytecount))
Bodo Stroesser858259c2005-11-07 00:58:55 -0800179 err = -EFAULT;
180
181out:
182 return err;
183}
184
185static int read_default_ldt(void __user * ptr, unsigned long bytecount)
186{
187 int err;
188
Jeff Dikeba180fd2007-10-16 01:27:00 -0700189 if (bytecount > 5*LDT_ENTRY_SIZE)
Bodo Stroesser858259c2005-11-07 00:58:55 -0800190 bytecount = 5*LDT_ENTRY_SIZE;
191
192 err = bytecount;
Jeff Dikeba180fd2007-10-16 01:27:00 -0700193 /*
194 * UML doesn't support lcall7 and lcall27.
Bodo Stroesser858259c2005-11-07 00:58:55 -0800195 * So, we don't really have a default ldt, but emulate
196 * an empty ldt of common host default ldt size.
197 */
Jeff Dikeba180fd2007-10-16 01:27:00 -0700198 if (clear_user(ptr, bytecount))
Bodo Stroesser858259c2005-11-07 00:58:55 -0800199 err = -EFAULT;
200
201 return err;
202}
203
204static int write_ldt(void __user * ptr, unsigned long bytecount, int func)
205{
Jeff Dike6c738ff2007-10-16 01:27:06 -0700206 uml_ldt_t * ldt = &current->mm->context.ldt;
207 struct mm_id * mm_idp = &current->mm->context.id;
Bodo Stroesser858259c2005-11-07 00:58:55 -0800208 int i, err;
209 struct user_desc ldt_info;
210 struct ldt_entry entry0, *ldt_p;
211 void *addr = NULL;
212
213 err = -EINVAL;
Jeff Dikeba180fd2007-10-16 01:27:00 -0700214 if (bytecount != sizeof(ldt_info))
Bodo Stroesser858259c2005-11-07 00:58:55 -0800215 goto out;
216 err = -EFAULT;
Jeff Dikeba180fd2007-10-16 01:27:00 -0700217 if (copy_from_user(&ldt_info, ptr, sizeof(ldt_info)))
Bodo Stroesser858259c2005-11-07 00:58:55 -0800218 goto out;
219
220 err = -EINVAL;
Jeff Dikeba180fd2007-10-16 01:27:00 -0700221 if (ldt_info.entry_number >= LDT_ENTRIES)
Bodo Stroesser858259c2005-11-07 00:58:55 -0800222 goto out;
Jeff Dikeba180fd2007-10-16 01:27:00 -0700223 if (ldt_info.contents == 3) {
Bodo Stroesser858259c2005-11-07 00:58:55 -0800224 if (func == 1)
225 goto out;
226 if (ldt_info.seg_not_present == 0)
227 goto out;
228 }
229
Jeff Dikeba180fd2007-10-16 01:27:00 -0700230 if (!ptrace_ldt)
231 down(&ldt->semaphore);
Bodo Stroesser858259c2005-11-07 00:58:55 -0800232
233 err = write_ldt_entry(mm_idp, func, &ldt_info, &addr, 1);
Jeff Dikeba180fd2007-10-16 01:27:00 -0700234 if (err)
Bodo Stroesser858259c2005-11-07 00:58:55 -0800235 goto out_unlock;
Jeff Dikeba180fd2007-10-16 01:27:00 -0700236 else if (ptrace_ldt) {
237 /* With PTRACE_LDT available, this is used as a flag only */
238 ldt->entry_count = 1;
239 goto out;
240 }
Bodo Stroesser858259c2005-11-07 00:58:55 -0800241
Jeff Dikeba180fd2007-10-16 01:27:00 -0700242 if (ldt_info.entry_number >= ldt->entry_count &&
243 ldt_info.entry_number >= LDT_DIRECT_ENTRIES) {
244 for (i=ldt->entry_count/LDT_ENTRIES_PER_PAGE;
245 i*LDT_ENTRIES_PER_PAGE <= ldt_info.entry_number;
246 i++) {
247 if (i == 0)
Jeff Dikee23181d2005-11-21 21:32:08 -0800248 memcpy(&entry0, ldt->u.entries,
249 sizeof(entry0));
250 ldt->u.pages[i] = (struct ldt_entry *)
251 __get_free_page(GFP_KERNEL|__GFP_ZERO);
Jeff Dikeba180fd2007-10-16 01:27:00 -0700252 if (!ldt->u.pages[i]) {
Bodo Stroesser858259c2005-11-07 00:58:55 -0800253 err = -ENOMEM;
254 /* Undo the change in host */
255 memset(&ldt_info, 0, sizeof(ldt_info));
256 write_ldt_entry(mm_idp, 1, &ldt_info, &addr, 1);
257 goto out_unlock;
258 }
Jeff Dikeba180fd2007-10-16 01:27:00 -0700259 if (i == 0) {
Jeff Dikee23181d2005-11-21 21:32:08 -0800260 memcpy(ldt->u.pages[0], &entry0,
261 sizeof(entry0));
262 memcpy(ldt->u.pages[0]+1, ldt->u.entries+1,
Bodo Stroesser858259c2005-11-07 00:58:55 -0800263 sizeof(entry0)*(LDT_DIRECT_ENTRIES-1));
264 }
265 ldt->entry_count = (i + 1) * LDT_ENTRIES_PER_PAGE;
266 }
267 }
Jeff Dikeba180fd2007-10-16 01:27:00 -0700268 if (ldt->entry_count <= ldt_info.entry_number)
Bodo Stroesser858259c2005-11-07 00:58:55 -0800269 ldt->entry_count = ldt_info.entry_number + 1;
270
Jeff Dikeba180fd2007-10-16 01:27:00 -0700271 if (ldt->entry_count <= LDT_DIRECT_ENTRIES)
Jeff Dikee23181d2005-11-21 21:32:08 -0800272 ldt_p = ldt->u.entries + ldt_info.entry_number;
Bodo Stroesser858259c2005-11-07 00:58:55 -0800273 else
Jeff Dikee23181d2005-11-21 21:32:08 -0800274 ldt_p = ldt->u.pages[ldt_info.entry_number/LDT_ENTRIES_PER_PAGE] +
Bodo Stroesser858259c2005-11-07 00:58:55 -0800275 ldt_info.entry_number%LDT_ENTRIES_PER_PAGE;
276
Jeff Dikeba180fd2007-10-16 01:27:00 -0700277 if (ldt_info.base_addr == 0 && ldt_info.limit == 0 &&
278 (func == 1 || LDT_empty(&ldt_info))) {
Bodo Stroesser858259c2005-11-07 00:58:55 -0800279 ldt_p->a = 0;
280 ldt_p->b = 0;
281 }
282 else{
283 if (func == 1)
284 ldt_info.useable = 0;
285 ldt_p->a = LDT_entry_a(&ldt_info);
286 ldt_p->b = LDT_entry_b(&ldt_info);
287 }
288 err = 0;
289
290out_unlock:
291 up(&ldt->semaphore);
292out:
293 return err;
294}
295
296static long do_modify_ldt_skas(int func, void __user *ptr,
297 unsigned long bytecount)
298{
299 int ret = -ENOSYS;
300
301 switch (func) {
302 case 0:
303 ret = read_ldt(ptr, bytecount);
304 break;
305 case 1:
306 case 0x11:
307 ret = write_ldt(ptr, bytecount, func);
308 break;
309 case 2:
310 ret = read_default_ldt(ptr, bytecount);
311 break;
312 }
313 return ret;
314}
315
Jeff Dikeaf727902007-02-28 20:13:06 -0800316static DEFINE_SPINLOCK(host_ldt_lock);
317static short dummy_list[9] = {0, -1};
318static short * host_ldt_entries = NULL;
Bodo Stroesser858259c2005-11-07 00:58:55 -0800319
Jeff Dikeaf727902007-02-28 20:13:06 -0800320static void ldt_get_host_info(void)
Bodo Stroesser858259c2005-11-07 00:58:55 -0800321{
322 long ret;
Jeff Dike622e6962007-03-29 01:20:32 -0700323 struct ldt_entry * ldt;
324 short *tmp;
Bodo Stroesser858259c2005-11-07 00:58:55 -0800325 int i, size, k, order;
326
Jeff Dikeaf727902007-02-28 20:13:06 -0800327 spin_lock(&host_ldt_lock);
328
Jeff Dikeba180fd2007-10-16 01:27:00 -0700329 if (host_ldt_entries != NULL) {
Jeff Dikeaf727902007-02-28 20:13:06 -0800330 spin_unlock(&host_ldt_lock);
331 return;
332 }
Bodo Stroesser858259c2005-11-07 00:58:55 -0800333 host_ldt_entries = dummy_list+1;
334
Jeff Dikeaf727902007-02-28 20:13:06 -0800335 spin_unlock(&host_ldt_lock);
336
Jeff Dikeba180fd2007-10-16 01:27:00 -0700337 for (i = LDT_PAGES_MAX-1, order=0; i; i>>=1, order++)
338 ;
Bodo Stroesser858259c2005-11-07 00:58:55 -0800339
340 ldt = (struct ldt_entry *)
341 __get_free_pages(GFP_KERNEL|__GFP_ZERO, order);
Jeff Dikeba180fd2007-10-16 01:27:00 -0700342 if (ldt == NULL) {
343 printk(KERN_ERR "ldt_get_host_info: couldn't allocate buffer "
344 "for host ldt\n");
Bodo Stroesser858259c2005-11-07 00:58:55 -0800345 return;
346 }
347
348 ret = modify_ldt(0, ldt, (1<<order)*PAGE_SIZE);
Jeff Dikeba180fd2007-10-16 01:27:00 -0700349 if (ret < 0) {
350 printk(KERN_ERR "ldt_get_host_info: couldn't read host ldt\n");
Bodo Stroesser858259c2005-11-07 00:58:55 -0800351 goto out_free;
352 }
Jeff Dikeba180fd2007-10-16 01:27:00 -0700353 if (ret == 0) {
Bodo Stroesser858259c2005-11-07 00:58:55 -0800354 /* default_ldt is active, simply write an empty entry 0 */
355 host_ldt_entries = dummy_list;
356 goto out_free;
357 }
358
Jeff Dikeba180fd2007-10-16 01:27:00 -0700359 for (i=0, size=0; i<ret/LDT_ENTRY_SIZE; i++) {
360 if (ldt[i].a != 0 || ldt[i].b != 0)
Bodo Stroesser858259c2005-11-07 00:58:55 -0800361 size++;
362 }
363
Jeff Dikeba180fd2007-10-16 01:27:00 -0700364 if (size < ARRAY_SIZE(dummy_list))
Bodo Stroesser858259c2005-11-07 00:58:55 -0800365 host_ldt_entries = dummy_list;
Bodo Stroesser858259c2005-11-07 00:58:55 -0800366 else {
367 size = (size + 1) * sizeof(dummy_list[0]);
Jeff Dikeaf727902007-02-28 20:13:06 -0800368 tmp = kmalloc(size, GFP_KERNEL);
Jeff Dikeba180fd2007-10-16 01:27:00 -0700369 if (tmp == NULL) {
370 printk(KERN_ERR "ldt_get_host_info: couldn't allocate "
371 "host ldt list\n");
Bodo Stroesser858259c2005-11-07 00:58:55 -0800372 goto out_free;
373 }
Jeff Dikeaf727902007-02-28 20:13:06 -0800374 host_ldt_entries = tmp;
Bodo Stroesser858259c2005-11-07 00:58:55 -0800375 }
376
Jeff Dikeba180fd2007-10-16 01:27:00 -0700377 for (i=0, k=0; i<ret/LDT_ENTRY_SIZE; i++) {
378 if (ldt[i].a != 0 || ldt[i].b != 0)
Bodo Stroesser858259c2005-11-07 00:58:55 -0800379 host_ldt_entries[k++] = i;
Bodo Stroesser858259c2005-11-07 00:58:55 -0800380 }
381 host_ldt_entries[k] = -1;
382
383out_free:
384 free_pages((unsigned long)ldt, order);
385}
386
Jeff Dike6c738ff2007-10-16 01:27:06 -0700387long init_new_ldt(struct mm_context *new_mm, struct mm_context *from_mm)
Bodo Stroesser858259c2005-11-07 00:58:55 -0800388{
389 struct user_desc desc;
390 short * num_p;
391 int i;
392 long page, err=0;
393 void *addr = NULL;
Bodo Stroesser12919aa2006-01-18 17:42:39 -0800394 struct proc_mm_op copy;
Bodo Stroesser858259c2005-11-07 00:58:55 -0800395
Bodo Stroesser858259c2005-11-07 00:58:55 -0800396
Jeff Dikeba180fd2007-10-16 01:27:00 -0700397 if (!ptrace_ldt)
Bodo Stroesser858259c2005-11-07 00:58:55 -0800398 init_MUTEX(&new_mm->ldt.semaphore);
399
Jeff Dikeba180fd2007-10-16 01:27:00 -0700400 if (!from_mm) {
Bodo Stroesser12919aa2006-01-18 17:42:39 -0800401 memset(&desc, 0, sizeof(desc));
Bodo Stroesser858259c2005-11-07 00:58:55 -0800402 /*
403 * We have to initialize a clean ldt.
404 */
Jeff Dikeba180fd2007-10-16 01:27:00 -0700405 if (proc_mm) {
Bodo Stroesser858259c2005-11-07 00:58:55 -0800406 /*
407 * If the new mm was created using proc_mm, host's
408 * default-ldt currently is assigned, which normally
409 * contains the call-gates for lcall7 and lcall27.
410 * To remove these gates, we simply write an empty
411 * entry as number 0 to the host.
412 */
Jeff Dikeba180fd2007-10-16 01:27:00 -0700413 err = write_ldt_entry(&new_mm->id, 1, &desc, &addr, 1);
Bodo Stroesser858259c2005-11-07 00:58:55 -0800414 }
415 else{
416 /*
417 * Now we try to retrieve info about the ldt, we
418 * inherited from the host. All ldt-entries found
419 * will be reset in the following loop
420 */
Jeff Dikeaf727902007-02-28 20:13:06 -0800421 ldt_get_host_info();
Jeff Dikeba180fd2007-10-16 01:27:00 -0700422 for (num_p=host_ldt_entries; *num_p != -1; num_p++) {
Bodo Stroesser858259c2005-11-07 00:58:55 -0800423 desc.entry_number = *num_p;
424 err = write_ldt_entry(&new_mm->id, 1, &desc,
425 &addr, *(num_p + 1) == -1);
Jeff Dikeba180fd2007-10-16 01:27:00 -0700426 if (err)
Bodo Stroesser858259c2005-11-07 00:58:55 -0800427 break;
428 }
429 }
430 new_mm->ldt.entry_count = 0;
Bodo Stroesser12919aa2006-01-18 17:42:39 -0800431
432 goto out;
Bodo Stroesser858259c2005-11-07 00:58:55 -0800433 }
Bodo Stroesser12919aa2006-01-18 17:42:39 -0800434
Jeff Dikeba180fd2007-10-16 01:27:00 -0700435 if (proc_mm) {
436 /*
437 * We have a valid from_mm, so we now have to copy the LDT of
Bodo Stroesser12919aa2006-01-18 17:42:39 -0800438 * from_mm to new_mm, because using proc_mm an new mm with
439 * an empty/default LDT was created in new_mm()
440 */
441 copy = ((struct proc_mm_op) { .op = MM_COPY_SEGMENTS,
442 .u =
443 { .copy_segments =
444 from_mm->id.u.mm_fd } } );
Jeff Dikea6ea4cc2007-05-06 14:51:43 -0700445 i = os_write_file(new_mm->id.u.mm_fd, &copy, sizeof(copy));
Jeff Dikeba180fd2007-10-16 01:27:00 -0700446 if (i != sizeof(copy))
447 printk(KERN_ERR "new_mm : /proc/mm copy_segments "
448 "failed, err = %d\n", -i);
Bodo Stroesser12919aa2006-01-18 17:42:39 -0800449 }
450
Jeff Dikeba180fd2007-10-16 01:27:00 -0700451 if (!ptrace_ldt) {
452 /*
453 * Our local LDT is used to supply the data for
Bodo Stroesser858259c2005-11-07 00:58:55 -0800454 * modify_ldt(READLDT), if PTRACE_LDT isn't available,
455 * i.e., we have to use the stub for modify_ldt, which
456 * can't handle the big read buffer of up to 64kB.
457 */
458 down(&from_mm->ldt.semaphore);
Jeff Dikeba180fd2007-10-16 01:27:00 -0700459 if (from_mm->ldt.entry_count <= LDT_DIRECT_ENTRIES)
Jeff Dikee23181d2005-11-21 21:32:08 -0800460 memcpy(new_mm->ldt.u.entries, from_mm->ldt.u.entries,
461 sizeof(new_mm->ldt.u.entries));
Jeff Dikeba180fd2007-10-16 01:27:00 -0700462 else {
Bodo Stroesser858259c2005-11-07 00:58:55 -0800463 i = from_mm->ldt.entry_count / LDT_ENTRIES_PER_PAGE;
Jeff Dikeba180fd2007-10-16 01:27:00 -0700464 while (i-->0) {
Bodo Stroesser858259c2005-11-07 00:58:55 -0800465 page = __get_free_page(GFP_KERNEL|__GFP_ZERO);
Jeff Dikeba180fd2007-10-16 01:27:00 -0700466 if (!page) {
Bodo Stroesser858259c2005-11-07 00:58:55 -0800467 err = -ENOMEM;
468 break;
469 }
Jeff Dikee23181d2005-11-21 21:32:08 -0800470 new_mm->ldt.u.pages[i] =
471 (struct ldt_entry *) page;
472 memcpy(new_mm->ldt.u.pages[i],
473 from_mm->ldt.u.pages[i], PAGE_SIZE);
Bodo Stroesser858259c2005-11-07 00:58:55 -0800474 }
475 }
476 new_mm->ldt.entry_count = from_mm->ldt.entry_count;
477 up(&from_mm->ldt.semaphore);
478 }
479
Bodo Stroesser12919aa2006-01-18 17:42:39 -0800480 out:
Bodo Stroesser858259c2005-11-07 00:58:55 -0800481 return err;
482}
483
484
Jeff Dike6c738ff2007-10-16 01:27:06 -0700485void free_ldt(struct mm_context *mm)
Bodo Stroesser858259c2005-11-07 00:58:55 -0800486{
487 int i;
488
Jeff Dikeba180fd2007-10-16 01:27:00 -0700489 if (!ptrace_ldt && mm->ldt.entry_count > LDT_DIRECT_ENTRIES) {
Bodo Stroesser858259c2005-11-07 00:58:55 -0800490 i = mm->ldt.entry_count / LDT_ENTRIES_PER_PAGE;
Jeff Dikeba180fd2007-10-16 01:27:00 -0700491 while (i-- > 0)
492 free_page((long) mm->ldt.u.pages[i]);
Bodo Stroesser858259c2005-11-07 00:58:55 -0800493 }
494 mm->ldt.entry_count = 0;
495}
Bodo Stroesser858259c2005-11-07 00:58:55 -0800496
497int sys_modify_ldt(int func, void __user *ptr, unsigned long bytecount)
498{
Jeff Dike6aa802c2007-10-16 01:26:56 -0700499 return do_modify_ldt_skas(func, ptr, bytecount);
Bodo Stroesser858259c2005-11-07 00:58:55 -0800500}