uml: delete unused code
[safe/jmp/linux-2.6] / arch / um / sys-i386 / bugs.c
1 /* 
2  * Copyright (C) 2002 Jeff Dike (jdike@karaya.com)
3  * Licensed under the GPL
4  */
5
6 #include <unistd.h>
7 #include <errno.h>
8 #include <string.h>
9 #include <sys/signal.h>
10 #include <asm/ldt.h>
11 #include "kern_util.h"
12 #include "user.h"
13 #include "sysdep/ptrace.h"
14 #include "task.h"
15 #include "os.h"
16 #include "user_util.h"
17
18 #define MAXTOKEN 64
19
20 /* Set during early boot */
21 int host_has_cmov = 1;
22 int host_has_xmm = 0;
23
24 static char token(int fd, char *buf, int len, char stop)
25 {
26         int n;
27         char *ptr, *end, c;
28
29         ptr = buf;
30         end = &buf[len];
31         do {
32                 n = os_read_file(fd, ptr, sizeof(*ptr));
33                 c = *ptr++;
34                 if(n != sizeof(*ptr)){
35                         if(n == 0) return(0);
36                         printk("Reading /proc/cpuinfo failed, err = %d\n", -n);
37                         if(n < 0)
38                                 return(n);
39                         else
40                                 return(-EIO);
41                 }
42         } while((c != '\n') && (c != stop) && (ptr < end));
43
44         if(ptr == end){
45                 printk("Failed to find '%c' in /proc/cpuinfo\n", stop);
46                 return(-1);
47         }
48         *(ptr - 1) = '\0';
49         return(c);
50 }
51
52 static int find_cpuinfo_line(int fd, char *key, char *scratch, int len)
53 {
54         int n;
55         char c;
56
57         scratch[len - 1] = '\0';
58         while(1){
59                 c = token(fd, scratch, len - 1, ':');
60                 if(c <= 0)
61                         return(0);
62                 else if(c != ':'){
63                         printk("Failed to find ':' in /proc/cpuinfo\n");
64                         return(0);
65                 }
66
67                 if(!strncmp(scratch, key, strlen(key)))
68                         return(1);
69
70                 do {
71                         n = os_read_file(fd, &c, sizeof(c));
72                         if(n != sizeof(c)){
73                                 printk("Failed to find newline in "
74                                        "/proc/cpuinfo, err = %d\n", -n);
75                                 return(0);
76                         }
77                 } while(c != '\n');
78         }
79         return(0);
80 }
81
82 static int check_cpu_flag(char *feature, int *have_it)
83 {
84         char buf[MAXTOKEN], c;
85         int fd, len = ARRAY_SIZE(buf);
86
87         printk("Checking for host processor %s support...", feature);
88         fd = os_open_file("/proc/cpuinfo", of_read(OPENFLAGS()), 0);
89         if(fd < 0){
90                 printk("Couldn't open /proc/cpuinfo, err = %d\n", -fd);
91                 return 0;
92         }
93
94         *have_it = 0;
95         if(!find_cpuinfo_line(fd, "flags", buf, ARRAY_SIZE(buf)))
96                 goto out;
97
98         c = token(fd, buf, len - 1, ' ');
99         if(c < 0) goto out;
100         else if(c != ' '){
101                 printk("Failed to find ' ' in /proc/cpuinfo\n");
102                 goto out;
103         }
104
105         while(1){
106                 c = token(fd, buf, len - 1, ' ');
107                 if(c < 0) goto out;
108                 else if(c == '\n') break;
109
110                 if(!strcmp(buf, feature)){
111                         *have_it = 1;
112                         goto out;
113                 }
114         }
115  out:
116         if(*have_it == 0) printk("No\n");
117         else if(*have_it == 1) printk("Yes\n");
118         os_close_file(fd);
119         return 1;
120 }
121
122 #if 0 /* This doesn't work in tt mode, plus it's causing compilation problems
123        * for some people.
124        */
125 static void disable_lcall(void)
126 {
127         struct modify_ldt_ldt_s ldt;
128         int err;
129
130         bzero(&ldt, sizeof(ldt));
131         ldt.entry_number = 7;
132         ldt.base_addr = 0;
133         ldt.limit = 0;
134         err = modify_ldt(1, &ldt, sizeof(ldt));
135         if(err)
136                 printk("Failed to disable lcall7 - errno = %d\n", errno);
137 }
138 #endif
139
140 void arch_init_thread(void)
141 {
142 #if 0
143         disable_lcall();
144 #endif
145 }
146
147 void arch_check_bugs(void)
148 {
149         int have_it;
150
151         if(os_access("/proc/cpuinfo", OS_ACC_R_OK) < 0){
152                 printk("/proc/cpuinfo not available - skipping CPU capability "
153                        "checks\n");
154                 return;
155         }
156         if(check_cpu_flag("cmov", &have_it))
157                 host_has_cmov = have_it;
158         if(check_cpu_flag("xmm", &have_it))
159                 host_has_xmm = have_it;
160 }
161
162 int arch_handle_signal(int sig, union uml_pt_regs *regs)
163 {
164         unsigned char tmp[2];
165
166         /* This is testing for a cmov (0x0f 0x4x) instruction causing a
167          * SIGILL in init.
168          */
169         if((sig != SIGILL) || (TASK_PID(get_current()) != 1)) return(0);
170
171         if (copy_from_user_proc(tmp, (void *) UPT_IP(regs), 2))
172                 panic("SIGILL in init, could not read instructions!\n");
173         if((tmp[0] != 0x0f) || ((tmp[1] & 0xf0) != 0x40))
174                 return(0);
175
176         if(host_has_cmov == 0)
177                 panic("SIGILL caused by cmov, which this processor doesn't "
178                       "implement, boot a filesystem compiled for older "
179                       "processors");
180         else if(host_has_cmov == 1)
181                 panic("SIGILL caused by cmov, which this processor claims to "
182                       "implement");
183         else if(host_has_cmov == -1)
184                 panic("SIGILL caused by cmov, couldn't tell if this processor "
185                       "implements it, boot a filesystem compiled for older "
186                       "processors");
187         else panic("Bad value for host_has_cmov (%d)", host_has_cmov);
188         return(0);
189 }
190
191 /*
192  * Overrides for Emacs so that we follow Linus's tabbing style.
193  * Emacs will notice this stuff at the end of the file and automatically
194  * adjust the settings for this buffer only.  This must remain at the end
195  * of the file.
196  * ---------------------------------------------------------------------------
197  * Local variables:
198  * c-file-style: "linux"
199  * End:
200  */