4 * Copyright 1995 Martin von Loewis
5 * Copyright 1998 Justin Bradford
6 * Copyright 1999 Francis Beaudet
7 * Copyright 1999 Sylvain St-Germain
8 * Copyright 2002 Marcus Meissner
9 * Copyright 2004 Mike Hearn
10 * Copyright 2005-2006 Robert Shearman (for CodeWeavers)
12 * This library is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU Lesser General Public
14 * License as published by the Free Software Foundation; either
15 * version 2.1 of the License, or (at your option) any later version.
17 * This library is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * Lesser General Public License for more details.
22 * You should have received a copy of the GNU Lesser General Public
23 * License along with this library; if not, write to the Free Software
24 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
27 * 1. COINIT_MULTITHREADED is 0; it is the lack of COINIT_APARTMENTTHREADED
28 * Therefore do not test against COINIT_MULTITHREADED
30 * TODO list: (items bunched together depend on each other)
32 * - Implement the service control manager (in rpcss) to keep track
33 * of registered class objects: ISCM::ServerRegisterClsid et al
34 * - Implement the OXID resolver so we don't need magic endpoint names for
35 * clients and servers to meet up
47 #define NONAMELESSUNION
48 #define NONAMELESSSTRUCT
55 #define USE_COM_CONTEXT_DEF
63 #include "compobj_private.h"
66 #include "wine/unicode.h"
67 #include "wine/debug.h"
69 WINE_DEFAULT_DEBUG_CHANNEL(ole);
71 #define ARRAYSIZE(array) (sizeof(array)/sizeof((array)[0]))
73 /****************************************************************************
74 * This section defines variables internal to the COM module.
77 static APARTMENT *MTA; /* protected by csApartment */
78 static APARTMENT *MainApartment; /* the first STA apartment */
79 static struct list apts = LIST_INIT( apts ); /* protected by csApartment */
81 static CRITICAL_SECTION csApartment;
82 static CRITICAL_SECTION_DEBUG critsect_debug =
85 { &critsect_debug.ProcessLocksList, &critsect_debug.ProcessLocksList },
86 0, 0, { (DWORD_PTR)(__FILE__ ": csApartment") }
88 static CRITICAL_SECTION csApartment = { &critsect_debug, -1, 0, 0, 0, 0 };
90 struct registered_psclsid
98 * This lock count counts the number of times CoInitialize is called. It is
99 * decreased every time CoUninitialize is called. When it hits 0, the COM
100 * libraries are freed
102 static LONG s_COMLockCount = 0;
103 /* Reference count used by CoAddRefServerProcess/CoReleaseServerProcess */
104 static LONG s_COMServerProcessReferences = 0;
107 * This linked list contains the list of registered class objects. These
108 * are mostly used to register the factories for out-of-proc servers of OLE
111 * TODO: Make this data structure aware of inter-process communication. This
112 * means that parts of this will be exported to rpcss.
114 typedef struct tagRegisteredClass
117 CLSID classIdentifier;
119 LPUNKNOWN classObject;
123 LPSTREAM pMarshaledData; /* FIXME: only really need to store OXID and IPID */
124 void *RpcRegistration;
127 static struct list RegisteredClassList = LIST_INIT(RegisteredClassList);
129 static CRITICAL_SECTION csRegisteredClassList;
130 static CRITICAL_SECTION_DEBUG class_cs_debug =
132 0, 0, &csRegisteredClassList,
133 { &class_cs_debug.ProcessLocksList, &class_cs_debug.ProcessLocksList },
134 0, 0, { (DWORD_PTR)(__FILE__ ": csRegisteredClassList") }
136 static CRITICAL_SECTION csRegisteredClassList = { &class_cs_debug, -1, 0, 0, 0, 0 };
138 /*****************************************************************************
139 * This section contains OpenDllList definitions
141 * The OpenDllList contains only handles of dll loaded by CoGetClassObject or
142 * other functions that do LoadLibrary _without_ giving back a HMODULE.
143 * Without this list these handles would never be freed.
145 * FIXME: a DLL that says OK when asked for unloading is unloaded in the
146 * next unload-call but not before 600 sec.
149 typedef HRESULT (CALLBACK *DllGetClassObjectFunc)(REFCLSID clsid, REFIID iid, LPVOID *ppv);
150 typedef HRESULT (WINAPI *DllCanUnloadNowFunc)(void);
152 typedef struct tagOpenDll
157 DllGetClassObjectFunc DllGetClassObject;
158 DllCanUnloadNowFunc DllCanUnloadNow;
162 static struct list openDllList = LIST_INIT(openDllList);
164 static CRITICAL_SECTION csOpenDllList;
165 static CRITICAL_SECTION_DEBUG dll_cs_debug =
167 0, 0, &csOpenDllList,
168 { &dll_cs_debug.ProcessLocksList, &dll_cs_debug.ProcessLocksList },
169 0, 0, { (DWORD_PTR)(__FILE__ ": csOpenDllList") }
171 static CRITICAL_SECTION csOpenDllList = { &dll_cs_debug, -1, 0, 0, 0, 0 };
173 struct apartment_loaded_dll
181 static const WCHAR wszAptWinClass[] = {'O','l','e','M','a','i','n','T','h','r','e','a','d','W','n','d','C','l','a','s','s',' ',
182 '0','x','#','#','#','#','#','#','#','#',' ',0};
184 /*****************************************************************************
185 * This section contains OpenDllList implementation
188 static OpenDll *COMPOBJ_DllList_Get(LPCWSTR library_name)
192 EnterCriticalSection(&csOpenDllList);
193 LIST_FOR_EACH_ENTRY(ptr, &openDllList, OpenDll, entry)
195 if (!strcmpiW(library_name, ptr->library_name) &&
196 (InterlockedIncrement(&ptr->refs) != 1) /* entry is being destroy if == 1 */)
202 LeaveCriticalSection(&csOpenDllList);
206 /* caller must ensure that library_name is not already in the open dll list */
207 static HRESULT COMPOBJ_DllList_Add(LPCWSTR library_name, OpenDll **ret)
213 DllCanUnloadNowFunc DllCanUnloadNow;
214 DllGetClassObjectFunc DllGetClassObject;
218 *ret = COMPOBJ_DllList_Get(library_name);
219 if (*ret) return S_OK;
221 /* do this outside the csOpenDllList to avoid creating a lock dependency on
223 hLibrary = LoadLibraryExW(library_name, 0, LOAD_WITH_ALTERED_SEARCH_PATH);
226 ERR("couldn't load in-process dll %s\n", debugstr_w(library_name));
227 /* failure: DLL could not be loaded */
228 return E_ACCESSDENIED; /* FIXME: or should this be CO_E_DLLNOTFOUND? */
231 DllCanUnloadNow = (void *)GetProcAddress(hLibrary, "DllCanUnloadNow");
232 /* Note: failing to find DllCanUnloadNow is not a failure */
233 DllGetClassObject = (void *)GetProcAddress(hLibrary, "DllGetClassObject");
234 if (!DllGetClassObject)
236 /* failure: the dll did not export DllGetClassObject */
237 ERR("couldn't find function DllGetClassObject in %s\n", debugstr_w(library_name));
238 FreeLibrary(hLibrary);
239 return CO_E_DLLNOTFOUND;
242 EnterCriticalSection( &csOpenDllList );
244 *ret = COMPOBJ_DllList_Get(library_name);
247 /* another caller to this function already added the dll while we
248 * weren't in the critical section */
249 FreeLibrary(hLibrary);
253 len = strlenW(library_name);
254 entry = HeapAlloc(GetProcessHeap(),0, sizeof(OpenDll));
256 entry->library_name = HeapAlloc(GetProcessHeap(), 0, (len + 1)*sizeof(WCHAR));
257 if (entry && entry->library_name)
259 memcpy(entry->library_name, library_name, (len + 1)*sizeof(WCHAR));
260 entry->library = hLibrary;
262 entry->DllCanUnloadNow = DllCanUnloadNow;
263 entry->DllGetClassObject = DllGetClassObject;
264 list_add_tail(&openDllList, &entry->entry);
268 HeapFree(GetProcessHeap(), 0, entry);
270 FreeLibrary(hLibrary);
275 LeaveCriticalSection( &csOpenDllList );
280 /* pass FALSE for free_entry to release a reference without destroying the
281 * entry if it reaches zero or TRUE otherwise */
282 static void COMPOBJ_DllList_ReleaseRef(OpenDll *entry, BOOL free_entry)
284 if (!InterlockedDecrement(&entry->refs) && free_entry)
286 EnterCriticalSection(&csOpenDllList);
287 list_remove(&entry->entry);
288 LeaveCriticalSection(&csOpenDllList);
290 TRACE("freeing %p\n", entry->library);
291 FreeLibrary(entry->library);
293 HeapFree(GetProcessHeap(), 0, entry->library_name);
294 HeapFree(GetProcessHeap(), 0, entry);
298 /* frees memory associated with active dll list */
299 static void COMPOBJ_DllList_Free(void)
301 OpenDll *entry, *cursor2;
302 EnterCriticalSection(&csOpenDllList);
303 LIST_FOR_EACH_ENTRY_SAFE(entry, cursor2, &openDllList, OpenDll, entry)
305 list_remove(&entry->entry);
307 HeapFree(GetProcessHeap(), 0, entry->library_name);
308 HeapFree(GetProcessHeap(), 0, entry);
310 LeaveCriticalSection(&csOpenDllList);
311 DeleteCriticalSection(&csOpenDllList);
314 /******************************************************************************
318 static DWORD apartment_addref(struct apartment *apt)
320 DWORD refs = InterlockedIncrement(&apt->refs);
321 TRACE("%s: before = %d\n", wine_dbgstr_longlong(apt->oxid), refs - 1);
325 /* allocates memory and fills in the necessary fields for a new apartment
326 * object. must be called inside apartment cs */
327 static APARTMENT *apartment_construct(DWORD model)
331 TRACE("creating new apartment, model=%d\n", model);
333 apt = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*apt));
334 apt->tid = GetCurrentThreadId();
336 list_init(&apt->proxies);
337 list_init(&apt->stubmgrs);
338 list_init(&apt->psclsids);
339 list_init(&apt->loaded_dlls);
342 apt->remunk_exported = FALSE;
344 InitializeCriticalSection(&apt->cs);
345 DEBUG_SET_CRITSEC_NAME(&apt->cs, "apartment");
347 apt->multi_threaded = !(model & COINIT_APARTMENTTHREADED);
349 if (apt->multi_threaded)
351 /* FIXME: should be randomly generated by in an RPC call to rpcss */
352 apt->oxid = ((OXID)GetCurrentProcessId() << 32) | 0xcafe;
356 /* FIXME: should be randomly generated by in an RPC call to rpcss */
357 apt->oxid = ((OXID)GetCurrentProcessId() << 32) | GetCurrentThreadId();
360 TRACE("Created apartment on OXID %s\n", wine_dbgstr_longlong(apt->oxid));
362 list_add_head(&apts, &apt->entry);
367 /* gets and existing apartment if one exists or otherwise creates an apartment
368 * structure which stores OLE apartment-local information and stores a pointer
369 * to it in the thread-local storage */
370 static APARTMENT *apartment_get_or_create(DWORD model)
372 APARTMENT *apt = COM_CurrentApt();
376 if (model & COINIT_APARTMENTTHREADED)
378 EnterCriticalSection(&csApartment);
380 apt = apartment_construct(model);
385 TRACE("Created main-threaded apartment with OXID %s\n", wine_dbgstr_longlong(apt->oxid));
388 LeaveCriticalSection(&csApartment);
391 apartment_createwindowifneeded(apt);
395 EnterCriticalSection(&csApartment);
397 /* The multi-threaded apartment (MTA) contains zero or more threads interacting
398 * with free threaded (ie thread safe) COM objects. There is only ever one MTA
402 TRACE("entering the multithreaded apartment %s\n", wine_dbgstr_longlong(MTA->oxid));
403 apartment_addref(MTA);
406 MTA = apartment_construct(model);
410 LeaveCriticalSection(&csApartment);
412 COM_CurrentInfo()->apt = apt;
418 static inline BOOL apartment_is_model(const APARTMENT *apt, DWORD model)
420 return (apt->multi_threaded == !(model & COINIT_APARTMENTTHREADED));
423 static void COM_RevokeRegisteredClassObject(RegisteredClass *curClass)
425 list_remove(&curClass->entry);
427 if (curClass->runContext & CLSCTX_LOCAL_SERVER)
428 RPC_StopLocalServer(curClass->RpcRegistration);
431 * Release the reference to the class object.
433 IUnknown_Release(curClass->classObject);
435 if (curClass->pMarshaledData)
438 memset(&zero, 0, sizeof(zero));
439 IStream_Seek(curClass->pMarshaledData, zero, STREAM_SEEK_SET, NULL);
440 CoReleaseMarshalData(curClass->pMarshaledData);
441 IStream_Release(curClass->pMarshaledData);
444 HeapFree(GetProcessHeap(), 0, curClass);
447 static void COM_RevokeAllClasses(const struct apartment *apt)
449 RegisteredClass *curClass, *cursor;
451 EnterCriticalSection( &csRegisteredClassList );
453 LIST_FOR_EACH_ENTRY_SAFE(curClass, cursor, &RegisteredClassList, RegisteredClass, entry)
455 if (curClass->apartment_id == apt->oxid)
456 COM_RevokeRegisteredClassObject(curClass);
459 LeaveCriticalSection( &csRegisteredClassList );
462 /******************************************************************************
463 * Implementation of the manual reset event object. (CLSID_ManualResetEvent)
466 typedef struct ManualResetEvent {
467 ISynchronize ISynchronize_iface;
468 ISynchronizeHandle ISynchronizeHandle_iface;
473 static inline MREImpl *impl_from_ISynchronize(ISynchronize *iface)
475 return CONTAINING_RECORD(iface, MREImpl, ISynchronize_iface);
478 static HRESULT WINAPI ISynchronize_fnQueryInterface(ISynchronize *iface, REFIID riid, void **ppv)
480 MREImpl *This = impl_from_ISynchronize(iface);
482 TRACE("%p (%s, %p)\n", This, debugstr_guid(riid), ppv);
484 if(IsEqualGUID(riid, &IID_IUnknown) || IsEqualGUID(riid, &IID_ISynchronize)) {
485 *ppv = &This->ISynchronize_iface;
486 }else if(IsEqualGUID(riid, &IID_ISynchronizeHandle)) {
487 *ppv = &This->ISynchronizeHandle_iface;
489 ERR("Unknown interface %s requested.\n", debugstr_guid(riid));
491 return E_NOINTERFACE;
494 IUnknown_AddRef((IUnknown*)*ppv);
498 static ULONG WINAPI ISynchronize_fnAddRef(ISynchronize *iface)
500 MREImpl *This = impl_from_ISynchronize(iface);
501 LONG ref = InterlockedIncrement(&This->ref);
502 TRACE("%p - ref %d\n", This, ref);
507 static ULONG WINAPI ISynchronize_fnRelease(ISynchronize *iface)
509 MREImpl *This = impl_from_ISynchronize(iface);
510 LONG ref = InterlockedDecrement(&This->ref);
511 TRACE("%p - ref %d\n", This, ref);
515 CloseHandle(This->event);
516 HeapFree(GetProcessHeap(), 0, This);
522 static HRESULT WINAPI ISynchronize_fnWait(ISynchronize *iface, DWORD dwFlags, DWORD dwMilliseconds)
524 MREImpl *This = impl_from_ISynchronize(iface);
526 TRACE("%p (%08x, %08x)\n", This, dwFlags, dwMilliseconds);
527 return CoWaitForMultipleHandles(dwFlags, dwMilliseconds, 1, &This->event, &index);
530 static HRESULT WINAPI ISynchronize_fnSignal(ISynchronize *iface)
532 MREImpl *This = impl_from_ISynchronize(iface);
534 SetEvent(This->event);
538 static HRESULT WINAPI ISynchronize_fnReset(ISynchronize *iface)
540 MREImpl *This = impl_from_ISynchronize(iface);
542 ResetEvent(This->event);
546 static ISynchronizeVtbl vt_ISynchronize = {
547 ISynchronize_fnQueryInterface,
548 ISynchronize_fnAddRef,
549 ISynchronize_fnRelease,
551 ISynchronize_fnSignal,
555 static inline MREImpl *impl_from_ISynchronizeHandle(ISynchronizeHandle *iface)
557 return CONTAINING_RECORD(iface, MREImpl, ISynchronizeHandle_iface);
560 static HRESULT WINAPI SynchronizeHandle_QueryInterface(ISynchronizeHandle *iface, REFIID riid, void **ppv)
562 MREImpl *This = impl_from_ISynchronizeHandle(iface);
563 return ISynchronize_QueryInterface(&This->ISynchronize_iface, riid, ppv);
566 static ULONG WINAPI SynchronizeHandle_AddRef(ISynchronizeHandle *iface)
568 MREImpl *This = impl_from_ISynchronizeHandle(iface);
569 return ISynchronize_AddRef(&This->ISynchronize_iface);
572 static ULONG WINAPI SynchronizeHandle_Release(ISynchronizeHandle *iface)
574 MREImpl *This = impl_from_ISynchronizeHandle(iface);
575 return ISynchronize_Release(&This->ISynchronize_iface);
578 static HRESULT WINAPI SynchronizeHandle_GetHandle(ISynchronizeHandle *iface, HANDLE *ph)
580 MREImpl *This = impl_from_ISynchronizeHandle(iface);
586 static const ISynchronizeHandleVtbl SynchronizeHandleVtbl = {
587 SynchronizeHandle_QueryInterface,
588 SynchronizeHandle_AddRef,
589 SynchronizeHandle_Release,
590 SynchronizeHandle_GetHandle
593 static HRESULT ManualResetEvent_Construct(IUnknown *punkouter, REFIID iid, void **ppv)
595 MREImpl *This = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(MREImpl));
599 FIXME("Aggregation not implemented.\n");
602 This->ISynchronize_iface.lpVtbl = &vt_ISynchronize;
603 This->ISynchronizeHandle_iface.lpVtbl = &SynchronizeHandleVtbl;
604 This->event = CreateEventW(NULL, TRUE, FALSE, NULL);
606 hr = ISynchronize_QueryInterface(&This->ISynchronize_iface, iid, ppv);
607 ISynchronize_Release(&This->ISynchronize_iface);
611 /***********************************************************************
612 * CoRevokeClassObject [OLE32.@]
614 * Removes a class object from the class registry.
617 * dwRegister [I] Cookie returned from CoRegisterClassObject().
621 * Failure: HRESULT code.
624 * Must be called from the same apartment that called CoRegisterClassObject(),
625 * otherwise it will fail with RPC_E_WRONG_THREAD.
628 * CoRegisterClassObject
630 HRESULT WINAPI CoRevokeClassObject(
633 HRESULT hr = E_INVALIDARG;
634 RegisteredClass *curClass;
637 TRACE("(%08x)\n",dwRegister);
639 apt = COM_CurrentApt();
642 ERR("COM was not initialized\n");
643 return CO_E_NOTINITIALIZED;
646 EnterCriticalSection( &csRegisteredClassList );
648 LIST_FOR_EACH_ENTRY(curClass, &RegisteredClassList, RegisteredClass, entry)
651 * Check if we have a match on the cookie.
653 if (curClass->dwCookie == dwRegister)
655 if (curClass->apartment_id == apt->oxid)
657 COM_RevokeRegisteredClassObject(curClass);
662 ERR("called from wrong apartment, should be called from %s\n",
663 wine_dbgstr_longlong(curClass->apartment_id));
664 hr = RPC_E_WRONG_THREAD;
670 LeaveCriticalSection( &csRegisteredClassList );
675 /* frees unused libraries loaded by apartment_getclassobject by calling the
676 * DLL's DllCanUnloadNow entry point */
677 static void apartment_freeunusedlibraries(struct apartment *apt, DWORD delay)
679 struct apartment_loaded_dll *entry, *next;
680 EnterCriticalSection(&apt->cs);
681 LIST_FOR_EACH_ENTRY_SAFE(entry, next, &apt->loaded_dlls, struct apartment_loaded_dll, entry)
683 if (entry->dll->DllCanUnloadNow && (entry->dll->DllCanUnloadNow() == S_OK))
685 DWORD real_delay = delay;
687 if (real_delay == INFINITE)
689 /* DLLs that return multi-threaded objects aren't unloaded
690 * straight away to cope for programs that have races between
691 * last object destruction and threads in the DLLs that haven't
692 * finished, despite DllCanUnloadNow returning S_OK */
693 if (entry->multi_threaded)
694 real_delay = 10 * 60 * 1000; /* 10 minutes */
699 if (!real_delay || (entry->unload_time && (entry->unload_time < GetTickCount())))
701 list_remove(&entry->entry);
702 COMPOBJ_DllList_ReleaseRef(entry->dll, TRUE);
703 HeapFree(GetProcessHeap(), 0, entry);
706 entry->unload_time = GetTickCount() + real_delay;
708 else if (entry->unload_time)
709 entry->unload_time = 0;
711 LeaveCriticalSection(&apt->cs);
714 DWORD apartment_release(struct apartment *apt)
718 EnterCriticalSection(&csApartment);
720 ret = InterlockedDecrement(&apt->refs);
721 TRACE("%s: after = %d\n", wine_dbgstr_longlong(apt->oxid), ret);
722 /* destruction stuff that needs to happen under csApartment CS */
725 if (apt == MTA) MTA = NULL;
726 else if (apt == MainApartment) MainApartment = NULL;
727 list_remove(&apt->entry);
730 LeaveCriticalSection(&csApartment);
734 struct list *cursor, *cursor2;
736 TRACE("destroying apartment %p, oxid %s\n", apt, wine_dbgstr_longlong(apt->oxid));
738 /* Release the references to the registered class objects */
739 COM_RevokeAllClasses(apt);
741 /* no locking is needed for this apartment, because no other thread
742 * can access it at this point */
744 apartment_disconnectproxies(apt);
746 if (apt->win) DestroyWindow(apt->win);
747 if (apt->host_apt_tid) PostThreadMessageW(apt->host_apt_tid, WM_QUIT, 0, 0);
749 LIST_FOR_EACH_SAFE(cursor, cursor2, &apt->stubmgrs)
751 struct stub_manager *stubmgr = LIST_ENTRY(cursor, struct stub_manager, entry);
752 /* release the implicit reference given by the fact that the
753 * stub has external references (it must do since it is in the
754 * stub manager list in the apartment and all non-apartment users
755 * must have a ref on the apartment and so it cannot be destroyed).
757 stub_manager_int_release(stubmgr);
760 LIST_FOR_EACH_SAFE(cursor, cursor2, &apt->psclsids)
762 struct registered_psclsid *registered_psclsid =
763 LIST_ENTRY(cursor, struct registered_psclsid, entry);
765 list_remove(®istered_psclsid->entry);
766 HeapFree(GetProcessHeap(), 0, registered_psclsid);
769 /* if this assert fires, then another thread took a reference to a
770 * stub manager without taking a reference to the containing
771 * apartment, which it must do. */
772 assert(list_empty(&apt->stubmgrs));
774 if (apt->filter) IMessageFilter_Release(apt->filter);
776 /* free as many unused libraries as possible... */
777 apartment_freeunusedlibraries(apt, 0);
779 /* ... and free the memory for the apartment loaded dll entry and
780 * release the dll list reference without freeing the library for the
782 while ((cursor = list_head(&apt->loaded_dlls)))
784 struct apartment_loaded_dll *apartment_loaded_dll = LIST_ENTRY(cursor, struct apartment_loaded_dll, entry);
785 COMPOBJ_DllList_ReleaseRef(apartment_loaded_dll->dll, FALSE);
787 HeapFree(GetProcessHeap(), 0, apartment_loaded_dll);
790 DEBUG_CLEAR_CRITSEC_NAME(&apt->cs);
791 DeleteCriticalSection(&apt->cs);
793 HeapFree(GetProcessHeap(), 0, apt);
799 /* The given OXID must be local to this process:
801 * The ref parameter is here mostly to ensure people remember that
802 * they get one, you should normally take a ref for thread safety.
804 APARTMENT *apartment_findfromoxid(OXID oxid, BOOL ref)
806 APARTMENT *result = NULL;
809 EnterCriticalSection(&csApartment);
810 LIST_FOR_EACH( cursor, &apts )
812 struct apartment *apt = LIST_ENTRY( cursor, struct apartment, entry );
813 if (apt->oxid == oxid)
816 if (ref) apartment_addref(result);
820 LeaveCriticalSection(&csApartment);
825 /* gets the apartment which has a given creator thread ID. The caller must
826 * release the reference from the apartment as soon as the apartment pointer
827 * is no longer required. */
828 APARTMENT *apartment_findfromtid(DWORD tid)
830 APARTMENT *result = NULL;
833 EnterCriticalSection(&csApartment);
834 LIST_FOR_EACH( cursor, &apts )
836 struct apartment *apt = LIST_ENTRY( cursor, struct apartment, entry );
840 apartment_addref(result);
844 LeaveCriticalSection(&csApartment);
849 /* gets the main apartment if it exists. The caller must
850 * release the reference from the apartment as soon as the apartment pointer
851 * is no longer required. */
852 static APARTMENT *apartment_findmain(void)
856 EnterCriticalSection(&csApartment);
858 result = MainApartment;
859 if (result) apartment_addref(result);
861 LeaveCriticalSection(&csApartment);
866 /* gets the multi-threaded apartment if it exists. The caller must
867 * release the reference from the apartment as soon as the apartment pointer
868 * is no longer required. */
869 static APARTMENT *apartment_find_multi_threaded(void)
871 APARTMENT *result = NULL;
874 EnterCriticalSection(&csApartment);
876 LIST_FOR_EACH( cursor, &apts )
878 struct apartment *apt = LIST_ENTRY( cursor, struct apartment, entry );
879 if (apt->multi_threaded)
882 apartment_addref(result);
887 LeaveCriticalSection(&csApartment);
891 /* gets the specified class object by loading the appropriate DLL, if
892 * necessary and calls the DllGetClassObject function for the DLL */
893 static HRESULT apartment_getclassobject(struct apartment *apt, LPCWSTR dllpath,
894 BOOL apartment_threaded,
895 REFCLSID rclsid, REFIID riid, void **ppv)
897 static const WCHAR wszOle32[] = {'o','l','e','3','2','.','d','l','l',0};
900 struct apartment_loaded_dll *apartment_loaded_dll;
902 if (!strcmpiW(dllpath, wszOle32))
904 /* we don't need to control the lifetime of this dll, so use the local
905 * implementation of DllGetClassObject directly */
906 TRACE("calling ole32!DllGetClassObject\n");
907 hr = DllGetClassObject(rclsid, riid, ppv);
910 ERR("DllGetClassObject returned error 0x%08x\n", hr);
915 EnterCriticalSection(&apt->cs);
917 LIST_FOR_EACH_ENTRY(apartment_loaded_dll, &apt->loaded_dlls, struct apartment_loaded_dll, entry)
918 if (!strcmpiW(dllpath, apartment_loaded_dll->dll->library_name))
920 TRACE("found %s already loaded\n", debugstr_w(dllpath));
927 apartment_loaded_dll = HeapAlloc(GetProcessHeap(), 0, sizeof(*apartment_loaded_dll));
928 if (!apartment_loaded_dll)
932 apartment_loaded_dll->unload_time = 0;
933 apartment_loaded_dll->multi_threaded = FALSE;
934 hr = COMPOBJ_DllList_Add( dllpath, &apartment_loaded_dll->dll );
936 HeapFree(GetProcessHeap(), 0, apartment_loaded_dll);
940 TRACE("added new loaded dll %s\n", debugstr_w(dllpath));
941 list_add_tail(&apt->loaded_dlls, &apartment_loaded_dll->entry);
945 LeaveCriticalSection(&apt->cs);
949 /* one component being multi-threaded overrides any number of
950 * apartment-threaded components */
951 if (!apartment_threaded)
952 apartment_loaded_dll->multi_threaded = TRUE;
954 TRACE("calling DllGetClassObject %p\n", apartment_loaded_dll->dll->DllGetClassObject);
955 /* OK: get the ClassObject */
956 hr = apartment_loaded_dll->dll->DllGetClassObject(rclsid, riid, ppv);
959 ERR("DllGetClassObject returned error 0x%08x\n", hr);
965 /***********************************************************************
966 * COM_RegReadPath [internal]
968 * Reads a registry value and expands it when necessary
970 static DWORD COM_RegReadPath(HKEY hkeyroot, WCHAR * dst, DWORD dstlen)
975 DWORD dwLength = dstlen * sizeof(WCHAR);
977 if( (ret = RegQueryValueExW(hkeyroot, NULL, NULL, &keytype, (LPBYTE)src, &dwLength)) == ERROR_SUCCESS ) {
978 if (keytype == REG_EXPAND_SZ) {
979 if (dstlen <= ExpandEnvironmentStringsW(src, dst, dstlen)) ret = ERROR_MORE_DATA;
981 const WCHAR *quote_start;
982 quote_start = strchrW(src, '\"');
984 const WCHAR *quote_end = strchrW(quote_start + 1, '\"');
986 memmove(src, quote_start + 1,
987 (quote_end - quote_start - 1) * sizeof(WCHAR));
988 src[quote_end - quote_start - 1] = '\0';
991 lstrcpynW(dst, src, dstlen);
997 struct host_object_params
1000 CLSID clsid; /* clsid of object to marshal */
1001 IID iid; /* interface to marshal */
1002 HANDLE event; /* event signalling when ready for multi-threaded case */
1003 HRESULT hr; /* result for multi-threaded case */
1004 IStream *stream; /* stream that the object will be marshaled into */
1005 BOOL apartment_threaded; /* is the component purely apartment-threaded? */
1008 static HRESULT apartment_hostobject(struct apartment *apt,
1009 const struct host_object_params *params)
1013 static const LARGE_INTEGER llZero;
1014 WCHAR dllpath[MAX_PATH+1];
1016 TRACE("clsid %s, iid %s\n", debugstr_guid(¶ms->clsid), debugstr_guid(¶ms->iid));
1018 if (COM_RegReadPath(params->hkeydll, dllpath, ARRAYSIZE(dllpath)) != ERROR_SUCCESS)
1020 /* failure: CLSID is not found in registry */
1021 WARN("class %s not registered inproc\n", debugstr_guid(¶ms->clsid));
1022 return REGDB_E_CLASSNOTREG;
1025 hr = apartment_getclassobject(apt, dllpath, params->apartment_threaded,
1026 ¶ms->clsid, ¶ms->iid, (void **)&object);
1030 hr = CoMarshalInterface(params->stream, ¶ms->iid, object, MSHCTX_INPROC, NULL, MSHLFLAGS_NORMAL);
1032 IUnknown_Release(object);
1033 IStream_Seek(params->stream, llZero, STREAM_SEEK_SET, NULL);
1038 static LRESULT CALLBACK apartment_wndproc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam)
1043 RPC_ExecuteCall((struct dispatch_params *)lParam);
1046 return apartment_hostobject(COM_CurrentApt(), (const struct host_object_params *)lParam);
1048 return DefWindowProcW(hWnd, msg, wParam, lParam);
1052 struct host_thread_params
1054 COINIT threading_model;
1056 HWND apartment_hwnd;
1059 /* thread for hosting an object to allow an object to appear to be created in
1060 * an apartment with an incompatible threading model */
1061 static DWORD CALLBACK apartment_hostobject_thread(LPVOID p)
1063 struct host_thread_params *params = p;
1066 struct apartment *apt;
1070 hr = CoInitializeEx(NULL, params->threading_model);
1071 if (FAILED(hr)) return hr;
1073 apt = COM_CurrentApt();
1074 if (params->threading_model == COINIT_APARTMENTTHREADED)
1076 apartment_createwindowifneeded(apt);
1077 params->apartment_hwnd = apartment_getwindow(apt);
1080 params->apartment_hwnd = NULL;
1082 /* force the message queue to be created before signaling parent thread */
1083 PeekMessageW(&msg, NULL, WM_USER, WM_USER, PM_NOREMOVE);
1085 SetEvent(params->ready_event);
1086 params = NULL; /* can't touch params after here as it may be invalid */
1088 while (GetMessageW(&msg, NULL, 0, 0))
1090 if (!msg.hwnd && (msg.message == DM_HOSTOBJECT))
1092 struct host_object_params *obj_params = (struct host_object_params *)msg.lParam;
1093 obj_params->hr = apartment_hostobject(apt, obj_params);
1094 SetEvent(obj_params->event);
1098 TranslateMessage(&msg);
1099 DispatchMessageW(&msg);
1110 /* finds or creates a host apartment, creates the object inside it and returns
1111 * a proxy to it so that the object can be used in the apartment of the
1112 * caller of this function */
1113 static HRESULT apartment_hostobject_in_hostapt(
1114 struct apartment *apt, BOOL multi_threaded, BOOL main_apartment,
1115 HKEY hkeydll, REFCLSID rclsid, REFIID riid, void **ppv)
1117 struct host_object_params params;
1118 HWND apartment_hwnd = NULL;
1119 DWORD apartment_tid = 0;
1122 if (!multi_threaded && main_apartment)
1124 APARTMENT *host_apt = apartment_findmain();
1127 apartment_hwnd = apartment_getwindow(host_apt);
1128 apartment_release(host_apt);
1132 if (!apartment_hwnd)
1134 EnterCriticalSection(&apt->cs);
1136 if (!apt->host_apt_tid)
1138 struct host_thread_params thread_params;
1142 thread_params.threading_model = multi_threaded ? COINIT_MULTITHREADED : COINIT_APARTMENTTHREADED;
1143 handles[0] = thread_params.ready_event = CreateEventW(NULL, FALSE, FALSE, NULL);
1144 thread_params.apartment_hwnd = NULL;
1145 handles[1] = CreateThread(NULL, 0, apartment_hostobject_thread, &thread_params, 0, &apt->host_apt_tid);
1148 CloseHandle(handles[0]);
1149 LeaveCriticalSection(&apt->cs);
1150 return E_OUTOFMEMORY;
1152 wait_value = WaitForMultipleObjects(2, handles, FALSE, INFINITE);
1153 CloseHandle(handles[0]);
1154 CloseHandle(handles[1]);
1155 if (wait_value == WAIT_OBJECT_0)
1156 apt->host_apt_hwnd = thread_params.apartment_hwnd;
1159 LeaveCriticalSection(&apt->cs);
1160 return E_OUTOFMEMORY;
1164 if (multi_threaded || !main_apartment)
1166 apartment_hwnd = apt->host_apt_hwnd;
1167 apartment_tid = apt->host_apt_tid;
1170 LeaveCriticalSection(&apt->cs);
1173 /* another thread may have become the main apartment in the time it took
1174 * us to create the thread for the host apartment */
1175 if (!apartment_hwnd && !multi_threaded && main_apartment)
1177 APARTMENT *host_apt = apartment_findmain();
1180 apartment_hwnd = apartment_getwindow(host_apt);
1181 apartment_release(host_apt);
1185 params.hkeydll = hkeydll;
1186 params.clsid = *rclsid;
1188 hr = CreateStreamOnHGlobal(NULL, TRUE, ¶ms.stream);
1191 params.apartment_threaded = !multi_threaded;
1195 params.event = CreateEventW(NULL, FALSE, FALSE, NULL);
1196 if (!PostThreadMessageW(apartment_tid, DM_HOSTOBJECT, 0, (LPARAM)¶ms))
1200 WaitForSingleObject(params.event, INFINITE);
1203 CloseHandle(params.event);
1207 if (!apartment_hwnd)
1209 ERR("host apartment didn't create window\n");
1213 hr = SendMessageW(apartment_hwnd, DM_HOSTOBJECT, 0, (LPARAM)¶ms);
1216 hr = CoUnmarshalInterface(params.stream, riid, ppv);
1217 IStream_Release(params.stream);
1221 /* create a window for the apartment or return the current one if one has
1222 * already been created */
1223 HRESULT apartment_createwindowifneeded(struct apartment *apt)
1225 if (apt->multi_threaded)
1230 HWND hwnd = CreateWindowW(wszAptWinClass, NULL, 0,
1232 HWND_MESSAGE, 0, hProxyDll, NULL);
1235 ERR("CreateWindow failed with error %d\n", GetLastError());
1236 return HRESULT_FROM_WIN32(GetLastError());
1238 if (InterlockedCompareExchangePointer((PVOID *)&apt->win, hwnd, NULL))
1239 /* someone beat us to it */
1240 DestroyWindow(hwnd);
1246 /* retrieves the window for the main- or apartment-threaded apartment */
1247 HWND apartment_getwindow(const struct apartment *apt)
1249 assert(!apt->multi_threaded);
1253 void apartment_joinmta(void)
1255 apartment_addref(MTA);
1256 COM_CurrentInfo()->apt = MTA;
1259 static void COMPOBJ_InitProcess( void )
1263 /* Dispatching to the correct thread in an apartment is done through
1264 * window messages rather than RPC transports. When an interface is
1265 * marshalled into another apartment in the same process, a window of the
1266 * following class is created. The *caller* of CoMarshalInterface (i.e., the
1267 * application) is responsible for pumping the message loop in that thread.
1268 * The WM_USER messages which point to the RPCs are then dispatched to
1269 * apartment_wndproc by the user's code from the apartment in which the
1270 * interface was unmarshalled.
1272 memset(&wclass, 0, sizeof(wclass));
1273 wclass.lpfnWndProc = apartment_wndproc;
1274 wclass.hInstance = hProxyDll;
1275 wclass.lpszClassName = wszAptWinClass;
1276 RegisterClassW(&wclass);
1279 static void COMPOBJ_UninitProcess( void )
1281 UnregisterClassW(wszAptWinClass, hProxyDll);
1284 static void COM_TlsDestroy(void)
1286 struct oletls *info = NtCurrentTeb()->ReservedForOle;
1289 if (info->apt) apartment_release(info->apt);
1290 if (info->errorinfo) IErrorInfo_Release(info->errorinfo);
1291 if (info->state) IUnknown_Release(info->state);
1292 if (info->spy) IInitializeSpy_Release(info->spy);
1293 if (info->context_token) IObjContext_Release(info->context_token);
1294 HeapFree(GetProcessHeap(), 0, info);
1295 NtCurrentTeb()->ReservedForOle = NULL;
1299 /******************************************************************************
1300 * CoBuildVersion [OLE32.@]
1302 * Gets the build version of the DLL.
1307 * Current build version, hiword is majornumber, loword is minornumber
1309 DWORD WINAPI CoBuildVersion(void)
1311 TRACE("Returning version %d, build %d.\n", rmm, rup);
1312 return (rmm<<16)+rup;
1315 /******************************************************************************
1316 * CoRegisterInitializeSpy [OLE32.@]
1318 * Add a Spy that watches CoInitializeEx calls
1321 * spy [I] Pointer to IUnknown interface that will be QueryInterface'd.
1322 * cookie [II] cookie receiver
1325 * Success: S_OK if not already initialized, S_FALSE otherwise.
1326 * Failure: HRESULT code.
1331 HRESULT WINAPI CoRegisterInitializeSpy(IInitializeSpy *spy, ULARGE_INTEGER *cookie)
1333 struct oletls *info = COM_CurrentInfo();
1336 TRACE("(%p, %p)\n", spy, cookie);
1338 if (!spy || !cookie || !info)
1341 WARN("Could not allocate tls\n");
1342 return E_INVALIDARG;
1347 FIXME("Already registered?\n");
1348 return E_UNEXPECTED;
1351 hr = IInitializeSpy_QueryInterface(spy, &IID_IInitializeSpy, (void **) &info->spy);
1354 cookie->QuadPart = (DWORD_PTR)spy;
1360 /******************************************************************************
1361 * CoRevokeInitializeSpy [OLE32.@]
1363 * Remove a spy that previously watched CoInitializeEx calls
1366 * cookie [I] The cookie obtained from a previous CoRegisterInitializeSpy call
1369 * Success: S_OK if a spy is removed
1370 * Failure: E_INVALIDARG
1375 HRESULT WINAPI CoRevokeInitializeSpy(ULARGE_INTEGER cookie)
1377 struct oletls *info = COM_CurrentInfo();
1378 TRACE("(%s)\n", wine_dbgstr_longlong(cookie.QuadPart));
1380 if (!info || !info->spy || cookie.QuadPart != (DWORD_PTR)info->spy)
1381 return E_INVALIDARG;
1383 IInitializeSpy_Release(info->spy);
1389 /******************************************************************************
1390 * CoInitialize [OLE32.@]
1392 * Initializes the COM libraries by calling CoInitializeEx with
1393 * COINIT_APARTMENTTHREADED, ie it enters a STA thread.
1396 * lpReserved [I] Pointer to IMalloc interface (obsolete, should be NULL).
1399 * Success: S_OK if not already initialized, S_FALSE otherwise.
1400 * Failure: HRESULT code.
1405 HRESULT WINAPI CoInitialize(LPVOID lpReserved)
1408 * Just delegate to the newer method.
1410 return CoInitializeEx(lpReserved, COINIT_APARTMENTTHREADED);
1413 /******************************************************************************
1414 * CoInitializeEx [OLE32.@]
1416 * Initializes the COM libraries.
1419 * lpReserved [I] Pointer to IMalloc interface (obsolete, should be NULL).
1420 * dwCoInit [I] One or more flags from the COINIT enumeration. See notes.
1423 * S_OK if successful,
1424 * S_FALSE if this function was called already.
1425 * RPC_E_CHANGED_MODE if a previous call to CoInitializeEx specified another
1430 * The behavior used to set the IMalloc used for memory management is
1432 * The dwCoInit parameter must specify one of the following apartment
1434 *| COINIT_APARTMENTTHREADED - A single-threaded apartment (STA).
1435 *| COINIT_MULTITHREADED - A multi-threaded apartment (MTA).
1436 * The parameter may also specify zero or more of the following flags:
1437 *| COINIT_DISABLE_OLE1DDE - Don't use DDE for OLE1 support.
1438 *| COINIT_SPEED_OVER_MEMORY - Trade memory for speed.
1443 HRESULT WINAPI CoInitializeEx(LPVOID lpReserved, DWORD dwCoInit)
1445 struct oletls *info = COM_CurrentInfo();
1449 TRACE("(%p, %x)\n", lpReserved, (int)dwCoInit);
1451 if (lpReserved!=NULL)
1453 ERR("(%p, %x) - Bad parameter passed-in %p, must be an old Windows Application\n", lpReserved, (int)dwCoInit, lpReserved);
1457 * Check the lock count. If this is the first time going through the initialize
1458 * process, we have to initialize the libraries.
1460 * And crank-up that lock count.
1462 if (InterlockedExchangeAdd(&s_COMLockCount,1)==0)
1465 * Initialize the various COM libraries and data structures.
1467 TRACE("() - Initializing the COM libraries\n");
1469 /* we may need to defer this until after apartment initialisation */
1470 RunningObjectTableImpl_Initialize();
1474 IInitializeSpy_PreInitialize(info->spy, dwCoInit, info->inits);
1476 if (!(apt = info->apt))
1478 apt = apartment_get_or_create(dwCoInit);
1479 if (!apt) return E_OUTOFMEMORY;
1481 else if (!apartment_is_model(apt, dwCoInit))
1483 /* Changing the threading model after it's been set is illegal. If this warning is triggered by Wine
1484 code then we are probably using the wrong threading model to implement that API. */
1485 ERR("Attempt to change threading model of this apartment from %s to %s\n",
1486 apt->multi_threaded ? "multi-threaded" : "apartment threaded",
1487 dwCoInit & COINIT_APARTMENTTHREADED ? "apartment threaded" : "multi-threaded");
1488 return RPC_E_CHANGED_MODE;
1496 IInitializeSpy_PostInitialize(info->spy, hr, dwCoInit, info->inits);
1501 /***********************************************************************
1502 * CoUninitialize [OLE32.@]
1504 * This method will decrement the refcount on the current apartment, freeing
1505 * the resources associated with it if it is the last thread in the apartment.
1506 * If the last apartment is freed, the function will additionally release
1507 * any COM resources associated with the process.
1517 void WINAPI CoUninitialize(void)
1519 struct oletls * info = COM_CurrentInfo();
1524 /* will only happen on OOM */
1528 IInitializeSpy_PreUninitialize(info->spy, info->inits);
1533 ERR("Mismatched CoUninitialize\n");
1536 IInitializeSpy_PostUninitialize(info->spy, info->inits);
1542 apartment_release(info->apt);
1547 * Decrease the reference count.
1548 * If we are back to 0 locks on the COM library, make sure we free
1549 * all the associated data structures.
1551 lCOMRefCnt = InterlockedExchangeAdd(&s_COMLockCount,-1);
1554 TRACE("() - Releasing the COM libraries\n");
1556 RunningObjectTableImpl_UnInitialize();
1558 else if (lCOMRefCnt<1) {
1559 ERR( "CoUninitialize() - not CoInitialized.\n" );
1560 InterlockedExchangeAdd(&s_COMLockCount,1); /* restore the lock count. */
1563 IInitializeSpy_PostUninitialize(info->spy, info->inits);
1566 /******************************************************************************
1567 * CoDisconnectObject [OLE32.@]
1569 * Disconnects all connections to this object from remote processes. Dispatches
1570 * pending RPCs while blocking new RPCs from occurring, and then calls
1571 * IMarshal::DisconnectObject on the given object.
1573 * Typically called when the object server is forced to shut down, for instance by
1577 * lpUnk [I] The object whose stub should be disconnected.
1578 * reserved [I] Reserved. Should be set to 0.
1582 * Failure: HRESULT code.
1585 * CoMarshalInterface, CoReleaseMarshalData, CoLockObjectExternal
1587 HRESULT WINAPI CoDisconnectObject( LPUNKNOWN lpUnk, DWORD reserved )
1593 TRACE("(%p, 0x%08x)\n", lpUnk, reserved);
1595 if (!lpUnk) return E_INVALIDARG;
1597 hr = IUnknown_QueryInterface(lpUnk, &IID_IMarshal, (void **)&marshal);
1600 hr = IMarshal_DisconnectObject(marshal, reserved);
1601 IMarshal_Release(marshal);
1605 apt = COM_CurrentApt();
1607 return CO_E_NOTINITIALIZED;
1609 apartment_disconnectobject(apt, lpUnk);
1611 /* Note: native is pretty broken here because it just silently
1612 * fails, without returning an appropriate error code if the object was
1613 * not found, making apps think that the object was disconnected, when
1614 * it actually wasn't */
1619 /******************************************************************************
1620 * CoCreateGuid [OLE32.@]
1622 * Simply forwards to UuidCreate in RPCRT4.
1625 * pguid [O] Points to the GUID to initialize.
1629 * Failure: HRESULT code.
1634 HRESULT WINAPI CoCreateGuid(GUID *pguid)
1636 DWORD status = UuidCreate(pguid);
1637 if (status == RPC_S_OK || status == RPC_S_UUID_LOCAL_ONLY) return S_OK;
1638 return HRESULT_FROM_WIN32( status );
1641 static inline BOOL is_valid_hex(WCHAR c)
1643 if (!(((c >= '0') && (c <= '9')) ||
1644 ((c >= 'a') && (c <= 'f')) ||
1645 ((c >= 'A') && (c <= 'F'))))
1650 /******************************************************************************
1651 * CLSIDFromString [OLE32.@]
1652 * IIDFromString [OLE32.@]
1654 * Converts a unique identifier from its string representation into
1658 * idstr [I] The string representation of the GUID.
1659 * id [O] GUID converted from the string.
1663 * CO_E_CLASSSTRING if idstr is not a valid CLSID
1668 static HRESULT __CLSIDFromString(LPCWSTR s, LPCLSID id)
1673 if (!s || s[0]!='{') {
1674 memset( id, 0, sizeof (CLSID) );
1676 return CO_E_CLASSSTRING;
1679 TRACE("%s -> %p\n", debugstr_w(s), id);
1681 /* quick lookup table */
1682 memset(table, 0, 256);
1684 for (i = 0; i < 10; i++) {
1687 for (i = 0; i < 6; i++) {
1688 table['A' + i] = i+10;
1689 table['a' + i] = i+10;
1692 /* in form {XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX} */
1695 for (i = 1; i < 9; i++) {
1696 if (!is_valid_hex(s[i])) return CO_E_CLASSSTRING;
1697 id->Data1 = (id->Data1 << 4) | table[s[i]];
1699 if (s[9]!='-') return CO_E_CLASSSTRING;
1702 for (i = 10; i < 14; i++) {
1703 if (!is_valid_hex(s[i])) return CO_E_CLASSSTRING;
1704 id->Data2 = (id->Data2 << 4) | table[s[i]];
1706 if (s[14]!='-') return CO_E_CLASSSTRING;
1709 for (i = 15; i < 19; i++) {
1710 if (!is_valid_hex(s[i])) return CO_E_CLASSSTRING;
1711 id->Data3 = (id->Data3 << 4) | table[s[i]];
1713 if (s[19]!='-') return CO_E_CLASSSTRING;
1715 for (i = 20; i < 37; i+=2) {
1717 if (s[i]!='-') return CO_E_CLASSSTRING;
1720 if (!is_valid_hex(s[i]) || !is_valid_hex(s[i+1])) return CO_E_CLASSSTRING;
1721 id->Data4[(i-20)/2] = table[s[i]] << 4 | table[s[i+1]];
1724 if (s[37] == '}' && s[38] == '\0')
1727 return CO_E_CLASSSTRING;
1730 /*****************************************************************************/
1732 HRESULT WINAPI CLSIDFromString(LPCOLESTR idstr, LPCLSID id )
1737 return E_INVALIDARG;
1739 ret = __CLSIDFromString(idstr, id);
1740 if(ret != S_OK) { /* It appears a ProgID is also valid */
1742 ret = CLSIDFromProgID(idstr, &tmp_id);
1750 /******************************************************************************
1751 * StringFromCLSID [OLE32.@]
1752 * StringFromIID [OLE32.@]
1754 * Converts a GUID into the respective string representation.
1755 * The target string is allocated using the OLE IMalloc.
1758 * id [I] the GUID to be converted.
1759 * idstr [O] A pointer to a to-be-allocated pointer pointing to the resulting string.
1766 * StringFromGUID2, CLSIDFromString
1768 HRESULT WINAPI StringFromCLSID(REFCLSID id, LPOLESTR *idstr)
1773 if ((ret = CoGetMalloc(0,&mllc))) return ret;
1774 if (!(*idstr = IMalloc_Alloc( mllc, CHARS_IN_GUID * sizeof(WCHAR) ))) return E_OUTOFMEMORY;
1775 StringFromGUID2( id, *idstr, CHARS_IN_GUID );
1779 /******************************************************************************
1780 * StringFromGUID2 [OLE32.@]
1782 * Modified version of StringFromCLSID that allows you to specify max
1786 * id [I] GUID to convert to string.
1787 * str [O] Buffer where the result will be stored.
1788 * cmax [I] Size of the buffer in characters.
1791 * Success: The length of the resulting string in characters.
1794 INT WINAPI StringFromGUID2(REFGUID id, LPOLESTR str, INT cmax)
1796 static const WCHAR formatW[] = { '{','%','0','8','X','-','%','0','4','X','-',
1797 '%','0','4','X','-','%','0','2','X','%','0','2','X','-',
1798 '%','0','2','X','%','0','2','X','%','0','2','X','%','0','2','X',
1799 '%','0','2','X','%','0','2','X','}',0 };
1800 if (!id || cmax < CHARS_IN_GUID) return 0;
1801 sprintfW( str, formatW, id->Data1, id->Data2, id->Data3,
1802 id->Data4[0], id->Data4[1], id->Data4[2], id->Data4[3],
1803 id->Data4[4], id->Data4[5], id->Data4[6], id->Data4[7] );
1804 return CHARS_IN_GUID;
1807 /* open HKCR\\CLSID\\{string form of clsid}\\{keyname} key */
1808 HRESULT COM_OpenKeyForCLSID(REFCLSID clsid, LPCWSTR keyname, REGSAM access, HKEY *subkey)
1810 static const WCHAR wszCLSIDSlash[] = {'C','L','S','I','D','\\',0};
1811 WCHAR path[CHARS_IN_GUID + ARRAYSIZE(wszCLSIDSlash) - 1];
1815 strcpyW(path, wszCLSIDSlash);
1816 StringFromGUID2(clsid, path + strlenW(wszCLSIDSlash), CHARS_IN_GUID);
1817 res = RegOpenKeyExW(HKEY_CLASSES_ROOT, path, 0, keyname ? KEY_READ : access, &key);
1818 if (res == ERROR_FILE_NOT_FOUND)
1819 return REGDB_E_CLASSNOTREG;
1820 else if (res != ERROR_SUCCESS)
1821 return REGDB_E_READREGDB;
1829 res = RegOpenKeyExW(key, keyname, 0, access, subkey);
1831 if (res == ERROR_FILE_NOT_FOUND)
1832 return REGDB_E_KEYMISSING;
1833 else if (res != ERROR_SUCCESS)
1834 return REGDB_E_READREGDB;
1839 /* open HKCR\\AppId\\{string form of appid clsid} key */
1840 HRESULT COM_OpenKeyForAppIdFromCLSID(REFCLSID clsid, REGSAM access, HKEY *subkey)
1842 static const WCHAR szAppId[] = { 'A','p','p','I','d',0 };
1843 static const WCHAR szAppIdKey[] = { 'A','p','p','I','d','\\',0 };
1845 WCHAR buf[CHARS_IN_GUID];
1846 WCHAR keyname[ARRAYSIZE(szAppIdKey) + CHARS_IN_GUID];
1852 /* read the AppID value under the class's key */
1853 hr = COM_OpenKeyForCLSID(clsid, NULL, KEY_READ, &hkey);
1858 res = RegQueryValueExW(hkey, szAppId, NULL, &type, (LPBYTE)buf, &size);
1860 if (res == ERROR_FILE_NOT_FOUND)
1861 return REGDB_E_KEYMISSING;
1862 else if (res != ERROR_SUCCESS || type!=REG_SZ)
1863 return REGDB_E_READREGDB;
1865 strcpyW(keyname, szAppIdKey);
1866 strcatW(keyname, buf);
1867 res = RegOpenKeyExW(HKEY_CLASSES_ROOT, keyname, 0, access, subkey);
1868 if (res == ERROR_FILE_NOT_FOUND)
1869 return REGDB_E_KEYMISSING;
1870 else if (res != ERROR_SUCCESS)
1871 return REGDB_E_READREGDB;
1876 /******************************************************************************
1877 * ProgIDFromCLSID [OLE32.@]
1879 * Converts a class id into the respective program ID.
1882 * clsid [I] Class ID, as found in registry.
1883 * ppszProgID [O] Associated ProgID.
1888 * REGDB_E_CLASSNOTREG if the given clsid has no associated ProgID
1890 HRESULT WINAPI ProgIDFromCLSID(REFCLSID clsid, LPOLESTR *ppszProgID)
1892 static const WCHAR wszProgID[] = {'P','r','o','g','I','D',0};
1899 ERR("ppszProgId isn't optional\n");
1900 return E_INVALIDARG;
1904 ret = COM_OpenKeyForCLSID(clsid, wszProgID, KEY_READ, &hkey);
1908 if (RegQueryValueW(hkey, NULL, NULL, &progidlen))
1909 ret = REGDB_E_CLASSNOTREG;
1913 *ppszProgID = CoTaskMemAlloc(progidlen * sizeof(WCHAR));
1916 if (RegQueryValueW(hkey, NULL, *ppszProgID, &progidlen))
1917 ret = REGDB_E_CLASSNOTREG;
1920 ret = E_OUTOFMEMORY;
1927 /******************************************************************************
1928 * CLSIDFromProgID [OLE32.@]
1930 * Converts a program id into the respective GUID.
1933 * progid [I] Unicode program ID, as found in registry.
1934 * clsid [O] Associated CLSID.
1938 * Failure: CO_E_CLASSSTRING - the given ProgID cannot be found.
1940 HRESULT WINAPI CLSIDFromProgID(LPCOLESTR progid, LPCLSID clsid)
1942 static const WCHAR clsidW[] = { '\\','C','L','S','I','D',0 };
1943 WCHAR buf2[CHARS_IN_GUID];
1944 LONG buf2len = sizeof(buf2);
1948 if (!progid || !clsid)
1950 ERR("neither progid (%p) nor clsid (%p) are optional\n", progid, clsid);
1951 return E_INVALIDARG;
1954 /* initialise clsid in case of failure */
1955 memset(clsid, 0, sizeof(*clsid));
1957 buf = HeapAlloc( GetProcessHeap(),0,(strlenW(progid)+8) * sizeof(WCHAR) );
1958 strcpyW( buf, progid );
1959 strcatW( buf, clsidW );
1960 if (RegOpenKeyW(HKEY_CLASSES_ROOT,buf,&xhkey))
1962 HeapFree(GetProcessHeap(),0,buf);
1963 WARN("couldn't open key for ProgID %s\n", debugstr_w(progid));
1964 return CO_E_CLASSSTRING;
1966 HeapFree(GetProcessHeap(),0,buf);
1968 if (RegQueryValueW(xhkey,NULL,buf2,&buf2len))
1971 WARN("couldn't query clsid value for ProgID %s\n", debugstr_w(progid));
1972 return CO_E_CLASSSTRING;
1975 return __CLSIDFromString(buf2,clsid);
1979 /*****************************************************************************
1980 * CoGetPSClsid [OLE32.@]
1982 * Retrieves the CLSID of the proxy/stub factory that implements
1983 * IPSFactoryBuffer for the specified interface.
1986 * riid [I] Interface whose proxy/stub CLSID is to be returned.
1987 * pclsid [O] Where to store returned proxy/stub CLSID.
1992 * REGDB_E_IIDNOTREG if no PSFactoryBuffer is associated with the IID, or it could not be parsed
1996 * The standard marshaller activates the object with the CLSID
1997 * returned and uses the CreateProxy and CreateStub methods on its
1998 * IPSFactoryBuffer interface to construct the proxies and stubs for a
2001 * CoGetPSClsid determines this CLSID by searching the
2002 * HKEY_CLASSES_ROOT\Interface\{string form of riid}\ProxyStubClsid32
2003 * in the registry and any interface id registered by
2004 * CoRegisterPSClsid within the current process.
2008 * Native returns S_OK for interfaces with a key in HKCR\Interface, but
2009 * without a ProxyStubClsid32 key and leaves garbage in pclsid. This should be
2010 * considered a bug in native unless an application depends on this (unlikely).
2013 * CoRegisterPSClsid.
2015 HRESULT WINAPI CoGetPSClsid(REFIID riid, CLSID *pclsid)
2017 static const WCHAR wszInterface[] = {'I','n','t','e','r','f','a','c','e','\\',0};
2018 static const WCHAR wszPSC[] = {'\\','P','r','o','x','y','S','t','u','b','C','l','s','i','d','3','2',0};
2019 WCHAR path[ARRAYSIZE(wszInterface) - 1 + CHARS_IN_GUID - 1 + ARRAYSIZE(wszPSC)];
2020 WCHAR value[CHARS_IN_GUID];
2023 APARTMENT *apt = COM_CurrentApt();
2024 struct registered_psclsid *registered_psclsid;
2026 TRACE("() riid=%s, pclsid=%p\n", debugstr_guid(riid), pclsid);
2030 ERR("apartment not initialised\n");
2031 return CO_E_NOTINITIALIZED;
2036 ERR("pclsid isn't optional\n");
2037 return E_INVALIDARG;
2040 EnterCriticalSection(&apt->cs);
2042 LIST_FOR_EACH_ENTRY(registered_psclsid, &apt->psclsids, struct registered_psclsid, entry)
2043 if (IsEqualIID(®istered_psclsid->iid, riid))
2045 *pclsid = registered_psclsid->clsid;
2046 LeaveCriticalSection(&apt->cs);
2050 LeaveCriticalSection(&apt->cs);
2052 /* Interface\\{string form of riid}\\ProxyStubClsid32 */
2053 strcpyW(path, wszInterface);
2054 StringFromGUID2(riid, path + ARRAYSIZE(wszInterface) - 1, CHARS_IN_GUID);
2055 strcpyW(path + ARRAYSIZE(wszInterface) - 1 + CHARS_IN_GUID - 1, wszPSC);
2057 /* Open the key.. */
2058 if (RegOpenKeyExW(HKEY_CLASSES_ROOT, path, 0, KEY_READ, &hkey))
2060 WARN("No PSFactoryBuffer object is registered for IID %s\n", debugstr_guid(riid));
2061 return REGDB_E_IIDNOTREG;
2064 /* ... Once we have the key, query the registry to get the
2065 value of CLSID as a string, and convert it into a
2066 proper CLSID structure to be passed back to the app */
2067 len = sizeof(value);
2068 if (ERROR_SUCCESS != RegQueryValueW(hkey, NULL, value, &len))
2071 return REGDB_E_IIDNOTREG;
2075 /* We have the CLSID we want back from the registry as a string, so
2076 let's convert it into a CLSID structure */
2077 if (CLSIDFromString(value, pclsid) != NOERROR)
2078 return REGDB_E_IIDNOTREG;
2080 TRACE ("() Returning CLSID=%s\n", debugstr_guid(pclsid));
2084 /*****************************************************************************
2085 * CoRegisterPSClsid [OLE32.@]
2087 * Register a proxy/stub CLSID for the given interface in the current process
2091 * riid [I] Interface whose proxy/stub CLSID is to be registered.
2092 * rclsid [I] CLSID of the proxy/stub.
2096 * Failure: E_OUTOFMEMORY
2100 * This function does not add anything to the registry and the effects are
2101 * limited to the lifetime of the current process.
2106 HRESULT WINAPI CoRegisterPSClsid(REFIID riid, REFCLSID rclsid)
2108 APARTMENT *apt = COM_CurrentApt();
2109 struct registered_psclsid *registered_psclsid;
2111 TRACE("(%s, %s)\n", debugstr_guid(riid), debugstr_guid(rclsid));
2115 ERR("apartment not initialised\n");
2116 return CO_E_NOTINITIALIZED;
2119 EnterCriticalSection(&apt->cs);
2121 LIST_FOR_EACH_ENTRY(registered_psclsid, &apt->psclsids, struct registered_psclsid, entry)
2122 if (IsEqualIID(®istered_psclsid->iid, riid))
2124 registered_psclsid->clsid = *rclsid;
2125 LeaveCriticalSection(&apt->cs);
2129 registered_psclsid = HeapAlloc(GetProcessHeap(), 0, sizeof(struct registered_psclsid));
2130 if (!registered_psclsid)
2132 LeaveCriticalSection(&apt->cs);
2133 return E_OUTOFMEMORY;
2136 registered_psclsid->iid = *riid;
2137 registered_psclsid->clsid = *rclsid;
2138 list_add_head(&apt->psclsids, ®istered_psclsid->entry);
2140 LeaveCriticalSection(&apt->cs);
2147 * COM_GetRegisteredClassObject
2149 * This internal method is used to scan the registered class list to
2150 * find a class object.
2153 * rclsid Class ID of the class to find.
2154 * dwClsContext Class context to match.
2155 * ppv [out] returns a pointer to the class object. Complying
2156 * to normal COM usage, this method will increase the
2157 * reference count on this object.
2159 static HRESULT COM_GetRegisteredClassObject(const struct apartment *apt, REFCLSID rclsid,
2160 DWORD dwClsContext, LPUNKNOWN* ppUnk)
2162 HRESULT hr = S_FALSE;
2163 RegisteredClass *curClass;
2165 EnterCriticalSection( &csRegisteredClassList );
2167 LIST_FOR_EACH_ENTRY(curClass, &RegisteredClassList, RegisteredClass, entry)
2170 * Check if we have a match on the class ID and context.
2172 if ((apt->oxid == curClass->apartment_id) &&
2173 (dwClsContext & curClass->runContext) &&
2174 IsEqualGUID(&(curClass->classIdentifier), rclsid))
2177 * We have a match, return the pointer to the class object.
2179 *ppUnk = curClass->classObject;
2181 IUnknown_AddRef(curClass->classObject);
2188 LeaveCriticalSection( &csRegisteredClassList );
2193 /******************************************************************************
2194 * CoRegisterClassObject [OLE32.@]
2196 * Registers the class object for a given class ID. Servers housed in EXE
2197 * files use this method instead of exporting DllGetClassObject to allow
2198 * other code to connect to their objects.
2201 * rclsid [I] CLSID of the object to register.
2202 * pUnk [I] IUnknown of the object.
2203 * dwClsContext [I] CLSCTX flags indicating the context in which to run the executable.
2204 * flags [I] REGCLS flags indicating how connections are made.
2205 * lpdwRegister [I] A unique cookie that can be passed to CoRevokeClassObject.
2209 * E_INVALIDARG if lpdwRegister or pUnk are NULL,
2210 * CO_E_OBJISREG if the object is already registered. We should not return this.
2213 * CoRevokeClassObject, CoGetClassObject
2216 * In-process objects are only registered for the current apartment.
2217 * CoGetClassObject() and CoCreateInstance() will not return objects registered
2218 * in other apartments.
2221 * MSDN claims that multiple interface registrations are legal, but we
2222 * can't do that with our current implementation.
2224 HRESULT WINAPI CoRegisterClassObject(
2229 LPDWORD lpdwRegister)
2231 static LONG next_cookie;
2232 RegisteredClass* newClass;
2233 LPUNKNOWN foundObject;
2237 TRACE("(%s,%p,0x%08x,0x%08x,%p)\n",
2238 debugstr_guid(rclsid),pUnk,dwClsContext,flags,lpdwRegister);
2240 if ( (lpdwRegister==0) || (pUnk==0) )
2241 return E_INVALIDARG;
2243 apt = COM_CurrentApt();
2246 ERR("COM was not initialized\n");
2247 return CO_E_NOTINITIALIZED;
2252 /* REGCLS_MULTIPLEUSE implies registering as inproc server. This is what
2253 * differentiates the flag from REGCLS_MULTI_SEPARATE. */
2254 if (flags & REGCLS_MULTIPLEUSE)
2255 dwClsContext |= CLSCTX_INPROC_SERVER;
2258 * First, check if the class is already registered.
2259 * If it is, this should cause an error.
2261 hr = COM_GetRegisteredClassObject(apt, rclsid, dwClsContext, &foundObject);
2263 if (flags & REGCLS_MULTIPLEUSE) {
2264 if (dwClsContext & CLSCTX_LOCAL_SERVER)
2265 hr = CoLockObjectExternal(foundObject, TRUE, FALSE);
2266 IUnknown_Release(foundObject);
2269 IUnknown_Release(foundObject);
2270 ERR("object already registered for class %s\n", debugstr_guid(rclsid));
2271 return CO_E_OBJISREG;
2274 newClass = HeapAlloc(GetProcessHeap(), 0, sizeof(RegisteredClass));
2275 if ( newClass == NULL )
2276 return E_OUTOFMEMORY;
2278 newClass->classIdentifier = *rclsid;
2279 newClass->apartment_id = apt->oxid;
2280 newClass->runContext = dwClsContext;
2281 newClass->connectFlags = flags;
2282 newClass->pMarshaledData = NULL;
2283 newClass->RpcRegistration = NULL;
2285 if (!(newClass->dwCookie = InterlockedIncrement( &next_cookie )))
2286 newClass->dwCookie = InterlockedIncrement( &next_cookie );
2289 * Since we're making a copy of the object pointer, we have to increase its
2292 newClass->classObject = pUnk;
2293 IUnknown_AddRef(newClass->classObject);
2295 EnterCriticalSection( &csRegisteredClassList );
2296 list_add_tail(&RegisteredClassList, &newClass->entry);
2297 LeaveCriticalSection( &csRegisteredClassList );
2299 *lpdwRegister = newClass->dwCookie;
2301 if (dwClsContext & CLSCTX_LOCAL_SERVER) {
2302 hr = CreateStreamOnHGlobal(0, TRUE, &newClass->pMarshaledData);
2304 FIXME("Failed to create stream on hglobal, %x\n", hr);
2307 hr = CoMarshalInterface(newClass->pMarshaledData, &IID_IUnknown,
2308 newClass->classObject, MSHCTX_LOCAL, NULL,
2309 MSHLFLAGS_TABLESTRONG);
2311 FIXME("CoMarshalInterface failed, %x!\n",hr);
2315 hr = RPC_StartLocalServer(&newClass->classIdentifier,
2316 newClass->pMarshaledData,
2317 flags & (REGCLS_MULTIPLEUSE|REGCLS_MULTI_SEPARATE),
2318 &newClass->RpcRegistration);
2323 static void get_threading_model(HKEY key, LPWSTR value, DWORD len)
2325 static const WCHAR wszThreadingModel[] = {'T','h','r','e','a','d','i','n','g','M','o','d','e','l',0};
2328 DWORD dwLength = len * sizeof(WCHAR);
2330 ret = RegQueryValueExW(key, wszThreadingModel, NULL, &keytype, (LPBYTE)value, &dwLength);
2331 if ((ret != ERROR_SUCCESS) || (keytype != REG_SZ))
2335 static HRESULT get_inproc_class_object(APARTMENT *apt, HKEY hkeydll,
2336 REFCLSID rclsid, REFIID riid,
2337 BOOL hostifnecessary, void **ppv)
2339 WCHAR dllpath[MAX_PATH+1];
2340 BOOL apartment_threaded;
2342 if (hostifnecessary)
2344 static const WCHAR wszApartment[] = {'A','p','a','r','t','m','e','n','t',0};
2345 static const WCHAR wszFree[] = {'F','r','e','e',0};
2346 static const WCHAR wszBoth[] = {'B','o','t','h',0};
2347 WCHAR threading_model[10 /* strlenW(L"apartment")+1 */];
2349 get_threading_model(hkeydll, threading_model, ARRAYSIZE(threading_model));
2351 if (!strcmpiW(threading_model, wszApartment))
2353 apartment_threaded = TRUE;
2354 if (apt->multi_threaded)
2355 return apartment_hostobject_in_hostapt(apt, FALSE, FALSE, hkeydll, rclsid, riid, ppv);
2358 else if (!strcmpiW(threading_model, wszFree))
2360 apartment_threaded = FALSE;
2361 if (!apt->multi_threaded)
2362 return apartment_hostobject_in_hostapt(apt, TRUE, FALSE, hkeydll, rclsid, riid, ppv);
2364 /* everything except "Apartment", "Free" and "Both" */
2365 else if (strcmpiW(threading_model, wszBoth))
2367 apartment_threaded = TRUE;
2368 /* everything else is main-threaded */
2369 if (threading_model[0])
2370 FIXME("unrecognised threading model %s for object %s, should be main-threaded?\n",
2371 debugstr_w(threading_model), debugstr_guid(rclsid));
2373 if (apt->multi_threaded || !apt->main)
2374 return apartment_hostobject_in_hostapt(apt, FALSE, TRUE, hkeydll, rclsid, riid, ppv);
2377 apartment_threaded = FALSE;
2380 apartment_threaded = !apt->multi_threaded;
2382 if (COM_RegReadPath(hkeydll, dllpath, ARRAYSIZE(dllpath)) != ERROR_SUCCESS)
2384 /* failure: CLSID is not found in registry */
2385 WARN("class %s not registered inproc\n", debugstr_guid(rclsid));
2386 return REGDB_E_CLASSNOTREG;
2389 return apartment_getclassobject(apt, dllpath, apartment_threaded,
2393 /***********************************************************************
2394 * CoGetClassObject [OLE32.@]
2396 * Creates an object of the specified class.
2399 * rclsid [I] Class ID to create an instance of.
2400 * dwClsContext [I] Flags to restrict the location of the created instance.
2401 * pServerInfo [I] Optional. Details for connecting to a remote server.
2402 * iid [I] The ID of the interface of the instance to return.
2403 * ppv [O] On returns, contains a pointer to the specified interface of the object.
2407 * Failure: HRESULT code.
2410 * The dwClsContext parameter can be one or more of the following:
2411 *| CLSCTX_INPROC_SERVER - Use an in-process server, such as from a DLL.
2412 *| CLSCTX_INPROC_HANDLER - Use an in-process object which handles certain functions for an object running in another process.
2413 *| CLSCTX_LOCAL_SERVER - Connect to an object running in another process.
2414 *| CLSCTX_REMOTE_SERVER - Connect to an object running on another machine.
2417 * CoCreateInstance()
2419 HRESULT WINAPI CoGetClassObject(
2420 REFCLSID rclsid, DWORD dwClsContext, COSERVERINFO *pServerInfo,
2421 REFIID iid, LPVOID *ppv)
2423 LPUNKNOWN regClassObject;
2424 HRESULT hres = E_UNEXPECTED;
2426 BOOL release_apt = FALSE;
2428 TRACE("CLSID: %s,IID: %s\n", debugstr_guid(rclsid), debugstr_guid(iid));
2431 return E_INVALIDARG;
2435 if (!(apt = COM_CurrentApt()))
2437 if (!(apt = apartment_find_multi_threaded()))
2439 ERR("apartment not initialised\n");
2440 return CO_E_NOTINITIALIZED;
2446 FIXME("pServerInfo->name=%s pAuthInfo=%p\n",
2447 debugstr_w(pServerInfo->pwszName), pServerInfo->pAuthInfo);
2451 * First, try and see if we can't match the class ID with one of the
2452 * registered classes.
2454 if (S_OK == COM_GetRegisteredClassObject(apt, rclsid, dwClsContext,
2457 /* Get the required interface from the retrieved pointer. */
2458 hres = IUnknown_QueryInterface(regClassObject, iid, ppv);
2461 * Since QI got another reference on the pointer, we want to release the
2462 * one we already have. If QI was unsuccessful, this will release the object. This
2463 * is good since we are not returning it in the "out" parameter.
2465 IUnknown_Release(regClassObject);
2466 if (release_apt) apartment_release(apt);
2470 /* First try in-process server */
2471 if (CLSCTX_INPROC_SERVER & dwClsContext)
2473 static const WCHAR wszInprocServer32[] = {'I','n','p','r','o','c','S','e','r','v','e','r','3','2',0};
2476 if (IsEqualCLSID(rclsid, &CLSID_InProcFreeMarshaler))
2478 if (release_apt) apartment_release(apt);
2479 return FTMarshalCF_Create(iid, ppv);
2482 hres = COM_OpenKeyForCLSID(rclsid, wszInprocServer32, KEY_READ, &hkey);
2485 if (hres == REGDB_E_CLASSNOTREG)
2486 ERR("class %s not registered\n", debugstr_guid(rclsid));
2487 else if (hres == REGDB_E_KEYMISSING)
2489 WARN("class %s not registered as in-proc server\n", debugstr_guid(rclsid));
2490 hres = REGDB_E_CLASSNOTREG;
2494 if (SUCCEEDED(hres))
2496 hres = get_inproc_class_object(apt, hkey, rclsid, iid,
2497 !(dwClsContext & WINE_CLSCTX_DONT_HOST), ppv);
2501 /* return if we got a class, otherwise fall through to one of the
2503 if (SUCCEEDED(hres))
2505 if (release_apt) apartment_release(apt);
2510 /* Next try in-process handler */
2511 if (CLSCTX_INPROC_HANDLER & dwClsContext)
2513 static const WCHAR wszInprocHandler32[] = {'I','n','p','r','o','c','H','a','n','d','l','e','r','3','2',0};
2516 hres = COM_OpenKeyForCLSID(rclsid, wszInprocHandler32, KEY_READ, &hkey);
2519 if (hres == REGDB_E_CLASSNOTREG)
2520 ERR("class %s not registered\n", debugstr_guid(rclsid));
2521 else if (hres == REGDB_E_KEYMISSING)
2523 WARN("class %s not registered in-proc handler\n", debugstr_guid(rclsid));
2524 hres = REGDB_E_CLASSNOTREG;
2528 if (SUCCEEDED(hres))
2530 hres = get_inproc_class_object(apt, hkey, rclsid, iid,
2531 !(dwClsContext & WINE_CLSCTX_DONT_HOST), ppv);
2535 /* return if we got a class, otherwise fall through to one of the
2537 if (SUCCEEDED(hres))
2539 if (release_apt) apartment_release(apt);
2543 if (release_apt) apartment_release(apt);
2545 /* Next try out of process */
2546 if (CLSCTX_LOCAL_SERVER & dwClsContext)
2548 hres = RPC_GetLocalClassObject(rclsid,iid,ppv);
2549 if (SUCCEEDED(hres))
2553 /* Finally try remote: this requires networked DCOM (a lot of work) */
2554 if (CLSCTX_REMOTE_SERVER & dwClsContext)
2556 FIXME ("CLSCTX_REMOTE_SERVER not supported\n");
2557 hres = REGDB_E_CLASSNOTREG;
2561 ERR("no class object %s could be created for context 0x%x\n",
2562 debugstr_guid(rclsid), dwClsContext);
2566 /***********************************************************************
2567 * CoResumeClassObjects (OLE32.@)
2569 * Resumes all class objects registered with REGCLS_SUSPENDED.
2573 * Failure: HRESULT code.
2575 HRESULT WINAPI CoResumeClassObjects(void)
2581 /***********************************************************************
2582 * CoCreateInstance [OLE32.@]
2584 * Creates an instance of the specified class.
2587 * rclsid [I] Class ID to create an instance of.
2588 * pUnkOuter [I] Optional outer unknown to allow aggregation with another object.
2589 * dwClsContext [I] Flags to restrict the location of the created instance.
2590 * iid [I] The ID of the interface of the instance to return.
2591 * ppv [O] On returns, contains a pointer to the specified interface of the instance.
2595 * Failure: HRESULT code.
2598 * The dwClsContext parameter can be one or more of the following:
2599 *| CLSCTX_INPROC_SERVER - Use an in-process server, such as from a DLL.
2600 *| CLSCTX_INPROC_HANDLER - Use an in-process object which handles certain functions for an object running in another process.
2601 *| CLSCTX_LOCAL_SERVER - Connect to an object running in another process.
2602 *| CLSCTX_REMOTE_SERVER - Connect to an object running on another machine.
2604 * Aggregation is the concept of deferring the IUnknown of an object to another
2605 * object. This allows a separate object to behave as though it was part of
2606 * the object and to allow this the pUnkOuter parameter can be set. Note that
2607 * not all objects support having an outer of unknown.
2610 * CoGetClassObject()
2612 HRESULT WINAPI CoCreateInstance(
2614 LPUNKNOWN pUnkOuter,
2620 LPCLASSFACTORY lpclf = 0;
2623 TRACE("(rclsid=%s, pUnkOuter=%p, dwClsContext=%08x, riid=%s, ppv=%p)\n", debugstr_guid(rclsid),
2624 pUnkOuter, dwClsContext, debugstr_guid(iid), ppv);
2633 * Initialize the "out" parameter
2637 if (!(apt = COM_CurrentApt()))
2639 if (!(apt = apartment_find_multi_threaded()))
2641 ERR("apartment not initialised\n");
2642 return CO_E_NOTINITIALIZED;
2644 apartment_release(apt);
2648 * The Standard Global Interface Table (GIT) object is a process-wide singleton.
2649 * Rather than create a class factory, we can just check for it here
2651 if (IsEqualIID(rclsid, &CLSID_StdGlobalInterfaceTable)) {
2652 if (StdGlobalInterfaceTableInstance == NULL)
2653 StdGlobalInterfaceTableInstance = StdGlobalInterfaceTable_Construct();
2654 hres = IGlobalInterfaceTable_QueryInterface( (IGlobalInterfaceTable*) StdGlobalInterfaceTableInstance, iid, ppv);
2655 if (hres) return hres;
2657 TRACE("Retrieved GIT (%p)\n", *ppv);
2661 if (IsEqualCLSID(rclsid, &CLSID_ManualResetEvent))
2662 return ManualResetEvent_Construct(pUnkOuter, iid, ppv);
2665 * Get a class factory to construct the object we want.
2667 hres = CoGetClassObject(rclsid,
2677 * Create the object and don't forget to release the factory
2679 hres = IClassFactory_CreateInstance(lpclf, pUnkOuter, iid, ppv);
2680 IClassFactory_Release(lpclf);
2683 if (hres == CLASS_E_NOAGGREGATION && pUnkOuter)
2684 FIXME("Class %s does not support aggregation\n", debugstr_guid(rclsid));
2686 FIXME("no instance created for interface %s of class %s, hres is 0x%08x\n", debugstr_guid(iid), debugstr_guid(rclsid),hres);
2692 /***********************************************************************
2693 * CoCreateInstanceEx [OLE32.@]
2695 HRESULT WINAPI CoCreateInstanceEx(
2697 LPUNKNOWN pUnkOuter,
2699 COSERVERINFO* pServerInfo,
2703 IUnknown* pUnk = NULL;
2706 ULONG successCount = 0;
2711 if ( (cmq==0) || (pResults==NULL))
2712 return E_INVALIDARG;
2714 if (pServerInfo!=NULL)
2715 FIXME("() non-NULL pServerInfo not supported!\n");
2718 * Initialize all the "out" parameters.
2720 for (index = 0; index < cmq; index++)
2722 pResults[index].pItf = NULL;
2723 pResults[index].hr = E_NOINTERFACE;
2727 * Get the object and get its IUnknown pointer.
2729 hr = CoCreateInstance(rclsid,
2739 * Then, query for all the interfaces requested.
2741 for (index = 0; index < cmq; index++)
2743 pResults[index].hr = IUnknown_QueryInterface(pUnk,
2744 pResults[index].pIID,
2745 (VOID**)&(pResults[index].pItf));
2747 if (pResults[index].hr == S_OK)
2752 * Release our temporary unknown pointer.
2754 IUnknown_Release(pUnk);
2756 if (successCount == 0)
2757 return E_NOINTERFACE;
2759 if (successCount!=cmq)
2760 return CO_S_NOTALLINTERFACES;
2765 /***********************************************************************
2766 * CoLoadLibrary (OLE32.@)
2771 * lpszLibName [I] Path to library.
2772 * bAutoFree [I] Whether the library should automatically be freed.
2775 * Success: Handle to loaded library.
2779 * CoFreeLibrary, CoFreeAllLibraries, CoFreeUnusedLibraries
2781 HINSTANCE WINAPI CoLoadLibrary(LPOLESTR lpszLibName, BOOL bAutoFree)
2783 TRACE("(%s, %d)\n", debugstr_w(lpszLibName), bAutoFree);
2785 return LoadLibraryExW(lpszLibName, 0, LOAD_WITH_ALTERED_SEARCH_PATH);
2788 /***********************************************************************
2789 * CoFreeLibrary [OLE32.@]
2791 * Unloads a library from memory.
2794 * hLibrary [I] Handle to library to unload.
2800 * CoLoadLibrary, CoFreeAllLibraries, CoFreeUnusedLibraries
2802 void WINAPI CoFreeLibrary(HINSTANCE hLibrary)
2804 FreeLibrary(hLibrary);
2808 /***********************************************************************
2809 * CoFreeAllLibraries [OLE32.@]
2811 * Function for backwards compatibility only. Does nothing.
2817 * CoLoadLibrary, CoFreeLibrary, CoFreeUnusedLibraries
2819 void WINAPI CoFreeAllLibraries(void)
2824 /***********************************************************************
2825 * CoFreeUnusedLibrariesEx [OLE32.@]
2827 * Frees any previously unused libraries whose delay has expired and marks
2828 * currently unused libraries for unloading. Unused are identified as those that
2829 * return S_OK from their DllCanUnloadNow function.
2832 * dwUnloadDelay [I] Unload delay in milliseconds.
2833 * dwReserved [I] Reserved. Set to 0.
2839 * CoLoadLibrary, CoFreeAllLibraries, CoFreeLibrary
2841 void WINAPI CoFreeUnusedLibrariesEx(DWORD dwUnloadDelay, DWORD dwReserved)
2843 struct apartment *apt = COM_CurrentApt();
2846 ERR("apartment not initialised\n");
2850 apartment_freeunusedlibraries(apt, dwUnloadDelay);
2853 /***********************************************************************
2854 * CoFreeUnusedLibraries [OLE32.@]
2856 * Frees any unused libraries. Unused are identified as those that return
2857 * S_OK from their DllCanUnloadNow function.
2863 * CoLoadLibrary, CoFreeAllLibraries, CoFreeLibrary
2865 void WINAPI CoFreeUnusedLibraries(void)
2867 CoFreeUnusedLibrariesEx(INFINITE, 0);
2870 /***********************************************************************
2871 * CoFileTimeNow [OLE32.@]
2873 * Retrieves the current time in FILETIME format.
2876 * lpFileTime [O] The current time.
2881 HRESULT WINAPI CoFileTimeNow( FILETIME *lpFileTime )
2883 GetSystemTimeAsFileTime( lpFileTime );
2887 /******************************************************************************
2888 * CoLockObjectExternal [OLE32.@]
2890 * Increments or decrements the external reference count of a stub object.
2893 * pUnk [I] Stub object.
2894 * fLock [I] If TRUE then increments the external ref-count,
2895 * otherwise decrements.
2896 * fLastUnlockReleases [I] If TRUE then the last unlock has the effect of
2897 * calling CoDisconnectObject.
2901 * Failure: HRESULT code.
2904 * If fLock is TRUE and an object is passed in that doesn't have a stub
2905 * manager then a new stub manager is created for the object.
2907 HRESULT WINAPI CoLockObjectExternal(
2910 BOOL fLastUnlockReleases)
2912 struct stub_manager *stubmgr;
2913 struct apartment *apt;
2915 TRACE("pUnk=%p, fLock=%s, fLastUnlockReleases=%s\n",
2916 pUnk, fLock ? "TRUE" : "FALSE", fLastUnlockReleases ? "TRUE" : "FALSE");
2918 apt = COM_CurrentApt();
2919 if (!apt) return CO_E_NOTINITIALIZED;
2921 stubmgr = get_stub_manager_from_object(apt, pUnk);
2926 stub_manager_ext_addref(stubmgr, 1, FALSE);
2928 stub_manager_ext_release(stubmgr, 1, FALSE, fLastUnlockReleases);
2930 stub_manager_int_release(stubmgr);
2936 stubmgr = new_stub_manager(apt, pUnk);
2940 stub_manager_ext_addref(stubmgr, 1, FALSE);
2941 stub_manager_int_release(stubmgr);
2948 WARN("stub object not found %p\n", pUnk);
2949 /* Note: native is pretty broken here because it just silently
2950 * fails, without returning an appropriate error code, making apps
2951 * think that the object was disconnected, when it actually wasn't */
2956 /***********************************************************************
2957 * CoInitializeWOW (OLE32.@)
2959 * WOW equivalent of CoInitialize?
2968 HRESULT WINAPI CoInitializeWOW(DWORD x,DWORD y)
2970 FIXME("(0x%08x,0x%08x),stub!\n",x,y);
2974 /***********************************************************************
2975 * CoGetState [OLE32.@]
2977 * Retrieves the thread state object previously stored by CoSetState().
2980 * ppv [I] Address where pointer to object will be stored.
2984 * Failure: E_OUTOFMEMORY.
2987 * Crashes on all invalid ppv addresses, including NULL.
2988 * If the function returns a non-NULL object then the caller must release its
2989 * reference on the object when the object is no longer required.
2994 HRESULT WINAPI CoGetState(IUnknown ** ppv)
2996 struct oletls *info = COM_CurrentInfo();
2997 if (!info) return E_OUTOFMEMORY;
3003 IUnknown_AddRef(info->state);
3005 TRACE("apt->state=%p\n", info->state);
3011 /***********************************************************************
3012 * CoSetState [OLE32.@]
3014 * Sets the thread state object.
3017 * pv [I] Pointer to state object to be stored.
3020 * The system keeps a reference on the object while the object stored.
3024 * Failure: E_OUTOFMEMORY.
3026 HRESULT WINAPI CoSetState(IUnknown * pv)
3028 struct oletls *info = COM_CurrentInfo();
3029 if (!info) return E_OUTOFMEMORY;
3031 if (pv) IUnknown_AddRef(pv);
3035 TRACE("-- release %p now\n", info->state);
3036 IUnknown_Release(info->state);
3045 /******************************************************************************
3046 * CoTreatAsClass [OLE32.@]
3048 * Sets the TreatAs value of a class.
3051 * clsidOld [I] Class to set TreatAs value on.
3052 * clsidNew [I] The class the clsidOld should be treated as.
3056 * Failure: HRESULT code.
3061 HRESULT WINAPI CoTreatAsClass(REFCLSID clsidOld, REFCLSID clsidNew)
3063 static const WCHAR wszAutoTreatAs[] = {'A','u','t','o','T','r','e','a','t','A','s',0};
3064 static const WCHAR wszTreatAs[] = {'T','r','e','a','t','A','s',0};
3066 WCHAR szClsidNew[CHARS_IN_GUID];
3068 WCHAR auto_treat_as[CHARS_IN_GUID];
3069 LONG auto_treat_as_size = sizeof(auto_treat_as);
3072 res = COM_OpenKeyForCLSID(clsidOld, NULL, KEY_READ | KEY_WRITE, &hkey);
3075 if (!memcmp( clsidOld, clsidNew, sizeof(*clsidOld) ))
3077 if (!RegQueryValueW(hkey, wszAutoTreatAs, auto_treat_as, &auto_treat_as_size) &&
3078 CLSIDFromString(auto_treat_as, &id) == S_OK)
3080 if (RegSetValueW(hkey, wszTreatAs, REG_SZ, auto_treat_as, sizeof(auto_treat_as)))
3082 res = REGDB_E_WRITEREGDB;
3088 RegDeleteKeyW(hkey, wszTreatAs);
3092 else if (!StringFromGUID2(clsidNew, szClsidNew, ARRAYSIZE(szClsidNew)) &&
3093 !RegSetValueW(hkey, wszTreatAs, REG_SZ, szClsidNew, sizeof(szClsidNew)))
3095 res = REGDB_E_WRITEREGDB;
3100 if (hkey) RegCloseKey(hkey);
3104 /******************************************************************************
3105 * CoGetTreatAsClass [OLE32.@]
3107 * Gets the TreatAs value of a class.
3110 * clsidOld [I] Class to get the TreatAs value of.
3111 * clsidNew [I] The class the clsidOld should be treated as.
3115 * Failure: HRESULT code.
3120 HRESULT WINAPI CoGetTreatAsClass(REFCLSID clsidOld, LPCLSID clsidNew)
3122 static const WCHAR wszTreatAs[] = {'T','r','e','a','t','A','s',0};
3124 WCHAR szClsidNew[CHARS_IN_GUID];
3126 LONG len = sizeof(szClsidNew);
3128 TRACE("(%s,%p)\n", debugstr_guid(clsidOld), clsidNew);
3129 *clsidNew = *clsidOld; /* copy over old value */
3131 res = COM_OpenKeyForCLSID(clsidOld, wszTreatAs, KEY_READ, &hkey);
3137 if (RegQueryValueW(hkey, NULL, szClsidNew, &len))
3142 res = CLSIDFromString(szClsidNew,clsidNew);
3144 ERR("Failed CLSIDFromStringA(%s), hres 0x%08x\n", debugstr_w(szClsidNew), res);
3146 if (hkey) RegCloseKey(hkey);
3150 /******************************************************************************
3151 * CoGetCurrentProcess [OLE32.@]
3153 * Gets the current process ID.
3156 * The current process ID.
3159 * Is DWORD really the correct return type for this function?
3161 DWORD WINAPI CoGetCurrentProcess(void)
3163 return GetCurrentProcessId();
3166 /******************************************************************************
3167 * CoRegisterMessageFilter [OLE32.@]
3169 * Registers a message filter.
3172 * lpMessageFilter [I] Pointer to interface.
3173 * lplpMessageFilter [O] Indirect pointer to prior instance if non-NULL.
3177 * Failure: HRESULT code.
3180 * Both lpMessageFilter and lplpMessageFilter are optional. Passing in a NULL
3181 * lpMessageFilter removes the message filter.
3183 * If lplpMessageFilter is not NULL the previous message filter will be
3184 * returned in the memory pointer to this parameter and the caller is
3185 * responsible for releasing the object.
3187 * The current thread be in an apartment otherwise the function will crash.
3189 HRESULT WINAPI CoRegisterMessageFilter(
3190 LPMESSAGEFILTER lpMessageFilter,
3191 LPMESSAGEFILTER *lplpMessageFilter)
3193 struct apartment *apt;
3194 IMessageFilter *lpOldMessageFilter;
3196 TRACE("(%p, %p)\n", lpMessageFilter, lplpMessageFilter);
3198 apt = COM_CurrentApt();
3200 /* can't set a message filter in a multi-threaded apartment */
3201 if (!apt || apt->multi_threaded)
3203 WARN("can't set message filter in MTA or uninitialized apt\n");
3204 return CO_E_NOT_SUPPORTED;
3207 if (lpMessageFilter)
3208 IMessageFilter_AddRef(lpMessageFilter);
3210 EnterCriticalSection(&apt->cs);
3212 lpOldMessageFilter = apt->filter;
3213 apt->filter = lpMessageFilter;
3215 LeaveCriticalSection(&apt->cs);
3217 if (lplpMessageFilter)
3218 *lplpMessageFilter = lpOldMessageFilter;
3219 else if (lpOldMessageFilter)
3220 IMessageFilter_Release(lpOldMessageFilter);
3225 /***********************************************************************
3226 * CoIsOle1Class [OLE32.@]
3228 * Determines whether the specified class an OLE v1 class.
3231 * clsid [I] Class to test.
3234 * TRUE if the class is an OLE v1 class, or FALSE otherwise.
3236 BOOL WINAPI CoIsOle1Class(REFCLSID clsid)
3238 FIXME("%s\n", debugstr_guid(clsid));
3242 /***********************************************************************
3243 * IsEqualGUID [OLE32.@]
3245 * Compares two Unique Identifiers.
3248 * rguid1 [I] The first GUID to compare.
3249 * rguid2 [I] The other GUID to compare.
3255 BOOL WINAPI IsEqualGUID(
3259 return !memcmp(rguid1,rguid2,sizeof(GUID));
3262 /***********************************************************************
3263 * CoInitializeSecurity [OLE32.@]
3265 HRESULT WINAPI CoInitializeSecurity(PSECURITY_DESCRIPTOR pSecDesc, LONG cAuthSvc,
3266 SOLE_AUTHENTICATION_SERVICE* asAuthSvc,
3267 void* pReserved1, DWORD dwAuthnLevel,
3268 DWORD dwImpLevel, void* pReserved2,
3269 DWORD dwCapabilities, void* pReserved3)
3271 FIXME("(%p,%d,%p,%p,%d,%d,%p,%d,%p) - stub!\n", pSecDesc, cAuthSvc,
3272 asAuthSvc, pReserved1, dwAuthnLevel, dwImpLevel, pReserved2,
3273 dwCapabilities, pReserved3);
3277 /***********************************************************************
3278 * CoSuspendClassObjects [OLE32.@]
3280 * Suspends all registered class objects to prevent further requests coming in
3281 * for those objects.
3285 * Failure: HRESULT code.
3287 HRESULT WINAPI CoSuspendClassObjects(void)
3293 /***********************************************************************
3294 * CoAddRefServerProcess [OLE32.@]
3296 * Helper function for incrementing the reference count of a local-server
3300 * New reference count.
3303 * CoReleaseServerProcess().
3305 ULONG WINAPI CoAddRefServerProcess(void)
3311 EnterCriticalSection(&csRegisteredClassList);
3312 refs = ++s_COMServerProcessReferences;
3313 LeaveCriticalSection(&csRegisteredClassList);
3315 TRACE("refs before: %d\n", refs - 1);
3320 /***********************************************************************
3321 * CoReleaseServerProcess [OLE32.@]
3323 * Helper function for decrementing the reference count of a local-server
3327 * New reference count.
3330 * When reference count reaches 0, this function suspends all registered
3331 * classes so no new connections are accepted.
3334 * CoAddRefServerProcess(), CoSuspendClassObjects().
3336 ULONG WINAPI CoReleaseServerProcess(void)
3342 EnterCriticalSection(&csRegisteredClassList);
3344 refs = --s_COMServerProcessReferences;
3345 /* FIXME: if (!refs) COM_SuspendClassObjects(); */
3347 LeaveCriticalSection(&csRegisteredClassList);
3349 TRACE("refs after: %d\n", refs);
3354 /***********************************************************************
3355 * CoIsHandlerConnected [OLE32.@]
3357 * Determines whether a proxy is connected to a remote stub.
3360 * pUnk [I] Pointer to object that may or may not be connected.
3363 * TRUE if pUnk is not a proxy or if pUnk is connected to a remote stub, or
3366 BOOL WINAPI CoIsHandlerConnected(IUnknown *pUnk)
3368 FIXME("%p\n", pUnk);
3373 /***********************************************************************
3374 * CoAllowSetForegroundWindow [OLE32.@]
3377 HRESULT WINAPI CoAllowSetForegroundWindow(IUnknown *pUnk, void *pvReserved)
3379 FIXME("(%p, %p): stub\n", pUnk, pvReserved);
3383 /***********************************************************************
3384 * CoQueryProxyBlanket [OLE32.@]
3386 * Retrieves the security settings being used by a proxy.
3389 * pProxy [I] Pointer to the proxy object.
3390 * pAuthnSvc [O] The type of authentication service.
3391 * pAuthzSvc [O] The type of authorization service.
3392 * ppServerPrincName [O] Optional. The server prinicple name.
3393 * pAuthnLevel [O] The authentication level.
3394 * pImpLevel [O] The impersonation level.
3395 * ppAuthInfo [O] Information specific to the authorization/authentication service.
3396 * pCapabilities [O] Flags affecting the security behaviour.
3400 * Failure: HRESULT code.
3403 * CoCopyProxy, CoSetProxyBlanket.
3405 HRESULT WINAPI CoQueryProxyBlanket(IUnknown *pProxy, DWORD *pAuthnSvc,
3406 DWORD *pAuthzSvc, OLECHAR **ppServerPrincName, DWORD *pAuthnLevel,
3407 DWORD *pImpLevel, void **ppAuthInfo, DWORD *pCapabilities)
3409 IClientSecurity *pCliSec;
3412 TRACE("%p\n", pProxy);
3414 hr = IUnknown_QueryInterface(pProxy, &IID_IClientSecurity, (void **)&pCliSec);
3417 hr = IClientSecurity_QueryBlanket(pCliSec, pProxy, pAuthnSvc,
3418 pAuthzSvc, ppServerPrincName,
3419 pAuthnLevel, pImpLevel, ppAuthInfo,
3421 IClientSecurity_Release(pCliSec);
3424 if (FAILED(hr)) ERR("-- failed with 0x%08x\n", hr);
3428 /***********************************************************************
3429 * CoSetProxyBlanket [OLE32.@]
3431 * Sets the security settings for a proxy.
3434 * pProxy [I] Pointer to the proxy object.
3435 * AuthnSvc [I] The type of authentication service.
3436 * AuthzSvc [I] The type of authorization service.
3437 * pServerPrincName [I] The server prinicple name.
3438 * AuthnLevel [I] The authentication level.
3439 * ImpLevel [I] The impersonation level.
3440 * pAuthInfo [I] Information specific to the authorization/authentication service.
3441 * Capabilities [I] Flags affecting the security behaviour.
3445 * Failure: HRESULT code.
3448 * CoQueryProxyBlanket, CoCopyProxy.
3450 HRESULT WINAPI CoSetProxyBlanket(IUnknown *pProxy, DWORD AuthnSvc,
3451 DWORD AuthzSvc, OLECHAR *pServerPrincName, DWORD AuthnLevel,
3452 DWORD ImpLevel, void *pAuthInfo, DWORD Capabilities)
3454 IClientSecurity *pCliSec;
3457 TRACE("%p\n", pProxy);
3459 hr = IUnknown_QueryInterface(pProxy, &IID_IClientSecurity, (void **)&pCliSec);
3462 hr = IClientSecurity_SetBlanket(pCliSec, pProxy, AuthnSvc,
3463 AuthzSvc, pServerPrincName,
3464 AuthnLevel, ImpLevel, pAuthInfo,
3466 IClientSecurity_Release(pCliSec);
3469 if (FAILED(hr)) ERR("-- failed with 0x%08x\n", hr);
3473 /***********************************************************************
3474 * CoCopyProxy [OLE32.@]
3479 * pProxy [I] Pointer to the proxy object.
3480 * ppCopy [O] Copy of the proxy.
3484 * Failure: HRESULT code.
3487 * CoQueryProxyBlanket, CoSetProxyBlanket.
3489 HRESULT WINAPI CoCopyProxy(IUnknown *pProxy, IUnknown **ppCopy)
3491 IClientSecurity *pCliSec;
3494 TRACE("%p\n", pProxy);
3496 hr = IUnknown_QueryInterface(pProxy, &IID_IClientSecurity, (void **)&pCliSec);
3499 hr = IClientSecurity_CopyProxy(pCliSec, pProxy, ppCopy);
3500 IClientSecurity_Release(pCliSec);
3503 if (FAILED(hr)) ERR("-- failed with 0x%08x\n", hr);
3508 /***********************************************************************
3509 * CoGetCallContext [OLE32.@]
3511 * Gets the context of the currently executing server call in the current
3515 * riid [I] Context interface to return.
3516 * ppv [O] Pointer to memory that will receive the context on return.
3520 * Failure: HRESULT code.
3522 HRESULT WINAPI CoGetCallContext(REFIID riid, void **ppv)
3524 struct oletls *info = COM_CurrentInfo();
3526 TRACE("(%s, %p)\n", debugstr_guid(riid), ppv);
3529 return E_OUTOFMEMORY;
3531 if (!info->call_state)
3532 return RPC_E_CALL_COMPLETE;
3534 return IUnknown_QueryInterface(info->call_state, riid, ppv);
3537 /***********************************************************************
3538 * CoSwitchCallContext [OLE32.@]
3540 * Switches the context of the currently executing server call in the current
3544 * pObject [I] Pointer to new context object
3545 * ppOldObject [O] Pointer to memory that will receive old context object pointer
3549 * Failure: HRESULT code.
3551 HRESULT WINAPI CoSwitchCallContext(IUnknown *pObject, IUnknown **ppOldObject)
3553 struct oletls *info = COM_CurrentInfo();
3555 TRACE("(%p, %p)\n", pObject, ppOldObject);
3558 return E_OUTOFMEMORY;
3560 *ppOldObject = info->call_state;
3561 info->call_state = pObject; /* CoSwitchCallContext does not addref nor release objects */
3566 /***********************************************************************
3567 * CoQueryClientBlanket [OLE32.@]
3569 * Retrieves the authentication information about the client of the currently
3570 * executing server call in the current thread.
3573 * pAuthnSvc [O] Optional. The type of authentication service.
3574 * pAuthzSvc [O] Optional. The type of authorization service.
3575 * pServerPrincName [O] Optional. The server prinicple name.
3576 * pAuthnLevel [O] Optional. The authentication level.
3577 * pImpLevel [O] Optional. The impersonation level.
3578 * pPrivs [O] Optional. Information about the privileges of the client.
3579 * pCapabilities [IO] Optional. Flags affecting the security behaviour.
3583 * Failure: HRESULT code.
3586 * CoImpersonateClient, CoRevertToSelf, CoGetCallContext.
3588 HRESULT WINAPI CoQueryClientBlanket(
3591 OLECHAR **pServerPrincName,
3594 RPC_AUTHZ_HANDLE *pPrivs,
3595 DWORD *pCapabilities)
3597 IServerSecurity *pSrvSec;
3600 TRACE("(%p, %p, %p, %p, %p, %p, %p)\n",
3601 pAuthnSvc, pAuthzSvc, pServerPrincName, pAuthnLevel, pImpLevel,
3602 pPrivs, pCapabilities);
3604 hr = CoGetCallContext(&IID_IServerSecurity, (void **)&pSrvSec);
3607 hr = IServerSecurity_QueryBlanket(
3608 pSrvSec, pAuthnSvc, pAuthzSvc, pServerPrincName, pAuthnLevel,
3609 pImpLevel, pPrivs, pCapabilities);
3610 IServerSecurity_Release(pSrvSec);
3616 /***********************************************************************
3617 * CoImpersonateClient [OLE32.@]
3619 * Impersonates the client of the currently executing server call in the
3627 * Failure: HRESULT code.
3630 * If this function fails then the current thread will not be impersonating
3631 * the client and all actions will take place on behalf of the server.
3632 * Therefore, it is important to check the return value from this function.
3635 * CoRevertToSelf, CoQueryClientBlanket, CoGetCallContext.
3637 HRESULT WINAPI CoImpersonateClient(void)
3639 IServerSecurity *pSrvSec;
3644 hr = CoGetCallContext(&IID_IServerSecurity, (void **)&pSrvSec);
3647 hr = IServerSecurity_ImpersonateClient(pSrvSec);
3648 IServerSecurity_Release(pSrvSec);
3654 /***********************************************************************
3655 * CoRevertToSelf [OLE32.@]
3657 * Ends the impersonation of the client of the currently executing server
3658 * call in the current thread.
3665 * Failure: HRESULT code.
3668 * CoImpersonateClient, CoQueryClientBlanket, CoGetCallContext.
3670 HRESULT WINAPI CoRevertToSelf(void)
3672 IServerSecurity *pSrvSec;
3677 hr = CoGetCallContext(&IID_IServerSecurity, (void **)&pSrvSec);
3680 hr = IServerSecurity_RevertToSelf(pSrvSec);
3681 IServerSecurity_Release(pSrvSec);
3687 static BOOL COM_PeekMessage(struct apartment *apt, MSG *msg)
3689 /* first try to retrieve messages for incoming COM calls to the apartment window */
3690 return PeekMessageW(msg, apt->win, 0, 0, PM_REMOVE|PM_NOYIELD) ||
3691 /* next retrieve other messages necessary for the app to remain responsive */
3692 PeekMessageW(msg, NULL, WM_DDE_FIRST, WM_DDE_LAST, PM_REMOVE|PM_NOYIELD) ||
3693 PeekMessageW(msg, NULL, 0, 0, PM_QS_PAINT|PM_QS_SENDMESSAGE|PM_REMOVE|PM_NOYIELD);
3696 /***********************************************************************
3697 * CoWaitForMultipleHandles [OLE32.@]
3699 * Waits for one or more handles to become signaled.
3702 * dwFlags [I] Flags. See notes.
3703 * dwTimeout [I] Timeout in milliseconds.
3704 * cHandles [I] Number of handles pointed to by pHandles.
3705 * pHandles [I] Handles to wait for.
3706 * lpdwindex [O] Index of handle that was signaled.
3710 * Failure: RPC_S_CALLPENDING on timeout.
3714 * The dwFlags parameter can be zero or more of the following:
3715 *| COWAIT_WAITALL - Wait for all of the handles to become signaled.
3716 *| COWAIT_ALERTABLE - Allows a queued APC to run during the wait.
3719 * MsgWaitForMultipleObjects, WaitForMultipleObjects.
3721 HRESULT WINAPI CoWaitForMultipleHandles(DWORD dwFlags, DWORD dwTimeout,
3722 ULONG cHandles, LPHANDLE pHandles, LPDWORD lpdwindex)
3725 DWORD start_time = GetTickCount();
3726 APARTMENT *apt = COM_CurrentApt();
3727 BOOL message_loop = apt && !apt->multi_threaded;
3729 TRACE("(0x%08x, 0x%08x, %d, %p, %p)\n", dwFlags, dwTimeout, cHandles,
3730 pHandles, lpdwindex);
3734 DWORD now = GetTickCount();
3737 if (now - start_time > dwTimeout)
3739 hr = RPC_S_CALLPENDING;
3745 DWORD wait_flags = ((dwFlags & COWAIT_WAITALL) ? MWMO_WAITALL : 0) |
3746 ((dwFlags & COWAIT_ALERTABLE ) ? MWMO_ALERTABLE : 0);
3748 TRACE("waiting for rpc completion or window message\n");
3750 res = MsgWaitForMultipleObjectsEx(cHandles, pHandles,
3751 (dwTimeout == INFINITE) ? INFINITE : start_time + dwTimeout - now,
3752 QS_SENDMESSAGE | QS_ALLPOSTMESSAGE | QS_PAINT, wait_flags);
3754 if (res == WAIT_OBJECT_0 + cHandles) /* messages available */
3758 /* call message filter */
3760 if (COM_CurrentApt()->filter)
3762 PENDINGTYPE pendingtype =
3763 COM_CurrentInfo()->pending_call_count_server ?
3764 PENDINGTYPE_NESTED : PENDINGTYPE_TOPLEVEL;
3765 DWORD be_handled = IMessageFilter_MessagePending(
3766 COM_CurrentApt()->filter, 0 /* FIXME */,
3767 now - start_time, pendingtype);
3768 TRACE("IMessageFilter_MessagePending returned %d\n", be_handled);
3771 case PENDINGMSG_CANCELCALL:
3772 WARN("call canceled\n");
3773 hr = RPC_E_CALL_CANCELED;
3775 case PENDINGMSG_WAITNOPROCESS:
3776 case PENDINGMSG_WAITDEFPROCESS:
3778 /* FIXME: MSDN is very vague about the difference
3779 * between WAITNOPROCESS and WAITDEFPROCESS - there
3780 * appears to be none, so it is possibly a left-over
3781 * from the 16-bit world. */
3786 while (COM_PeekMessage(apt, &msg))
3788 TRACE("received message whilst waiting for RPC: 0x%04x\n", msg.message);
3789 TranslateMessage(&msg);
3790 DispatchMessageW(&msg);
3791 if (msg.message == WM_QUIT)
3793 TRACE("resending WM_QUIT to outer message loop\n");
3794 PostQuitMessage(msg.wParam);
3795 /* no longer need to process messages */
3796 message_loop = FALSE;
3805 TRACE("waiting for rpc completion\n");
3807 res = WaitForMultipleObjectsEx(cHandles, pHandles, (dwFlags & COWAIT_WAITALL) != 0,
3808 (dwTimeout == INFINITE) ? INFINITE : start_time + dwTimeout - now,
3809 (dwFlags & COWAIT_ALERTABLE) != 0);
3815 hr = RPC_S_CALLPENDING;
3818 hr = HRESULT_FROM_WIN32( GetLastError() );
3826 TRACE("-- 0x%08x\n", hr);
3831 /***********************************************************************
3832 * CoGetObject [OLE32.@]
3834 * Gets the object named by converting the name to a moniker and binding to it.
3837 * pszName [I] String representing the object.
3838 * pBindOptions [I] Parameters affecting the binding to the named object.
3839 * riid [I] Interface to bind to on the objecct.
3840 * ppv [O] On output, the interface riid of the object represented
3845 * Failure: HRESULT code.
3848 * MkParseDisplayName.
3850 HRESULT WINAPI CoGetObject(LPCWSTR pszName, BIND_OPTS *pBindOptions,
3851 REFIID riid, void **ppv)
3858 hr = CreateBindCtx(0, &pbc);
3862 hr = IBindCtx_SetBindOptions(pbc, pBindOptions);
3869 hr = MkParseDisplayName(pbc, pszName, &chEaten, &pmk);
3872 hr = IMoniker_BindToObject(pmk, pbc, NULL, riid, ppv);
3873 IMoniker_Release(pmk);
3877 IBindCtx_Release(pbc);
3882 /***********************************************************************
3883 * CoRegisterChannelHook [OLE32.@]
3885 * Registers a process-wide hook that is called during ORPC calls.
3888 * guidExtension [I] GUID of the channel hook to register.
3889 * pChannelHook [I] Channel hook object to register.
3893 * Failure: HRESULT code.
3895 HRESULT WINAPI CoRegisterChannelHook(REFGUID guidExtension, IChannelHook *pChannelHook)
3897 TRACE("(%s, %p)\n", debugstr_guid(guidExtension), pChannelHook);
3899 return RPC_RegisterChannelHook(guidExtension, pChannelHook);
3902 typedef struct Context
3904 IComThreadingInfo IComThreadingInfo_iface;
3905 IContextCallback IContextCallback_iface;
3906 IObjContext IObjContext_iface;
3911 static inline Context *impl_from_IComThreadingInfo( IComThreadingInfo *iface )
3913 return CONTAINING_RECORD(iface, Context, IComThreadingInfo_iface);
3916 static inline Context *impl_from_IContextCallback( IContextCallback *iface )
3918 return CONTAINING_RECORD(iface, Context, IContextCallback_iface);
3921 static inline Context *impl_from_IObjContext( IObjContext *iface )
3923 return CONTAINING_RECORD(iface, Context, IObjContext_iface);
3926 static HRESULT Context_QueryInterface(Context *iface, REFIID riid, LPVOID *ppv)
3930 if (IsEqualIID(riid, &IID_IComThreadingInfo) ||
3931 IsEqualIID(riid, &IID_IUnknown))
3933 *ppv = &iface->IComThreadingInfo_iface;
3935 else if (IsEqualIID(riid, &IID_IContextCallback))
3937 *ppv = &iface->IContextCallback_iface;
3939 else if (IsEqualIID(riid, &IID_IObjContext))
3941 *ppv = &iface->IObjContext_iface;
3946 IUnknown_AddRef((IUnknown*)*ppv);
3950 FIXME("interface not implemented %s\n", debugstr_guid(riid));
3951 return E_NOINTERFACE;
3954 static ULONG Context_AddRef(Context *This)
3956 return InterlockedIncrement(&This->refs);
3959 static ULONG Context_Release(Context *This)
3961 ULONG refs = InterlockedDecrement(&This->refs);
3963 HeapFree(GetProcessHeap(), 0, This);
3967 static HRESULT WINAPI Context_CTI_QueryInterface(IComThreadingInfo *iface, REFIID riid, LPVOID *ppv)
3969 Context *This = impl_from_IComThreadingInfo(iface);
3970 return Context_QueryInterface(This, riid, ppv);
3973 static ULONG WINAPI Context_CTI_AddRef(IComThreadingInfo *iface)
3975 Context *This = impl_from_IComThreadingInfo(iface);
3976 return Context_AddRef(This);
3979 static ULONG WINAPI Context_CTI_Release(IComThreadingInfo *iface)
3981 Context *This = impl_from_IComThreadingInfo(iface);
3982 return Context_Release(This);
3985 static HRESULT WINAPI Context_CTI_GetCurrentApartmentType(IComThreadingInfo *iface, APTTYPE *apttype)
3987 Context *This = impl_from_IComThreadingInfo(iface);
3989 TRACE("(%p)\n", apttype);
3991 *apttype = This->apttype;
3995 static HRESULT WINAPI Context_CTI_GetCurrentThreadType(IComThreadingInfo *iface, THDTYPE *thdtype)
3997 Context *This = impl_from_IComThreadingInfo(iface);
3999 TRACE("(%p)\n", thdtype);
4001 switch (This->apttype)
4004 case APTTYPE_MAINSTA:
4005 *thdtype = THDTYPE_PROCESSMESSAGES;
4008 *thdtype = THDTYPE_BLOCKMESSAGES;
4014 static HRESULT WINAPI Context_CTI_GetCurrentLogicalThreadId(IComThreadingInfo *iface, GUID *logical_thread_id)
4016 FIXME("(%p): stub\n", logical_thread_id);
4020 static HRESULT WINAPI Context_CTI_SetCurrentLogicalThreadId(IComThreadingInfo *iface, REFGUID logical_thread_id)
4022 FIXME("(%s): stub\n", debugstr_guid(logical_thread_id));
4026 static const IComThreadingInfoVtbl Context_Threading_Vtbl =
4028 Context_CTI_QueryInterface,
4030 Context_CTI_Release,
4031 Context_CTI_GetCurrentApartmentType,
4032 Context_CTI_GetCurrentThreadType,
4033 Context_CTI_GetCurrentLogicalThreadId,
4034 Context_CTI_SetCurrentLogicalThreadId
4037 static HRESULT WINAPI Context_CC_QueryInterface(IContextCallback *iface, REFIID riid, LPVOID *ppv)
4039 Context *This = impl_from_IContextCallback(iface);
4040 return Context_QueryInterface(This, riid, ppv);
4043 static ULONG WINAPI Context_CC_AddRef(IContextCallback *iface)
4045 Context *This = impl_from_IContextCallback(iface);
4046 return Context_AddRef(This);
4049 static ULONG WINAPI Context_CC_Release(IContextCallback *iface)
4051 Context *This = impl_from_IContextCallback(iface);
4052 return Context_Release(This);
4055 static HRESULT WINAPI Context_CC_ContextCallback(IContextCallback *iface, PFNCONTEXTCALL pCallback,
4056 ComCallData *param, REFIID riid, int method, IUnknown *punk)
4058 Context *This = impl_from_IContextCallback(iface);
4060 FIXME("(%p/%p)->(%p, %p, %s, %d, %p)\n", This, iface, pCallback, param, debugstr_guid(riid), method, punk);
4064 static const IContextCallbackVtbl Context_Callback_Vtbl =
4066 Context_CC_QueryInterface,
4069 Context_CC_ContextCallback
4072 static HRESULT WINAPI Context_OC_QueryInterface(IObjContext *iface, REFIID riid, LPVOID *ppv)
4074 Context *This = impl_from_IObjContext(iface);
4075 return Context_QueryInterface(This, riid, ppv);
4078 static ULONG WINAPI Context_OC_AddRef(IObjContext *iface)
4080 Context *This = impl_from_IObjContext(iface);
4081 return Context_AddRef(This);
4084 static ULONG WINAPI Context_OC_Release(IObjContext *iface)
4086 Context *This = impl_from_IObjContext(iface);
4087 return Context_Release(This);
4090 static HRESULT WINAPI Context_OC_SetProperty(IObjContext *iface, REFGUID propid, CPFLAGS flags, IUnknown *punk)
4092 Context *This = impl_from_IObjContext(iface);
4094 FIXME("(%p/%p)->(%s, %x, %p)\n", This, iface, debugstr_guid(propid), flags, punk);
4098 static HRESULT WINAPI Context_OC_RemoveProperty(IObjContext *iface, REFGUID propid)
4100 Context *This = impl_from_IObjContext(iface);
4102 FIXME("(%p/%p)->(%s)\n", This, iface, debugstr_guid(propid));
4106 static HRESULT WINAPI Context_OC_GetProperty(IObjContext *iface, REFGUID propid, CPFLAGS *flags, IUnknown **punk)
4108 Context *This = impl_from_IObjContext(iface);
4110 FIXME("(%p/%p)->(%s, %p, %p)\n", This, iface, debugstr_guid(propid), flags, punk);
4114 static HRESULT WINAPI Context_OC_EnumContextProps(IObjContext *iface, IEnumContextProps **props)
4116 Context *This = impl_from_IObjContext(iface);
4118 FIXME("(%p/%p)->(%p)\n", This, iface, props);
4122 static void WINAPI Context_OC_Reserved1(IObjContext *iface)
4124 Context *This = impl_from_IObjContext(iface);
4125 FIXME("(%p/%p)\n", This, iface);
4128 static void WINAPI Context_OC_Reserved2(IObjContext *iface)
4130 Context *This = impl_from_IObjContext(iface);
4131 FIXME("(%p/%p)\n", This, iface);
4134 static void WINAPI Context_OC_Reserved3(IObjContext *iface)
4136 Context *This = impl_from_IObjContext(iface);
4137 FIXME("(%p/%p)\n", This, iface);
4140 static void WINAPI Context_OC_Reserved4(IObjContext *iface)
4142 Context *This = impl_from_IObjContext(iface);
4143 FIXME("(%p/%p)\n", This, iface);
4146 static void WINAPI Context_OC_Reserved5(IObjContext *iface)
4148 Context *This = impl_from_IObjContext(iface);
4149 FIXME("(%p/%p)\n", This, iface);
4152 static void WINAPI Context_OC_Reserved6(IObjContext *iface)
4154 Context *This = impl_from_IObjContext(iface);
4155 FIXME("(%p/%p)\n", This, iface);
4158 static void WINAPI Context_OC_Reserved7(IObjContext *iface)
4160 Context *This = impl_from_IObjContext(iface);
4161 FIXME("(%p/%p)\n", This, iface);
4164 static const IObjContextVtbl Context_Object_Vtbl =
4166 Context_OC_QueryInterface,
4169 Context_OC_SetProperty,
4170 Context_OC_RemoveProperty,
4171 Context_OC_GetProperty,
4172 Context_OC_EnumContextProps,
4173 Context_OC_Reserved1,
4174 Context_OC_Reserved2,
4175 Context_OC_Reserved3,
4176 Context_OC_Reserved4,
4177 Context_OC_Reserved5,
4178 Context_OC_Reserved6,
4179 Context_OC_Reserved7
4182 /***********************************************************************
4183 * CoGetObjectContext [OLE32.@]
4185 * Retrieves an object associated with the current context (i.e. apartment).
4188 * riid [I] ID of the interface of the object to retrieve.
4189 * ppv [O] Address where object will be stored on return.
4193 * Failure: HRESULT code.
4195 HRESULT WINAPI CoGetObjectContext(REFIID riid, void **ppv)
4197 APARTMENT *apt = COM_CurrentApt();
4201 TRACE("(%s, %p)\n", debugstr_guid(riid), ppv);
4206 if (!(apt = apartment_find_multi_threaded()))
4208 ERR("apartment not initialised\n");
4209 return CO_E_NOTINITIALIZED;
4211 apartment_release(apt);
4214 context = HeapAlloc(GetProcessHeap(), 0, sizeof(*context));
4216 return E_OUTOFMEMORY;
4218 context->IComThreadingInfo_iface.lpVtbl = &Context_Threading_Vtbl;
4219 context->IContextCallback_iface.lpVtbl = &Context_Callback_Vtbl;
4220 context->IObjContext_iface.lpVtbl = &Context_Object_Vtbl;
4222 if (apt->multi_threaded)
4223 context->apttype = APTTYPE_MTA;
4225 context->apttype = APTTYPE_MAINSTA;
4227 context->apttype = APTTYPE_STA;
4229 hr = IUnknown_QueryInterface((IUnknown *)&context->IComThreadingInfo_iface, riid, ppv);
4230 IUnknown_Release((IUnknown *)&context->IComThreadingInfo_iface);
4236 /***********************************************************************
4237 * CoGetContextToken [OLE32.@]
4239 HRESULT WINAPI CoGetContextToken( ULONG_PTR *token )
4241 struct oletls *info = COM_CurrentInfo();
4243 TRACE("(%p)\n", token);
4246 return E_OUTOFMEMORY;
4251 if (!(apt = apartment_find_multi_threaded()))
4253 ERR("apartment not initialised\n");
4254 return CO_E_NOTINITIALIZED;
4256 apartment_release(apt);
4262 if (!info->context_token)
4267 hr = CoGetObjectContext(&IID_IObjContext, (void **)&ctx);
4268 if (FAILED(hr)) return hr;
4269 info->context_token = ctx;
4272 *token = (ULONG_PTR)info->context_token;
4273 TRACE("apt->context_token=%p\n", info->context_token);
4278 /***********************************************************************
4279 * CoGetDefaultContext [OLE32.@]
4281 HRESULT WINAPI CoGetDefaultContext(APTTYPE type, REFIID riid, LPVOID *ppv)
4283 FIXME("%d %s %p stub\n", type, debugstr_guid(riid), ppv);
4284 return E_NOINTERFACE;
4287 HRESULT Handler_DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv)
4289 static const WCHAR wszInprocHandler32[] = {'I','n','p','r','o','c','H','a','n','d','l','e','r','3','2',0};
4293 hres = COM_OpenKeyForCLSID(rclsid, wszInprocHandler32, KEY_READ, &hkey);
4294 if (SUCCEEDED(hres))
4296 WCHAR dllpath[MAX_PATH+1];
4298 if (COM_RegReadPath(hkey, dllpath, ARRAYSIZE(dllpath)) == ERROR_SUCCESS)
4300 static const WCHAR wszOle32[] = {'o','l','e','3','2','.','d','l','l',0};
4301 if (!strcmpiW(dllpath, wszOle32))
4304 return HandlerCF_Create(rclsid, riid, ppv);
4308 WARN("not creating object for inproc handler path %s\n", debugstr_w(dllpath));
4312 return CLASS_E_CLASSNOTAVAILABLE;
4315 /***********************************************************************
4318 BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID fImpLoad)
4320 TRACE("%p 0x%x %p\n", hinstDLL, fdwReason, fImpLoad);
4323 case DLL_PROCESS_ATTACH:
4324 hProxyDll = hinstDLL;
4325 COMPOBJ_InitProcess();
4328 case DLL_PROCESS_DETACH:
4329 COMPOBJ_UninitProcess();
4330 RPC_UnregisterAllChannelHooks();
4331 COMPOBJ_DllList_Free();
4332 DeleteCriticalSection(&csRegisteredClassList);
4333 DeleteCriticalSection(&csApartment);
4336 case DLL_THREAD_DETACH:
4343 /***********************************************************************
4344 * DllRegisterServer (OLE32.@)
4346 HRESULT WINAPI DllRegisterServer(void)
4348 return OLE32_DllRegisterServer();
4351 /***********************************************************************
4352 * DllUnregisterServer (OLE32.@)
4354 HRESULT WINAPI DllUnregisterServer(void)
4356 return OLE32_DllUnregisterServer();