Mercurial > mplayer.hg
annotate loader/ldt_keeper.c @ 25939:5d7679358a53
r25770: URL updates for contributed win32 stuff.
r25771: VIDIX is no longer a shared library.
r25772: typo fix
author | voroshil |
---|---|
date | Sun, 10 Feb 2008 06:53:35 +0000 |
parents | b70f5ac9c001 |
children | d9b11d83367f |
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 */ |
15166
f5537cc95b02
Mark modified imported files as such to comply with GPL ¡ø2a.
diego
parents:
14537
diff
changeset
|
14 |
f5537cc95b02
Mark modified imported files as such to comply with GPL ¡ø2a.
diego
parents:
14537
diff
changeset
|
15 /* |
18783 | 16 * Modified for use with MPlayer, detailed changelog at |
17 * http://svn.mplayerhq.hu/mplayer/trunk/ | |
15166
f5537cc95b02
Mark modified imported files as such to comply with GPL ¡ø2a.
diego
parents:
14537
diff
changeset
|
18 */ |
f5537cc95b02
Mark modified imported files as such to comply with GPL ¡ø2a.
diego
parents:
14537
diff
changeset
|
19 |
2139 | 20 #include "ldt_keeper.h" |
21 | |
2067 | 22 #include <string.h> |
23 #include <stdlib.h> | |
24 #include <errno.h> | |
25 #include <fcntl.h> | |
26 #include <sys/mman.h> | |
27 #include <sys/types.h> | |
28 #include <stdio.h> | |
29 #include <unistd.h> | |
21187
d9cedf7b8069
added mmap_anon to osdep lib. Used in loader for now
nplourde
parents:
18878
diff
changeset
|
30 #include "osdep/mmap_anon.h" |
21290
efc774a1e5a4
fix compilation for win32 dll codec support for intel osx
nplourde
parents:
21248
diff
changeset
|
31 #include "mp_msg.h" |
efc774a1e5a4
fix compilation for win32 dll codec support for intel osx
nplourde
parents:
21248
diff
changeset
|
32 #include "help_mp.h" |
2067 | 33 #ifdef __linux__ |
34 #include <asm/unistd.h> | |
35 #include <asm/ldt.h> | |
8213 | 36 // 2.5.xx+ calls this user_desc: |
37 #include <linux/version.h> | |
38 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,47) | |
39 #define modify_ldt_ldt_s user_desc | |
40 #endif | |
7386 | 41 /* prototype it here, so we won't depend on kernel headers */ |
42 #ifdef __cplusplus | |
43 extern "C" { | |
44 #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
|
45 /// declare modify_ldt with the _syscall3 macro for older glibcs |
13361 | 46 #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
|
47 _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
|
48 #else |
7386 | 49 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
|
50 #endif |
7386 | 51 #ifdef __cplusplus |
52 } | |
53 #endif | |
2067 | 54 #else |
15566 | 55 #if defined(__NetBSD__) || defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__DragonFly__) |
5872 | 56 #include <machine/segments.h> |
2067 | 57 #include <machine/sysarch.h> |
58 #endif | |
59 | |
60 #ifdef __svr4__ | |
61 #include <sys/segment.h> | |
62 #include <sys/sysi86.h> | |
63 | |
22715
363c84953547
check that definition of prototype of sysi86(int, void*) doesn't conflict; fixed compilation in opensolaris
nicodvb
parents:
21290
diff
changeset
|
64 /* solaris x86: add missing prototype for sysi86(), but only when sysi86(int, void*) is known to be valid */ |
363c84953547
check that definition of prototype of sysi86(int, void*) doesn't conflict; fixed compilation in opensolaris
nicodvb
parents:
21290
diff
changeset
|
65 #ifdef HAVE_SYSI86_iv |
2067 | 66 #ifdef __cplusplus |
67 extern "C" { | |
68 #endif | |
7386 | 69 int sysi86(int, void*); |
2067 | 70 #ifdef __cplusplus |
71 } | |
72 #endif | |
18362
29b2221982b3
Add a check for sysi86() on Solaris systems, solving a build failure on Solaris
diego
parents:
17605
diff
changeset
|
73 #endif |
2067 | 74 |
2139 | 75 #ifndef NUMSYSLDTS /* SunOS 2.5.1 does not define NUMSYSLDTS */ |
76 #define NUMSYSLDTS 6 /* Let's hope the SunOS 5.8 value is OK */ | |
2067 | 77 #endif |
78 | |
79 #define TEB_SEL_IDX NUMSYSLDTS | |
80 #endif | |
81 | |
82 #define LDT_ENTRIES 8192 | |
83 #define LDT_ENTRY_SIZE 8 | |
84 #pragma pack(4) | |
85 struct modify_ldt_ldt_s { | |
86 unsigned int entry_number; | |
87 unsigned long base_addr; | |
88 unsigned int limit; | |
89 unsigned int seg_32bit:1; | |
90 unsigned int contents:2; | |
91 unsigned int read_exec_only:1; | |
92 unsigned int limit_in_pages:1; | |
93 unsigned int seg_not_present:1; | |
94 unsigned int useable:1; | |
95 }; | |
96 | |
97 #define MODIFY_LDT_CONTENTS_DATA 0 | |
98 #define MODIFY_LDT_CONTENTS_STACK 1 | |
99 #define MODIFY_LDT_CONTENTS_CODE 2 | |
100 #endif | |
101 | |
102 | |
103 /* user level (privilege level: 3) ldt (1<<2) segment selector */ | |
104 #define LDT_SEL(idx) ((idx) << 3 | 1 << 2 | 3) | |
105 | |
7386 | 106 /* i got this value from wine sources, it's the first free LDT entry */ |
21290
efc774a1e5a4
fix compilation for win32 dll codec support for intel osx
nplourde
parents:
21248
diff
changeset
|
107 #if (defined(__APPLE__) || defined(__FreeBSD__)) && defined(LDT_AUTO_ALLOC) |
10821
e9e5dca4af9e
FreeBSD 5.0 (libkse/libthr) support by Dan Eischen <eischen@vigrid.com>
alex
parents:
8223
diff
changeset
|
108 #define TEB_SEL_IDX LDT_AUTO_ALLOC |
21290
efc774a1e5a4
fix compilation for win32 dll codec support for intel osx
nplourde
parents:
21248
diff
changeset
|
109 #define USE_LDT_AA |
10821
e9e5dca4af9e
FreeBSD 5.0 (libkse/libthr) support by Dan Eischen <eischen@vigrid.com>
alex
parents:
8223
diff
changeset
|
110 #endif |
e9e5dca4af9e
FreeBSD 5.0 (libkse/libthr) support by Dan Eischen <eischen@vigrid.com>
alex
parents:
8223
diff
changeset
|
111 |
2067 | 112 #ifndef TEB_SEL_IDX |
7386 | 113 #define TEB_SEL_IDX 17 |
2067 | 114 #endif |
7386 | 115 |
10821
e9e5dca4af9e
FreeBSD 5.0 (libkse/libthr) support by Dan Eischen <eischen@vigrid.com>
alex
parents:
8223
diff
changeset
|
116 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
|
117 |
2067 | 118 |
119 /** | |
120 * here is a small logical problem with Restore for multithreaded programs - | |
121 * in C++ we use static class for this... | |
122 */ | |
123 | |
124 #ifdef __cplusplus | |
125 extern "C" | |
126 #endif | |
127 void Setup_FS_Segment(void) | |
128 { | |
10821
e9e5dca4af9e
FreeBSD 5.0 (libkse/libthr) support by Dan Eischen <eischen@vigrid.com>
alex
parents:
8223
diff
changeset
|
129 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
|
130 |
2067 | 131 __asm__ __volatile__( |
10821
e9e5dca4af9e
FreeBSD 5.0 (libkse/libthr) support by Dan Eischen <eischen@vigrid.com>
alex
parents:
8223
diff
changeset
|
132 "movl %0,%%eax; movw %%ax, %%fs" : : "r" (ldt_desc) |
14212
540903a59fc0
add missing registers in clobber list, fixes bug #169
reimar
parents:
13361
diff
changeset
|
133 :"eax" |
2067 | 134 ); |
135 } | |
136 | |
7386 | 137 /* we don't need this - use modify_ldt instead */ |
138 #if 0 | |
2067 | 139 #ifdef __linux__ |
140 /* XXX: why is this routine from libc redefined here? */ | |
141 /* NOTE: the redefined version ignores the count param, count is hardcoded as 16 */ | |
142 static int LDT_Modify( int func, struct modify_ldt_ldt_s *ptr, | |
143 unsigned long count ) | |
144 { | |
145 int res; | |
146 #ifdef __PIC__ | |
147 __asm__ __volatile__( "pushl %%ebx\n\t" | |
148 "movl %2,%%ebx\n\t" | |
149 "int $0x80\n\t" | |
150 "popl %%ebx" | |
151 : "=a" (res) | |
152 : "0" (__NR_modify_ldt), | |
153 "r" (func), | |
154 "c" (ptr), | |
155 "d"(16)//sizeof(*ptr) from kernel point of view | |
156 :"esi" ); | |
157 #else | |
158 __asm__ __volatile__("int $0x80" | |
159 : "=a" (res) | |
160 : "0" (__NR_modify_ldt), | |
161 "b" (func), | |
162 "c" (ptr), | |
163 "d"(16) | |
164 :"esi"); | |
165 #endif /* __PIC__ */ | |
166 if (res >= 0) return res; | |
167 errno = -res; | |
168 return -1; | |
169 } | |
170 #endif | |
7386 | 171 #endif |
2067 | 172 |
21290
efc774a1e5a4
fix compilation for win32 dll codec support for intel osx
nplourde
parents:
21248
diff
changeset
|
173 #if defined(__NetBSD__) || defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__DragonFly__) || defined(__APPLE__) |
2067 | 174 static void LDT_EntryToBytes( unsigned long *buffer, const struct modify_ldt_ldt_s *content ) |
175 { | |
176 *buffer++ = ((content->base_addr & 0x0000ffff) << 16) | | |
177 (content->limit & 0x0ffff); | |
178 *buffer = (content->base_addr & 0xff000000) | | |
179 ((content->base_addr & 0x00ff0000)>>16) | | |
180 (content->limit & 0xf0000) | | |
181 (content->contents << 10) | | |
182 ((content->read_exec_only == 0) << 9) | | |
183 ((content->seg_32bit != 0) << 22) | | |
184 ((content->limit_in_pages != 0) << 23) | | |
185 0xf000; | |
186 } | |
187 #endif | |
188 | |
8223 | 189 void* fs_seg=0; |
7386 | 190 |
191 ldt_fs_t* Setup_LDT_Keeper(void) | |
2067 | 192 { |
193 struct modify_ldt_ldt_s array; | |
194 int ret; | |
7386 | 195 ldt_fs_t* ldt_fs = (ldt_fs_t*) malloc(sizeof(ldt_fs_t)); |
2067 | 196 |
7386 | 197 if (!ldt_fs) |
198 return NULL; | |
2067 | 199 |
21290
efc774a1e5a4
fix compilation for win32 dll codec support for intel osx
nplourde
parents:
21248
diff
changeset
|
200 #ifdef __APPLE__ |
efc774a1e5a4
fix compilation for win32 dll codec support for intel osx
nplourde
parents:
21248
diff
changeset
|
201 if (getenv("DYLD_BIND_AT_LAUNCH") == NULL) |
efc774a1e5a4
fix compilation for win32 dll codec support for intel osx
nplourde
parents:
21248
diff
changeset
|
202 mp_msg(MSGT_LOADER, MSGL_WARN, MSGTR_LOADER_DYLD_Warning); |
efc774a1e5a4
fix compilation for win32 dll codec support for intel osx
nplourde
parents:
21248
diff
changeset
|
203 #endif /* __APPLE__ */ |
efc774a1e5a4
fix compilation for win32 dll codec support for intel osx
nplourde
parents:
21248
diff
changeset
|
204 |
8223 | 205 fs_seg= |
21248 | 206 ldt_fs->fs_seg = mmap_anon(NULL, getpagesize(), PROT_READ | PROT_WRITE, MAP_PRIVATE, 0); |
7386 | 207 if (ldt_fs->fs_seg == (void*)-1) |
2067 | 208 { |
209 perror("ERROR: Couldn't allocate memory for fs segment"); | |
7386 | 210 free(ldt_fs); |
211 return NULL; | |
2067 | 212 } |
7386 | 213 *(void**)((char*)ldt_fs->fs_seg+0x18) = ldt_fs->fs_seg; |
14537 | 214 memset(&array, 0, sizeof(array)); |
7386 | 215 array.base_addr=(int)ldt_fs->fs_seg; |
2067 | 216 array.entry_number=TEB_SEL_IDX; |
217 array.limit=array.base_addr+getpagesize()-1; | |
218 array.seg_32bit=1; | |
219 array.read_exec_only=0; | |
220 array.seg_not_present=0; | |
221 array.contents=MODIFY_LDT_CONTENTS_DATA; | |
222 array.limit_in_pages=0; | |
223 #ifdef __linux__ | |
7386 | 224 //ret=LDT_Modify(0x1, &array, sizeof(struct modify_ldt_ldt_s)); |
225 ret=modify_ldt(0x1, &array, sizeof(struct modify_ldt_ldt_s)); | |
2067 | 226 if(ret<0) |
227 { | |
228 perror("install_fs"); | |
229 printf("Couldn't install fs segment, expect segfault\n"); | |
230 } | |
231 #endif /*linux*/ | |
232 | |
21290
efc774a1e5a4
fix compilation for win32 dll codec support for intel osx
nplourde
parents:
21248
diff
changeset
|
233 #if defined(__NetBSD__) || defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__DragonFly__) || defined(__APPLE__) |
2067 | 234 { |
235 unsigned long d[2]; | |
236 | |
237 LDT_EntryToBytes( d, &array ); | |
21290
efc774a1e5a4
fix compilation for win32 dll codec support for intel osx
nplourde
parents:
21248
diff
changeset
|
238 #ifdef USE_LDT_AA |
10821
e9e5dca4af9e
FreeBSD 5.0 (libkse/libthr) support by Dan Eischen <eischen@vigrid.com>
alex
parents:
8223
diff
changeset
|
239 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
|
240 array.entry_number = ret; |
e9e5dca4af9e
FreeBSD 5.0 (libkse/libthr) support by Dan Eischen <eischen@vigrid.com>
alex
parents:
8223
diff
changeset
|
241 fs_ldt = ret; |
e9e5dca4af9e
FreeBSD 5.0 (libkse/libthr) support by Dan Eischen <eischen@vigrid.com>
alex
parents:
8223
diff
changeset
|
242 #else |
2067 | 243 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
|
244 #endif |
2067 | 245 if (ret < 0) |
246 { | |
247 perror("install_fs"); | |
248 printf("Couldn't install fs segment, expect segfault\n"); | |
249 printf("Did you reconfigure the kernel with \"options USER_LDT\"?\n"); | |
17605 | 250 #ifdef __OpenBSD__ |
251 printf("On newer OpenBSD systems did you set machdep.userldt to 1?\n"); | |
252 #endif | |
2067 | 253 } |
254 } | |
21290
efc774a1e5a4
fix compilation for win32 dll codec support for intel osx
nplourde
parents:
21248
diff
changeset
|
255 #endif /* __NetBSD__ || __FreeBSD__ || __OpenBSD__ || __DragonFly__ || __APPLE__ */ |
2067 | 256 |
257 #if defined(__svr4__) | |
2070
c1edbb8bfc0c
(solaris x86) C++ style variable declaration not at the start of a block does
jkeil
parents:
2069
diff
changeset
|
258 { |
2139 | 259 struct ssd ssd; |
10821
e9e5dca4af9e
FreeBSD 5.0 (libkse/libthr) support by Dan Eischen <eischen@vigrid.com>
alex
parents:
8223
diff
changeset
|
260 ssd.sel = LDT_SEL(TEB_SEL_IDX); |
2139 | 261 ssd.bo = array.base_addr; |
262 ssd.ls = array.limit - array.base_addr; | |
263 ssd.acc1 = ((array.read_exec_only == 0) << 1) | | |
264 (array.contents << 2) | | |
265 0xf0; /* P(resent) | DPL3 | S */ | |
266 ssd.acc2 = 0x4; /* byte limit, 32-bit segment */ | |
267 if (sysi86(SI86DSCR, &ssd) < 0) { | |
268 perror("sysi86(SI86DSCR)"); | |
269 printf("Couldn't install fs segment, expect segfault\n"); | |
270 } | |
2070
c1edbb8bfc0c
(solaris x86) C++ style variable declaration not at the start of a block does
jkeil
parents:
2069
diff
changeset
|
271 } |
2067 | 272 #endif |
273 | |
274 Setup_FS_Segment(); | |
275 | |
18878 | 276 ldt_fs->prev_struct = malloc(8); |
7386 | 277 *(void**)array.base_addr = ldt_fs->prev_struct; |
278 | |
279 return ldt_fs; | |
2067 | 280 } |
281 | |
7386 | 282 void Restore_LDT_Keeper(ldt_fs_t* ldt_fs) |
2067 | 283 { |
7386 | 284 if (ldt_fs == NULL || ldt_fs->fs_seg == 0) |
2067 | 285 return; |
7386 | 286 if (ldt_fs->prev_struct) |
287 free(ldt_fs->prev_struct); | |
288 munmap((char*)ldt_fs->fs_seg, getpagesize()); | |
289 ldt_fs->fs_seg = 0; | |
290 free(ldt_fs); | |
2067 | 291 } |