Mercurial > mplayer.hg
annotate loader/ldt_keeper.c @ 13524:3995d5cef8b3
compilation fix
idea by Erik Augustson <erik_27can at yahoo dot com> and Ivan Kalvachev
author | diego |
---|---|
date | Sat, 02 Oct 2004 00:38:17 +0000 |
parents | c9d84342971f |
children | 540903a59fc0 |
rev | line source |
---|---|
2067 | 1 /** |
2 * !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
3 * This file MUST be in main library because LDT must | |
4 * be modified before program creates first thread | |
5 * - avifile includes this file from C++ code | |
6 * and initializes it at the start of player! | |
7386 | 7 * it might sound like a hack and it really is - but |
8 * as aviplay is deconding video with more than just one | |
9 * thread currently it's necessary to do it this way | |
10 * this might change in the future | |
2067 | 11 */ |
12 | |
7386 | 13 /* applied some modification to make make our xine friend more happy */ |
2139 | 14 #include "ldt_keeper.h" |
15 | |
2067 | 16 #include <string.h> |
17 #include <stdlib.h> | |
18 #include <errno.h> | |
19 #include <fcntl.h> | |
20 #include <sys/mman.h> | |
21 #include <sys/types.h> | |
22 #include <stdio.h> | |
23 #include <unistd.h> | |
24 #ifdef __linux__ | |
25 #include <asm/unistd.h> | |
26 #include <asm/ldt.h> | |
8213 | 27 // 2.5.xx+ calls this user_desc: |
28 #include <linux/version.h> | |
29 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,47) | |
30 #define modify_ldt_ldt_s user_desc | |
31 #endif | |
7386 | 32 /* prototype it here, so we won't depend on kernel headers */ |
33 #ifdef __cplusplus | |
34 extern "C" { | |
35 #endif | |
13351
698fe63084d3
declare modify_ldt with syscall3 macro for older glibcs patch by Mikulas Patocka <mikulas at artax.karlin.mff.cuni.cz>
faust3
parents:
10821
diff
changeset
|
36 /// declare modify_ldt with the _syscall3 macro for older glibcs |
13361 | 37 #if defined(__GLIBC__) && (__GLIBC__ < 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ == 0)) |
13351
698fe63084d3
declare modify_ldt with syscall3 macro for older glibcs patch by Mikulas Patocka <mikulas at artax.karlin.mff.cuni.cz>
faust3
parents:
10821
diff
changeset
|
38 _syscall3( int, modify_ldt, int, func, void *, ptr, unsigned long, bytecount ); |
698fe63084d3
declare modify_ldt with syscall3 macro for older glibcs patch by Mikulas Patocka <mikulas at artax.karlin.mff.cuni.cz>
faust3
parents:
10821
diff
changeset
|
39 #else |
7386 | 40 int modify_ldt(int func, void *ptr, unsigned long bytecount); |
13351
698fe63084d3
declare modify_ldt with syscall3 macro for older glibcs patch by Mikulas Patocka <mikulas at artax.karlin.mff.cuni.cz>
faust3
parents:
10821
diff
changeset
|
41 #endif |
7386 | 42 #ifdef __cplusplus |
43 } | |
44 #endif | |
2067 | 45 #else |
46 #if defined(__NetBSD__) || defined(__FreeBSD__) || defined(__OpenBSD__) | |
5872 | 47 #include <machine/segments.h> |
2067 | 48 #include <machine/sysarch.h> |
49 #endif | |
50 | |
51 #ifdef __svr4__ | |
52 #include <sys/segment.h> | |
53 #include <sys/sysi86.h> | |
54 | |
55 /* solaris x86: add missing prototype for sysi86() */ | |
56 #ifdef __cplusplus | |
57 extern "C" { | |
58 #endif | |
7386 | 59 int sysi86(int, void*); |
2067 | 60 #ifdef __cplusplus |
61 } | |
62 #endif | |
63 | |
2139 | 64 #ifndef NUMSYSLDTS /* SunOS 2.5.1 does not define NUMSYSLDTS */ |
65 #define NUMSYSLDTS 6 /* Let's hope the SunOS 5.8 value is OK */ | |
2067 | 66 #endif |
67 | |
68 #define TEB_SEL_IDX NUMSYSLDTS | |
69 #endif | |
70 | |
71 #define LDT_ENTRIES 8192 | |
72 #define LDT_ENTRY_SIZE 8 | |
73 #pragma pack(4) | |
74 struct modify_ldt_ldt_s { | |
75 unsigned int entry_number; | |
76 unsigned long base_addr; | |
77 unsigned int limit; | |
78 unsigned int seg_32bit:1; | |
79 unsigned int contents:2; | |
80 unsigned int read_exec_only:1; | |
81 unsigned int limit_in_pages:1; | |
82 unsigned int seg_not_present:1; | |
83 unsigned int useable:1; | |
84 }; | |
85 | |
86 #define MODIFY_LDT_CONTENTS_DATA 0 | |
87 #define MODIFY_LDT_CONTENTS_STACK 1 | |
88 #define MODIFY_LDT_CONTENTS_CODE 2 | |
89 #endif | |
90 | |
91 | |
92 /* user level (privilege level: 3) ldt (1<<2) segment selector */ | |
93 #define LDT_SEL(idx) ((idx) << 3 | 1 << 2 | 3) | |
94 | |
7386 | 95 /* i got this value from wine sources, it's the first free LDT entry */ |
10821
e9e5dca4af9e
FreeBSD 5.0 (libkse/libthr) support by Dan Eischen <eischen@vigrid.com>
alex
parents:
8223
diff
changeset
|
96 #if defined(__FreeBSD__) && defined(LDT_AUTO_ALLOC) |
e9e5dca4af9e
FreeBSD 5.0 (libkse/libthr) support by Dan Eischen <eischen@vigrid.com>
alex
parents:
8223
diff
changeset
|
97 #define TEB_SEL_IDX LDT_AUTO_ALLOC |
e9e5dca4af9e
FreeBSD 5.0 (libkse/libthr) support by Dan Eischen <eischen@vigrid.com>
alex
parents:
8223
diff
changeset
|
98 #endif |
e9e5dca4af9e
FreeBSD 5.0 (libkse/libthr) support by Dan Eischen <eischen@vigrid.com>
alex
parents:
8223
diff
changeset
|
99 |
2067 | 100 #ifndef TEB_SEL_IDX |
7386 | 101 #define TEB_SEL_IDX 17 |
2067 | 102 #endif |
7386 | 103 |
10821
e9e5dca4af9e
FreeBSD 5.0 (libkse/libthr) support by Dan Eischen <eischen@vigrid.com>
alex
parents:
8223
diff
changeset
|
104 static unsigned int fs_ldt = TEB_SEL_IDX; |
e9e5dca4af9e
FreeBSD 5.0 (libkse/libthr) support by Dan Eischen <eischen@vigrid.com>
alex
parents:
8223
diff
changeset
|
105 |
2067 | 106 |
107 /** | |
108 * here is a small logical problem with Restore for multithreaded programs - | |
109 * in C++ we use static class for this... | |
110 */ | |
111 | |
112 #ifdef __cplusplus | |
113 extern "C" | |
114 #endif | |
115 void Setup_FS_Segment(void) | |
116 { | |
10821
e9e5dca4af9e
FreeBSD 5.0 (libkse/libthr) support by Dan Eischen <eischen@vigrid.com>
alex
parents:
8223
diff
changeset
|
117 unsigned int ldt_desc = LDT_SEL(fs_ldt); |
e9e5dca4af9e
FreeBSD 5.0 (libkse/libthr) support by Dan Eischen <eischen@vigrid.com>
alex
parents:
8223
diff
changeset
|
118 |
2067 | 119 __asm__ __volatile__( |
10821
e9e5dca4af9e
FreeBSD 5.0 (libkse/libthr) support by Dan Eischen <eischen@vigrid.com>
alex
parents:
8223
diff
changeset
|
120 "movl %0,%%eax; movw %%ax, %%fs" : : "r" (ldt_desc) |
2067 | 121 ); |
122 } | |
123 | |
7386 | 124 /* we don't need this - use modify_ldt instead */ |
125 #if 0 | |
2067 | 126 #ifdef __linux__ |
127 /* XXX: why is this routine from libc redefined here? */ | |
128 /* NOTE: the redefined version ignores the count param, count is hardcoded as 16 */ | |
129 static int LDT_Modify( int func, struct modify_ldt_ldt_s *ptr, | |
130 unsigned long count ) | |
131 { | |
132 int res; | |
133 #ifdef __PIC__ | |
134 __asm__ __volatile__( "pushl %%ebx\n\t" | |
135 "movl %2,%%ebx\n\t" | |
136 "int $0x80\n\t" | |
137 "popl %%ebx" | |
138 : "=a" (res) | |
139 : "0" (__NR_modify_ldt), | |
140 "r" (func), | |
141 "c" (ptr), | |
142 "d"(16)//sizeof(*ptr) from kernel point of view | |
143 :"esi" ); | |
144 #else | |
145 __asm__ __volatile__("int $0x80" | |
146 : "=a" (res) | |
147 : "0" (__NR_modify_ldt), | |
148 "b" (func), | |
149 "c" (ptr), | |
150 "d"(16) | |
151 :"esi"); | |
152 #endif /* __PIC__ */ | |
153 if (res >= 0) return res; | |
154 errno = -res; | |
155 return -1; | |
156 } | |
157 #endif | |
7386 | 158 #endif |
2067 | 159 |
160 #if defined(__NetBSD__) || defined(__FreeBSD__) || defined(__OpenBSD__) | |
161 static void LDT_EntryToBytes( unsigned long *buffer, const struct modify_ldt_ldt_s *content ) | |
162 { | |
163 *buffer++ = ((content->base_addr & 0x0000ffff) << 16) | | |
164 (content->limit & 0x0ffff); | |
165 *buffer = (content->base_addr & 0xff000000) | | |
166 ((content->base_addr & 0x00ff0000)>>16) | | |
167 (content->limit & 0xf0000) | | |
168 (content->contents << 10) | | |
169 ((content->read_exec_only == 0) << 9) | | |
170 ((content->seg_32bit != 0) << 22) | | |
171 ((content->limit_in_pages != 0) << 23) | | |
172 0xf000; | |
173 } | |
174 #endif | |
175 | |
8223 | 176 void* fs_seg=0; |
7386 | 177 |
178 ldt_fs_t* Setup_LDT_Keeper(void) | |
2067 | 179 { |
180 struct modify_ldt_ldt_s array; | |
181 int ret; | |
7386 | 182 ldt_fs_t* ldt_fs = (ldt_fs_t*) malloc(sizeof(ldt_fs_t)); |
2067 | 183 |
7386 | 184 if (!ldt_fs) |
185 return NULL; | |
2067 | 186 |
7386 | 187 ldt_fs->fd = open("/dev/zero", O_RDWR); |
188 if(ldt_fs->fd<0){ | |
189 perror( "Cannot open /dev/zero for READ+WRITE. Check permissions! error: "); | |
190 return NULL; | |
3775 | 191 } |
8223 | 192 fs_seg= |
7386 | 193 ldt_fs->fs_seg = mmap(NULL, getpagesize(), PROT_READ | PROT_WRITE, MAP_PRIVATE, |
194 ldt_fs->fd, 0); | |
195 if (ldt_fs->fs_seg == (void*)-1) | |
2067 | 196 { |
197 perror("ERROR: Couldn't allocate memory for fs segment"); | |
7386 | 198 close(ldt_fs->fd); |
199 free(ldt_fs); | |
200 return NULL; | |
2067 | 201 } |
7386 | 202 *(void**)((char*)ldt_fs->fs_seg+0x18) = ldt_fs->fs_seg; |
203 array.base_addr=(int)ldt_fs->fs_seg; | |
2067 | 204 array.entry_number=TEB_SEL_IDX; |
205 array.limit=array.base_addr+getpagesize()-1; | |
206 array.seg_32bit=1; | |
207 array.read_exec_only=0; | |
208 array.seg_not_present=0; | |
209 array.contents=MODIFY_LDT_CONTENTS_DATA; | |
210 array.limit_in_pages=0; | |
211 #ifdef __linux__ | |
7386 | 212 //ret=LDT_Modify(0x1, &array, sizeof(struct modify_ldt_ldt_s)); |
213 ret=modify_ldt(0x1, &array, sizeof(struct modify_ldt_ldt_s)); | |
2067 | 214 if(ret<0) |
215 { | |
216 perror("install_fs"); | |
217 printf("Couldn't install fs segment, expect segfault\n"); | |
218 } | |
219 #endif /*linux*/ | |
220 | |
221 #if defined(__NetBSD__) || defined(__FreeBSD__) || defined(__OpenBSD__) | |
222 { | |
223 unsigned long d[2]; | |
224 | |
225 LDT_EntryToBytes( d, &array ); | |
10821
e9e5dca4af9e
FreeBSD 5.0 (libkse/libthr) support by Dan Eischen <eischen@vigrid.com>
alex
parents:
8223
diff
changeset
|
226 #if defined(__FreeBSD__) && defined(LDT_AUTO_ALLOC) |
e9e5dca4af9e
FreeBSD 5.0 (libkse/libthr) support by Dan Eischen <eischen@vigrid.com>
alex
parents:
8223
diff
changeset
|
227 ret = i386_set_ldt(LDT_AUTO_ALLOC, (union descriptor *)d, 1); |
e9e5dca4af9e
FreeBSD 5.0 (libkse/libthr) support by Dan Eischen <eischen@vigrid.com>
alex
parents:
8223
diff
changeset
|
228 array.entry_number = ret; |
e9e5dca4af9e
FreeBSD 5.0 (libkse/libthr) support by Dan Eischen <eischen@vigrid.com>
alex
parents:
8223
diff
changeset
|
229 fs_ldt = ret; |
e9e5dca4af9e
FreeBSD 5.0 (libkse/libthr) support by Dan Eischen <eischen@vigrid.com>
alex
parents:
8223
diff
changeset
|
230 #else |
2067 | 231 ret = i386_set_ldt(array.entry_number, (union descriptor *)d, 1); |
10821
e9e5dca4af9e
FreeBSD 5.0 (libkse/libthr) support by Dan Eischen <eischen@vigrid.com>
alex
parents:
8223
diff
changeset
|
232 #endif |
2067 | 233 if (ret < 0) |
234 { | |
235 perror("install_fs"); | |
236 printf("Couldn't install fs segment, expect segfault\n"); | |
237 printf("Did you reconfigure the kernel with \"options USER_LDT\"?\n"); | |
238 } | |
239 } | |
240 #endif /* __NetBSD__ || __FreeBSD__ || __OpenBSD__ */ | |
241 | |
242 #if defined(__svr4__) | |
2070
c1edbb8bfc0c
(solaris x86) C++ style variable declaration not at the start of a block does
jkeil
parents:
2069
diff
changeset
|
243 { |
2139 | 244 struct ssd ssd; |
10821
e9e5dca4af9e
FreeBSD 5.0 (libkse/libthr) support by Dan Eischen <eischen@vigrid.com>
alex
parents:
8223
diff
changeset
|
245 ssd.sel = LDT_SEL(TEB_SEL_IDX); |
2139 | 246 ssd.bo = array.base_addr; |
247 ssd.ls = array.limit - array.base_addr; | |
248 ssd.acc1 = ((array.read_exec_only == 0) << 1) | | |
249 (array.contents << 2) | | |
250 0xf0; /* P(resent) | DPL3 | S */ | |
251 ssd.acc2 = 0x4; /* byte limit, 32-bit segment */ | |
252 if (sysi86(SI86DSCR, &ssd) < 0) { | |
253 perror("sysi86(SI86DSCR)"); | |
254 printf("Couldn't install fs segment, expect segfault\n"); | |
255 } | |
2070
c1edbb8bfc0c
(solaris x86) C++ style variable declaration not at the start of a block does
jkeil
parents:
2069
diff
changeset
|
256 } |
2067 | 257 #endif |
258 | |
259 Setup_FS_Segment(); | |
260 | |
7386 | 261 ldt_fs->prev_struct = (char*)malloc(sizeof(char) * 8); |
262 *(void**)array.base_addr = ldt_fs->prev_struct; | |
263 | |
264 return ldt_fs; | |
2067 | 265 } |
266 | |
7386 | 267 void Restore_LDT_Keeper(ldt_fs_t* ldt_fs) |
2067 | 268 { |
7386 | 269 if (ldt_fs == NULL || ldt_fs->fs_seg == 0) |
2067 | 270 return; |
7386 | 271 if (ldt_fs->prev_struct) |
272 free(ldt_fs->prev_struct); | |
273 munmap((char*)ldt_fs->fs_seg, getpagesize()); | |
274 ldt_fs->fs_seg = 0; | |
275 close(ldt_fs->fd); | |
276 free(ldt_fs); | |
2067 | 277 } |