Mercurial > mplayer.hg
annotate loader/ext.c @ 26019:dfdf201e62cc
Replace Alpha MVI compiler workarounds by a proper configure check.
author | diego |
---|---|
date | Thu, 21 Feb 2008 16:47:05 +0000 |
parents | b70f5ac9c001 |
children | c99d53b76ee5 |
rev | line source |
---|---|
1 | 1 /******************************************************** |
2651
958d10763c34
partially synced with avifile... (TODO: migrate to new registry.c and driver.c)
arpi
parents:
2069
diff
changeset
|
2 * |
1 | 3 * |
4 * Stub functions for Wine module | |
5 * | |
6 * | |
7 ********************************************************/ | |
15166
f5537cc95b02
Mark modified imported files as such to comply with GPL ¡ø2a.
diego
parents:
13827
diff
changeset
|
8 |
f5537cc95b02
Mark modified imported files as such to comply with GPL ¡ø2a.
diego
parents:
13827
diff
changeset
|
9 /* |
18783 | 10 * Modified for use with MPlayer, detailed changelog at |
11 * http://svn.mplayerhq.hu/mplayer/trunk/ | |
15166
f5537cc95b02
Mark modified imported files as such to comply with GPL ¡ø2a.
diego
parents:
13827
diff
changeset
|
12 */ |
f5537cc95b02
Mark modified imported files as such to comply with GPL ¡ø2a.
diego
parents:
13827
diff
changeset
|
13 |
3465 | 14 #include "config.h" |
1307
d8c1b0b38edc
Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents:
128
diff
changeset
|
15 #include <stdio.h> |
d8c1b0b38edc
Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents:
128
diff
changeset
|
16 #include <stdlib.h> |
1 | 17 #ifdef HAVE_MALLOC_H |
18 #include <malloc.h> | |
19 #endif | |
20 #include <unistd.h> | |
21 #include <sys/mman.h> | |
22 #include <errno.h> | |
23 #include <fcntl.h> | |
24 #include <string.h> | |
25 #include <stdarg.h> | |
3465 | 26 #include <ctype.h> |
7386 | 27 |
21187
d9cedf7b8069
added mmap_anon to osdep lib. Used in loader for now
nplourde
parents:
18783
diff
changeset
|
28 #include "osdep/mmap_anon.h" |
7386 | 29 #include "wine/windef.h" |
30 #include "wine/winbase.h" | |
31 #include "wine/debugtools.h" | |
32 #include "wine/heap.h" | |
1307
d8c1b0b38edc
Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents:
128
diff
changeset
|
33 #include "ext.h" |
d8c1b0b38edc
Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents:
128
diff
changeset
|
34 |
2651
958d10763c34
partially synced with avifile... (TODO: migrate to new registry.c and driver.c)
arpi
parents:
2069
diff
changeset
|
35 #if 0 |
958d10763c34
partially synced with avifile... (TODO: migrate to new registry.c and driver.c)
arpi
parents:
2069
diff
changeset
|
36 //REMOVE SIMPLIFY |
958d10763c34
partially synced with avifile... (TODO: migrate to new registry.c and driver.c)
arpi
parents:
2069
diff
changeset
|
37 static void* mymalloc(unsigned int size) |
958d10763c34
partially synced with avifile... (TODO: migrate to new registry.c and driver.c)
arpi
parents:
2069
diff
changeset
|
38 { |
958d10763c34
partially synced with avifile... (TODO: migrate to new registry.c and driver.c)
arpi
parents:
2069
diff
changeset
|
39 printf("malloc %d\n", size); |
958d10763c34
partially synced with avifile... (TODO: migrate to new registry.c and driver.c)
arpi
parents:
2069
diff
changeset
|
40 return malloc(size); |
958d10763c34
partially synced with avifile... (TODO: migrate to new registry.c and driver.c)
arpi
parents:
2069
diff
changeset
|
41 } |
958d10763c34
partially synced with avifile... (TODO: migrate to new registry.c and driver.c)
arpi
parents:
2069
diff
changeset
|
42 |
958d10763c34
partially synced with avifile... (TODO: migrate to new registry.c and driver.c)
arpi
parents:
2069
diff
changeset
|
43 #undef malloc |
958d10763c34
partially synced with avifile... (TODO: migrate to new registry.c and driver.c)
arpi
parents:
2069
diff
changeset
|
44 #define malloc mymalloc |
958d10763c34
partially synced with avifile... (TODO: migrate to new registry.c and driver.c)
arpi
parents:
2069
diff
changeset
|
45 #endif |
958d10763c34
partially synced with avifile... (TODO: migrate to new registry.c and driver.c)
arpi
parents:
2069
diff
changeset
|
46 |
1 | 47 int dbg_header_err( const char *dbg_channel, const char *func ) |
48 { | |
2651
958d10763c34
partially synced with avifile... (TODO: migrate to new registry.c and driver.c)
arpi
parents:
2069
diff
changeset
|
49 return 0; |
1 | 50 } |
51 int dbg_header_warn( const char *dbg_channel, const char *func ) | |
52 { | |
2651
958d10763c34
partially synced with avifile... (TODO: migrate to new registry.c and driver.c)
arpi
parents:
2069
diff
changeset
|
53 return 0; |
1 | 54 } |
55 int dbg_header_fixme( const char *dbg_channel, const char *func ) | |
56 { | |
2651
958d10763c34
partially synced with avifile... (TODO: migrate to new registry.c and driver.c)
arpi
parents:
2069
diff
changeset
|
57 return 0; |
1 | 58 } |
59 int dbg_header_trace( const char *dbg_channel, const char *func ) | |
60 { | |
2651
958d10763c34
partially synced with avifile... (TODO: migrate to new registry.c and driver.c)
arpi
parents:
2069
diff
changeset
|
61 return 0; |
1 | 62 } |
1307
d8c1b0b38edc
Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents:
128
diff
changeset
|
63 int dbg_vprintf( const char *format, va_list args ) |
1 | 64 { |
2651
958d10763c34
partially synced with avifile... (TODO: migrate to new registry.c and driver.c)
arpi
parents:
2069
diff
changeset
|
65 return 0; |
1 | 66 } |
67 int __vprintf( const char *format, ... ) | |
68 { | |
69 #ifdef DETAILED_OUT | |
70 va_list va; | |
71 va_start(va, format); | |
72 vprintf(format, va); | |
73 va_end(va); | |
74 #endif | |
2651
958d10763c34
partially synced with avifile... (TODO: migrate to new registry.c and driver.c)
arpi
parents:
2069
diff
changeset
|
75 return 0; |
1 | 76 } |
2651
958d10763c34
partially synced with avifile... (TODO: migrate to new registry.c and driver.c)
arpi
parents:
2069
diff
changeset
|
77 |
1307
d8c1b0b38edc
Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents:
128
diff
changeset
|
78 HANDLE WINAPI GetProcessHeap(void) |
1 | 79 { |
80 return 1; | |
81 } | |
82 | |
1307
d8c1b0b38edc
Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents:
128
diff
changeset
|
83 LPVOID WINAPI HeapAlloc(HANDLE heap, DWORD flags, DWORD size) |
1 | 84 { |
24383 | 85 //static int i = 5; |
2651
958d10763c34
partially synced with avifile... (TODO: migrate to new registry.c and driver.c)
arpi
parents:
2069
diff
changeset
|
86 void* m = (flags & 0x8) ? calloc(size, 1) : malloc(size); |
958d10763c34
partially synced with avifile... (TODO: migrate to new registry.c and driver.c)
arpi
parents:
2069
diff
changeset
|
87 //printf("HeapAlloc %p %d (%d)\n", m, size, flags); |
958d10763c34
partially synced with avifile... (TODO: migrate to new registry.c and driver.c)
arpi
parents:
2069
diff
changeset
|
88 //if (--i == 0) |
958d10763c34
partially synced with avifile... (TODO: migrate to new registry.c and driver.c)
arpi
parents:
2069
diff
changeset
|
89 // abort(); |
958d10763c34
partially synced with avifile... (TODO: migrate to new registry.c and driver.c)
arpi
parents:
2069
diff
changeset
|
90 return m; |
1 | 91 } |
92 | |
2069 | 93 WIN_BOOL WINAPI HeapFree(HANDLE heap, DWORD flags, LPVOID mem) |
1 | 94 { |
128 | 95 if (mem) free(mem); |
2651
958d10763c34
partially synced with avifile... (TODO: migrate to new registry.c and driver.c)
arpi
parents:
2069
diff
changeset
|
96 //printf("HeapFree %p\n", mem); |
958d10763c34
partially synced with avifile... (TODO: migrate to new registry.c and driver.c)
arpi
parents:
2069
diff
changeset
|
97 //if (!mem) |
958d10763c34
partially synced with avifile... (TODO: migrate to new registry.c and driver.c)
arpi
parents:
2069
diff
changeset
|
98 // abort(); |
1 | 99 return 1; |
2651
958d10763c34
partially synced with avifile... (TODO: migrate to new registry.c and driver.c)
arpi
parents:
2069
diff
changeset
|
100 } |
1 | 101 |
102 static int last_error; | |
103 | |
1307
d8c1b0b38edc
Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents:
128
diff
changeset
|
104 DWORD WINAPI GetLastError(void) |
1 | 105 { |
106 return last_error; | |
107 } | |
108 | |
1307
d8c1b0b38edc
Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents:
128
diff
changeset
|
109 VOID WINAPI SetLastError(DWORD error) |
2651
958d10763c34
partially synced with avifile... (TODO: migrate to new registry.c and driver.c)
arpi
parents:
2069
diff
changeset
|
110 { |
2069 | 111 last_error=error; |
2651
958d10763c34
partially synced with avifile... (TODO: migrate to new registry.c and driver.c)
arpi
parents:
2069
diff
changeset
|
112 } |
1 | 113 |
2069 | 114 WIN_BOOL WINAPI ReadFile(HANDLE handle, LPVOID mem, DWORD size, LPDWORD result, LPOVERLAPPED flags) |
1 | 115 { |
116 *result=read(handle, mem, size); | |
117 return *result; | |
2651
958d10763c34
partially synced with avifile... (TODO: migrate to new registry.c and driver.c)
arpi
parents:
2069
diff
changeset
|
118 } |
2069 | 119 INT WINAPI lstrcmpiA(LPCSTR c1, LPCSTR c2) |
1 | 120 { |
121 return strcasecmp(c1,c2); | |
122 } | |
1307
d8c1b0b38edc
Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents:
128
diff
changeset
|
123 LPSTR WINAPI lstrcpynA(LPSTR dest, LPCSTR src, INT num) |
1 | 124 { |
1307
d8c1b0b38edc
Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents:
128
diff
changeset
|
125 return strncpy(dest,src,num); |
1 | 126 } |
2069 | 127 INT WINAPI lstrlenA(LPCSTR s) |
1 | 128 { |
129 return strlen(s); | |
2651
958d10763c34
partially synced with avifile... (TODO: migrate to new registry.c and driver.c)
arpi
parents:
2069
diff
changeset
|
130 } |
1307
d8c1b0b38edc
Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents:
128
diff
changeset
|
131 INT WINAPI lstrlenW(LPCWSTR s) |
1 | 132 { |
133 int l; | |
134 if(!s) | |
135 return 0; | |
136 l=0; | |
137 while(s[l]) | |
138 l++; | |
139 return l; | |
140 } | |
1307
d8c1b0b38edc
Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents:
128
diff
changeset
|
141 LPSTR WINAPI lstrcpynWtoA(LPSTR dest, LPCWSTR src, INT count) |
1 | 142 { |
2069 | 143 LPSTR result = dest; |
1 | 144 int moved=0; |
145 if((dest==0) || (src==0)) | |
146 return 0; | |
147 while(moved<count) | |
148 { | |
149 *dest=*src; | |
150 moved++; | |
151 if(*src==0) | |
1307
d8c1b0b38edc
Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents:
128
diff
changeset
|
152 break; |
1 | 153 src++; |
154 dest++; | |
155 } | |
2069 | 156 return result; |
1 | 157 } |
3465 | 158 /* i stands here for ignore case! */ |
1 | 159 int wcsnicmp(const unsigned short* s1, const unsigned short* s2, int n) |
160 { | |
2069 | 161 /* |
1 | 162 if(s1==0) |
163 return; | |
164 if(s2==0) | |
165 return; | |
2069 | 166 */ |
1 | 167 while(n>0) |
168 { | |
3465 | 169 if (((*s1 | *s2) & 0xff00) || toupper((char)*s1) != toupper((char)*s2)) |
170 { | |
171 | |
172 if(*s1<*s2) | |
173 return -1; | |
1 | 174 else |
3465 | 175 if(*s1>*s2) |
176 return 1; | |
177 else | |
178 if(*s1==0) | |
179 return 0; | |
180 } | |
181 s1++; | |
182 s2++; | |
183 n--; | |
1 | 184 } |
185 return 0; | |
2651
958d10763c34
partially synced with avifile... (TODO: migrate to new registry.c and driver.c)
arpi
parents:
2069
diff
changeset
|
186 } |
958d10763c34
partially synced with avifile... (TODO: migrate to new registry.c and driver.c)
arpi
parents:
2069
diff
changeset
|
187 |
1307
d8c1b0b38edc
Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents:
128
diff
changeset
|
188 WIN_BOOL WINAPI IsBadReadPtr(LPCVOID data, UINT size) |
1 | 189 { |
190 if(size==0) | |
191 return 0; | |
192 if(data==NULL) | |
193 return 1; | |
194 return 0; | |
2651
958d10763c34
partially synced with avifile... (TODO: migrate to new registry.c and driver.c)
arpi
parents:
2069
diff
changeset
|
195 } |
1307
d8c1b0b38edc
Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents:
128
diff
changeset
|
196 LPSTR HEAP_strdupA(HANDLE heap, DWORD flags, LPCSTR string) |
1 | 197 { |
198 // return strdup(string); | |
7386 | 199 char* answ = (char*) malloc(strlen(string) + 1); |
1 | 200 strcpy(answ, string); |
201 return answ; | |
202 } | |
1307
d8c1b0b38edc
Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents:
128
diff
changeset
|
203 LPWSTR HEAP_strdupAtoW(HANDLE heap, DWORD flags, LPCSTR string) |
1 | 204 { |
205 int size, i; | |
7386 | 206 WCHAR* answer; |
1 | 207 if(string==0) |
208 return 0; | |
209 size=strlen(string); | |
7386 | 210 answer = (WCHAR*) malloc(sizeof(WCHAR) * (size + 1)); |
1 | 211 for(i=0; i<=size; i++) |
212 answer[i]=(short)string[i]; | |
2651
958d10763c34
partially synced with avifile... (TODO: migrate to new registry.c and driver.c)
arpi
parents:
2069
diff
changeset
|
213 return answer; |
1 | 214 } |
1307
d8c1b0b38edc
Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents:
128
diff
changeset
|
215 LPSTR HEAP_strdupWtoA(HANDLE heap, DWORD flags, LPCWSTR string) |
1 | 216 { |
217 int size, i; | |
218 char* answer; | |
219 if(string==0) | |
220 return 0; | |
221 size=0; | |
222 while(string[size]) | |
223 size++; | |
7386 | 224 answer = (char*) malloc(size + 2); |
1 | 225 for(i=0; i<=size; i++) |
226 answer[i]=(char)string[i]; | |
2651
958d10763c34
partially synced with avifile... (TODO: migrate to new registry.c and driver.c)
arpi
parents:
2069
diff
changeset
|
227 return answer; |
1 | 228 } |
229 | |
230 /*********************************************************************** | |
231 * FILE_dommap | |
232 */ | |
233 | |
234 //#define MAP_PRIVATE | |
235 //#define MAP_SHARED | |
236 LPVOID FILE_dommap( int unix_handle, LPVOID start, | |
237 DWORD size_high, DWORD size_low, | |
238 DWORD offset_high, DWORD offset_low, | |
239 int prot, int flags ) | |
240 { | |
241 int fd = -1; | |
242 int pos; | |
243 LPVOID ret; | |
244 | |
245 if (size_high || offset_high) | |
246 printf("offsets larger than 4Gb not supported\n"); | |
247 | |
248 if (unix_handle == -1) | |
249 { | |
21248 | 250 ret = mmap_anon( start, size_low, prot, flags, offset_low ); |
21187
d9cedf7b8069
added mmap_anon to osdep lib. Used in loader for now
nplourde
parents:
18783
diff
changeset
|
251 } |
d9cedf7b8069
added mmap_anon to osdep lib. Used in loader for now
nplourde
parents:
18783
diff
changeset
|
252 else |
d9cedf7b8069
added mmap_anon to osdep lib. Used in loader for now
nplourde
parents:
18783
diff
changeset
|
253 { |
d9cedf7b8069
added mmap_anon to osdep lib. Used in loader for now
nplourde
parents:
18783
diff
changeset
|
254 fd = unix_handle; |
d9cedf7b8069
added mmap_anon to osdep lib. Used in loader for now
nplourde
parents:
18783
diff
changeset
|
255 ret = mmap( start, size_low, prot, flags, fd, offset_low ); |
d9cedf7b8069
added mmap_anon to osdep lib. Used in loader for now
nplourde
parents:
18783
diff
changeset
|
256 } |
1 | 257 |
21187
d9cedf7b8069
added mmap_anon to osdep lib. Used in loader for now
nplourde
parents:
18783
diff
changeset
|
258 if (ret != (LPVOID)-1) |
1 | 259 { |
260 // printf("address %08x\n", *(int*)ret); | |
2651
958d10763c34
partially synced with avifile... (TODO: migrate to new registry.c and driver.c)
arpi
parents:
2069
diff
changeset
|
261 // printf("%x\n", ret); |
1 | 262 return ret; |
2651
958d10763c34
partially synced with avifile... (TODO: migrate to new registry.c and driver.c)
arpi
parents:
2069
diff
changeset
|
263 } |
1 | 264 |
265 // printf("mmap %d\n", errno); | |
266 | |
267 /* mmap() failed; if this is because the file offset is not */ | |
268 /* page-aligned (EINVAL), or because the underlying filesystem */ | |
269 /* does not support mmap() (ENOEXEC), we do it by hand. */ | |
270 | |
271 if (unix_handle == -1) return ret; | |
272 if ((errno != ENOEXEC) && (errno != EINVAL)) return ret; | |
273 if (prot & PROT_WRITE) | |
274 { | |
275 /* We cannot fake shared write mappings */ | |
276 #ifdef MAP_SHARED | |
277 if (flags & MAP_SHARED) return ret; | |
278 #endif | |
279 #ifdef MAP_PRIVATE | |
280 if (!(flags & MAP_PRIVATE)) return ret; | |
281 #endif | |
282 } | |
283 /* printf( "FILE_mmap: mmap failed (%d), faking it\n", errno );*/ | |
284 /* Reserve the memory with an anonymous mmap */ | |
285 ret = FILE_dommap( -1, start, size_high, size_low, 0, 0, | |
286 PROT_READ | PROT_WRITE, flags ); | |
287 if (ret == (LPVOID)-1) | |
288 // { | |
289 // perror( | |
290 return ret; | |
291 /* Now read in the file */ | |
292 if ((pos = lseek( fd, offset_low, SEEK_SET )) == -1) | |
293 { | |
294 FILE_munmap( ret, size_high, size_low ); | |
295 // printf("lseek\n"); | |
296 return (LPVOID)-1; | |
297 } | |
298 read( fd, ret, size_low ); | |
299 lseek( fd, pos, SEEK_SET ); /* Restore the file pointer */ | |
300 mprotect( ret, size_low, prot ); /* Set the right protection */ | |
301 // printf("address %08x\n", *(int*)ret); | |
302 return ret; | |
303 } | |
304 | |
305 | |
306 /*********************************************************************** | |
307 * FILE_munmap | |
308 */ | |
309 int FILE_munmap( LPVOID start, DWORD size_high, DWORD size_low ) | |
310 { | |
311 if (size_high) | |
312 printf("offsets larger than 4Gb not supported\n"); | |
313 return munmap( start, size_low ); | |
314 } | |
315 | |
316 struct file_mapping_s; | |
317 typedef struct file_mapping_s | |
318 { | |
319 int mapping_size; | |
320 char* name; | |
2069 | 321 LPVOID handle; |
1 | 322 struct file_mapping_s* next; |
323 struct file_mapping_s* prev; | |
324 }file_mapping; | |
325 static file_mapping* fm=0; | |
326 | |
327 | |
328 | |
329 #define PAGE_NOACCESS 0x01 | |
330 #define PAGE_READONLY 0x02 | |
331 #define PAGE_READWRITE 0x04 | |
332 #define PAGE_WRITECOPY 0x08 | |
333 #define PAGE_EXECUTE 0x10 | |
334 #define PAGE_EXECUTE_READ 0x20 | |
335 #define PAGE_EXECUTE_READWRITE 0x40 | |
336 #define PAGE_EXECUTE_WRITECOPY 0x80 | |
337 #define PAGE_GUARD 0x100 | |
338 #define PAGE_NOCACHE 0x200 | |
339 | |
1307
d8c1b0b38edc
Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents:
128
diff
changeset
|
340 HANDLE WINAPI CreateFileMappingA(HANDLE handle, LPSECURITY_ATTRIBUTES lpAttr, |
d8c1b0b38edc
Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents:
128
diff
changeset
|
341 DWORD flProtect, |
d8c1b0b38edc
Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents:
128
diff
changeset
|
342 DWORD dwMaxHigh, DWORD dwMaxLow, |
d8c1b0b38edc
Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents:
128
diff
changeset
|
343 LPCSTR name) |
1 | 344 { |
1307
d8c1b0b38edc
Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents:
128
diff
changeset
|
345 int hFile = (int)handle; |
1 | 346 unsigned int len; |
2069 | 347 LPVOID answer; |
1 | 348 int anon=0; |
349 int mmap_access=0; | |
350 if(hFile<0) | |
21187
d9cedf7b8069
added mmap_anon to osdep lib. Used in loader for now
nplourde
parents:
18783
diff
changeset
|
351 anon=1; |
d9cedf7b8069
added mmap_anon to osdep lib. Used in loader for now
nplourde
parents:
18783
diff
changeset
|
352 |
1 | 353 if(!anon) |
2651
958d10763c34
partially synced with avifile... (TODO: migrate to new registry.c and driver.c)
arpi
parents:
2069
diff
changeset
|
354 { |
1 | 355 len=lseek(hFile, 0, SEEK_END); |
356 lseek(hFile, 0, SEEK_SET); | |
357 } | |
358 else len=dwMaxLow; | |
359 | |
360 if(flProtect & PAGE_READONLY) | |
361 mmap_access |=PROT_READ; | |
362 else | |
363 mmap_access |=PROT_READ|PROT_WRITE; | |
2651
958d10763c34
partially synced with avifile... (TODO: migrate to new registry.c and driver.c)
arpi
parents:
2069
diff
changeset
|
364 |
1 | 365 if(anon) |
21248 | 366 answer=mmap_anon(NULL, len, mmap_access, MAP_PRIVATE, 0); |
21187
d9cedf7b8069
added mmap_anon to osdep lib. Used in loader for now
nplourde
parents:
18783
diff
changeset
|
367 else |
d9cedf7b8069
added mmap_anon to osdep lib. Used in loader for now
nplourde
parents:
18783
diff
changeset
|
368 answer=mmap(NULL, len, mmap_access, MAP_PRIVATE, hFile, 0); |
d9cedf7b8069
added mmap_anon to osdep lib. Used in loader for now
nplourde
parents:
18783
diff
changeset
|
369 |
2069 | 370 if(answer!=(LPVOID)-1) |
1 | 371 { |
372 if(fm==0) | |
373 { | |
7386 | 374 fm = (file_mapping*) malloc(sizeof(file_mapping)); |
1 | 375 fm->prev=NULL; |
2651
958d10763c34
partially synced with avifile... (TODO: migrate to new registry.c and driver.c)
arpi
parents:
2069
diff
changeset
|
376 } |
1 | 377 else |
378 { | |
7386 | 379 fm->next = (file_mapping*) malloc(sizeof(file_mapping)); |
1 | 380 fm->next->prev=fm; |
381 fm=fm->next; | |
382 } | |
2651
958d10763c34
partially synced with avifile... (TODO: migrate to new registry.c and driver.c)
arpi
parents:
2069
diff
changeset
|
383 fm->next=NULL; |
1 | 384 fm->handle=answer; |
385 if(name) | |
386 { | |
7386 | 387 fm->name = (char*) malloc(strlen(name)+1); |
1 | 388 strcpy(fm->name, name); |
2651
958d10763c34
partially synced with avifile... (TODO: migrate to new registry.c and driver.c)
arpi
parents:
2069
diff
changeset
|
389 } |
1 | 390 else |
391 fm->name=NULL; | |
392 fm->mapping_size=len; | |
2651
958d10763c34
partially synced with avifile... (TODO: migrate to new registry.c and driver.c)
arpi
parents:
2069
diff
changeset
|
393 |
2069 | 394 return (HANDLE)answer; |
1 | 395 } |
396 return (HANDLE)0; | |
2651
958d10763c34
partially synced with avifile... (TODO: migrate to new registry.c and driver.c)
arpi
parents:
2069
diff
changeset
|
397 } |
1307
d8c1b0b38edc
Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents:
128
diff
changeset
|
398 WIN_BOOL WINAPI UnmapViewOfFile(LPVOID handle) |
1 | 399 { |
400 file_mapping* p; | |
401 int result; | |
402 if(fm==0) | |
2069 | 403 return 0; |
1 | 404 for(p=fm; p; p=p->next) |
405 { | |
2069 | 406 if(p->handle==handle) |
1 | 407 { |
408 result=munmap((void*)handle, p->mapping_size); | |
409 if(p->next)p->next->prev=p->prev; | |
410 if(p->prev)p->prev->next=p->next; | |
411 if(p->name) | |
412 free(p->name); | |
413 if(p==fm) | |
414 fm=p->prev; | |
415 free(p); | |
416 return result; | |
2651
958d10763c34
partially synced with avifile... (TODO: migrate to new registry.c and driver.c)
arpi
parents:
2069
diff
changeset
|
417 } |
1 | 418 } |
2651
958d10763c34
partially synced with avifile... (TODO: migrate to new registry.c and driver.c)
arpi
parents:
2069
diff
changeset
|
419 return 0; |
958d10763c34
partially synced with avifile... (TODO: migrate to new registry.c and driver.c)
arpi
parents:
2069
diff
changeset
|
420 } |
1 | 421 //static int va_size=0; |
422 struct virt_alloc_s; | |
423 typedef struct virt_alloc_s | |
424 { | |
425 int mapping_size; | |
426 char* address; | |
427 struct virt_alloc_s* next; | |
428 struct virt_alloc_s* prev; | |
429 int state; | |
430 }virt_alloc; | |
431 static virt_alloc* vm=0; | |
432 #define MEM_COMMIT 0x00001000 | |
433 #define MEM_RESERVE 0x00002000 | |
434 | |
2069 | 435 LPVOID WINAPI VirtualAlloc(LPVOID address, DWORD size, DWORD type, DWORD protection) |
1 | 436 { |
437 void* answer; | |
13303 | 438 long pgsz; |
439 | |
440 //printf("VirtualAlloc(0x%08X, %u, 0x%08X, 0x%08X)\n", (unsigned)address, size, type, protection); | |
441 | |
442 if ((type&(MEM_RESERVE|MEM_COMMIT)) == 0) return NULL; | |
443 | |
444 if (type&MEM_RESERVE && (unsigned)address&0xffff) { | |
445 size += (unsigned)address&0xffff; | |
13827 | 446 address = (unsigned)address&~0xffff; |
13303 | 447 } |
448 pgsz = sysconf(_SC_PAGESIZE); | |
449 if (type&MEM_COMMIT && (unsigned)address%pgsz) { | |
450 size += (unsigned)address%pgsz; | |
451 address -= (unsigned)address%pgsz; | |
452 } | |
453 | |
454 if (type&MEM_RESERVE && size<0x10000) size = 0x10000; | |
455 if (size%pgsz) size += pgsz - size%pgsz; | |
456 | |
1 | 457 if(address!=0) |
458 { | |
2651
958d10763c34
partially synced with avifile... (TODO: migrate to new registry.c and driver.c)
arpi
parents:
2069
diff
changeset
|
459 //check whether we can allow to allocate this |
1 | 460 virt_alloc* str=vm; |
461 while(str) | |
462 { | |
463 if((unsigned)address>=(unsigned)str->address+str->mapping_size) | |
464 { | |
465 str=str->prev; | |
466 continue; | |
2651
958d10763c34
partially synced with avifile... (TODO: migrate to new registry.c and driver.c)
arpi
parents:
2069
diff
changeset
|
467 } |
13303 | 468 if((unsigned)address+size<=(unsigned)str->address) |
1 | 469 { |
470 str=str->prev; | |
471 continue; | |
472 } | |
473 if(str->state==0) | |
474 { | |
475 #warning FIXME | |
13303 | 476 if( ((unsigned)address >= (unsigned)str->address) |
477 && ((unsigned)address+size<=(unsigned)str->address+str->mapping_size) | |
478 && (type & MEM_COMMIT)) | |
1 | 479 { |
480 return address; //returning previously reserved memory | |
481 } | |
13303 | 482 //printf(" VirtualAlloc(...) does not commit or not entirely within reserved, and\n"); |
1 | 483 } |
13303 | 484 /*printf(" VirtualAlloc(...) (0x%08X, %u) overlaps with (0x%08X, %u, state=%d)\n", |
485 (unsigned)address, size, (unsigned)str->address, str->mapping_size, str->state);*/ | |
1 | 486 return NULL; |
487 } | |
2651
958d10763c34
partially synced with avifile... (TODO: migrate to new registry.c and driver.c)
arpi
parents:
2069
diff
changeset
|
488 } |
13303 | 489 |
21187
d9cedf7b8069
added mmap_anon to osdep lib. Used in loader for now
nplourde
parents:
18783
diff
changeset
|
490 answer=mmap_anon(address, size, PROT_READ | PROT_WRITE | PROT_EXEC, |
21248 | 491 MAP_PRIVATE, 0); |
1 | 492 // answer=FILE_dommap(-1, address, 0, size, 0, 0, |
493 // PROT_READ | PROT_WRITE | PROT_EXEC, MAP_PRIVATE); | |
21187
d9cedf7b8069
added mmap_anon to osdep lib. Used in loader for now
nplourde
parents:
18783
diff
changeset
|
494 |
13303 | 495 if (answer != (void *)-1 && address && answer != address) { |
496 /* It is dangerous to try mmap() with MAP_FIXED since it does not | |
497 always detect conflicts or non-allocation and chaos ensues after | |
498 a successful call but an overlapping or non-allocated region. */ | |
499 munmap(answer, size); | |
500 answer = (void *) -1; | |
501 errno = EINVAL; | |
502 //printf(" VirtualAlloc(...) cannot satisfy requested address but address=NULL would work.\n"); | |
503 } | |
1 | 504 if(answer==(void*)-1) |
505 { | |
13306 | 506 /*printf(" VirtualAlloc(...) mmap(0x%08X, %u, ...) failed with errno=%d (\"%s\")\n", |
507 (unsigned)address, size, errno, strerror(errno));*/ | |
1 | 508 return NULL; |
509 } | |
510 else | |
511 { | |
7386 | 512 virt_alloc *new_vm = (virt_alloc*) malloc(sizeof(virt_alloc)); |
1 | 513 new_vm->mapping_size=size; |
7386 | 514 new_vm->address=(char*)answer; |
1 | 515 new_vm->prev=vm; |
516 if(type == MEM_RESERVE) | |
517 new_vm->state=0; | |
518 else | |
519 new_vm->state=1; | |
520 if(vm) | |
521 vm->next=new_vm; | |
522 vm=new_vm; | |
523 vm->next=0; | |
3134 | 524 //if(va_size!=0) |
525 // printf("Multiple VirtualAlloc!\n"); | |
13303 | 526 //printf(" VirtualAlloc(...) provides (0x%08X, %u)\n", (unsigned)answer, size); |
1 | 527 return answer; |
2651
958d10763c34
partially synced with avifile... (TODO: migrate to new registry.c and driver.c)
arpi
parents:
2069
diff
changeset
|
528 } |
958d10763c34
partially synced with avifile... (TODO: migrate to new registry.c and driver.c)
arpi
parents:
2069
diff
changeset
|
529 } |
13303 | 530 |
3134 | 531 WIN_BOOL WINAPI VirtualFree(LPVOID address, SIZE_T dwSize, DWORD dwFreeType)//not sure |
1 | 532 { |
533 virt_alloc* str=vm; | |
534 int answer; | |
13303 | 535 |
536 //printf("VirtualFree(0x%08X, %d, 0x%08X)\n", (unsigned)address, dwSize, dwFreeType); | |
1 | 537 while(str) |
538 { | |
2651
958d10763c34
partially synced with avifile... (TODO: migrate to new registry.c and driver.c)
arpi
parents:
2069
diff
changeset
|
539 if(address!=str->address) |
958d10763c34
partially synced with avifile... (TODO: migrate to new registry.c and driver.c)
arpi
parents:
2069
diff
changeset
|
540 { |
958d10763c34
partially synced with avifile... (TODO: migrate to new registry.c and driver.c)
arpi
parents:
2069
diff
changeset
|
541 str=str->prev; |
958d10763c34
partially synced with avifile... (TODO: migrate to new registry.c and driver.c)
arpi
parents:
2069
diff
changeset
|
542 continue; |
958d10763c34
partially synced with avifile... (TODO: migrate to new registry.c and driver.c)
arpi
parents:
2069
diff
changeset
|
543 } |
13303 | 544 //printf(" VirtualFree(...) munmap(0x%08X, %d)\n", (unsigned)str->address, str->mapping_size); |
2651
958d10763c34
partially synced with avifile... (TODO: migrate to new registry.c and driver.c)
arpi
parents:
2069
diff
changeset
|
545 answer=munmap(str->address, str->mapping_size); |
958d10763c34
partially synced with avifile... (TODO: migrate to new registry.c and driver.c)
arpi
parents:
2069
diff
changeset
|
546 if(str->next)str->next->prev=str->prev; |
958d10763c34
partially synced with avifile... (TODO: migrate to new registry.c and driver.c)
arpi
parents:
2069
diff
changeset
|
547 if(str->prev)str->prev->next=str->next; |
3134 | 548 if(vm==str)vm=str->prev; |
2651
958d10763c34
partially synced with avifile... (TODO: migrate to new registry.c and driver.c)
arpi
parents:
2069
diff
changeset
|
549 free(str); |
958d10763c34
partially synced with avifile... (TODO: migrate to new registry.c and driver.c)
arpi
parents:
2069
diff
changeset
|
550 return 0; |
1 | 551 } |
552 return -1; | |
553 } | |
554 | |
2069 | 555 INT WINAPI WideCharToMultiByte(UINT codepage, DWORD flags, LPCWSTR src, |
556 INT srclen,LPSTR dest, INT destlen, LPCSTR defch, WIN_BOOL* used_defch) | |
1 | 557 { |
558 int i; | |
128 | 559 if(srclen==-1){srclen=0; while(src[srclen++]);} |
22413
219d577285e1
Fix and simplify the WideCharToMultiByte and MultiByteToWideChar pseudo-implementations.
reimar
parents:
21248
diff
changeset
|
560 if(destlen==0) |
219d577285e1
Fix and simplify the WideCharToMultiByte and MultiByteToWideChar pseudo-implementations.
reimar
parents:
21248
diff
changeset
|
561 return srclen; |
1 | 562 if(used_defch) |
2651
958d10763c34
partially synced with avifile... (TODO: migrate to new registry.c and driver.c)
arpi
parents:
2069
diff
changeset
|
563 *used_defch=0; |
1 | 564 for(i=0; i<min(srclen, destlen); i++) |
22413
219d577285e1
Fix and simplify the WideCharToMultiByte and MultiByteToWideChar pseudo-implementations.
reimar
parents:
21248
diff
changeset
|
565 *dest++=(char)*src++; |
1 | 566 return min(srclen, destlen); |
567 } | |
2069 | 568 INT WINAPI MultiByteToWideChar(UINT codepage,DWORD flags, LPCSTR src, INT srclen, |
569 LPWSTR dest, INT destlen) | |
1 | 570 { |
22413
219d577285e1
Fix and simplify the WideCharToMultiByte and MultiByteToWideChar pseudo-implementations.
reimar
parents:
21248
diff
changeset
|
571 int i; |
219d577285e1
Fix and simplify the WideCharToMultiByte and MultiByteToWideChar pseudo-implementations.
reimar
parents:
21248
diff
changeset
|
572 if(srclen==-1){srclen=0; while(src[srclen++]);} |
219d577285e1
Fix and simplify the WideCharToMultiByte and MultiByteToWideChar pseudo-implementations.
reimar
parents:
21248
diff
changeset
|
573 if(destlen==0) |
219d577285e1
Fix and simplify the WideCharToMultiByte and MultiByteToWideChar pseudo-implementations.
reimar
parents:
21248
diff
changeset
|
574 return srclen; |
219d577285e1
Fix and simplify the WideCharToMultiByte and MultiByteToWideChar pseudo-implementations.
reimar
parents:
21248
diff
changeset
|
575 for(i=0; i<min(srclen, destlen); i++) |
219d577285e1
Fix and simplify the WideCharToMultiByte and MultiByteToWideChar pseudo-implementations.
reimar
parents:
21248
diff
changeset
|
576 *dest++=(WCHAR)*src++; |
219d577285e1
Fix and simplify the WideCharToMultiByte and MultiByteToWideChar pseudo-implementations.
reimar
parents:
21248
diff
changeset
|
577 return min(srclen, destlen); |
1 | 578 } |
1307
d8c1b0b38edc
Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents:
128
diff
changeset
|
579 HANDLE WINAPI OpenFileMappingA(DWORD access, WIN_BOOL prot, LPCSTR name) |
1 | 580 { |
581 file_mapping* p; | |
582 if(fm==0) | |
583 return (HANDLE)0; | |
584 if(name==0) | |
585 return (HANDLE)0; | |
586 for(p=fm; p; p=p->prev) | |
587 { | |
588 if(p->name==0) | |
589 continue; | |
590 if(strcmp(p->name, name)==0) | |
2069 | 591 return (HANDLE)p->handle; |
1 | 592 } |
2651
958d10763c34
partially synced with avifile... (TODO: migrate to new registry.c and driver.c)
arpi
parents:
2069
diff
changeset
|
593 return 0; |
1 | 594 } |