module.c
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:32k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*
  2.  * Modules
  3.  *
  4.  * $Id: 635f4b54ea10ad734eb6073b8dfe4795b9695e7f $
  5.  *
  6.  * Copyright 1995 Alexandre Julliard
  7.  *
  8.  * Originally distributed under LPGL 2.1 (or later) by the Wine project.
  9.  *
  10.  * Modified for use with MPlayer, detailed CVS changelog at
  11.  * http://www.mplayerhq.hu/cgi-bin/cvsweb.cgi/main/
  12.  *
  13.  * File now distributed as part of VLC media player with no modifications.
  14.  *
  15.  * This program is free software; you can redistribute it and/or modify
  16.  * it under the terms of the GNU General Public License as published by
  17.  * the Free Software Foundation; either version 2 of the License, or
  18.  * (at your option) any later version.
  19.  *
  20.  * This program is distributed in the hope that it will be useful,
  21.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  22.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  23.  * GNU General Public License for more details.
  24.  *
  25.  * You should have received a copy of the GNU General Public License
  26.  * along with this program; if not, write to the Free Software
  27.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  28.  */
  29. // define for quicktime calls debugging and/or MacOS-level emulation:
  30. #define EMU_QTX_API
  31. // define for quicktime debugging (verbose logging):
  32. //#define DEBUG_QTX_API
  33. #include "config.h"
  34. #include <assert.h>
  35. #include <errno.h>
  36. #include <fcntl.h>
  37. #include <stdio.h>
  38. #include <stdlib.h>
  39. #include <string.h>
  40. #include <unistd.h>
  41. #include <sys/mman.h>
  42. #include <inttypes.h>
  43. #include "wine/windef.h"
  44. #include "wine/winerror.h"
  45. #include "wine/heap.h"
  46. #include "wine/module.h"
  47. #include "wine/pe_image.h"
  48. #include "wine/debugtools.h"
  49. #undef HAVE_LIBDL
  50. #ifdef HAVE_LIBDL
  51. #include <dlfcn.h>
  52. #include "wine/elfdll.h"
  53. #endif
  54. #include "win32.h"
  55. #include "driver.h"
  56. #ifdef EMU_QTX_API
  57. #include "wrapper.h"
  58. static int report_func(void *stack_base, int stack_size, reg386_t *reg, uint32_t *flags);
  59. static int report_func_ret(void *stack_base, int stack_size, reg386_t *reg, uint32_t *flags);
  60. #endif
  61. //#undef TRACE
  62. //#define TRACE printf
  63. //WINE_MODREF *local_wm=NULL;
  64. modref_list* local_wm=NULL;
  65. HANDLE SegptrHeap;
  66. WINE_MODREF* MODULE_FindModule(LPCSTR m)
  67. {
  68.     modref_list* list=local_wm;
  69.     TRACE("FindModule: Module %s requestn", m);
  70.     if(list==NULL)
  71. return NULL;
  72. //    while(strcmp(m, list->wm->filename))
  73.     while(!strstr(list->wm->filename, m))
  74.     {
  75. TRACE("%s: %xn", list->wm->filename, list->wm->module);
  76. list=list->prev;
  77. if(list==NULL)
  78.     return NULL;
  79.     }
  80.     TRACE("Resolved to %sn", list->wm->filename);
  81.     return list->wm;
  82. }
  83. static void MODULE_RemoveFromList(WINE_MODREF *mod)
  84. {
  85.     modref_list* list=local_wm;
  86.     if(list==NULL)
  87. return;
  88.     if(mod==NULL)
  89. return;
  90.     if((list->prev==NULL)&&(list->next==NULL))
  91.     {
  92. free(list);
  93. local_wm=NULL;
  94. // uninstall_fs();
  95. return;
  96.     }
  97.     for(;list;list=list->prev)
  98.     {
  99. if(list->wm==mod)
  100. {
  101.     if(list->prev)
  102. list->prev->next=list->next;
  103.     if(list->next)
  104. list->next->prev=list->prev;
  105.     if(list==local_wm)
  106. local_wm=list->prev;
  107.     free(list);
  108.     return;
  109. }
  110.     }
  111. }
  112. WINE_MODREF *MODULE32_LookupHMODULE(HMODULE m)
  113. {
  114.     modref_list* list=local_wm;
  115.     TRACE("LookupHMODULE: Module %X requestn", m);
  116.     if(list==NULL)
  117.     {
  118. TRACE("LookupHMODULE failedn");
  119. return NULL;
  120.     }
  121.     while(m!=list->wm->module)
  122.     {
  123. //      printf("Checking list %X wm %X module %Xn",
  124. // list, list->wm, list->wm->module);
  125. list=list->prev;
  126. if(list==NULL)
  127. {
  128.     TRACE("LookupHMODULE failedn");
  129.     return NULL;
  130. }
  131.     }
  132.     TRACE("LookupHMODULE hit %pn", list->wm);
  133.     return list->wm;
  134. }
  135. /*************************************************************************
  136.  * MODULE_InitDll
  137.  */
  138. static WIN_BOOL MODULE_InitDll( WINE_MODREF *wm, DWORD type, LPVOID lpReserved )
  139. {
  140.     WIN_BOOL retv = TRUE;
  141.     static LPCSTR typeName[] = { "PROCESS_DETACH", "PROCESS_ATTACH",
  142.                                  "THREAD_ATTACH", "THREAD_DETACH" };
  143.     assert( wm );
  144.     /* Skip calls for modules loaded with special load flags */
  145.     if (    ( wm->flags & WINE_MODREF_DONT_RESOLVE_REFS )
  146.          || ( wm->flags & WINE_MODREF_LOAD_AS_DATAFILE ) )
  147.         return TRUE;
  148.     TRACE("(%s,%s,%p) - CALLn", wm->modname, typeName[type], lpReserved );
  149.     /* Call the initialization routine */
  150.     switch ( wm->type )
  151.     {
  152.     case MODULE32_PE:
  153.         retv = PE_InitDLL( wm, type, lpReserved );
  154.         break;
  155.     case MODULE32_ELF:
  156.         /* no need to do that, dlopen() already does */
  157.         break;
  158.     default:
  159.         ERR("wine_modref type %d not handled.n", wm->type );
  160.         retv = FALSE;
  161.         break;
  162.     }
  163.     /* The state of the module list may have changed due to the call
  164.        to PE_InitDLL. We cannot assume that this module has not been
  165.        deleted.  */
  166.     TRACE("(%p,%s,%p) - RETURN %dn", wm, typeName[type], lpReserved, retv );
  167.     return retv;
  168. }
  169. /*************************************************************************
  170.  * MODULE_DllProcessAttach
  171.  *
  172.  * Send the process attach notification to all DLLs the given module
  173.  * depends on (recursively). This is somewhat complicated due to the fact that
  174.  *
  175.  * - we have to respect the module dependencies, i.e. modules implicitly
  176.  *   referenced by another module have to be initialized before the module
  177.  *   itself can be initialized
  178.  *
  179.  * - the initialization routine of a DLL can itself call LoadLibrary,
  180.  *   thereby introducing a whole new set of dependencies (even involving
  181.  *   the 'old' modules) at any time during the whole process
  182.  *
  183.  * (Note that this routine can be recursively entered not only directly
  184.  *  from itself, but also via LoadLibrary from one of the called initialization
  185.  *  routines.)
  186.  *
  187.  * Furthermore, we need to rearrange the main WINE_MODREF list to allow
  188.  * the process *detach* notifications to be sent in the correct order.
  189.  * This must not only take into account module dependencies, but also
  190.  * 'hidden' dependencies created by modules calling LoadLibrary in their
  191.  * attach notification routine.
  192.  *
  193.  * The strategy is rather simple: we move a WINE_MODREF to the head of the
  194.  * list after the attach notification has returned.  This implies that the
  195.  * detach notifications are called in the reverse of the sequence the attach
  196.  * notifications *returned*.
  197.  *
  198.  * NOTE: Assumes that the process critical section is held!
  199.  *
  200.  */
  201. static WIN_BOOL MODULE_DllProcessAttach( WINE_MODREF *wm, LPVOID lpReserved )
  202. {
  203.     WIN_BOOL retv = TRUE;
  204.     int i;
  205.     assert( wm );
  206.     /* prevent infinite recursion in case of cyclical dependencies */
  207.     if (    ( wm->flags & WINE_MODREF_MARKER )
  208.          || ( wm->flags & WINE_MODREF_PROCESS_ATTACHED ) )
  209.         return retv;
  210.     TRACE("(%s,%p) - STARTn", wm->modname, lpReserved );
  211.     /* Tag current MODREF to prevent recursive loop */
  212.     wm->flags |= WINE_MODREF_MARKER;
  213.     /* Recursively attach all DLLs this one depends on */
  214. /*    for ( i = 0; retv && i < wm->nDeps; i++ )
  215.         if ( wm->deps[i] )
  216.             retv = MODULE_DllProcessAttach( wm->deps[i], lpReserved );
  217. */
  218.     /* Call DLL entry point */
  219.     //local_wm=wm;
  220.     if(local_wm)
  221.     {
  222. local_wm->next = (modref_list*) malloc(sizeof(modref_list));
  223.         local_wm->next->prev=local_wm;
  224.         local_wm->next->next=NULL;
  225.         local_wm->next->wm=wm;
  226.         local_wm=local_wm->next;
  227.     }
  228.     else
  229.     {
  230. local_wm = (modref_list*)malloc(sizeof(modref_list));
  231. local_wm->next=local_wm->prev=NULL;
  232. local_wm->wm=wm;
  233.     }
  234.     /* Remove recursion flag */
  235.     wm->flags &= ~WINE_MODREF_MARKER;
  236.     if ( retv )
  237.     {
  238.         retv = MODULE_InitDll( wm, DLL_PROCESS_ATTACH, lpReserved );
  239.         if ( retv )
  240.             wm->flags |= WINE_MODREF_PROCESS_ATTACHED;
  241.     }
  242.     TRACE("(%s,%p) - ENDn", wm->modname, lpReserved );
  243.     return retv;
  244. }
  245. /*************************************************************************
  246.  * MODULE_DllProcessDetach
  247.  *
  248.  * Send DLL process detach notifications.  See the comment about calling
  249.  * sequence at MODULE_DllProcessAttach.  Unless the bForceDetach flag
  250.  * is set, only DLLs with zero refcount are notified.
  251.  */
  252. static void MODULE_DllProcessDetach( WINE_MODREF* wm, WIN_BOOL bForceDetach, LPVOID lpReserved )
  253. {
  254.     //    WINE_MODREF *wm=local_wm;
  255.     modref_list* l = local_wm;
  256.     wm->flags &= ~WINE_MODREF_PROCESS_ATTACHED;
  257.     MODULE_InitDll( wm, DLL_PROCESS_DETACH, lpReserved );
  258. /*    while (l)
  259.     {
  260. modref_list* f = l;
  261. l = l->next;
  262. free(f);
  263.     }
  264.     local_wm = 0;*/
  265. }
  266. /***********************************************************************
  267.  * MODULE_LoadLibraryExA (internal)
  268.  *
  269.  * Load a PE style module according to the load order.
  270.  *
  271.  * The HFILE parameter is not used and marked reserved in the SDK. I can
  272.  * only guess that it should force a file to be mapped, but I rather
  273.  * ignore the parameter because it would be extremely difficult to
  274.  * integrate this with different types of module represenations.
  275.  *
  276.  */
  277. static WINE_MODREF *MODULE_LoadLibraryExA( LPCSTR libname, HFILE hfile, DWORD flags )
  278. {
  279. DWORD err = GetLastError();
  280. WINE_MODREF *pwm;
  281. int i;
  282. // module_loadorder_t *plo;
  283.         SetLastError( ERROR_FILE_NOT_FOUND );
  284. TRACE("Trying native dll '%s'n", libname);
  285. pwm = PE_LoadLibraryExA(libname, flags);
  286. #ifdef HAVE_LIBDL
  287. if(!pwm)
  288. {
  289.          TRACE("Trying ELF dll '%s'n", libname);
  290.     pwm=(WINE_MODREF*)ELFDLL_LoadLibraryExA(libname, flags);
  291. }
  292. #endif
  293. // printf("0x%08xn", pwm);
  294. // break;
  295. if(pwm)
  296. {
  297. /* Initialize DLL just loaded */
  298. TRACE("Loaded module '%s' at 0x%08x, n", libname, pwm->module);
  299. /* Set the refCount here so that an attach failure will */
  300. /* decrement the dependencies through the MODULE_FreeLibrary call. */
  301. pwm->refCount++;
  302.                 SetLastError( err );  /* restore last error */
  303. return pwm;
  304. }
  305. WARN("Failed to load module '%s'; error=0x%08lx, n", libname, GetLastError());
  306. return NULL;
  307. }
  308. /***********************************************************************
  309.  *           MODULE_FreeLibrary
  310.  *
  311.  * NOTE: Assumes that the process critical section is held!
  312.  */
  313. static WIN_BOOL MODULE_FreeLibrary( WINE_MODREF *wm )
  314. {
  315.     TRACE("(%s) - STARTn", wm->modname );
  316.     /* Recursively decrement reference counts */
  317.     //MODULE_DecRefCount( wm );
  318.     /* Call process detach notifications */
  319.     MODULE_DllProcessDetach( wm, FALSE, NULL );
  320.     PE_UnloadLibrary(wm);
  321.     TRACE("ENDn");
  322.     return TRUE;
  323. }
  324. /***********************************************************************
  325.  *           LoadLibraryExA   (KERNEL32)
  326.  */
  327. HMODULE WINAPI LoadLibraryExA(LPCSTR libname, HANDLE hfile, DWORD flags)
  328. {
  329. WINE_MODREF *wm = 0;
  330. char* listpath[] = { "", "", "/usr/lib/win32", "/usr/local/lib/win32", "/usr/lib/codecs", "/usr/local/lib/codecs", 0 };
  331. extern char* def_path;
  332. char path[512];
  333. char checked[2000];
  334.         int i = -1;
  335.         checked[0] = 0;
  336. if(!libname)
  337. {
  338. SetLastError(ERROR_INVALID_PARAMETER);
  339. return 0;
  340. }
  341. wm=MODULE_FindModule(libname);
  342. if(wm) return wm->module;
  343. // if(fs_installed==0)
  344. //     install_fs();
  345. while (wm == NULL && listpath[++i])
  346. {
  347.     if (i < 2)
  348.     {
  349. if (i == 0)
  350.     /* check just original file name */
  351.     strncpy(path, libname, 511);
  352.                 else
  353.     /* check default user path */
  354.     strncpy(path, def_path, 300);
  355.     }
  356.     else if (strcmp(def_path, listpath[i]))
  357.                 /* path from the list */
  358. strncpy(path, listpath[i], 300);
  359.     else
  360. continue;
  361.     if (i > 0)
  362.     {
  363. strcat(path, "/");
  364. strncat(path, libname, 100);
  365.     }
  366.     path[511] = 0;
  367.     wm = MODULE_LoadLibraryExA( path, hfile, flags );
  368.     if (!wm)
  369.     {
  370. if (checked[0])
  371.     strcat(checked, ", ");
  372. strcat(checked, path);
  373.                 checked[1500] = 0;
  374.     }
  375. }
  376. if ( wm )
  377. {
  378. if ( !MODULE_DllProcessAttach( wm, NULL ) )
  379. {
  380. WARN_(module)("Attach failed for module '%s', n", libname);
  381. MODULE_FreeLibrary(wm);
  382. SetLastError(ERROR_DLL_INIT_FAILED);
  383. MODULE_RemoveFromList(wm);
  384. wm = NULL;
  385. }
  386. }
  387. if (!wm)
  388.     printf("Win32 LoadLibrary failed to load: %sn", checked);
  389. if (strstr(libname,"vp31vfw.dll") && wm)
  390. {
  391.     int i;
  392.   // sse hack moved from patch dll into runtime patching
  393.           if (PE_FindExportedFunction(wm, "DriverProc", TRUE)==(void*)0x10001000) {
  394.     fprintf(stderr, "VP3 DLL foundn");
  395.     for (i=0;i<18;i++) ((char*)0x10004bd6)[i]=0x90;
  396.   }
  397. }
  398.         // remove a few divs in the VP codecs that make trouble
  399.         if (strstr(libname,"vp5vfw.dll") && wm)
  400.         {
  401.           int i;
  402.           if (PE_FindExportedFunction(wm, "DriverProc", TRUE)==(void*)0x10003930) {
  403.             for (i=0;i<3;i++) ((char*)0x10004e86)[i]=0x90;
  404.             for (i=0;i<3;i++) ((char*)0x10005a23)[i]=0x90;
  405.             for (i=0;i<3;i++) ((char*)0x10005bff)[i]=0x90;
  406.           } else {
  407.             fprintf(stderr, "Unsupported VP5 versionn");
  408.             return 0;
  409.           }
  410.         }
  411.         if (strstr(libname,"vp6vfw.dll") && wm)
  412.         {
  413.           int i;
  414.           if (PE_FindExportedFunction(wm, "DriverProc", TRUE)==(void*)0x10003ef0) {
  415.             // looks like VP 6.1.0.2
  416.             for (i=0;i<6;i++) ((char*)0x10007268)[i]=0x90;
  417.             for (i=0;i<6;i++) ((char*)0x10007e83)[i]=0x90;
  418.             for (i=0;i<6;i++) ((char*)0x1000806a)[i]=0x90;
  419.           } else if (PE_FindExportedFunction(wm, "DriverProc", TRUE)==(void*)0x10004120) {
  420.             // looks like VP 6.2.0.10
  421.             for (i=0;i<6;i++) ((char*)0x10007688)[i]=0x90;
  422.             for (i=0;i<6;i++) ((char*)0x100082c3)[i]=0x90;
  423.             for (i=0;i<6;i++) ((char*)0x100084aa)[i]=0x90;
  424.           } else if (PE_FindExportedFunction(wm, "DriverProc", TRUE)==(void*)0x10003e70) {
  425.             // looks like VP 6.0.7.3
  426.             for (i=0;i<6;i++) ((char*)0x10007559)[i]=0x90;
  427.             for (i=0;i<6;i++) ((char*)0x100081c3)[i]=0x90;
  428.             for (i=0;i<6;i++) ((char*)0x1000839e)[i]=0x90;
  429.           } else {
  430.             fprintf(stderr, "Unsupported VP6 versionn");
  431.             return 0;
  432.           }
  433.         }
  434.         // Windows Media Video 9 Advanced
  435.         if (strstr(libname,"wmvadvd.dll") && wm)
  436.         {
  437.           // The codec calls IsRectEmpty with coords 0,0,0,0 => result is 0
  438.           // but it really wants the rectangle to be not empty
  439.           if (PE_FindExportedFunction(wm, "CreateInstance", TRUE)==(void*)0x08c4b812) {
  440.             // Dll version is 10.0.0.3645
  441.             *((char*)0x08c48b0f)=0xeb; // Jump always, ignoring IsRectEmpty result
  442.           } else {
  443.             fprintf(stderr, "Unsupported WMVA versionn");
  444.             return 0;
  445.           }
  446.         }
  447. if (strstr(libname,"QuickTime.qts") && wm)
  448. {
  449.     void** ptr;
  450.     void *dispatch_addr;
  451.     int i;
  452. //     dispatch_addr = GetProcAddress(wm->module, "theQuickTimeDispatcher", TRUE);
  453.     dispatch_addr = PE_FindExportedFunction(wm, "theQuickTimeDispatcher", TRUE);
  454.     if (dispatch_addr == (void *)0x62924c30)
  455.     {
  456.         fprintf(stderr, "QuickTime5 DLLs foundn");
  457. ptr = (void **)0x62b75ca4; // dispatch_ptr
  458.         for (i=0;i<5;i++)  ((char*)0x6299e842)[i]=0x90; // make_new_region ?
  459.         for (i=0;i<28;i++) ((char*)0x6299e86d)[i]=0x90; // call__call_CreateCompatibleDC ?
  460. for (i=0;i<5;i++)  ((char*)0x6299e898)[i]=0x90; // jmp_to_call_loadbitmap ?
  461.         for (i=0;i<9;i++)  ((char*)0x6299e8ac)[i]=0x90; // call__calls_OLE_shit ?
  462.         for (i=0;i<106;i++) ((char*)0x62a61b10)[i]=0x90; // disable threads
  463. #if 0
  464. /* CreateThread callers */
  465. for (i=0;i<5;i++) ((char*)0x629487c5)[i]=0x90;
  466. for (i=0;i<5;i++) ((char*)0x6294b275)[i]=0x90;
  467. for (i=0;i<5;i++) ((char*)0x629a24b1)[i]=0x90;
  468. for (i=0;i<5;i++) ((char*)0x629afc5a)[i]=0x90;
  469. for (i=0;i<5;i++) ((char*)0x62af799c)[i]=0x90;
  470. for (i=0;i<5;i++) ((char*)0x62af7efe)[i]=0x90;
  471. for (i=0;i<5;i++) ((char*)0x62afa33e)[i]=0x90;
  472. #endif
  473. #if 0
  474. /* TerminateQTML fix */
  475. for (i=0;i<47;i++) ((char*)0x62afa3b8)[i]=0x90; // terminate thread
  476. for (i=0;i<47;i++) ((char*)0x62af7f78)[i]=0x90; // terminate thread
  477. for (i=0;i<77;i++) ((char*)0x629a13d5)[i]=0x90;
  478. ((char *)0x6288e0ae)[0] = 0xc3; // font/dc remover
  479. for (i=0;i<24;i++) ((char*)0x6287a1ad)[i]=0x90; // destroy window
  480. #endif
  481.     } else if (dispatch_addr == (void *)0x6693b330)
  482.     {
  483.      fprintf(stderr, "QuickTime6 DLLs foundn");
  484. ptr = (void **)0x66bb9524; // dispatcher_ptr
  485. for (i=0;i<5;i++)  ((char *)0x66a730cc)[i]=0x90; // make_new_region
  486. for (i=0;i<28;i++) ((char *)0x66a730f7)[i]=0x90; // call__call_CreateCompatibleDC
  487. for (i=0;i<5;i++)  ((char *)0x66a73122)[i]=0x90; // jmp_to_call_loadbitmap
  488. for (i=0;i<9;i++)  ((char *)0x66a73131)[i]=0x90; // call__calls_OLE_shit
  489. for (i=0;i<96;i++) ((char *)0x66aac852)[i]=0x90; // disable threads
  490.     } else if (dispatch_addr == (void *)0x6693c3e0)
  491.     {
  492.      fprintf(stderr, "QuickTime6.3 DLLs foundn");
  493. ptr = (void **)0x66bca01c; // dispatcher_ptr
  494. for (i=0;i<5;i++)  ((char *)0x66a68f6c)[i]=0x90; // make_new_region
  495. for (i=0;i<28;i++) ((char *)0x66a68f97)[i]=0x90; // call__call_CreateCompatibleDC
  496. for (i=0;i<5;i++)  ((char *)0x66a68fc2)[i]=0x90; // jmp_to_call_loadbitmap
  497. for (i=0;i<9;i++)  ((char *)0x66a68fd1)[i]=0x90; // call__calls_OLE_shit
  498. for (i=0;i<96;i++) ((char *)0x66ab4722)[i]=0x90; // disable threads
  499.     } else
  500.     {
  501.         fprintf(stderr, "Unsupported QuickTime version (%p)n",
  502.     dispatch_addr);
  503. return 0;
  504.     }
  505.     fprintf(stderr,"QuickTime.qts patched!!! old entry=%pn",ptr[0]);
  506. #ifdef EMU_QTX_API
  507.     report_entry = report_func;
  508.     report_ret   = report_func_ret;
  509.     wrapper_target=ptr[0];
  510.     ptr[0]=wrapper;
  511. #endif
  512. }
  513. return wm ? wm->module : 0;
  514. }
  515. /***********************************************************************
  516.  *           LoadLibraryA         (KERNEL32)
  517.  */
  518. HMODULE WINAPI LoadLibraryA(LPCSTR libname) {
  519. return LoadLibraryExA(libname,0,0);
  520. }
  521. /***********************************************************************
  522.  *           FreeLibrary
  523.  */
  524. WIN_BOOL WINAPI FreeLibrary(HINSTANCE hLibModule)
  525. {
  526.     WIN_BOOL retv = FALSE;
  527.     WINE_MODREF *wm;
  528.     wm=MODULE32_LookupHMODULE(hLibModule);
  529.     if ( !wm || !hLibModule )
  530.     {
  531.         SetLastError( ERROR_INVALID_HANDLE );
  532. return 0;
  533.     }
  534.     else
  535.         retv = MODULE_FreeLibrary( wm );
  536.     MODULE_RemoveFromList(wm);
  537.     /* garbage... */
  538.     if (local_wm == NULL) my_garbagecollection();
  539.     return retv;
  540. }
  541. /***********************************************************************
  542.  *           MODULE_DecRefCount
  543.  *
  544.  * NOTE: Assumes that the process critical section is held!
  545.  */
  546. static void MODULE_DecRefCount( WINE_MODREF *wm )
  547. {
  548.     int i;
  549.     if ( wm->flags & WINE_MODREF_MARKER )
  550.         return;
  551.     if ( wm->refCount <= 0 )
  552.         return;
  553.     --wm->refCount;
  554.     TRACE("(%s) refCount: %dn", wm->modname, wm->refCount );
  555.     if ( wm->refCount == 0 )
  556.     {
  557.         wm->flags |= WINE_MODREF_MARKER;
  558.         for ( i = 0; i < wm->nDeps; i++ )
  559.             if ( wm->deps[i] )
  560.                 MODULE_DecRefCount( wm->deps[i] );
  561.         wm->flags &= ~WINE_MODREF_MARKER;
  562.     }
  563. }
  564. /***********************************************************************
  565.  *           GetProcAddress    (KERNEL32.257)
  566.  */
  567. FARPROC WINAPI GetProcAddress( HMODULE hModule, LPCSTR function )
  568. {
  569.     return MODULE_GetProcAddress( hModule, function, TRUE );
  570. }
  571. #ifdef DEBUG_QTX_API
  572. /* 
  573. http://lists.apple.com/archives/quicktime-api/2003/Jan/msg00278.html
  574. */
  575. struct ComponentParameters {
  576.     unsigned char                   flags;                      /* call modifiers: sync/async, deferred, immed, etc */
  577.     unsigned char                   paramSize;                  /* size in bytes of actual parameters passed to this call */
  578.     short                           what;                       /* routine selector, negative for Component management calls */
  579.     long                            params[1];                  /* actual parameters for the indicated routine */
  580. };
  581. typedef struct ComponentParameters      ComponentParameters;
  582. static char* component_func(int what){
  583. if (what < 0) // Range 0: Standard Component Calls
  584. switch(what){
  585. case -1: return "kComponentOpenSelect";
  586. case -2: return "kComponentCloseSelect";
  587. case -3: return "kComponentCanDoSelect";
  588. case -4: return "kComponentVersionSelect";
  589. case -5: return "kComponentRegisterSelect";
  590. case -6: return "kComponentTargetSelect";
  591. case -7: return "kComponentUnregisterSelect";
  592. }
  593. if (what >= 0 && what <= 0xff) // Range 1: Generic codecs
  594. switch(what & 0xff){
  595. case 0: return "kImageCodecGetCodecInfoSelect";
  596. case 1: return "kImageCodecGetCompressionTimeSelect";
  597. case 2: return "kImageCodecGetMaxCompressionSizeSelect";
  598. case 3: return "kImageCodecPreCompressSelect";
  599. case 4: return "kImageCodecBandCompressSelect";
  600. case 5: return "kImageCodecPreDecompressSelect";
  601. case 6: return "kImageCodecBandDecompressSelect";
  602. case 7: return "kImageCodecBusySelect";
  603. // finish this list from the above URL
  604. case 0x10: return "kImageCodecIsImageDescriptionEquivalentSelect";
  605. case 0x12: return "kImageCodecDisposeMemorySelect";
  606. case 0x14: return "kImageCodecNewImageBufferMemorySelect";
  607. case 0x28: return "kImageCodecRequestGammaLevelSelect";
  608. }
  609. //if (what >= 0x100 && what <= 0x1ff) // Range 2: Specific to QT Photo JPEG codecs
  610. if (what >= 0x200 && what <= 0x2ff) // Range 3: Base Decompressor
  611. switch(what & 0xff){
  612. case 0: return "Preflight";
  613. case 1: return "Initialize";
  614. case 2: return "BeginBand";
  615. case 3: return "DrawBand";
  616. case 4: return "EndBand";
  617. case 5: return "QueueStarting";
  618. case 6: return "QueueStopping";
  619. }
  620. return "???";
  621. }
  622. static int c_level=0;
  623. static int dump_component(char* name,int type,void* _orig, ComponentParameters *params,void** glob){
  624.     int ( *orig)(ComponentParameters *params, void** glob) = _orig;
  625.     int ret,i;
  626.     fprintf(stderr,"%*sComponentCall: %s  flags=0x%X  size=%d  what=0x%X %sn",3*c_level,"",name,params->flags, params->paramSize, params->what, component_func(params->what));
  627.     for(i=0;i<params->paramSize/4;i++)
  628. fprintf(stderr,"%*s param[%d] = 0x%Xn",3*c_level,"",i,params->params[i]);
  629.     ++c_level;
  630.     ret=orig(params,glob);
  631.     --c_level;
  632.     
  633.     if(ret>=0x1000)
  634. fprintf(stderr,"%*s return=0x%Xn",3*c_level,"",ret);
  635.     else
  636. fprintf(stderr,"%*s return=%dn",3*c_level,"",ret);
  637.     return ret;
  638. }
  639. #define DECL_COMPONENT(sname,name,type) 
  640.     static void* real_ ## sname = NULL; 
  641.     static int fake_ ## sname(ComponentParameters *params,void** glob){ 
  642. return dump_component(name,type,real_ ## sname, params, glob); 
  643.     }
  644. #include "qt_comp.h"
  645. #undef DECL_COMPONENT
  646. #include "qt_fv.h"
  647. #endif
  648. #ifdef EMU_QTX_API
  649. static uint32_t ret_array[4096];
  650. static int ret_i=0;
  651. static int report_func(void *stack_base, int stack_size, reg386_t *reg, uint32_t *flags)
  652. {
  653. #ifdef DEBUG_QTX_API
  654.   int i;
  655.   int* dptr;
  656.   void* pwrapper=NULL;
  657.   void* pptr=NULL;
  658.   char* pname=NULL;
  659.   int plen=-1;
  660.   // find the code:
  661.   
  662.   dptr=0x62b67ae0;dptr+=2*((reg->eax>>16)&255);
  663. //  printf("FUNC: flag=%d ptr=%pn",dptr[0],dptr[1]);
  664.   if(dptr[0]&255){
  665.       dptr=dptr[1];dptr+=4*(reg->eax&65535);
  666. //      printf("FUNC: ptr2=%p  eax=%p  edx=%pn",dptr[1],dptr[0],dptr[2]);
  667.       pwrapper=dptr[1]; pptr=dptr[0]; plen=dptr[2]; 
  668.   } else {
  669.       pwrapper=0x62924910;
  670.       switch(dptr[1]){
  671.       case 0x629248d0:
  672.           dptr=0x62b672c0;dptr+=2*(reg->eax&65535);
  673. //          printf("FUNC: ptr2=%p  eax=%p  edx=%pn",0x62924910,dptr[0],dptr[1]);
  674.           pptr=dptr[0]; plen=dptr[1]; 
  675.   break;
  676.       case 0x62924e40:
  677.           dptr=0x62b67c70;dptr+=2*(reg->eax&65535);
  678. //          printf("FUNC: ptr2=%p  eax=%p  edx=%pn",0x62924910,dptr[0],dptr[1]);
  679.           pptr=dptr[0]; plen=dptr[1]; 
  680.   break;
  681.       case 0x62924e60:
  682.           dptr=0x62b68108;if(reg->eax&0x8000) dptr+=2*(reg->eax|0xffff0000); else dptr+=2*(reg->eax&65535);
  683. //          printf("FUNC: ptr2=%p  eax=%p  edx=%pn",0x62924910,dptr[0],dptr[1]);
  684.           pptr=dptr[0]; plen=dptr[1]; 
  685.   break;
  686.       case 0x62924e80:
  687.           dptr=0x62b68108;if(reg->eax&0x8000) dptr+=2*(reg->eax|0xffff0000); else dptr+=2*(reg->eax&65535);
  688. //          printf("FUNC: ptr2=%p  eax=%p  edx=%pn",0x62924910,dptr[0],dptr[1]);
  689.           pptr=dptr[0]; plen=dptr[1]; 
  690.   break;
  691.       default:
  692.           printf("FUNC: unknown ptr & psize!n");
  693.   pwrapper=dptr[1];
  694.       }
  695.   }
  696.   for(i=0;qt_fv_list[i].name;i++){
  697.           if(qt_fv_list[i].id==reg->eax){
  698.       pname=qt_fv_list[i].name;
  699.       break;
  700.   }
  701.   }
  702.   printf("FUNC[%X/%s]: wrapper=%p  func=%p  len=%dn",reg->eax,
  703.       pname?pname:"???",pwrapper,pptr,plen);
  704.   printf("FUNC: caller=%p  ebx=%pn",((uint32_t *)stack_base)[0],reg->ebx);
  705.   if(pname)
  706.       printf("%*sENTER(%d): %s(",ret_i*2,"",ret_i,pname);
  707.   else
  708.       printf("%*sENTER(%d): %X(",ret_i*2,"",ret_i,reg->eax);
  709.   for (i=0;i<plen/4;i++){
  710.     unsigned int val=((uint32_t *)stack_base)[1+i];
  711.     unsigned char* fcc=&val;
  712.     printf("%s0x%X", i?", ":"",val);
  713.     if(fcc[0]>=0x20 && fcc[0]<128 &&
  714.        fcc[1]>=0x20 && fcc[1]<128 &&
  715.        fcc[2]>=0x20 && fcc[2]<128 &&
  716.        fcc[3]>=0x20 && fcc[3]<128) printf("='%c%c%c%c'",fcc[3],fcc[2],fcc[1],fcc[0]);
  717.     else if(val>=8 && val<65536) printf("=%d",val);
  718.   }
  719.   printf(")n");
  720.   fflush(stdout);
  721. #endif
  722.   
  723. #if 1
  724.   // emulate some functions:
  725.   switch(reg->eax){
  726.   // memory management:
  727.   case 0x150011: //NewPtrClear
  728.   case 0x150012: //NewPtrSysClear
  729.       reg->eax=(uint32_t)malloc(((uint32_t *)stack_base)[1]);
  730.       memset((void *)reg->eax,0,((uint32_t *)stack_base)[1]);
  731. #ifdef DEBUG_QTX_API
  732.       printf("%*sLEAVE(%d): EMULATED! 0x%Xn",ret_i*2,"",ret_i, reg->eax);
  733. #endif
  734.       return 1;
  735.   case 0x15000F: //NewPtr
  736.   case 0x150010: //NewPtrSys
  737.       reg->eax=(uint32_t)malloc(((uint32_t *)stack_base)[1]);
  738. #ifdef DEBUG_QTX_API
  739.       printf("%*sLEAVE(%d): EMULATED! 0x%Xn",ret_i*2,"",ret_i, reg->eax);
  740. #endif
  741.       return 1;
  742.   case 0x15002f: //DisposePtr
  743.       if(((uint32_t *)stack_base)[1]>=0x60000000)
  744.           printf("WARNING! Invalid Ptr handle!n");
  745.       else
  746.           free((void *)((uint32_t *)stack_base)[1]);
  747.       reg->eax=0;
  748. #ifdef DEBUG_QTX_API
  749.       printf("%*sLEAVE(%d): EMULATED! 0x%Xn",ret_i*2,"",ret_i, reg->eax);
  750. #endif
  751.       return 1;
  752.   // mutexes:
  753.   case 0x1d0033: //QTMLCreateMutex
  754.       reg->eax=0xdeadbabe;
  755. #ifdef DEBUG_QTX_API
  756.       printf("%*sLEAVE(%d): EMULATED! 0x%Xn",ret_i*2,"",ret_i, reg->eax);
  757. #endif
  758.       return 1;
  759.   case 0x1d0034: //QTMLDestroyMutex
  760.   case 0x1d0035: //QTMLGrabMutex
  761.   case 0x1d0036: //QTMLReturnMutex
  762.   case 0x1d003d: //QTMLTryGrabMutex
  763.       reg->eax=0;
  764. #ifdef DEBUG_QTX_API
  765.       printf("%*sLEAVE(%d): EMULATED! 0x%Xn",ret_i*2,"",ret_i, reg->eax);
  766. #endif
  767.       return 1;
  768.   }
  769. #endif
  770. #if 0
  771.   switch(reg->eax){
  772. //  case 0x00010000:
  773. //      printf("FUNC: ImageCodecInitialize/ImageCodecGetCodecInfo(ci=%p,&icap=%p)n",((uint32_t *)stack_base)[1],((uint32_t *)stack_base)[4]);
  774. //      break;
  775.   case 0x00010003:
  776.       printf("FUNC: CountComponents(&desc=%p)n",((uint32_t *)stack_base)[1]);
  777.       break;
  778.   case 0x00010004:
  779.       printf("FUNC: FindNextComponent(prev=%p,&desc=%p)n",((uint32_t *)stack_base)[1],((uint32_t *)stack_base)[2]);
  780.       break;
  781.   case 0x00010007:
  782.       printf("FUNC: OpenComponent(prev=%p)n",((uint32_t *)stack_base)[1]);
  783.       break;
  784.   case 0x0003008b:
  785.       printf("FUNC: QTNewGWorldFromPtr(&pts=%p,fourcc=%.4s,&rect=%p,x1=%p,x2=%p,x3=%p,plane=%p,stride=%d)n",
  786.           ((uint32_t *)stack_base)[1],
  787.           &(((uint32_t *)stack_base)[2]),
  788.           ((uint32_t *)stack_base)[3],
  789.           ((uint32_t *)stack_base)[4],
  790.           ((uint32_t *)stack_base)[5],
  791.           ((uint32_t *)stack_base)[6],
  792.           ((uint32_t *)stack_base)[7],
  793.           ((uint32_t *)stack_base)[8]);
  794.       break;
  795.   case 0x001c0018:
  796.       printf("FUNC: GetGWorldPixMap(gworld=%p)n",((uint32_t *)stack_base)[1]);
  797.       break;
  798.   case 0x00110001:
  799.       printf("FUNC: Gestalt(fourcc=%.4s, &ret=%p)n",&(((uint32_t *)stack_base)[1]),((uint32_t *)stack_base)[2]);
  800.       break;
  801.   default: {
  802.       int i;
  803.       for(i=0;qt_fv_list[i].name;i++){
  804.           if(qt_fv_list[i].id==reg->eax){
  805.       printf("FUNC: %sn",qt_fv_list[i].name);
  806.       break;
  807.   }
  808.       }
  809.       }
  810.   }
  811.   // print stack/reg information 
  812.   printf("ENTER(%d) stack = %d bytes @ %pn"
  813.  "eax = 0x%08x edx = 0x%08x ebx = 0x%08x ecx = 0x%08xn"
  814.  "esp = 0x%08x ebp = 0x%08x esi = 0x%08x edi = 0x%08xn"
  815.  "flags = 0x%08xn", ret_i,
  816.  stack_size, stack_base,
  817.  reg->eax, reg->edx, reg->ebx, reg->ecx,
  818.  reg->esp, reg->ebp, reg->esi, reg->edi,
  819.  *flags);
  820. #endif
  821.   // save ret addr:
  822.   ret_array[ret_i]=((uint32_t *)stack_base)[0];
  823.   ++ret_i;
  824. #if 0
  825.   // print first 7 longs in the stack (return address, arg[1], arg[2] ... ) 
  826.   printf("stack[] = { ");
  827.   for (i=0;i<7;i++) {
  828.     printf("%08x ", ((uint32_t *)stack_base)[i]);
  829.   }
  830.   printf("}nn");
  831. #endif
  832.   
  833. //  // mess with function parameters 
  834. //  ((uint32_t *)stack_base)[1] = 0x66554433;
  835. //  // mess with return address...
  836. //  reg->eax = 0x11223344;
  837.     return 0;
  838. }
  839. static int report_func_ret(void *stack_base, int stack_size, reg386_t *reg, uint32_t *flags)
  840. {
  841.   int i;
  842.   short err;
  843.   // restore ret addr:
  844.   --ret_i;
  845.   ((uint32_t *)stack_base)[0]=ret_array[ret_i];
  846. #ifdef DEBUG_QTX_API
  847. #if 1
  848.   printf("%*sLEAVE(%d): 0x%X",ret_i*2,"",ret_i, reg->eax);
  849.   err=reg->eax;
  850.   if(err && (reg->eax>>16)==0) printf(" = %d",err);
  851.   printf("n");
  852.   fflush(stdout);
  853. #else
  854.   // print stack/reg information 
  855.   printf("LEAVE(%d) stack = %d bytes @ %pn"
  856.  "eax = 0x%08x edx = 0x%08x ebx = 0x%08x ecx = 0x%08xn"
  857.  "esp = 0x%08x ebp = 0x%08x esi = 0x%08x edi = 0x%08xn"
  858.  "flags = 0x%08xn", ret_i,
  859.  stack_size, stack_base,
  860.  reg->eax, reg->edx, reg->ebx, reg->ecx,
  861.  reg->esp, reg->ebp, reg->esi, reg->edi,
  862.  *flags);
  863. #endif
  864. #if 0
  865.   // print first 7 longs in the stack (return address, arg[1], arg[2] ... ) 
  866.   printf("stack[] = { ");
  867.   for (i=0;i<7;i++) {
  868.     printf("%08x ", ((uint32_t *)stack_base)[i]);
  869.   }
  870.   printf("}nn");
  871. #endif
  872. #endif
  873.   
  874. //  // mess with function parameters 
  875. //  ((uint32_t *)stack_base)[1] = 0x66554433;
  876. //  // mess with return address...
  877. //  reg->eax = 0x11223344;
  878.     return 0;
  879. }
  880. #endif
  881. /***********************************************************************
  882.  *           MODULE_GetProcAddress    (internal)
  883.  */
  884. FARPROC MODULE_GetProcAddress(
  885. HMODULE hModule,  /* [in] current module handle */
  886. LPCSTR function, /* [in] function to be looked up */
  887. WIN_BOOL snoop )
  888. {
  889.     WINE_MODREF *wm = MODULE32_LookupHMODULE( hModule );
  890. //    WINE_MODREF *wm=local_wm;
  891.     FARPROC retproc;
  892. #ifdef DEBUG_QTX_API
  893.     if (HIWORD(function))
  894. fprintf(stderr,"XXX GetProcAddress(%08lx,%s)n",(DWORD)hModule,function);
  895.     else
  896. fprintf(stderr,"XXX GetProcAddress(%08lx,%p)n",(DWORD)hModule,function);
  897. #endif
  898. // TRACE_(win32)("(%08lx,%s)n",(DWORD)hModule,function);
  899. //    else
  900. // TRACE_(win32)("(%08lx,%p)n",(DWORD)hModule,function);
  901.     if (!wm) {
  902.      SetLastError(ERROR_INVALID_HANDLE);
  903.         return (FARPROC)0;
  904.     }
  905.     switch (wm->type)
  906.     {
  907.     case MODULE32_PE:
  908.       retproc = PE_FindExportedFunction( wm, function, snoop );
  909. if (!retproc) SetLastError(ERROR_PROC_NOT_FOUND);
  910. break;
  911. #ifdef HAVE_LIBDL
  912.     case MODULE32_ELF:
  913. retproc = (FARPROC) dlsym( (void*) wm->module, function);
  914. if (!retproc) SetLastError(ERROR_PROC_NOT_FOUND);
  915. return retproc;
  916. #endif
  917.     default:
  918.      ERR("wine_modref type %d not handled.n",wm->type);
  919.      SetLastError(ERROR_INVALID_HANDLE);
  920.      return (FARPROC)0;
  921.     }
  922. #ifdef EMU_QTX_API
  923.     if (HIWORD(function) && retproc){
  924. #ifdef DEBUG_QTX_API
  925. #define DECL_COMPONENT(sname,name,type) 
  926.     if(!strcmp(function,name)){ 
  927. fprintf(stderr,name "dispatcher catched -> %pn",retproc); 
  928. real_ ## sname = retproc; retproc = fake_ ## sname; 
  929.     }
  930. #include "qt_comp.h"
  931. #undef DECL_COMPONENT
  932. #endif
  933.     if(!strcmp(function,"theQuickTimeDispatcher")
  934. //      || !strcmp(function,"_CallComponentFunctionWithStorage")
  935. //      || !strcmp(function,"_CallComponent")
  936.       ){
  937. fprintf(stderr,"theQuickTimeDispatcher catched -> %pn",retproc);
  938.       report_entry = report_func;
  939.       report_ret   = report_func_ret;
  940.       wrapper_target=(void(*)(void))retproc;
  941.       retproc=(FARPROC)wrapper;
  942.     }
  943.     }
  944. #endif
  945.     return retproc;
  946. }
  947. static int acounter = 0;
  948. void CodecAlloc(void)
  949. {
  950.     acounter++;
  951.     //printf("**************CODEC ALLOC %dn", acounter);
  952. }
  953. void CodecRelease(void)
  954. {
  955.     acounter--;
  956.     //printf("**************CODEC RELEASE %dn", acounter);
  957.     if (acounter == 0)
  958.     {
  959. for (;;)
  960. {
  961.     modref_list* list = local_wm;
  962.     if (!local_wm)
  963. break;
  964.     //printf("CODECRELEASE %pn", list);
  965.             MODULE_FreeLibrary(list->wm);
  966.     MODULE_RemoveFromList(list->wm);
  967.             if (local_wm == NULL)
  968. my_garbagecollection();
  969. }
  970.     }
  971. }