2006-04-11 07:53:26 +02:00
|
|
|
#include <errno.h>
|
2006-03-31 12:30:25 +02:00
|
|
|
#include <linux/unistd.h>
|
2006-10-30 07:46:41 +01:00
|
|
|
|
2006-10-02 11:18:37 +02:00
|
|
|
#include <sys/syscall.h>
|
2006-10-30 07:46:41 +01:00
|
|
|
#include <unistd.h>
|
|
|
|
|
2006-03-31 12:30:25 +02:00
|
|
|
#include "sysdep/tls.h"
|
2007-05-06 23:51:09 +02:00
|
|
|
#include "user.h"
|
2006-03-31 12:30:25 +02:00
|
|
|
|
|
|
|
/* Checks whether host supports TLS, and sets *tls_min according to the value
|
|
|
|
* valid on the host.
|
|
|
|
* i386 host have it == 6; x86_64 host have it == 12, for i386 emulation. */
|
|
|
|
void check_host_supports_tls(int *supports_tls, int *tls_min) {
|
|
|
|
/* Values for x86 and x86_64.*/
|
|
|
|
int val[] = {GDT_ENTRY_TLS_MIN_I386, GDT_ENTRY_TLS_MIN_X86_64};
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(val); i++) {
|
|
|
|
user_desc_t info;
|
|
|
|
info.entry_number = val[i];
|
|
|
|
|
2006-10-02 11:18:37 +02:00
|
|
|
if (syscall(__NR_get_thread_area, &info) == 0) {
|
2006-03-31 12:30:25 +02:00
|
|
|
*tls_min = val[i];
|
|
|
|
*supports_tls = 1;
|
|
|
|
return;
|
|
|
|
} else {
|
|
|
|
if (errno == EINVAL)
|
|
|
|
continue;
|
|
|
|
else if (errno == ENOSYS)
|
|
|
|
*supports_tls = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*supports_tls = 0;
|
|
|
|
}
|