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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
27 #define NONAMELESSUNION
28 #define NONAMELESSSTRUCT
41 #include "wine/debug.h"
42 #include "compobj_private.h"
44 WINE_DEFAULT_DEBUG_CHANNEL(ole
);
46 static void stub_manager_delete_ifstub(struct stub_manager
*m
, struct ifstub
*ifstub
);
47 static struct ifstub
*stub_manager_ipid_to_ifstub(struct stub_manager
*m
, const IPID
*ipid
);
49 /* creates a new stub manager and adds it into the apartment. caller must
50 * release stub manager when it is no longer required. the apartment and
51 * external refs together take one implicit ref */
52 struct stub_manager
*new_stub_manager(APARTMENT
*apt
, IUnknown
*object
)
54 struct stub_manager
*sm
;
58 sm
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(struct stub_manager
));
61 list_init(&sm
->ifstubs
);
63 InitializeCriticalSection(&sm
->lock
);
64 DEBUG_SET_CRITSEC_NAME(&sm
->lock
, "stub_manager");
66 IUnknown_AddRef(object
);
70 /* start off with 2 references because the stub is in the apartment
71 * and the caller will also hold a reference */
74 /* yes, that's right, this starts at zero. that's zero EXTERNAL
75 * refs, ie nobody has unmarshalled anything yet. we can't have
76 * negative refs because the stub manager cannot be explicitly
77 * killed, it has to die by somebody unmarshalling then releasing
78 * the marshalled ifptr.
82 EnterCriticalSection(&apt
->cs
);
83 sm
->oid
= apt
->oidc
++;
84 list_add_head(&apt
->stubmgrs
, &sm
->entry
);
85 LeaveCriticalSection(&apt
->cs
);
87 TRACE("Created new stub manager (oid=%s) at %p for object with IUnknown %p\n", wine_dbgstr_longlong(sm
->oid
), sm
, object
);
92 /* caller must remove stub manager from apartment prior to calling this function */
93 static void stub_manager_delete(struct stub_manager
*m
)
97 TRACE("destroying %p (oid=%s)\n", m
, wine_dbgstr_longlong(m
->oid
));
99 /* release every ifstub */
100 while ((cursor
= list_head(&m
->ifstubs
)))
102 struct ifstub
*ifstub
= LIST_ENTRY(cursor
, struct ifstub
, entry
);
103 stub_manager_delete_ifstub(m
, ifstub
);
106 IUnknown_Release(m
->object
);
108 DEBUG_CLEAR_CRITSEC_NAME(&m
->lock
);
109 DeleteCriticalSection(&m
->lock
);
111 HeapFree(GetProcessHeap(), 0, m
);
114 /* gets the stub manager associated with an object - caller must have
115 * a reference to the apartment while a reference to the stub manager is held.
116 * it must also call release on the stub manager when it is no longer needed */
117 struct stub_manager
*get_stub_manager_from_object(APARTMENT
*apt
, void *object
)
119 struct stub_manager
*result
= NULL
;
122 EnterCriticalSection(&apt
->cs
);
123 LIST_FOR_EACH( cursor
, &apt
->stubmgrs
)
125 struct stub_manager
*m
= LIST_ENTRY( cursor
, struct stub_manager
, entry
);
127 if (m
->object
== object
)
130 stub_manager_int_addref(result
);
134 LeaveCriticalSection(&apt
->cs
);
137 TRACE("found %p for object %p\n", result
, object
);
139 TRACE("not found for object %p\n", object
);
144 /* removes the apartment reference to an object, destroying it when no other
145 * threads have a reference to it */
146 void apartment_disconnectobject(struct apartment
*apt
, void *object
)
149 struct stub_manager
*stubmgr
;
151 EnterCriticalSection(&apt
->cs
);
152 LIST_FOR_EACH_ENTRY( stubmgr
, &apt
->stubmgrs
, struct stub_manager
, entry
)
154 if (stubmgr
->object
== object
)
157 stub_manager_int_release(stubmgr
);
161 LeaveCriticalSection(&apt
->cs
);
164 TRACE("disconnect object %p\n", object
);
166 WARN("couldn't find object %p\n", object
);
169 /* gets the stub manager associated with an object id - caller must have
170 * a reference to the apartment while a reference to the stub manager is held.
171 * it must also call release on the stub manager when it is no longer needed */
172 struct stub_manager
*get_stub_manager(APARTMENT
*apt
, OID oid
)
174 struct stub_manager
*result
= NULL
;
177 EnterCriticalSection(&apt
->cs
);
178 LIST_FOR_EACH( cursor
, &apt
->stubmgrs
)
180 struct stub_manager
*m
= LIST_ENTRY( cursor
, struct stub_manager
, entry
);
185 stub_manager_int_addref(result
);
189 LeaveCriticalSection(&apt
->cs
);
192 TRACE("found %p for oid %s\n", result
, wine_dbgstr_longlong(oid
));
194 TRACE("not found for oid %s\n", wine_dbgstr_longlong(oid
));
199 /* increments the internal refcount */
200 ULONG
stub_manager_int_addref(struct stub_manager
*This
)
204 EnterCriticalSection(&This
->apt
->cs
);
206 LeaveCriticalSection(&This
->apt
->cs
);
208 TRACE("before %ld\n", refs
- 1);
213 /* decrements the internal refcount */
214 ULONG
stub_manager_int_release(struct stub_manager
*This
)
217 APARTMENT
*apt
= This
->apt
;
219 EnterCriticalSection(&apt
->cs
);
222 TRACE("after %ld\n", refs
);
224 /* remove from apartment so no other thread can access it... */
226 list_remove(&This
->entry
);
228 LeaveCriticalSection(&apt
->cs
);
230 /* ... so now we can delete it without being inside the apartment critsec */
232 stub_manager_delete(This
);
237 /* add some external references (ie from a client that unmarshaled an ifptr) */
238 ULONG
stub_manager_ext_addref(struct stub_manager
*m
, ULONG refs
)
242 EnterCriticalSection(&m
->lock
);
244 /* make sure we don't overflow extrefs */
245 refs
= min(refs
, (ULONG_MAX
-1 - m
->extrefs
));
246 rc
= (m
->extrefs
+= refs
);
248 LeaveCriticalSection(&m
->lock
);
250 TRACE("added %lu refs to %p (oid %s), rc is now %lu\n", refs
, m
, wine_dbgstr_longlong(m
->oid
), rc
);
255 /* remove some external references */
256 ULONG
stub_manager_ext_release(struct stub_manager
*m
, ULONG refs
)
260 EnterCriticalSection(&m
->lock
);
262 /* make sure we don't underflow extrefs */
263 refs
= min(refs
, m
->extrefs
);
264 rc
= (m
->extrefs
-= refs
);
266 LeaveCriticalSection(&m
->lock
);
268 TRACE("removed %lu refs from %p (oid %s), rc is now %lu\n", refs
, m
, wine_dbgstr_longlong(m
->oid
), rc
);
271 stub_manager_int_release(m
);
276 static struct ifstub
*stub_manager_ipid_to_ifstub(struct stub_manager
*m
, const IPID
*ipid
)
279 struct ifstub
*result
= NULL
;
281 EnterCriticalSection(&m
->lock
);
282 LIST_FOR_EACH( cursor
, &m
->ifstubs
)
284 struct ifstub
*ifstub
= LIST_ENTRY( cursor
, struct ifstub
, entry
);
286 if (IsEqualGUID(ipid
, &ifstub
->ipid
))
292 LeaveCriticalSection(&m
->lock
);
297 struct ifstub
*stub_manager_find_ifstub(struct stub_manager
*m
, REFIID iid
, MSHLFLAGS flags
)
299 struct ifstub
*result
= NULL
;
300 struct ifstub
*ifstub
;
302 EnterCriticalSection(&m
->lock
);
303 LIST_FOR_EACH_ENTRY( ifstub
, &m
->ifstubs
, struct ifstub
, entry
)
305 if (IsEqualIID(iid
, &ifstub
->iid
) && (ifstub
->flags
== flags
))
311 LeaveCriticalSection(&m
->lock
);
316 /* gets the stub manager associated with an ipid - caller must have
317 * a reference to the apartment while a reference to the stub manager is held.
318 * it must also call release on the stub manager when it is no longer needed */
319 static struct stub_manager
*get_stub_manager_from_ipid(APARTMENT
*apt
, const IPID
*ipid
)
321 struct stub_manager
*result
= NULL
;
324 EnterCriticalSection(&apt
->cs
);
325 LIST_FOR_EACH( cursor
, &apt
->stubmgrs
)
327 struct stub_manager
*m
= LIST_ENTRY( cursor
, struct stub_manager
, entry
);
329 if (stub_manager_ipid_to_ifstub(m
, ipid
))
332 stub_manager_int_addref(result
);
336 LeaveCriticalSection(&apt
->cs
);
339 TRACE("found %p for ipid %s\n", result
, debugstr_guid(ipid
));
341 ERR("not found for ipid %s\n", debugstr_guid(ipid
));
346 HRESULT
ipid_to_stub_manager(const IPID
*ipid
, APARTMENT
**stub_apt
, struct stub_manager
**stubmgr_ret
)
348 /* FIXME: hack for IRemUnknown */
349 if (ipid
->Data2
== 0xffff)
350 *stub_apt
= apartment_findfromoxid(*(OXID
*)ipid
->Data4
, TRUE
);
352 *stub_apt
= apartment_findfromtid(ipid
->Data2
);
355 TRACE("Couldn't find apartment corresponding to TID 0x%04x\n", ipid
->Data2
);
356 return RPC_E_INVALID_OBJECT
;
358 *stubmgr_ret
= get_stub_manager_from_ipid(*stub_apt
, ipid
);
361 apartment_release(*stub_apt
);
363 return RPC_E_INVALID_OBJECT
;
368 /* gets the apartment and IRpcStubBuffer from an object. the caller must
369 * release the references to both objects */
370 IRpcStubBuffer
*ipid_to_apt_and_stubbuffer(const IPID
*ipid
, APARTMENT
**stub_apt
)
372 IRpcStubBuffer
*ret
= NULL
;
373 struct stub_manager
*stubmgr
;
374 struct ifstub
*ifstub
;
379 hr
= ipid_to_stub_manager(ipid
, stub_apt
, &stubmgr
);
380 if (hr
!= S_OK
) return NULL
;
382 ifstub
= stub_manager_ipid_to_ifstub(stubmgr
, ipid
);
384 ret
= ifstub
->stubbuffer
;
386 if (ret
) IRpcStubBuffer_AddRef(ret
);
388 stub_manager_int_release(stubmgr
);
393 /* generates an ipid in the following format (similar to native version):
394 * Data1 = apartment-local ipid counter
395 * Data2 = apartment creator thread ID
397 * Data4 = random value
399 static inline HRESULT
generate_ipid(struct stub_manager
*m
, IPID
*ipid
)
402 hr
= UuidCreate(ipid
);
405 ERR("couldn't create IPID for stub manager %p\n", m
);
410 ipid
->Data1
= InterlockedIncrement(&m
->apt
->ipidc
);
411 ipid
->Data2
= (USHORT
)m
->apt
->tid
;
412 ipid
->Data3
= (USHORT
)GetCurrentProcessId();
416 /* registers a new interface stub COM object with the stub manager and returns registration record */
417 struct ifstub
*stub_manager_new_ifstub(struct stub_manager
*m
, IRpcStubBuffer
*sb
, IUnknown
*iptr
, REFIID iid
, MSHLFLAGS flags
)
421 TRACE("oid=%s, stubbuffer=%p, iptr=%p, iid=%s\n",
422 wine_dbgstr_longlong(m
->oid
), sb
, iptr
, debugstr_guid(iid
));
424 stub
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(struct ifstub
));
425 if (!stub
) return NULL
;
427 stub
->stubbuffer
= sb
;
428 if (sb
) IRpcStubBuffer_AddRef(sb
);
430 IUnknown_AddRef(iptr
);
436 * FIXME: this is a hack for marshalling IRemUnknown. In real
437 * DCOM, the IPID of the IRemUnknown interface is generated like
438 * any other and passed to the OXID resolver which then returns it
439 * when queried. We don't have an OXID resolver yet so instead we
440 * use a magic IPID reserved for IRemUnknown.
442 if (IsEqualIID(iid
, &IID_IRemUnknown
))
444 stub
->ipid
.Data1
= 0xffffffff;
445 stub
->ipid
.Data2
= 0xffff;
446 stub
->ipid
.Data3
= 0xffff;
447 assert(sizeof(stub
->ipid
.Data4
) == sizeof(m
->apt
->oxid
));
448 memcpy(&stub
->ipid
.Data4
, &m
->apt
->oxid
, sizeof(OXID
));
451 generate_ipid(m
, &stub
->ipid
);
453 EnterCriticalSection(&m
->lock
);
454 list_add_head(&m
->ifstubs
, &stub
->entry
);
455 /* every normal marshal is counted so we don't allow more than we should */
456 if (flags
& MSHLFLAGS_NORMAL
) m
->norm_refs
++;
457 LeaveCriticalSection(&m
->lock
);
459 TRACE("ifstub %p created with ipid %s\n", stub
, debugstr_guid(&stub
->ipid
));
464 static void stub_manager_delete_ifstub(struct stub_manager
*m
, struct ifstub
*ifstub
)
466 TRACE("m=%p, m->oid=%s, ipid=%s\n", m
, wine_dbgstr_longlong(m
->oid
), debugstr_guid(&ifstub
->ipid
));
468 list_remove(&ifstub
->entry
);
470 RPC_UnregisterInterface(&ifstub
->iid
);
472 if (ifstub
->stubbuffer
) IUnknown_Release(ifstub
->stubbuffer
);
473 IUnknown_Release(ifstub
->iface
);
475 HeapFree(GetProcessHeap(), 0, ifstub
);
478 /* returns TRUE if it is possible to unmarshal, FALSE otherwise. */
479 BOOL
stub_manager_notify_unmarshal(struct stub_manager
*m
, const IPID
*ipid
)
482 struct ifstub
*ifstub
;
484 if (!(ifstub
= stub_manager_ipid_to_ifstub(m
, ipid
)))
486 ERR("attempted unmarshal of unknown IPID %s\n", debugstr_guid(ipid
));
490 EnterCriticalSection(&m
->lock
);
492 /* track normal marshals so we can enforce rules whilst in-process */
493 if (ifstub
->flags
& MSHLFLAGS_NORMAL
)
499 ERR("attempted invalid normal unmarshal, norm_refs is zero\n");
504 LeaveCriticalSection(&m
->lock
);
509 /* handles refcounting for CoReleaseMarshalData */
510 void stub_manager_release_marshal_data(struct stub_manager
*m
, ULONG refs
, const IPID
*ipid
)
512 struct ifstub
*ifstub
;
514 if (!(ifstub
= stub_manager_ipid_to_ifstub(m
, ipid
)))
517 if (ifstub
->flags
& MSHLFLAGS_TABLEWEAK
)
522 stub_manager_ext_release(m
, refs
);
525 /* is an ifstub table marshaled? */
526 BOOL
stub_manager_is_table_marshaled(struct stub_manager
*m
, const IPID
*ipid
)
528 struct ifstub
*ifstub
= stub_manager_ipid_to_ifstub(m
, ipid
);
532 return ifstub
->flags
& (MSHLFLAGS_TABLESTRONG
| MSHLFLAGS_TABLEWEAK
);
536 /*****************************************************************************
538 * IRemUnknown implementation
541 * Note: this object is not related to the lifetime of a stub_manager, but it
542 * interacts with stub managers.
545 const IID IID_IRemUnknown
= { 0x00000131, 0, 0, {0xc0, 0, 0, 0, 0, 0, 0, 0x46} };
547 typedef struct rem_unknown
549 const IRemUnknownVtbl
*lpVtbl
;
553 static const IRemUnknownVtbl RemUnknown_Vtbl
;
556 /* construct an IRemUnknown object with one outstanding reference */
557 static HRESULT
RemUnknown_Construct(IRemUnknown
**ppRemUnknown
)
559 RemUnknown
*This
= HeapAlloc(GetProcessHeap(), 0, sizeof(*This
));
561 if (!This
) return E_OUTOFMEMORY
;
563 This
->lpVtbl
= &RemUnknown_Vtbl
;
566 *ppRemUnknown
= (IRemUnknown
*)This
;
570 static HRESULT WINAPI
RemUnknown_QueryInterface(IRemUnknown
*iface
, REFIID riid
, void **ppv
)
572 TRACE("(%p)->(%s, %p)\n", iface
, debugstr_guid(riid
), ppv
);
574 if (IsEqualIID(riid
, &IID_IUnknown
) ||
575 IsEqualIID(riid
, &IID_IRemUnknown
))
577 *ppv
= (LPVOID
)iface
;
578 IRemUnknown_AddRef(iface
);
582 FIXME("No interface for iid %s\n", debugstr_guid(riid
));
585 return E_NOINTERFACE
;
588 static ULONG WINAPI
RemUnknown_AddRef(IRemUnknown
*iface
)
591 RemUnknown
*This
= (RemUnknown
*)iface
;
593 refs
= InterlockedIncrement(&This
->refs
);
595 TRACE("%p before: %ld\n", iface
, refs
-1);
599 static ULONG WINAPI
RemUnknown_Release(IRemUnknown
*iface
)
602 RemUnknown
*This
= (RemUnknown
*)iface
;
604 refs
= InterlockedDecrement(&This
->refs
);
606 HeapFree(GetProcessHeap(), 0, This
);
608 TRACE("%p after: %ld\n", iface
, refs
);
612 static HRESULT WINAPI
RemUnknown_RemQueryInterface(IRemUnknown
*iface
,
613 REFIPID ripid
, ULONG cRefs
, USHORT cIids
, IID
*iids
/* [size_is(cIids)] */,
614 REMQIRESULT
**ppQIResults
/* [size_is(,cIids)] */)
618 USHORT successful_qis
= 0;
620 struct stub_manager
*stubmgr
;
622 TRACE("(%p)->(%s, %ld, %d, %p, %p)\n", iface
, debugstr_guid(ripid
), cRefs
, cIids
, iids
, ppQIResults
);
624 hr
= ipid_to_stub_manager(ripid
, &apt
, &stubmgr
);
625 if (hr
!= S_OK
) return hr
;
627 *ppQIResults
= CoTaskMemAlloc(sizeof(REMQIRESULT
) * cIids
);
629 for (i
= 0; i
< cIids
; i
++)
631 HRESULT hrobj
= marshal_object(apt
, &(*ppQIResults
)[i
].std
, &iids
[i
],
632 stubmgr
->object
, MSHLFLAGS_NORMAL
);
635 (*ppQIResults
)[i
].hResult
= hrobj
;
638 stub_manager_int_release(stubmgr
);
639 apartment_release(apt
);
641 if (successful_qis
== cIids
)
642 return S_OK
; /* we got all requested interfaces */
643 else if (successful_qis
== 0)
644 return E_NOINTERFACE
; /* we didn't get any interfaces */
646 return S_FALSE
; /* we got some interfaces */
649 static HRESULT WINAPI
RemUnknown_RemAddRef(IRemUnknown
*iface
,
650 USHORT cInterfaceRefs
,
651 REMINTERFACEREF
* InterfaceRefs
/* [size_is(cInterfaceRefs)] */,
652 HRESULT
*pResults
/* [size_is(cInterfaceRefs)] */)
657 TRACE("(%p)->(%d, %p, %p)\n", iface
, cInterfaceRefs
, InterfaceRefs
, pResults
);
659 for (i
= 0; i
< cInterfaceRefs
; i
++)
662 struct stub_manager
*stubmgr
;
664 pResults
[i
] = ipid_to_stub_manager(&InterfaceRefs
[i
].ipid
, &apt
, &stubmgr
);
665 if (pResults
[i
] != S_OK
)
671 stub_manager_ext_addref(stubmgr
, InterfaceRefs
[i
].cPublicRefs
);
672 if (InterfaceRefs
[i
].cPrivateRefs
)
673 FIXME("Adding %ld refs securely not implemented\n", InterfaceRefs
[i
].cPrivateRefs
);
675 stub_manager_int_release(stubmgr
);
676 apartment_release(apt
);
682 static HRESULT WINAPI
RemUnknown_RemRelease(IRemUnknown
*iface
,
683 USHORT cInterfaceRefs
,
684 REMINTERFACEREF
* InterfaceRefs
/* [size_is(cInterfaceRefs)] */)
689 TRACE("(%p)->(%d, %p)\n", iface
, cInterfaceRefs
, InterfaceRefs
);
691 for (i
= 0; i
< cInterfaceRefs
; i
++)
694 struct stub_manager
*stubmgr
;
696 hr
= ipid_to_stub_manager(&InterfaceRefs
[i
].ipid
, &apt
, &stubmgr
);
700 /* FIXME: we should undo any changes already made in this function */
704 stub_manager_ext_release(stubmgr
, InterfaceRefs
[i
].cPublicRefs
);
705 if (InterfaceRefs
[i
].cPrivateRefs
)
706 FIXME("Releasing %ld refs securely not implemented\n", InterfaceRefs
[i
].cPrivateRefs
);
708 stub_manager_int_release(stubmgr
);
709 apartment_release(apt
);
715 static const IRemUnknownVtbl RemUnknown_Vtbl
=
717 RemUnknown_QueryInterface
,
720 RemUnknown_RemQueryInterface
,
721 RemUnknown_RemAddRef
,
722 RemUnknown_RemRelease
725 /* starts the IRemUnknown listener for the current apartment */
726 HRESULT
start_apartment_remote_unknown()
728 IRemUnknown
*pRemUnknown
;
730 APARTMENT
*apt
= COM_CurrentApt();
732 EnterCriticalSection(&apt
->cs
);
733 if (!apt
->remunk_exported
)
735 /* create the IRemUnknown object */
736 hr
= RemUnknown_Construct(&pRemUnknown
);
739 STDOBJREF stdobjref
; /* dummy - not used */
740 /* register it with the stub manager */
741 hr
= marshal_object(apt
, &stdobjref
, &IID_IRemUnknown
, (IUnknown
*)pRemUnknown
, MSHLFLAGS_NORMAL
);
742 /* release our reference to the object as the stub manager will manage the life cycle for us */
743 IRemUnknown_Release(pRemUnknown
);
745 apt
->remunk_exported
= TRUE
;
748 LeaveCriticalSection(&apt
->cs
);