2 * Copyright (C) 2005 Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
3 * Licensed under the GPL
6 #include "linux/percpu.h"
7 #include "linux/sched.h"
8 #include "asm/uaccess.h"
11 #include "sysdep/tls.h"
14 * If needed we can detect when it's uninitialized.
16 * These are initialized in an initcall and unchanged thereafter.
18 static int host_supports_tls
= -1;
19 int host_gdt_entry_tls_min
;
21 int do_set_thread_area(struct user_desc
*info
)
27 ret
= os_set_thread_area(info
, userspace_pid
[cpu
]);
31 printk(KERN_ERR
"PTRACE_SET_THREAD_AREA failed, err = %d, "
32 "index = %d\n", ret
, info
->entry_number
);
37 int do_get_thread_area(struct user_desc
*info
)
43 ret
= os_get_thread_area(info
, userspace_pid
[cpu
]);
47 printk(KERN_ERR
"PTRACE_GET_THREAD_AREA failed, err = %d, "
48 "index = %d\n", ret
, info
->entry_number
);
54 * sys_get_thread_area: get a yet unused TLS descriptor index.
55 * XXX: Consider leaving one free slot for glibc usage at first place. This must
56 * be done here (and by changing GDT_ENTRY_TLS_* macros) and nowhere else.
58 * Also, this must be tested when compiling in SKAS mode with dynamic linking
59 * and running against NPTL.
61 static int get_free_idx(struct task_struct
* task
)
63 struct thread_struct
*t
= &task
->thread
;
66 if (!t
->arch
.tls_array
)
67 return GDT_ENTRY_TLS_MIN
;
69 for (idx
= 0; idx
< GDT_ENTRY_TLS_ENTRIES
; idx
++)
70 if (!t
->arch
.tls_array
[idx
].present
)
71 return idx
+ GDT_ENTRY_TLS_MIN
;
75 static inline void clear_user_desc(struct user_desc
* info
)
77 /* Postcondition: LDT_empty(info) returns true. */
78 memset(info
, 0, sizeof(*info
));
81 * Check the LDT_empty or the i386 sys_get_thread_area code - we obtain
82 * indeed an empty user_desc.
84 info
->read_exec_only
= 1;
85 info
->seg_not_present
= 1;
90 static int load_TLS(int flags
, struct task_struct
*to
)
95 for (idx
= GDT_ENTRY_TLS_MIN
; idx
< GDT_ENTRY_TLS_MAX
; idx
++) {
96 struct uml_tls_struct
* curr
=
97 &to
->thread
.arch
.tls_array
[idx
- GDT_ENTRY_TLS_MIN
];
100 * Actually, now if it wasn't flushed it gets cleared and
101 * flushed to the host, which will clear it.
103 if (!curr
->present
) {
104 if (!curr
->flushed
) {
105 clear_user_desc(&curr
->tls
);
106 curr
->tls
.entry_number
= idx
;
108 WARN_ON(!LDT_empty(&curr
->tls
));
113 if (!(flags
& O_FORCE
) && curr
->flushed
)
116 ret
= do_set_thread_area(&curr
->tls
);
127 * Verify if we need to do a flush for the new process, i.e. if there are any
128 * present desc's, only if they haven't been flushed.
130 static inline int needs_TLS_update(struct task_struct
*task
)
135 for (i
= GDT_ENTRY_TLS_MIN
; i
< GDT_ENTRY_TLS_MAX
; i
++) {
136 struct uml_tls_struct
* curr
=
137 &task
->thread
.arch
.tls_array
[i
- GDT_ENTRY_TLS_MIN
];
140 * Can't test curr->present, we may need to clear a descriptor
152 * On a newly forked process, the TLS descriptors haven't yet been flushed. So
153 * we mark them as such and the first switch_to will do the job.
155 void clear_flushed_tls(struct task_struct
*task
)
159 for (i
= GDT_ENTRY_TLS_MIN
; i
< GDT_ENTRY_TLS_MAX
; i
++) {
160 struct uml_tls_struct
* curr
=
161 &task
->thread
.arch
.tls_array
[i
- GDT_ENTRY_TLS_MIN
];
164 * Still correct to do this, if it wasn't present on the host it
165 * will remain as flushed as it was.
175 * In SKAS0 mode, currently, multiple guest threads sharing the same ->mm have a
176 * common host process. So this is needed in SKAS0 too.
178 * However, if each thread had a different host process (and this was discussed
179 * for SMP support) this won't be needed.
181 * And this will not need be used when (and if) we'll add support to the host
185 int arch_switch_tls(struct task_struct
*to
)
187 if (!host_supports_tls
)
191 * We have no need whatsoever to switch TLS for kernel threads; beyond
192 * that, that would also result in us calling os_set_thread_area with
193 * userspace_pid[cpu] == 0, which gives an error.
196 return load_TLS(O_FORCE
, to
);
201 static int set_tls_entry(struct task_struct
* task
, struct user_desc
*info
,
202 int idx
, int flushed
)
204 struct thread_struct
*t
= &task
->thread
;
206 if (idx
< GDT_ENTRY_TLS_MIN
|| idx
> GDT_ENTRY_TLS_MAX
)
209 t
->arch
.tls_array
[idx
- GDT_ENTRY_TLS_MIN
].tls
= *info
;
210 t
->arch
.tls_array
[idx
- GDT_ENTRY_TLS_MIN
].present
= 1;
211 t
->arch
.tls_array
[idx
- GDT_ENTRY_TLS_MIN
].flushed
= flushed
;
216 int arch_copy_tls(struct task_struct
*new)
218 struct user_desc info
;
219 int idx
, ret
= -EFAULT
;
221 if (copy_from_user(&info
,
222 (void __user
*) UPT_ESI(&new->thread
.regs
.regs
),
227 if (LDT_empty(&info
))
230 idx
= info
.entry_number
;
232 ret
= set_tls_entry(new, &info
, idx
, 0);
237 /* XXX: use do_get_thread_area to read the host value? I'm not at all sure! */
238 static int get_tls_entry(struct task_struct
*task
, struct user_desc
*info
,
241 struct thread_struct
*t
= &task
->thread
;
243 if (!t
->arch
.tls_array
)
246 if (idx
< GDT_ENTRY_TLS_MIN
|| idx
> GDT_ENTRY_TLS_MAX
)
249 if (!t
->arch
.tls_array
[idx
- GDT_ENTRY_TLS_MIN
].present
)
252 *info
= t
->arch
.tls_array
[idx
- GDT_ENTRY_TLS_MIN
].tls
;
256 * Temporary debugging check, to make sure that things have been
257 * flushed. This could be triggered if load_TLS() failed.
259 if (unlikely(task
== current
&&
260 !t
->arch
.tls_array
[idx
- GDT_ENTRY_TLS_MIN
].flushed
)) {
261 printk(KERN_ERR
"get_tls_entry: task with pid %d got here "
262 "without flushed TLS.", current
->pid
);
268 * When the TLS entry has not been set, the values read to user in the
269 * tls_array are 0 (because it's cleared at boot, see
270 * arch/i386/kernel/head.S:cpu_gdt_table). Emulate that.
272 clear_user_desc(info
);
273 info
->entry_number
= idx
;
277 int sys_set_thread_area(struct user_desc __user
*user_desc
)
279 struct user_desc info
;
282 if (!host_supports_tls
)
285 if (copy_from_user(&info
, user_desc
, sizeof(info
)))
288 idx
= info
.entry_number
;
291 idx
= get_free_idx(current
);
294 info
.entry_number
= idx
;
295 /* Tell the user which slot we chose for him.*/
296 if (put_user(idx
, &user_desc
->entry_number
))
300 ret
= do_set_thread_area(&info
);
303 return set_tls_entry(current
, &info
, idx
, 1);
307 * Perform set_thread_area on behalf of the traced child.
308 * Note: error handling is not done on the deferred load, and this differ from
309 * i386. However the only possible error are caused by bugs.
311 int ptrace_set_thread_area(struct task_struct
*child
, int idx
,
312 struct user_desc __user
*user_desc
)
314 struct user_desc info
;
316 if (!host_supports_tls
)
319 if (copy_from_user(&info
, user_desc
, sizeof(info
)))
322 return set_tls_entry(child
, &info
, idx
, 0);
325 int sys_get_thread_area(struct user_desc __user
*user_desc
)
327 struct user_desc info
;
330 if (!host_supports_tls
)
333 if (get_user(idx
, &user_desc
->entry_number
))
336 ret
= get_tls_entry(current
, &info
, idx
);
340 if (copy_to_user(user_desc
, &info
, sizeof(info
)))
348 * Perform get_thread_area on behalf of the traced child.
350 int ptrace_get_thread_area(struct task_struct
*child
, int idx
,
351 struct user_desc __user
*user_desc
)
353 struct user_desc info
;
356 if (!host_supports_tls
)
359 ret
= get_tls_entry(child
, &info
, idx
);
363 if (copy_to_user(user_desc
, &info
, sizeof(info
)))
370 * This code is really i386-only, but it detects and logs x86_64 GDT indexes
371 * if a 32-bit UML is running on a 64-bit host.
373 static int __init
__setup_host_supports_tls(void)
375 check_host_supports_tls(&host_supports_tls
, &host_gdt_entry_tls_min
);
376 if (host_supports_tls
) {
377 printk(KERN_INFO
"Host TLS support detected\n");
378 printk(KERN_INFO
"Detected host type: ");
379 switch (host_gdt_entry_tls_min
) {
380 case GDT_ENTRY_TLS_MIN_I386
:
381 printk(KERN_CONT
"i386");
383 case GDT_ENTRY_TLS_MIN_X86_64
:
384 printk(KERN_CONT
"x86_64");
387 printk(KERN_CONT
" (GDT indexes %d to %d)\n",
388 host_gdt_entry_tls_min
,
389 host_gdt_entry_tls_min
+ GDT_ENTRY_TLS_ENTRIES
);
391 printk(KERN_ERR
" Host TLS support NOT detected! "
392 "TLS support inside UML will not work\n");
396 __initcall(__setup_host_supports_tls
);