Paolo 'Blaisorblade' Giarrusso | aa6758d | 2006-03-31 02:30:22 -0800 | [diff] [blame^] | 1 | #include <errno.h> |
| 2 | #include <sys/ptrace.h> |
| 3 | #include <asm/ldt.h> |
| 4 | #include "uml-config.h" |
| 5 | |
| 6 | /* TLS support - we basically rely on the host's one.*/ |
| 7 | |
| 8 | /* In TT mode, this should be called only by the tracing thread, and makes sense |
| 9 | * only for PTRACE_SET_THREAD_AREA. In SKAS mode, it's used normally. |
| 10 | * |
| 11 | */ |
| 12 | |
| 13 | #ifndef PTRACE_GET_THREAD_AREA |
| 14 | #define PTRACE_GET_THREAD_AREA 25 |
| 15 | #endif |
| 16 | |
| 17 | #ifndef PTRACE_SET_THREAD_AREA |
| 18 | #define PTRACE_SET_THREAD_AREA 26 |
| 19 | #endif |
| 20 | |
| 21 | int os_set_thread_area(void *data, int pid) |
| 22 | { |
| 23 | struct user_desc *info = data; |
| 24 | int ret; |
| 25 | |
| 26 | ret = ptrace(PTRACE_SET_THREAD_AREA, pid, info->entry_number, |
| 27 | (unsigned long) info); |
| 28 | if (ret < 0) |
| 29 | ret = -errno; |
| 30 | return ret; |
| 31 | } |
| 32 | |
| 33 | #ifdef UML_CONFIG_MODE_SKAS |
| 34 | |
| 35 | int os_get_thread_area(void *data, int pid) |
| 36 | { |
| 37 | struct user_desc *info = data; |
| 38 | int ret; |
| 39 | |
| 40 | ret = ptrace(PTRACE_GET_THREAD_AREA, pid, info->entry_number, |
| 41 | (unsigned long) info); |
| 42 | if (ret < 0) |
| 43 | ret = -errno; |
| 44 | return ret; |
| 45 | } |
| 46 | |
| 47 | #endif |
| 48 | |
| 49 | #ifdef UML_CONFIG_MODE_TT |
| 50 | #include "linux/unistd.h" |
| 51 | |
| 52 | _syscall1(int, get_thread_area, struct user_desc *, u_info); |
| 53 | _syscall1(int, set_thread_area, struct user_desc *, u_info); |
| 54 | |
| 55 | int do_set_thread_area_tt(struct user_desc *info) |
| 56 | { |
| 57 | int ret; |
| 58 | |
| 59 | ret = set_thread_area(info); |
| 60 | if (ret < 0) { |
| 61 | ret = -errno; |
| 62 | } |
| 63 | return ret; |
| 64 | } |
| 65 | |
| 66 | int do_get_thread_area_tt(struct user_desc *info) |
| 67 | { |
| 68 | int ret; |
| 69 | |
| 70 | ret = get_thread_area(info); |
| 71 | if (ret < 0) { |
| 72 | ret = -errno; |
| 73 | } |
| 74 | return ret; |
| 75 | } |
| 76 | |
| 77 | #endif /* UML_CONFIG_MODE_TT */ |