| 
									
										
										
										
											2006-04-10 22:53:26 -07:00
										 |  |  | #include <errno.h>
 | 
					
						
							| 
									
										
										
										
											2006-03-31 02:30:25 -08:00
										 |  |  | #include <linux/unistd.h>
 | 
					
						
							| 
									
										
										
										
											2006-10-29 22:46:41 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-02 02:18:37 -07:00
										 |  |  | #include <sys/syscall.h>
 | 
					
						
							| 
									
										
										
										
											2006-10-29 22:46:41 -08:00
										 |  |  | #include <unistd.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-03-31 02:30:25 -08:00
										 |  |  | #include "sysdep/tls.h"
 | 
					
						
							| 
									
										
										
										
											2007-05-06 14:51:09 -07:00
										 |  |  | #include "user.h"
 | 
					
						
							| 
									
										
										
										
											2006-03-31 02:30:25 -08: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 02:18:37 -07:00
										 |  |  | 		if (syscall(__NR_get_thread_area, &info) == 0) { | 
					
						
							| 
									
										
										
										
											2006-03-31 02:30:25 -08: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; | 
					
						
							|  |  |  | } |