2 * A stub manager is an object that controls interface stubs. It is
3 * identified by an OID (object identifier) and acts as the network
4 * identity of the object. There can be many stub managers in a
5 * process or apartment.
7 * Copyright 2002 Marcus Meissner
8 * Copyright 2004 Mike Hearn for CodeWeavers
9 * Copyright 2004 Robert Shearman (for CodeWeavers)
11 * This library is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU Lesser General Public
13 * License as published by the Free Software Foundation; either
14 * version 2.1 of the License, or (at your option) any later version.
16 * This library is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * Lesser General Public License for more details.
21 * You should have received a copy of the GNU Lesser General Public
22 * License along with this library; if not, write to the Free Software
23 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
38 #include "wine/debug.h"
39 #include "wine/exception.h"
43 #include "combase_private.h"
45 WINE_DEFAULT_DEBUG_CHANNEL(ole
);
47 /* generates an ipid in the following format (similar to native version):
48 * Data1 = apartment-local ipid counter
49 * Data2 = apartment creator thread ID
51 * Data4 = random value
53 static inline HRESULT
generate_ipid(struct stub_manager
*m
, IPID
*ipid
)
56 hr
= UuidCreate(ipid
);
59 ERR("couldn't create IPID for stub manager %p\n", m
);
64 ipid
->Data1
= InterlockedIncrement(&m
->apt
->ipidc
);
65 ipid
->Data2
= (USHORT
)m
->apt
->tid
;
66 ipid
->Data3
= (USHORT
)GetCurrentProcessId();
70 /* registers a new interface stub COM object with the stub manager and returns registration record */
71 struct ifstub
* stub_manager_new_ifstub(struct stub_manager
*m
, IRpcStubBuffer
*sb
, REFIID iid
, DWORD dest_context
,
72 void *dest_context_data
, MSHLFLAGS flags
)
77 TRACE("oid=%s, stubbuffer=%p, iid=%s, dest_context=%x\n", wine_dbgstr_longlong(m
->oid
), sb
,
78 debugstr_guid(iid
), dest_context
);
80 stub
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(struct ifstub
));
81 if (!stub
) return NULL
;
83 hr
= IUnknown_QueryInterface(m
->object
, iid
, (void **)&stub
->iface
);
86 HeapFree(GetProcessHeap(), 0, stub
);
90 hr
= rpc_create_serverchannel(dest_context
, dest_context_data
, &stub
->chan
);
93 IUnknown_Release(stub
->iface
);
94 HeapFree(GetProcessHeap(), 0, stub
);
98 stub
->stubbuffer
= sb
;
99 if (sb
) IRpcStubBuffer_AddRef(sb
);
104 /* FIXME: find a cleaner way of identifying that we are creating an ifstub
105 * for the remunknown interface */
106 if (flags
& MSHLFLAGSP_REMUNKNOWN
)
107 stub
->ipid
= m
->oxid_info
.ipidRemUnknown
;
109 generate_ipid(m
, &stub
->ipid
);
111 EnterCriticalSection(&m
->lock
);
112 list_add_head(&m
->ifstubs
, &stub
->entry
);
113 /* every normal marshal is counted so we don't allow more than we should */
114 if (flags
& MSHLFLAGS_NORMAL
) m
->norm_refs
++;
115 LeaveCriticalSection(&m
->lock
);
117 TRACE("ifstub %p created with ipid %s\n", stub
, debugstr_guid(&stub
->ipid
));
122 static void stub_manager_delete_ifstub(struct stub_manager
*m
, struct ifstub
*ifstub
)
124 TRACE("m=%p, m->oid=%s, ipid=%s\n", m
, wine_dbgstr_longlong(m
->oid
), debugstr_guid(&ifstub
->ipid
));
126 list_remove(&ifstub
->entry
);
128 if (!m
->disconnected
)
129 rpc_unregister_interface(&ifstub
->iid
, TRUE
);
131 if (ifstub
->stubbuffer
) IRpcStubBuffer_Release(ifstub
->stubbuffer
);
132 IUnknown_Release(ifstub
->iface
);
133 IRpcChannelBuffer_Release(ifstub
->chan
);
135 HeapFree(GetProcessHeap(), 0, ifstub
);
138 static struct ifstub
*stub_manager_ipid_to_ifstub(struct stub_manager
*m
, const IPID
*ipid
)
140 struct ifstub
*result
= NULL
, *ifstub
;
142 EnterCriticalSection(&m
->lock
);
143 LIST_FOR_EACH_ENTRY(ifstub
, &m
->ifstubs
, struct ifstub
, entry
)
145 if (IsEqualGUID(ipid
, &ifstub
->ipid
))
151 LeaveCriticalSection(&m
->lock
);
156 struct ifstub
* stub_manager_find_ifstub(struct stub_manager
*m
, REFIID iid
, MSHLFLAGS flags
)
158 struct ifstub
*result
= NULL
;
159 struct ifstub
*ifstub
;
161 EnterCriticalSection(&m
->lock
);
162 LIST_FOR_EACH_ENTRY( ifstub
, &m
->ifstubs
, struct ifstub
, entry
)
164 if (IsEqualIID(iid
, &ifstub
->iid
) && (ifstub
->flags
== flags
))
170 LeaveCriticalSection(&m
->lock
);
175 /* creates a new stub manager and adds it into the apartment. caller must
176 * release stub manager when it is no longer required. the apartment and
177 * external refs together take one implicit ref */
178 static struct stub_manager
*new_stub_manager(struct apartment
*apt
, IUnknown
*object
)
180 struct stub_manager
*sm
;
185 sm
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(struct stub_manager
));
186 if (!sm
) return NULL
;
188 list_init(&sm
->ifstubs
);
190 InitializeCriticalSection(&sm
->lock
);
191 sm
->lock
.DebugInfo
->Spare
[0] = (DWORD_PTR
)(__FILE__
": stub_manager");
193 IUnknown_AddRef(object
);
197 /* start off with 2 references because the stub is in the apartment
198 * and the caller will also hold a reference */
202 sm
->oxid_info
.dwPid
= GetCurrentProcessId();
203 sm
->oxid_info
.dwTid
= GetCurrentThreadId();
205 * FIXME: this is a hack for marshalling IRemUnknown. In real
206 * DCOM, the IPID of the IRemUnknown interface is generated like
207 * any other and passed to the OXID resolver which then returns it
208 * when queried. We don't have an OXID resolver yet so instead we
209 * use a magic IPID reserved for IRemUnknown.
211 sm
->oxid_info
.ipidRemUnknown
.Data1
= 0xffffffff;
212 sm
->oxid_info
.ipidRemUnknown
.Data2
= 0xffff;
213 sm
->oxid_info
.ipidRemUnknown
.Data3
= 0xffff;
214 assert(sizeof(sm
->oxid_info
.ipidRemUnknown
.Data4
) == sizeof(apt
->oxid
));
215 memcpy(sm
->oxid_info
.ipidRemUnknown
.Data4
, &apt
->oxid
, sizeof(OXID
));
216 sm
->oxid_info
.dwAuthnHint
= RPC_C_AUTHN_LEVEL_NONE
;
217 sm
->oxid_info
.psa
= NULL
/* FIXME */;
219 /* Yes, that's right, this starts at zero. that's zero EXTERNAL
220 * refs, i.e., nobody has unmarshalled anything yet. We can't have
221 * negative refs because the stub manager cannot be explicitly
222 * killed, it has to die by somebody unmarshalling then releasing
223 * the marshalled ifptr.
226 sm
->disconnected
= FALSE
;
228 hres
= IUnknown_QueryInterface(object
, &IID_IExternalConnection
, (void**)&sm
->extern_conn
);
230 sm
->extern_conn
= NULL
;
232 EnterCriticalSection(&apt
->cs
);
233 sm
->oid
= apt
->oidc
++;
234 list_add_head(&apt
->stubmgrs
, &sm
->entry
);
235 LeaveCriticalSection(&apt
->cs
);
237 TRACE("Created new stub manager (oid=%s) at %p for object with IUnknown %p\n", wine_dbgstr_longlong(sm
->oid
), sm
, object
);
242 void stub_manager_disconnect(struct stub_manager
*m
)
244 struct ifstub
*ifstub
;
246 EnterCriticalSection(&m
->lock
);
247 if (!m
->disconnected
)
249 LIST_FOR_EACH_ENTRY(ifstub
, &m
->ifstubs
, struct ifstub
, entry
)
250 rpc_unregister_interface(&ifstub
->iid
, FALSE
);
252 m
->disconnected
= TRUE
;
254 LeaveCriticalSection(&m
->lock
);
257 /* caller must remove stub manager from apartment prior to calling this function */
258 static void stub_manager_delete(struct stub_manager
*m
)
262 TRACE("destroying %p (oid=%s)\n", m
, wine_dbgstr_longlong(m
->oid
));
264 /* release every ifstub */
265 while ((cursor
= list_head(&m
->ifstubs
)))
267 struct ifstub
*ifstub
= LIST_ENTRY(cursor
, struct ifstub
, entry
);
268 stub_manager_delete_ifstub(m
, ifstub
);
272 IExternalConnection_Release(m
->extern_conn
);
274 CoTaskMemFree(m
->oxid_info
.psa
);
276 /* Some broken apps crash in object destructors. We have a test showing
277 * that on winxp+ those crashes are caught and ignored. */
280 IUnknown_Release(m
->object
);
284 ERR("Got page fault when releasing stub!\n");
288 m
->lock
.DebugInfo
->Spare
[0] = 0;
289 DeleteCriticalSection(&m
->lock
);
291 HeapFree(GetProcessHeap(), 0, m
);
294 /* increments the internal refcount */
295 static ULONG
stub_manager_int_addref(struct stub_manager
*m
)
299 EnterCriticalSection(&m
->apt
->cs
);
301 LeaveCriticalSection(&m
->apt
->cs
);
303 TRACE("before %d\n", refs
- 1);
308 /* decrements the internal refcount */
309 ULONG
stub_manager_int_release(struct stub_manager
*m
)
312 struct apartment
*apt
= m
->apt
;
314 EnterCriticalSection(&apt
->cs
);
317 TRACE("after %d\n", refs
);
319 /* remove from apartment so no other thread can access it... */
321 list_remove(&m
->entry
);
323 LeaveCriticalSection(&apt
->cs
);
325 /* ... so now we can delete it without being inside the apartment critsec */
327 stub_manager_delete(m
);
332 /* gets the stub manager associated with an object - caller must have
333 * a reference to the apartment while a reference to the stub manager is held.
334 * it must also call release on the stub manager when it is no longer needed */
335 struct stub_manager
* get_stub_manager_from_object(struct apartment
*apt
, IUnknown
*obj
, BOOL alloc
)
337 struct stub_manager
*result
= NULL
, *m
;
341 hres
= IUnknown_QueryInterface(obj
, &IID_IUnknown
, (void**)&object
);
344 ERR("QueryInterface(IID_IUnknown failed): %08x\n", hres
);
348 EnterCriticalSection(&apt
->cs
);
349 LIST_FOR_EACH_ENTRY(m
, &apt
->stubmgrs
, struct stub_manager
, entry
)
351 if (m
->object
== object
)
354 stub_manager_int_addref(result
);
358 LeaveCriticalSection(&apt
->cs
);
362 TRACE("found %p for object %p\n", result
, object
);
366 TRACE("not found, creating new stub manager...\n");
367 result
= new_stub_manager(apt
, object
);
371 TRACE("not found for object %p\n", object
);
374 IUnknown_Release(object
);
378 /* gets the stub manager associated with an object id - caller must have
379 * a reference to the apartment while a reference to the stub manager is held.
380 * it must also call release on the stub manager when it is no longer needed */
381 struct stub_manager
* get_stub_manager(struct apartment
*apt
, OID oid
)
383 struct stub_manager
*result
= NULL
, *m
;
385 EnterCriticalSection(&apt
->cs
);
386 LIST_FOR_EACH_ENTRY(m
, &apt
->stubmgrs
, struct stub_manager
, entry
)
391 stub_manager_int_addref(result
);
395 LeaveCriticalSection(&apt
->cs
);
398 TRACE("found %p for oid %s\n", result
, wine_dbgstr_longlong(oid
));
400 TRACE("not found for oid %s\n", wine_dbgstr_longlong(oid
));
405 /* add some external references (ie from a client that unmarshaled an ifptr) */
406 ULONG
stub_manager_ext_addref(struct stub_manager
*m
, ULONG refs
, BOOL tableweak
)
408 BOOL first_extern_ref
;
411 EnterCriticalSection(&m
->lock
);
413 first_extern_ref
= refs
&& !m
->extrefs
;
415 /* make sure we don't overflow extrefs */
416 refs
= min(refs
, (ULONG_MAX
-1 - m
->extrefs
));
417 rc
= (m
->extrefs
+= refs
);
422 LeaveCriticalSection(&m
->lock
);
424 TRACE("added %u refs to %p (oid %s), rc is now %u\n", refs
, m
, wine_dbgstr_longlong(m
->oid
), rc
);
427 * NOTE: According to tests, creating a stub causes two AddConnection calls followed by
428 * one ReleaseConnection call (with fLastReleaseCloses=FALSE).
430 if(first_extern_ref
&& m
->extern_conn
)
431 IExternalConnection_AddConnection(m
->extern_conn
, EXTCONN_STRONG
, 0);
436 /* remove some external references */
437 ULONG
stub_manager_ext_release(struct stub_manager
*m
, ULONG refs
, BOOL tableweak
, BOOL last_unlock_releases
)
439 BOOL last_extern_ref
;
442 EnterCriticalSection(&m
->lock
);
444 /* make sure we don't underflow extrefs */
445 refs
= min(refs
, m
->extrefs
);
446 rc
= (m
->extrefs
-= refs
);
450 if (!last_unlock_releases
)
453 last_extern_ref
= refs
&& !m
->extrefs
;
455 LeaveCriticalSection(&m
->lock
);
457 TRACE("removed %u refs from %p (oid %s), rc is now %u\n", refs
, m
, wine_dbgstr_longlong(m
->oid
), rc
);
459 if (last_extern_ref
&& m
->extern_conn
)
460 IExternalConnection_ReleaseConnection(m
->extern_conn
, EXTCONN_STRONG
, 0, last_unlock_releases
);
463 if (!(m
->extern_conn
&& last_unlock_releases
&& m
->weakrefs
))
464 stub_manager_int_release(m
);
469 /* gets the stub manager associated with an ipid - caller must have
470 * a reference to the apartment while a reference to the stub manager is held.
471 * it must also call release on the stub manager when it is no longer needed */
472 static struct stub_manager
*get_stub_manager_from_ipid(struct apartment
*apt
, const IPID
*ipid
, struct ifstub
**ifstub
)
474 struct stub_manager
*result
= NULL
, *m
;
476 EnterCriticalSection(&apt
->cs
);
477 LIST_FOR_EACH_ENTRY(m
, &apt
->stubmgrs
, struct stub_manager
, entry
)
479 if ((*ifstub
= stub_manager_ipid_to_ifstub(m
, ipid
)))
482 stub_manager_int_addref(result
);
486 LeaveCriticalSection(&apt
->cs
);
489 TRACE("found %p for ipid %s\n", result
, debugstr_guid(ipid
));
491 ERR("not found for ipid %s\n", debugstr_guid(ipid
));
496 static HRESULT
ipid_to_ifstub(const IPID
*ipid
, struct apartment
**stub_apt
,
497 struct stub_manager
**stubmgr_ret
, struct ifstub
**ifstub
)
499 /* FIXME: hack for IRemUnknown */
500 if (ipid
->Data2
== 0xffff)
501 *stub_apt
= apartment_findfromoxid(*(const OXID
*)ipid
->Data4
);
503 *stub_apt
= apartment_findfromtid(ipid
->Data2
);
506 TRACE("Couldn't find apartment corresponding to TID 0x%04x\n", ipid
->Data2
);
507 return RPC_E_INVALID_OBJECT
;
509 *stubmgr_ret
= get_stub_manager_from_ipid(*stub_apt
, ipid
, ifstub
);
512 apartment_release(*stub_apt
);
514 return RPC_E_INVALID_OBJECT
;
519 static HRESULT
ipid_to_stub_manager(const IPID
*ipid
, struct apartment
**stub_apt
, struct stub_manager
**stub
)
521 struct ifstub
*ifstub
;
522 return ipid_to_ifstub(ipid
, stub_apt
, stub
, &ifstub
);
525 /* gets the apartment, stub and channel of an object. the caller must
526 * release the references to all objects (except iface) if the function
527 * returned success, otherwise no references are returned. */
528 HRESULT
ipid_get_dispatch_params(const IPID
*ipid
, struct apartment
**stub_apt
,
529 struct stub_manager
**manager
, IRpcStubBuffer
**stub
, IRpcChannelBuffer
**chan
,
530 IID
*iid
, IUnknown
**iface
)
532 struct stub_manager
*stubmgr
;
533 struct ifstub
*ifstub
;
534 struct apartment
*apt
;
537 hr
= ipid_to_ifstub(ipid
, &apt
, &stubmgr
, &ifstub
);
538 if (hr
!= S_OK
) return RPC_E_DISCONNECTED
;
540 *stub
= ifstub
->stubbuffer
;
541 IRpcStubBuffer_AddRef(*stub
);
542 *chan
= ifstub
->chan
;
543 IRpcChannelBuffer_AddRef(*chan
);
546 *iface
= ifstub
->iface
;
551 stub_manager_int_release(stubmgr
);
555 /* returns TRUE if it is possible to unmarshal, FALSE otherwise. */
556 BOOL
stub_manager_notify_unmarshal(struct stub_manager
*m
, const IPID
*ipid
)
559 struct ifstub
*ifstub
;
561 if (!(ifstub
= stub_manager_ipid_to_ifstub(m
, ipid
)))
563 ERR("attempted unmarshal of unknown IPID %s\n", debugstr_guid(ipid
));
567 EnterCriticalSection(&m
->lock
);
569 /* track normal marshals so we can enforce rules whilst in-process */
570 if (ifstub
->flags
& MSHLFLAGS_NORMAL
)
576 ERR("attempted invalid normal unmarshal, norm_refs is zero\n");
581 LeaveCriticalSection(&m
->lock
);
586 /* handles refcounting for CoReleaseMarshalData */
587 void stub_manager_release_marshal_data(struct stub_manager
*m
, ULONG refs
, const IPID
*ipid
, BOOL tableweak
)
589 struct ifstub
*ifstub
;
591 if (!(ifstub
= stub_manager_ipid_to_ifstub(m
, ipid
)))
594 if (ifstub
->flags
& MSHLFLAGS_TABLEWEAK
)
596 else if (ifstub
->flags
& MSHLFLAGS_TABLESTRONG
)
599 stub_manager_ext_release(m
, refs
, tableweak
, !tableweak
);
602 /* is an ifstub table marshaled? */
603 BOOL
stub_manager_is_table_marshaled(struct stub_manager
*m
, const IPID
*ipid
)
605 struct ifstub
*ifstub
= stub_manager_ipid_to_ifstub(m
, ipid
);
609 return ifstub
->flags
& (MSHLFLAGS_TABLESTRONG
| MSHLFLAGS_TABLEWEAK
);
612 /*****************************************************************************
614 * IRemUnknown implementation
617 * Note: this object is not related to the lifetime of a stub_manager, but it
618 * interacts with stub managers.
621 typedef struct rem_unknown
623 IRemUnknown IRemUnknown_iface
;
627 static const IRemUnknownVtbl RemUnknown_Vtbl
;
629 static inline RemUnknown
*impl_from_IRemUnknown(IRemUnknown
*iface
)
631 return CONTAINING_RECORD(iface
, RemUnknown
, IRemUnknown_iface
);
634 /* construct an IRemUnknown object with one outstanding reference */
635 static HRESULT
RemUnknown_Construct(IRemUnknown
**ppRemUnknown
)
637 RemUnknown
*object
= HeapAlloc(GetProcessHeap(), 0, sizeof(*object
));
640 return E_OUTOFMEMORY
;
642 object
->IRemUnknown_iface
.lpVtbl
= &RemUnknown_Vtbl
;
645 *ppRemUnknown
= &object
->IRemUnknown_iface
;
649 static HRESULT WINAPI
RemUnknown_QueryInterface(IRemUnknown
*iface
, REFIID riid
, void **ppv
)
651 TRACE("%p, %s, %p\n", iface
, debugstr_guid(riid
), ppv
);
653 if (IsEqualIID(riid
, &IID_IUnknown
) ||
654 IsEqualIID(riid
, &IID_IRemUnknown
))
657 IRemUnknown_AddRef(iface
);
661 if (!IsEqualIID(riid
, &IID_IExternalConnection
))
662 FIXME("No interface for iid %s\n", debugstr_guid(riid
));
665 return E_NOINTERFACE
;
668 static ULONG WINAPI
RemUnknown_AddRef(IRemUnknown
*iface
)
671 RemUnknown
*remunk
= impl_from_IRemUnknown(iface
);
673 refs
= InterlockedIncrement(&remunk
->refs
);
675 TRACE("%p before: %d\n", iface
, refs
-1);
679 static ULONG WINAPI
RemUnknown_Release(IRemUnknown
*iface
)
682 RemUnknown
*remunk
= impl_from_IRemUnknown(iface
);
684 refs
= InterlockedDecrement(&remunk
->refs
);
686 HeapFree(GetProcessHeap(), 0, remunk
);
688 TRACE("%p after: %d\n", iface
, refs
);
692 static HRESULT WINAPI
RemUnknown_RemQueryInterface(IRemUnknown
*iface
,
693 REFIPID ripid
, ULONG cRefs
, USHORT cIids
, IID
*iids
/* [size_is(cIids)] */,
694 REMQIRESULT
**ppQIResults
/* [size_is(,cIids)] */)
698 USHORT successful_qis
= 0;
699 struct apartment
*apt
;
700 struct stub_manager
*stubmgr
;
701 struct ifstub
*ifstub
;
703 void *dest_context_data
;
705 TRACE("%p, %s, %d, %d, %p, %p\n", iface
, debugstr_guid(ripid
), cRefs
, cIids
, iids
, ppQIResults
);
707 hr
= ipid_to_ifstub(ripid
, &apt
, &stubmgr
, &ifstub
);
708 if (hr
!= S_OK
) return hr
;
710 IRpcChannelBuffer_GetDestCtx(ifstub
->chan
, &dest_context
, &dest_context_data
);
712 *ppQIResults
= CoTaskMemAlloc(sizeof(REMQIRESULT
) * cIids
);
714 for (i
= 0; i
< cIids
; i
++)
716 HRESULT hrobj
= marshal_object(apt
, &(*ppQIResults
)[i
].std
, &iids
[i
],
717 stubmgr
->object
, dest_context
, dest_context_data
, MSHLFLAGS_NORMAL
);
720 (*ppQIResults
)[i
].hResult
= hrobj
;
723 stub_manager_int_release(stubmgr
);
724 apartment_release(apt
);
726 if (successful_qis
== cIids
)
727 return S_OK
; /* we got all requested interfaces */
728 else if (successful_qis
== 0)
729 return E_NOINTERFACE
; /* we didn't get any interfaces */
731 return S_FALSE
; /* we got some interfaces */
734 static HRESULT WINAPI
RemUnknown_RemAddRef(IRemUnknown
*iface
,
735 USHORT cInterfaceRefs
,
736 REMINTERFACEREF
* InterfaceRefs
/* [size_is(cInterfaceRefs)] */,
737 HRESULT
*pResults
/* [size_is(cInterfaceRefs)] */)
742 TRACE("%p, %d, %p, %p\n", iface
, cInterfaceRefs
, InterfaceRefs
, pResults
);
744 for (i
= 0; i
< cInterfaceRefs
; i
++)
746 struct apartment
*apt
;
747 struct stub_manager
*stubmgr
;
749 pResults
[i
] = ipid_to_stub_manager(&InterfaceRefs
[i
].ipid
, &apt
, &stubmgr
);
750 if (pResults
[i
] != S_OK
)
756 stub_manager_ext_addref(stubmgr
, InterfaceRefs
[i
].cPublicRefs
, FALSE
);
757 if (InterfaceRefs
[i
].cPrivateRefs
)
758 FIXME("Adding %d refs securely not implemented\n", InterfaceRefs
[i
].cPrivateRefs
);
760 stub_manager_int_release(stubmgr
);
761 apartment_release(apt
);
767 static HRESULT WINAPI
RemUnknown_RemRelease(IRemUnknown
*iface
,
768 USHORT cInterfaceRefs
,
769 REMINTERFACEREF
* InterfaceRefs
/* [size_is(cInterfaceRefs)] */)
774 TRACE("%p, %d, %p\n", iface
, cInterfaceRefs
, InterfaceRefs
);
776 for (i
= 0; i
< cInterfaceRefs
; i
++)
778 struct apartment
*apt
;
779 struct stub_manager
*stubmgr
;
781 hr
= ipid_to_stub_manager(&InterfaceRefs
[i
].ipid
, &apt
, &stubmgr
);
785 /* FIXME: we should undo any changes already made in this function */
789 stub_manager_ext_release(stubmgr
, InterfaceRefs
[i
].cPublicRefs
, FALSE
, TRUE
);
790 if (InterfaceRefs
[i
].cPrivateRefs
)
791 FIXME("Releasing %d refs securely not implemented\n", InterfaceRefs
[i
].cPrivateRefs
);
793 stub_manager_int_release(stubmgr
);
794 apartment_release(apt
);
800 static const IRemUnknownVtbl RemUnknown_Vtbl
=
802 RemUnknown_QueryInterface
,
805 RemUnknown_RemQueryInterface
,
806 RemUnknown_RemAddRef
,
807 RemUnknown_RemRelease
810 /* starts the IRemUnknown listener for the current apartment */
811 HRESULT
start_apartment_remote_unknown(struct apartment
*apt
)
813 IRemUnknown
*pRemUnknown
;
816 EnterCriticalSection(&apt
->cs
);
817 if (!apt
->remunk_exported
)
819 /* create the IRemUnknown object */
820 hr
= RemUnknown_Construct(&pRemUnknown
);
823 STDOBJREF stdobjref
; /* dummy - not used */
824 /* register it with the stub manager */
825 hr
= marshal_object(apt
, &stdobjref
, &IID_IRemUnknown
, (IUnknown
*)pRemUnknown
,
826 MSHCTX_DIFFERENTMACHINE
, NULL
, MSHLFLAGS_NORMAL
|MSHLFLAGSP_REMUNKNOWN
);
827 /* release our reference to the object as the stub manager will manage the life cycle for us */
828 IRemUnknown_Release(pRemUnknown
);
830 apt
->remunk_exported
= TRUE
;
833 LeaveCriticalSection(&apt
->cs
);