2 * Copyright 2002 Juergen Schmied
3 * Copyright 2002 Marcus Meissner
4 * Copyright 2004 Mike Hearn, for CodeWeavers
5 * Copyright 2004 Rob Shearman, for CodeWeavers
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
28 #include "combase_private.h"
30 #include "wine/debug.h"
32 WINE_DEFAULT_DEBUG_CHANNEL(ole
);
34 HRESULT WINAPI
RPC_CreateClientChannel(const OXID
*oxid
, const IPID
*ipid
,
35 const OXID_INFO
*oxid_info
, const IID
*iid
,
36 DWORD dest_context
, void *dest_context_data
,
37 IRpcChannelBuffer
**chan
, struct apartment
*apt
);
39 static HRESULT
unmarshal_object(const STDOBJREF
*stdobjref
, struct apartment
*apt
,
40 MSHCTX dest_context
, void *dest_context_data
,
41 REFIID riid
, const OXID_INFO
*oxid_info
,
44 /* number of refs given out for normal marshaling */
45 #define NORMALEXTREFS 5
47 /* private flag indicating that the object was marshaled as table-weak */
48 #define SORFP_TABLEWEAK SORF_OXRES1
49 /* private flag indicating that the caller does not want to notify the stub
50 * when the proxy disconnects or is destroyed */
51 #define SORFP_NOLIFETIMEMGMT SORF_OXRES2
53 /* imported interface proxy */
56 struct list entry
; /* entry in proxy_manager list (CS parent->cs) */
57 struct proxy_manager
*parent
; /* owning proxy_manager (RO) */
58 void *iface
; /* interface pointer (RO) */
59 STDOBJREF stdobjref
; /* marshal data that represents this object (RO) */
60 IID iid
; /* interface ID (RO) */
61 IRpcProxyBuffer
*proxy
; /* interface proxy (RO) */
62 ULONG refs
; /* imported (public) references (LOCK) */
63 IRpcChannelBuffer
*chan
; /* channel to object (CS parent->cs) */
66 /* imported object / proxy manager */
69 IMultiQI IMultiQI_iface
;
70 IMarshal IMarshal_iface
;
71 IClientSecurity IClientSecurity_iface
;
72 struct apartment
*parent
; /* owning apartment (RO) */
73 struct list entry
; /* entry in apartment (CS parent->cs) */
74 OXID oxid
; /* object exported ID (RO) */
75 OXID_INFO oxid_info
; /* string binding, ipid of rem unknown and other information (RO) */
76 OID oid
; /* object ID (RO) */
77 struct list interfaces
; /* imported interfaces (CS cs) */
78 LONG refs
; /* proxy reference count (LOCK); 0 if about to be removed from list */
79 CRITICAL_SECTION cs
; /* thread safety for this object and children */
80 ULONG sorflags
; /* STDOBJREF flags (RO) */
81 IRemUnknown
*remunk
; /* proxy to IRemUnknown used for lifecycle management (CS cs) */
82 HANDLE remoting_mutex
; /* mutex used for synchronizing access to IRemUnknown */
83 MSHCTX dest_context
; /* context used for activating optimisations (LOCK) */
84 void *dest_context_data
; /* reserved context value (LOCK) */
87 static inline struct proxy_manager
*impl_from_IMultiQI(IMultiQI
*iface
)
89 return CONTAINING_RECORD(iface
, struct proxy_manager
, IMultiQI_iface
);
92 static inline struct proxy_manager
*impl_from_IMarshal(IMarshal
*iface
)
94 return CONTAINING_RECORD(iface
, struct proxy_manager
, IMarshal_iface
);
97 static inline struct proxy_manager
*impl_from_IClientSecurity(IClientSecurity
*iface
)
99 return CONTAINING_RECORD(iface
, struct proxy_manager
, IClientSecurity_iface
);
104 IUnknown IUnknown_inner
;
105 IMarshal IMarshal_iface
;
110 static struct ftmarshaler
*impl_ft_from_IUnknown(IUnknown
*iface
)
112 return CONTAINING_RECORD(iface
, struct ftmarshaler
, IUnknown_inner
);
115 static struct ftmarshaler
*impl_ft_from_IMarshal(IMarshal
*iface
)
117 return CONTAINING_RECORD(iface
, struct ftmarshaler
, IMarshal_iface
);
120 /***********************************************************************
121 * CoMarshalHresult (combase.@)
123 HRESULT WINAPI
CoMarshalHresult(IStream
*stream
, HRESULT hresult
)
125 return IStream_Write(stream
, &hresult
, sizeof(hresult
), NULL
);
128 /***********************************************************************
129 * CoUnmarshalHresult (combase.@)
131 HRESULT WINAPI
CoUnmarshalHresult(IStream
*stream
, HRESULT
*phresult
)
133 return IStream_Read(stream
, phresult
, sizeof(*phresult
), NULL
);
136 /***********************************************************************
137 * CoGetInterfaceAndReleaseStream (combase.@)
139 HRESULT WINAPI
CoGetInterfaceAndReleaseStream(IStream
*stream
, REFIID riid
, void **obj
)
143 TRACE("%p, %s, %p\n", stream
, debugstr_guid(riid
), obj
);
145 if (!stream
) return E_INVALIDARG
;
146 hr
= CoUnmarshalInterface(stream
, riid
, obj
);
147 IStream_Release(stream
);
151 /***********************************************************************
152 * CoMarshalInterThreadInterfaceInStream (combase.@)
154 HRESULT WINAPI
CoMarshalInterThreadInterfaceInStream(REFIID riid
, IUnknown
*unk
, IStream
**stream
)
157 LARGE_INTEGER seekto
;
160 TRACE("%s, %p, %p\n", debugstr_guid(riid
), unk
, stream
);
162 hr
= CreateStreamOnHGlobal(NULL
, TRUE
, stream
);
163 if (FAILED(hr
)) return hr
;
164 hr
= CoMarshalInterface(*stream
, riid
, unk
, MSHCTX_INPROC
, NULL
, MSHLFLAGS_NORMAL
);
168 memset(&seekto
, 0, sizeof(seekto
));
169 IStream_Seek(*stream
, seekto
, STREAM_SEEK_SET
, &xpos
);
173 IStream_Release(*stream
);
180 static HRESULT WINAPI
ftmarshaler_inner_QueryInterface(IUnknown
*iface
, REFIID riid
, void **obj
)
182 struct ftmarshaler
*marshaler
= impl_ft_from_IUnknown(iface
);
184 TRACE("%p, %s, %p\n", iface
, debugstr_guid(riid
), obj
);
188 if (IsEqualIID(&IID_IUnknown
, riid
))
189 *obj
= &marshaler
->IUnknown_inner
;
190 else if (IsEqualIID(&IID_IMarshal
, riid
))
191 *obj
= &marshaler
->IMarshal_iface
;
194 FIXME("No interface for %s\n", debugstr_guid(riid
));
195 return E_NOINTERFACE
;
198 IUnknown_AddRef((IUnknown
*)*obj
);
203 static ULONG WINAPI
ftmarshaler_inner_AddRef(IUnknown
*iface
)
205 struct ftmarshaler
*marshaler
= impl_ft_from_IUnknown(iface
);
206 ULONG refcount
= InterlockedIncrement(&marshaler
->refcount
);
208 TRACE("%p, refcount %lu\n", iface
, refcount
);
213 static ULONG WINAPI
ftmarshaler_inner_Release(IUnknown
*iface
)
215 struct ftmarshaler
*marshaler
= impl_ft_from_IUnknown(iface
);
216 ULONG refcount
= InterlockedDecrement(&marshaler
->refcount
);
218 TRACE("%p, refcount %lu\n", iface
, refcount
);
226 static const IUnknownVtbl ftmarshaler_inner_vtbl
=
228 ftmarshaler_inner_QueryInterface
,
229 ftmarshaler_inner_AddRef
,
230 ftmarshaler_inner_Release
233 static HRESULT WINAPI
ftmarshaler_QueryInterface(IMarshal
*iface
, REFIID riid
, void **obj
)
235 struct ftmarshaler
*marshaler
= impl_ft_from_IMarshal(iface
);
237 TRACE("%p, %s, %p\n", iface
, debugstr_guid(riid
), obj
);
239 return IUnknown_QueryInterface(marshaler
->outer_unk
, riid
, obj
);
242 static ULONG WINAPI
ftmarshaler_AddRef(IMarshal
*iface
)
244 struct ftmarshaler
*marshaler
= impl_ft_from_IMarshal(iface
);
246 TRACE("%p\n", iface
);
248 return IUnknown_AddRef(marshaler
->outer_unk
);
251 static ULONG WINAPI
ftmarshaler_Release(IMarshal
*iface
)
253 struct ftmarshaler
*marshaler
= impl_ft_from_IMarshal(iface
);
255 TRACE("%p\n", iface
);
257 return IUnknown_Release(marshaler
->outer_unk
);
260 static HRESULT WINAPI
ftmarshaler_GetUnmarshalClass(IMarshal
*iface
, REFIID riid
, void *pv
,
261 DWORD dest_context
, void *pvDestContext
, DWORD mshlflags
, CLSID
*clsid
)
263 TRACE("%s, %p, %#lx, %p, %#lx, %p\n", debugstr_guid(riid
), pv
, dest_context
, pvDestContext
, mshlflags
, clsid
);
265 if (dest_context
== MSHCTX_INPROC
|| dest_context
== MSHCTX_CROSSCTX
)
266 *clsid
= CLSID_InProcFreeMarshaler
;
268 *clsid
= CLSID_StdMarshal
;
273 union ftmarshaler_data
279 static HRESULT WINAPI
ftmarshaler_GetMarshalSizeMax(IMarshal
*iface
, REFIID riid
, void *pv
,
280 DWORD dest_context
, void *pvDestContext
, DWORD mshlflags
, DWORD
*size
)
282 IMarshal
*marshal
= NULL
;
285 TRACE("%s, %p, %#lx, %p, %#lx, %p\n", debugstr_guid(riid
), pv
, dest_context
, pvDestContext
, mshlflags
, size
);
287 /* If the marshalling happens inside the same process the interface pointer is
288 copied between the apartments */
289 if (dest_context
== MSHCTX_INPROC
|| dest_context
== MSHCTX_CROSSCTX
)
291 *size
= sizeof(mshlflags
) + sizeof(union ftmarshaler_data
) + sizeof(GUID
);
295 /* Use the standard marshaller to handle all other cases */
296 CoGetStandardMarshal(riid
, pv
, dest_context
, pvDestContext
, mshlflags
, &marshal
);
297 hr
= IMarshal_GetMarshalSizeMax(marshal
, riid
, pv
, dest_context
, pvDestContext
, mshlflags
, size
);
298 IMarshal_Release(marshal
);
302 static HRESULT WINAPI
ftmarshaler_MarshalInterface(IMarshal
*iface
, IStream
*stream
, REFIID riid
,
303 void *pv
, DWORD dest_context
, void *pvDestContext
, DWORD mshlflags
)
305 IMarshal
*marshal
= NULL
;
308 TRACE("%p, %s, %p, %#lx, %p, %#lx\n", stream
, debugstr_guid(riid
), pv
,
309 dest_context
, pvDestContext
, mshlflags
);
311 /* If the marshalling happens inside the same process the interface pointer is
312 copied between the apartments */
313 if (dest_context
== MSHCTX_INPROC
|| dest_context
== MSHCTX_CROSSCTX
)
315 union ftmarshaler_data data
;
316 GUID unknown_guid
= { 0 };
319 hr
= IUnknown_QueryInterface((IUnknown
*)pv
, riid
, (void **)&data
.object
);
323 /* don't hold a reference to table-weak marshaled interfaces */
324 if (mshlflags
& MSHLFLAGS_TABLEWEAK
)
325 IUnknown_Release(data
.object
);
327 hr
= IStream_Write(stream
, &mshlflags
, sizeof(mshlflags
), NULL
);
328 if (hr
!= S_OK
) return STG_E_MEDIUMFULL
;
330 hr
= IStream_Write(stream
, &data
, sizeof(data
), NULL
);
331 if (hr
!= S_OK
) return STG_E_MEDIUMFULL
;
333 hr
= IStream_Write(stream
, &unknown_guid
, sizeof(unknown_guid
), NULL
);
334 if (hr
!= S_OK
) return STG_E_MEDIUMFULL
;
339 /* Use the standard marshaler to handle all other cases */
340 CoGetStandardMarshal(riid
, pv
, dest_context
, pvDestContext
, mshlflags
, &marshal
);
341 hr
= IMarshal_MarshalInterface(marshal
, stream
, riid
, pv
, dest_context
, pvDestContext
, mshlflags
);
342 IMarshal_Release(marshal
);
346 static HRESULT WINAPI
ftmarshaler_UnmarshalInterface(IMarshal
*iface
, IStream
*stream
, REFIID riid
, void **ppv
)
348 union ftmarshaler_data data
;
353 TRACE("%p, %s, %p\n", stream
, debugstr_guid(riid
), ppv
);
355 hr
= IStream_Read(stream
, &mshlflags
, sizeof(mshlflags
), NULL
);
356 if (hr
!= S_OK
) return STG_E_READFAULT
;
358 hr
= IStream_Read(stream
, &data
, sizeof(data
), NULL
);
359 if (hr
!= S_OK
) return STG_E_READFAULT
;
361 hr
= IStream_Read(stream
, &unknown_guid
, sizeof(unknown_guid
), NULL
);
362 if (hr
!= S_OK
) return STG_E_READFAULT
;
364 hr
= IUnknown_QueryInterface(data
.object
, riid
, ppv
);
365 if (!(mshlflags
& (MSHLFLAGS_TABLEWEAK
| MSHLFLAGS_TABLESTRONG
)))
366 IUnknown_Release(data
.object
);
371 static HRESULT WINAPI
ftmarshaler_ReleaseMarshalData(IMarshal
*iface
, IStream
*stream
)
373 union ftmarshaler_data data
;
378 TRACE("%p\n", stream
);
380 hr
= IStream_Read(stream
, &mshlflags
, sizeof(mshlflags
), NULL
);
381 if (hr
!= S_OK
) return STG_E_READFAULT
;
383 hr
= IStream_Read(stream
, &data
, sizeof(data
), NULL
);
384 if (hr
!= S_OK
) return STG_E_READFAULT
;
386 hr
= IStream_Read(stream
, &unknown_guid
, sizeof(unknown_guid
), NULL
);
387 if (hr
!= S_OK
) return STG_E_READFAULT
;
389 IUnknown_Release(data
.object
);
393 static HRESULT WINAPI
ftmarshaler_DisconnectObject(IMarshal
*iface
, DWORD reserved
)
401 static const IMarshalVtbl ftmarshaler_vtbl
=
403 ftmarshaler_QueryInterface
,
406 ftmarshaler_GetUnmarshalClass
,
407 ftmarshaler_GetMarshalSizeMax
,
408 ftmarshaler_MarshalInterface
,
409 ftmarshaler_UnmarshalInterface
,
410 ftmarshaler_ReleaseMarshalData
,
411 ftmarshaler_DisconnectObject
414 /***********************************************************************
415 * CoCreateFreeThreadedMarshaler (combase.@)
417 HRESULT WINAPI
CoCreateFreeThreadedMarshaler(IUnknown
*outer
, IUnknown
**marshaler
)
419 struct ftmarshaler
*object
;
421 TRACE("%p, %p\n", outer
, marshaler
);
423 object
= malloc(sizeof(*object
));
425 return E_OUTOFMEMORY
;
427 object
->IUnknown_inner
.lpVtbl
= &ftmarshaler_inner_vtbl
;
428 object
->IMarshal_iface
.lpVtbl
= &ftmarshaler_vtbl
;
429 object
->refcount
= 1;
430 object
->outer_unk
= outer
? outer
: &object
->IUnknown_inner
;
432 *marshaler
= &object
->IUnknown_inner
;
437 /***********************************************************************
438 * CoGetMarshalSizeMax (combase.@)
440 HRESULT WINAPI
CoGetMarshalSizeMax(ULONG
*size
, REFIID riid
, IUnknown
*unk
,
441 DWORD dest_context
, void *pvDestContext
, DWORD mshlFlags
)
443 BOOL std_marshal
= FALSE
;
450 hr
= IUnknown_QueryInterface(unk
, &IID_IMarshal
, (void **)&marshal
);
454 hr
= CoGetStandardMarshal(riid
, unk
, dest_context
, pvDestContext
, mshlFlags
, &marshal
);
459 hr
= IMarshal_GetMarshalSizeMax(marshal
, riid
, unk
, dest_context
, pvDestContext
, mshlFlags
, size
);
461 /* add on the size of the whole OBJREF structure like native does */
462 *size
+= sizeof(OBJREF
);
464 IMarshal_Release(marshal
);
468 static void dump_mshflags(MSHLFLAGS flags
)
470 if (flags
& MSHLFLAGS_TABLESTRONG
)
471 TRACE(" MSHLFLAGS_TABLESTRONG");
472 if (flags
& MSHLFLAGS_TABLEWEAK
)
473 TRACE(" MSHLFLAGS_TABLEWEAK");
474 if (!(flags
& (MSHLFLAGS_TABLESTRONG
|MSHLFLAGS_TABLEWEAK
)))
475 TRACE(" MSHLFLAGS_NORMAL");
476 if (flags
& MSHLFLAGS_NOPING
)
477 TRACE(" MSHLFLAGS_NOPING");
480 /***********************************************************************
481 * CoMarshalInterface (combase.@)
483 HRESULT WINAPI
CoMarshalInterface(IStream
*stream
, REFIID riid
, IUnknown
*unk
,
484 DWORD dest_context
, void *pvDestContext
, DWORD mshlFlags
)
486 CLSID marshaler_clsid
;
490 TRACE("%p, %s, %p, %lx, %p, ", stream
, debugstr_guid(riid
), unk
, dest_context
, pvDestContext
);
491 dump_mshflags(mshlFlags
);
497 hr
= IUnknown_QueryInterface(unk
, &IID_IMarshal
, (void **)&marshal
);
499 hr
= CoGetStandardMarshal(riid
, unk
, dest_context
, pvDestContext
, mshlFlags
, &marshal
);
502 ERR("Failed to get marshaller, %#lx\n", hr
);
506 hr
= IMarshal_GetUnmarshalClass(marshal
, riid
, unk
, dest_context
, pvDestContext
, mshlFlags
,
510 ERR("IMarshal::GetUnmarshalClass failed, %#lx\n", hr
);
514 /* FIXME: implement handler marshaling too */
515 if (IsEqualCLSID(&marshaler_clsid
, &CLSID_StdMarshal
))
517 TRACE("Using standard marshaling\n");
523 TRACE("Using custom marshaling\n");
524 objref
.signature
= OBJREF_SIGNATURE
;
526 objref
.flags
= OBJREF_CUSTOM
;
527 objref
.u_objref
.u_custom
.clsid
= marshaler_clsid
;
528 objref
.u_objref
.u_custom
.cbExtension
= 0;
529 objref
.u_objref
.u_custom
.size
= 0;
530 hr
= IMarshal_GetMarshalSizeMax(marshal
, riid
, unk
, dest_context
, pvDestContext
, mshlFlags
,
531 &objref
.u_objref
.u_custom
.size
);
534 ERR("Failed to get max size of marshal data, error %#lx\n", hr
);
537 /* write constant sized common header and OR_CUSTOM data into stream */
538 hr
= IStream_Write(stream
, &objref
, FIELD_OFFSET(OBJREF
, u_objref
.u_custom
.pData
), NULL
);
541 ERR("Failed to write OR_CUSTOM header to stream with %#lx\n", hr
);
546 TRACE("Calling IMarshal::MarshalInterface\n");
548 hr
= IMarshal_MarshalInterface(marshal
, stream
, riid
, unk
, dest_context
, pvDestContext
, mshlFlags
);
551 ERR("Failed to marshal the interface %s, hr %#lx\n", debugstr_guid(riid
), hr
);
556 IMarshal_Release(marshal
);
558 TRACE("completed with hr %#lx\n", hr
);
563 /* Creates an IMarshal* object according to the data marshaled to the stream.
564 * The function leaves the stream pointer at the start of the data written
565 * to the stream by the IMarshal* object.
567 static HRESULT
get_unmarshaler_from_stream(IStream
*stream
, IMarshal
**marshal
, IID
*iid
)
573 /* read common OBJREF header */
574 hr
= IStream_Read(stream
, &objref
, FIELD_OFFSET(OBJREF
, u_objref
), &res
);
575 if (hr
!= S_OK
|| (res
!= FIELD_OFFSET(OBJREF
, u_objref
)))
577 ERR("Failed to read common OBJREF header, %#lx\n", hr
);
578 return STG_E_READFAULT
;
581 /* sanity check on header */
582 if (objref
.signature
!= OBJREF_SIGNATURE
)
584 ERR("Bad OBJREF signature %#lx\n", objref
.signature
);
585 return RPC_E_INVALID_OBJREF
;
588 if (iid
) *iid
= objref
.iid
;
590 /* FIXME: handler marshaling */
591 if (objref
.flags
& OBJREF_STANDARD
)
593 TRACE("Using standard unmarshaling\n");
597 else if (objref
.flags
& OBJREF_CUSTOM
)
599 ULONG custom_header_size
= FIELD_OFFSET(OBJREF
, u_objref
.u_custom
.pData
) -
600 FIELD_OFFSET(OBJREF
, u_objref
.u_custom
);
601 TRACE("Using custom unmarshaling\n");
602 /* read constant sized OR_CUSTOM data from stream */
603 hr
= IStream_Read(stream
, &objref
.u_objref
.u_custom
,
604 custom_header_size
, &res
);
605 if (hr
!= S_OK
|| (res
!= custom_header_size
))
607 ERR("Failed to read OR_CUSTOM header, %#lx\n", hr
);
608 return STG_E_READFAULT
;
610 /* now create the marshaler specified in the stream */
611 hr
= CoCreateInstance(&objref
.u_objref
.u_custom
.clsid
, NULL
,
612 CLSCTX_INPROC_SERVER
, &IID_IMarshal
,
617 FIXME("Invalid or unimplemented marshaling type specified: %lx\n", objref
.flags
);
618 return RPC_E_INVALID_OBJREF
;
622 ERR("Failed to create marshal, %#lx\n", hr
);
627 static HRESULT
std_release_marshal_data(IStream
*stream
)
629 struct stub_manager
*stubmgr
;
630 struct OR_STANDARD obj
;
631 struct apartment
*apt
;
635 hr
= IStream_Read(stream
, &obj
, FIELD_OFFSET(struct OR_STANDARD
, saResAddr
.aStringArray
), &res
);
636 if (hr
!= S_OK
) return STG_E_READFAULT
;
638 if (obj
.saResAddr
.wNumEntries
)
640 ERR("unsupported size of DUALSTRINGARRAY\n");
644 TRACE("oxid = %s, oid = %s, ipid = %s\n", wine_dbgstr_longlong(obj
.std
.oxid
),
645 wine_dbgstr_longlong(obj
.std
.oid
), wine_dbgstr_guid(&obj
.std
.ipid
));
647 if (!(apt
= apartment_findfromoxid(obj
.std
.oxid
)))
649 WARN("Could not map OXID %s to apartment object\n",
650 wine_dbgstr_longlong(obj
.std
.oxid
));
651 return RPC_E_INVALID_OBJREF
;
654 if (!(stubmgr
= get_stub_manager(apt
, obj
.std
.oid
)))
656 apartment_release(apt
);
657 ERR("could not map object ID to stub manager, oxid=%s, oid=%s\n",
658 wine_dbgstr_longlong(obj
.std
.oxid
), wine_dbgstr_longlong(obj
.std
.oid
));
659 return RPC_E_INVALID_OBJREF
;
662 stub_manager_release_marshal_data(stubmgr
, obj
.std
.cPublicRefs
, &obj
.std
.ipid
, obj
.std
.flags
& SORFP_TABLEWEAK
);
664 stub_manager_int_release(stubmgr
);
665 apartment_release(apt
);
670 /***********************************************************************
671 * CoReleaseMarshalData (combase.@)
673 HRESULT WINAPI
CoReleaseMarshalData(IStream
*stream
)
678 TRACE("%p\n", stream
);
680 hr
= get_unmarshaler_from_stream(stream
, &marshal
, NULL
);
683 hr
= std_release_marshal_data(stream
);
685 ERR("StdMarshal ReleaseMarshalData failed with error %#lx\n", hr
);
691 /* call the helper object to do the releasing of marshal data */
692 hr
= IMarshal_ReleaseMarshalData(marshal
, stream
);
694 ERR("IMarshal::ReleaseMarshalData failed with error %#lx\n", hr
);
696 IMarshal_Release(marshal
);
700 static HRESULT
std_unmarshal_interface(MSHCTX dest_context
, void *dest_context_data
,
701 IStream
*stream
, REFIID riid
, void **ppv
, BOOL dest_context_known
)
703 struct stub_manager
*stubmgr
= NULL
;
704 struct OR_STANDARD obj
;
707 struct apartment
*apt
, *stub_apt
;
709 TRACE("(...,%s,....)\n", debugstr_guid(riid
));
711 /* we need an apartment to unmarshal into */
712 if (!(apt
= apartment_get_current_or_mta()))
714 ERR("Apartment not initialized\n");
715 return CO_E_NOTINITIALIZED
;
718 /* read STDOBJREF from wire */
719 hres
= IStream_Read(stream
, &obj
, FIELD_OFFSET(struct OR_STANDARD
, saResAddr
.aStringArray
), &res
);
722 apartment_release(apt
);
723 return STG_E_READFAULT
;
726 if (obj
.saResAddr
.wNumEntries
)
728 ERR("unsupported size of DUALSTRINGARRAY\n");
732 /* check if we're marshalling back to ourselves */
733 if ((apartment_getoxid(apt
) == obj
.std
.oxid
) && (stubmgr
= get_stub_manager(apt
, obj
.std
.oid
)))
735 TRACE("Unmarshalling object marshalled in same apartment for iid %s, "
736 "returning original object %p\n", debugstr_guid(riid
), stubmgr
->object
);
738 hres
= IUnknown_QueryInterface(stubmgr
->object
, riid
, ppv
);
740 /* unref the ifstub. FIXME: only do this on success? */
741 if (!stub_manager_is_table_marshaled(stubmgr
, &obj
.std
.ipid
))
742 stub_manager_ext_release(stubmgr
, obj
.std
.cPublicRefs
, obj
.std
.flags
& SORFP_TABLEWEAK
, FALSE
);
744 stub_manager_int_release(stubmgr
);
745 apartment_release(apt
);
749 /* notify stub manager about unmarshal if process-local object.
750 * note: if the oxid is not found then we and native will quite happily
751 * ignore table marshaling and normal marshaling rules regarding number of
752 * unmarshals, etc, but if you abuse these rules then your proxy could end
753 * up returning RPC_E_DISCONNECTED. */
754 if ((stub_apt
= apartment_findfromoxid(obj
.std
.oxid
)))
756 if ((stubmgr
= get_stub_manager(stub_apt
, obj
.std
.oid
)))
758 if (!stub_manager_notify_unmarshal(stubmgr
, &obj
.std
.ipid
))
759 hres
= CO_E_OBJNOTCONNECTED
;
760 if (SUCCEEDED(hres
) && !dest_context_known
)
761 hres
= ipid_get_dest_context(&obj
.std
.ipid
, &dest_context
, &dest_context_data
);
765 WARN("Couldn't find object for OXID %s, OID %s, assuming disconnected\n",
766 wine_dbgstr_longlong(obj
.std
.oxid
),
767 wine_dbgstr_longlong(obj
.std
.oid
));
768 hres
= CO_E_OBJNOTCONNECTED
;
772 TRACE("Treating unmarshal from OXID %s as inter-process\n",
773 wine_dbgstr_longlong(obj
.std
.oxid
));
776 hres
= unmarshal_object(&obj
.std
, apt
, dest_context
,
777 dest_context_data
, riid
,
778 stubmgr
? &stubmgr
->oxid_info
: NULL
, ppv
);
780 if (stubmgr
) stub_manager_int_release(stubmgr
);
781 if (stub_apt
) apartment_release(stub_apt
);
783 if (hres
!= S_OK
) WARN("Failed with error %#lx\n", hres
);
784 else TRACE("Successfully created proxy %p\n", *ppv
);
786 apartment_release(apt
);
790 /***********************************************************************
791 * CoUnmarshalInterface (combase.@)
793 HRESULT WINAPI
CoUnmarshalInterface(IStream
*stream
, REFIID riid
, void **ppv
)
800 TRACE("%p, %s, %p\n", stream
, debugstr_guid(riid
), ppv
);
805 hr
= get_unmarshaler_from_stream(stream
, &marshal
, &iid
);
808 hr
= std_unmarshal_interface(0, NULL
, stream
, &iid
, (void **)&object
, FALSE
);
810 ERR("StdMarshal UnmarshalInterface failed, hr %#lx\n", hr
);
814 /* call the helper object to do the actual unmarshaling */
815 hr
= IMarshal_UnmarshalInterface(marshal
, stream
, &iid
, (void **)&object
);
816 IMarshal_Release(marshal
);
818 ERR("IMarshal::UnmarshalInterface failed, hr %#lx\n", hr
);
823 /* IID_NULL means use the interface ID of the marshaled object */
824 if (!IsEqualIID(riid
, &IID_NULL
) && !IsEqualIID(riid
, &iid
))
826 TRACE("requested interface != marshalled interface, additional QI needed\n");
827 hr
= IUnknown_QueryInterface(object
, riid
, ppv
);
829 ERR("Couldn't query for interface %s, hr %#lx\n", debugstr_guid(riid
), hr
);
830 IUnknown_Release(object
);
838 TRACE("completed with hr %#lx\n", hr
);
843 /* Marshalling just passes a unique identifier to the remote client,
844 * that makes it possible to find the passed interface again.
846 * So basically we need a set of values that make it unique.
848 * Note that the IUnknown_QI(ob,xiid,&ppv) always returns the SAME ppv value!
850 * A triple is used: OXID (apt id), OID (stub manager id),
851 * IPID (interface ptr/stub id).
853 * OXIDs identify an apartment and are network scoped
854 * OIDs identify a stub manager and are apartment scoped
855 * IPIDs identify an interface stub and are apartment scoped
858 static inline HRESULT
get_facbuf_for_iid(REFIID riid
, IPSFactoryBuffer
**facbuf
)
863 hr
= CoGetPSClsid(riid
, &clsid
);
866 return CoGetClassObject(&clsid
, CLSCTX_INPROC_SERVER
| CLSCTX_PS_DLL
, NULL
, &IID_IPSFactoryBuffer
, (void **)facbuf
);
869 /* marshals an object into a STDOBJREF structure */
870 HRESULT
marshal_object(struct apartment
*apt
, STDOBJREF
*stdobjref
, REFIID riid
, IUnknown
*object
,
871 DWORD dest_context
, void *dest_context_data
, MSHLFLAGS mshlflags
)
873 struct stub_manager
*manager
;
874 struct ifstub
*ifstub
;
878 stdobjref
->oxid
= apartment_getoxid(apt
);
880 hr
= apartment_createwindowifneeded(apt
);
884 if (!(manager
= get_stub_manager_from_object(apt
, object
, TRUE
)))
885 return E_OUTOFMEMORY
;
887 stdobjref
->flags
= SORF_NULL
;
888 if (mshlflags
& MSHLFLAGS_TABLEWEAK
)
889 stdobjref
->flags
|= SORFP_TABLEWEAK
;
890 if (mshlflags
& MSHLFLAGS_NOPING
)
891 stdobjref
->flags
|= SORF_NOPING
;
892 stdobjref
->oid
= manager
->oid
;
894 tablemarshal
= ((mshlflags
& MSHLFLAGS_TABLESTRONG
) || (mshlflags
& MSHLFLAGS_TABLEWEAK
));
896 /* make sure ifstub that we are creating is unique */
897 ifstub
= stub_manager_find_ifstub(manager
, riid
, mshlflags
);
899 IRpcStubBuffer
*stub
= NULL
;
901 /* IUnknown doesn't require a stub buffer, because it never goes out on
903 if (!IsEqualIID(riid
, &IID_IUnknown
))
905 IPSFactoryBuffer
*psfb
;
907 hr
= get_facbuf_for_iid(riid
, &psfb
);
909 hr
= IPSFactoryBuffer_CreateStub(psfb
, riid
, manager
->object
, &stub
);
910 IPSFactoryBuffer_Release(psfb
);
912 ERR("Failed to create an IRpcStubBuffer from IPSFactory for %s with error %#lx\n",
913 debugstr_guid(riid
), hr
);
915 WARN("couldn't get IPSFactory buffer for interface %s\n", debugstr_guid(riid
));
922 ifstub
= stub_manager_new_ifstub(manager
, stub
, riid
, dest_context
, dest_context_data
, mshlflags
);
926 if (stub
) IRpcStubBuffer_Release(stub
);
929 stub_manager_int_release(manager
);
930 /* destroy the stub manager if it has no ifstubs by releasing
931 * zero external references */
932 stub_manager_ext_release(manager
, 0, FALSE
, TRUE
);
939 stdobjref
->cPublicRefs
= NORMALEXTREFS
;
940 stub_manager_ext_addref(manager
, stdobjref
->cPublicRefs
, FALSE
);
944 stdobjref
->cPublicRefs
= 0;
945 if (mshlflags
& MSHLFLAGS_TABLESTRONG
)
946 stub_manager_ext_addref(manager
, 1, FALSE
);
948 stub_manager_ext_addref(manager
, 0, TRUE
);
951 /* FIXME: check return value */
952 rpc_register_interface(riid
);
954 stdobjref
->ipid
= ifstub
->ipid
;
956 stub_manager_int_release(manager
);
960 /* Client-side identity of the server object */
962 static HRESULT
proxy_manager_get_remunknown(struct proxy_manager
* This
, IRemUnknown
**remunk
);
963 static void proxy_manager_destroy(struct proxy_manager
* This
);
964 static HRESULT
proxy_manager_find_ifproxy(struct proxy_manager
* This
, REFIID riid
, struct ifproxy
** ifproxy_found
);
965 static HRESULT
proxy_manager_query_local_interface(struct proxy_manager
* This
, REFIID riid
, void ** ppv
);
967 static HRESULT WINAPI
ClientIdentity_QueryInterface(IMultiQI
* iface
, REFIID riid
, void ** ppv
)
972 TRACE("%s\n", debugstr_guid(riid
));
975 hr
= IMultiQI_QueryMultipleInterfaces(iface
, 1, &mqi
);
981 static ULONG WINAPI
ClientIdentity_AddRef(IMultiQI
*iface
)
983 struct proxy_manager
*This
= impl_from_IMultiQI(iface
);
984 TRACE("%p - before %ld\n", iface
, This
->refs
);
985 return InterlockedIncrement(&This
->refs
);
988 static ULONG WINAPI
ClientIdentity_Release(IMultiQI
*iface
)
990 struct proxy_manager
*This
= impl_from_IMultiQI(iface
);
991 ULONG refs
= InterlockedDecrement(&This
->refs
);
992 TRACE("%p - after %ld\n", iface
, refs
);
994 proxy_manager_destroy(This
);
998 static HRESULT WINAPI
ClientIdentity_QueryMultipleInterfaces(IMultiQI
*iface
, ULONG cMQIs
, MULTI_QI
*pMQIs
)
1000 struct proxy_manager
*This
= impl_from_IMultiQI(iface
);
1001 REMQIRESULT
*qiresults
= NULL
;
1002 ULONG nonlocal_mqis
= 0;
1004 ULONG successful_mqis
= 0;
1005 IID
*iids
= malloc(cMQIs
* sizeof(*iids
));
1006 /* mapping of RemQueryInterface index to QueryMultipleInterfaces index */
1007 ULONG
*mapping
= malloc(cMQIs
* sizeof(*mapping
));
1009 TRACE("cMQIs: %ld\n", cMQIs
);
1011 /* try to get a local interface - this includes already active proxy
1012 * interfaces and also interfaces exposed by the proxy manager */
1013 for (i
= 0; i
< cMQIs
; i
++)
1015 TRACE("iid[%ld] = %s\n", i
, debugstr_guid(pMQIs
[i
].pIID
));
1016 pMQIs
[i
].hr
= proxy_manager_query_local_interface(This
, pMQIs
[i
].pIID
, (void **)&pMQIs
[i
].pItf
);
1017 if (pMQIs
[i
].hr
== S_OK
)
1021 iids
[nonlocal_mqis
] = *pMQIs
[i
].pIID
;
1022 mapping
[nonlocal_mqis
] = i
;
1027 TRACE("%ld interfaces not found locally\n", nonlocal_mqis
);
1029 /* if we have more than one interface not found locally then we must try
1030 * to query the remote object for it */
1031 if (nonlocal_mqis
!= 0)
1033 IRemUnknown
*remunk
;
1037 /* get the ipid of the first entry */
1038 /* FIXME: should we implement ClientIdentity on the ifproxies instead
1039 * of the proxy_manager so we use the correct ipid here? */
1040 ipid
= &LIST_ENTRY(list_head(&This
->interfaces
), struct ifproxy
, entry
)->stdobjref
.ipid
;
1042 /* get IRemUnknown proxy so we can communicate with the remote object */
1043 hr
= proxy_manager_get_remunknown(This
, &remunk
);
1047 hr
= IRemUnknown_RemQueryInterface(remunk
, ipid
, NORMALEXTREFS
,
1048 nonlocal_mqis
, iids
, &qiresults
);
1049 IRemUnknown_Release(remunk
);
1051 WARN("IRemUnknown_RemQueryInterface failed with error %#lx\n", hr
);
1054 /* IRemUnknown_RemQueryInterface can return S_FALSE if only some of
1055 * the interfaces were returned */
1058 struct apartment
*apt
= apartment_get_current_or_mta();
1060 /* try to unmarshal each object returned to us */
1061 for (i
= 0; i
< nonlocal_mqis
; i
++)
1063 ULONG index
= mapping
[i
];
1064 HRESULT hrobj
= qiresults
[i
].hResult
;
1066 hrobj
= unmarshal_object(&qiresults
[i
].std
, apt
,
1068 This
->dest_context_data
,
1069 pMQIs
[index
].pIID
, &This
->oxid_info
,
1070 (void **)&pMQIs
[index
].pItf
);
1075 ERR("Failed to get pointer to interface %s\n", debugstr_guid(pMQIs
[index
].pIID
));
1076 pMQIs
[index
].hr
= hrobj
;
1079 apartment_release(apt
);
1082 /* free the memory allocated by the proxy */
1083 CoTaskMemFree(qiresults
);
1086 TRACE("%ld/%ld successfully queried\n", successful_mqis
, cMQIs
);
1091 if (successful_mqis
== cMQIs
)
1092 return S_OK
; /* we got all requested interfaces */
1093 else if (successful_mqis
== 0)
1094 return E_NOINTERFACE
; /* we didn't get any interfaces */
1096 return S_FALSE
; /* we got some interfaces */
1099 static const IMultiQIVtbl ClientIdentity_Vtbl
=
1101 ClientIdentity_QueryInterface
,
1102 ClientIdentity_AddRef
,
1103 ClientIdentity_Release
,
1104 ClientIdentity_QueryMultipleInterfaces
1107 static HRESULT
StdMarshalImpl_Construct(REFIID
, DWORD
, void*, void**);
1109 static HRESULT WINAPI
Proxy_QueryInterface(IMarshal
*iface
, REFIID riid
, void **ppvObject
)
1111 struct proxy_manager
*This
= impl_from_IMarshal( iface
);
1112 return IMultiQI_QueryInterface(&This
->IMultiQI_iface
, riid
, ppvObject
);
1115 static ULONG WINAPI
Proxy_AddRef(IMarshal
*iface
)
1117 struct proxy_manager
*This
= impl_from_IMarshal( iface
);
1118 return IMultiQI_AddRef(&This
->IMultiQI_iface
);
1121 static ULONG WINAPI
Proxy_Release(IMarshal
*iface
)
1123 struct proxy_manager
*This
= impl_from_IMarshal( iface
);
1124 return IMultiQI_Release(&This
->IMultiQI_iface
);
1127 static HRESULT WINAPI
Proxy_GetUnmarshalClass(
1128 IMarshal
*iface
, REFIID riid
, void* pv
, DWORD dwDestContext
,
1129 void* pvDestContext
, DWORD mshlflags
, CLSID
* pCid
)
1131 *pCid
= CLSID_StdMarshal
;
1135 static HRESULT WINAPI
Proxy_GetMarshalSizeMax(
1136 IMarshal
*iface
, REFIID riid
, void* pv
, DWORD dwDestContext
,
1137 void* pvDestContext
, DWORD mshlflags
, DWORD
* pSize
)
1139 *pSize
= FIELD_OFFSET(OBJREF
, u_objref
.u_standard
.saResAddr
.aStringArray
);
1143 static void fill_std_objref(OBJREF
*objref
, const GUID
*iid
, STDOBJREF
*std
)
1145 objref
->signature
= OBJREF_SIGNATURE
;
1146 objref
->flags
= OBJREF_STANDARD
;
1149 objref
->u_objref
.u_standard
.std
= *std
;
1150 memset(&objref
->u_objref
.u_standard
.saResAddr
, 0,
1151 sizeof(objref
->u_objref
.u_standard
.saResAddr
));
1154 static HRESULT WINAPI
Proxy_MarshalInterface(
1155 LPMARSHAL iface
, IStream
*pStm
, REFIID riid
, void* pv
, DWORD dwDestContext
,
1156 void* pvDestContext
, DWORD mshlflags
)
1158 struct proxy_manager
*This
= impl_from_IMarshal( iface
);
1160 struct ifproxy
*ifproxy
;
1162 TRACE("(...,%s,...)\n", debugstr_guid(riid
));
1164 hr
= proxy_manager_find_ifproxy(This
, riid
, &ifproxy
);
1167 STDOBJREF stdobjref
= ifproxy
->stdobjref
;
1169 stdobjref
.cPublicRefs
= 0;
1171 if ((mshlflags
!= MSHLFLAGS_TABLEWEAK
) &&
1172 (mshlflags
!= MSHLFLAGS_TABLESTRONG
))
1174 ULONG cPublicRefs
= ifproxy
->refs
;
1175 ULONG cPublicRefsOld
;
1176 /* optimization - share out proxy's public references if possible
1177 * instead of making new proxy do a roundtrip through the server */
1180 ULONG cPublicRefsNew
;
1181 cPublicRefsOld
= cPublicRefs
;
1182 stdobjref
.cPublicRefs
= cPublicRefs
/ 2;
1183 cPublicRefsNew
= cPublicRefs
- stdobjref
.cPublicRefs
;
1184 cPublicRefs
= InterlockedCompareExchange(
1185 (LONG
*)&ifproxy
->refs
, cPublicRefsNew
, cPublicRefsOld
);
1186 } while (cPublicRefs
!= cPublicRefsOld
);
1189 /* normal and table-strong marshaling need at least one reference */
1190 if (!stdobjref
.cPublicRefs
&& (mshlflags
!= MSHLFLAGS_TABLEWEAK
))
1192 IRemUnknown
*remunk
;
1193 hr
= proxy_manager_get_remunknown(This
, &remunk
);
1196 HRESULT hrref
= S_OK
;
1197 REMINTERFACEREF rif
;
1198 rif
.ipid
= ifproxy
->stdobjref
.ipid
;
1199 rif
.cPublicRefs
= (mshlflags
== MSHLFLAGS_TABLESTRONG
) ? 1 : NORMALEXTREFS
;
1200 rif
.cPrivateRefs
= 0;
1201 hr
= IRemUnknown_RemAddRef(remunk
, 1, &rif
, &hrref
);
1202 IRemUnknown_Release(remunk
);
1203 if (hr
== S_OK
&& hrref
== S_OK
)
1205 /* table-strong marshaling doesn't give the refs to the
1206 * client that unmarshals the STDOBJREF */
1207 if (mshlflags
!= MSHLFLAGS_TABLESTRONG
)
1208 stdobjref
.cPublicRefs
= rif
.cPublicRefs
;
1211 ERR("IRemUnknown_RemAddRef returned with %#lx, hrref = %#lx\n", hr
, hrref
);
1219 TRACE("writing stdobjref: flags = %#lx cPublicRefs = %ld oxid = %s oid = %s ipid = %s\n",
1220 stdobjref
.flags
, stdobjref
.cPublicRefs
,
1221 wine_dbgstr_longlong(stdobjref
.oxid
),
1222 wine_dbgstr_longlong(stdobjref
.oid
),
1223 debugstr_guid(&stdobjref
.ipid
));
1224 fill_std_objref(&objref
, riid
, &stdobjref
);
1225 hr
= IStream_Write(pStm
, &objref
, FIELD_OFFSET(OBJREF
,
1226 u_objref
.u_standard
.saResAddr
.aStringArray
), NULL
);
1231 /* we don't have the interface already unmarshaled so we have to
1232 * request the object from the server */
1233 IRemUnknown
*remunk
;
1235 REMQIRESULT
*qiresults
= NULL
;
1238 /* get the ipid of the first entry */
1239 /* FIXME: should we implement ClientIdentity on the ifproxies instead
1240 * of the proxy_manager so we use the correct ipid here? */
1241 ipid
= &LIST_ENTRY(list_head(&This
->interfaces
), struct ifproxy
, entry
)->stdobjref
.ipid
;
1243 /* get IRemUnknown proxy so we can communicate with the remote object */
1244 hr
= proxy_manager_get_remunknown(This
, &remunk
);
1248 hr
= IRemUnknown_RemQueryInterface(remunk
, ipid
, NORMALEXTREFS
,
1249 1, &iid
, &qiresults
);
1254 fill_std_objref(&objref
, riid
, &qiresults
->std
);
1255 hr
= IStream_Write(pStm
, &objref
, FIELD_OFFSET(OBJREF
,
1256 u_objref
.u_standard
.saResAddr
.aStringArray
), NULL
);
1259 REMINTERFACEREF rif
;
1260 rif
.ipid
= qiresults
->std
.ipid
;
1261 rif
.cPublicRefs
= qiresults
->std
.cPublicRefs
;
1262 rif
.cPrivateRefs
= 0;
1263 IRemUnknown_RemRelease(remunk
, 1, &rif
);
1265 CoTaskMemFree(qiresults
);
1268 ERR("IRemUnknown_RemQueryInterface failed with error %#lx\n", hr
);
1269 IRemUnknown_Release(remunk
);
1276 static HRESULT WINAPI
Proxy_UnmarshalInterface(
1277 IMarshal
*iface
, IStream
*pStm
, REFIID riid
, void **ppv
)
1279 struct proxy_manager
*This
= impl_from_IMarshal( iface
);
1283 TRACE("(%p, %p, %s, %p)\n", This
, pStm
, wine_dbgstr_guid(riid
), ppv
);
1285 hr
= StdMarshalImpl_Construct(&IID_IMarshal
, This
->dest_context
,
1286 This
->dest_context_data
, (void**)&marshal
);
1290 hr
= IMarshal_UnmarshalInterface(marshal
, pStm
, riid
, ppv
);
1291 IMarshal_Release(marshal
);
1295 static HRESULT WINAPI
Proxy_ReleaseMarshalData(IMarshal
*iface
, IStream
*pStm
)
1297 struct proxy_manager
*This
= impl_from_IMarshal( iface
);
1301 TRACE("(%p, %p)\n", This
, pStm
);
1303 hr
= StdMarshalImpl_Construct(&IID_IMarshal
, This
->dest_context
,
1304 This
->dest_context_data
, (void**)&marshal
);
1308 hr
= IMarshal_ReleaseMarshalData(marshal
, pStm
);
1309 IMarshal_Release(marshal
);
1313 static HRESULT WINAPI
Proxy_DisconnectObject(IMarshal
*iface
, DWORD dwReserved
)
1315 struct proxy_manager
*This
= impl_from_IMarshal( iface
);
1319 TRACE("%p, %#lx\n", This
, dwReserved
);
1321 hr
= StdMarshalImpl_Construct(&IID_IMarshal
, This
->dest_context
,
1322 This
->dest_context_data
, (void**)&marshal
);
1326 hr
= IMarshal_DisconnectObject(marshal
, dwReserved
);
1327 IMarshal_Release(marshal
);
1331 static const IMarshalVtbl ProxyMarshal_Vtbl
=
1333 Proxy_QueryInterface
,
1336 Proxy_GetUnmarshalClass
,
1337 Proxy_GetMarshalSizeMax
,
1338 Proxy_MarshalInterface
,
1339 Proxy_UnmarshalInterface
,
1340 Proxy_ReleaseMarshalData
,
1341 Proxy_DisconnectObject
1344 static HRESULT WINAPI
ProxyCliSec_QueryInterface(IClientSecurity
*iface
, REFIID riid
, void **ppvObject
)
1346 struct proxy_manager
*This
= impl_from_IClientSecurity( iface
);
1347 return IMultiQI_QueryInterface(&This
->IMultiQI_iface
, riid
, ppvObject
);
1350 static ULONG WINAPI
ProxyCliSec_AddRef(IClientSecurity
*iface
)
1352 struct proxy_manager
*This
= impl_from_IClientSecurity( iface
);
1353 return IMultiQI_AddRef(&This
->IMultiQI_iface
);
1356 static ULONG WINAPI
ProxyCliSec_Release(IClientSecurity
*iface
)
1358 struct proxy_manager
*This
= impl_from_IClientSecurity( iface
);
1359 return IMultiQI_Release(&This
->IMultiQI_iface
);
1362 static HRESULT WINAPI
ProxyCliSec_QueryBlanket(IClientSecurity
*iface
,
1366 OLECHAR
**ppServerPrincName
,
1370 DWORD
*pCapabilities
)
1372 FIXME("(%p, %p, %p, %p, %p, %p, %p, %p): stub\n", pProxy
, pAuthnSvc
,
1373 pAuthzSvc
, ppServerPrincName
, pAuthnLevel
, pImpLevel
, pAuthInfo
,
1380 if (ppServerPrincName
)
1381 *ppServerPrincName
= NULL
;
1383 *pAuthnLevel
= RPC_C_AUTHN_LEVEL_DEFAULT
;
1385 *pImpLevel
= RPC_C_IMP_LEVEL_DEFAULT
;
1389 *pCapabilities
= EOAC_NONE
;
1394 static HRESULT WINAPI
ProxyCliSec_SetBlanket(IClientSecurity
*iface
,
1395 IUnknown
*pProxy
, DWORD AuthnSvc
,
1397 OLECHAR
*pServerPrincName
,
1398 DWORD AuthnLevel
, DWORD ImpLevel
,
1402 FIXME("%p, %ld, %ld, %s, %ld, %ld, %p, %#lx: stub\n", pProxy
, AuthnSvc
, AuthzSvc
,
1403 pServerPrincName
== COLE_DEFAULT_PRINCIPAL
? "<default principal>" : debugstr_w(pServerPrincName
),
1404 AuthnLevel
, ImpLevel
, pAuthInfo
, Capabilities
);
1408 static HRESULT WINAPI
ProxyCliSec_CopyProxy(IClientSecurity
*iface
,
1409 IUnknown
*pProxy
, IUnknown
**ppCopy
)
1411 FIXME("(%p, %p): stub\n", pProxy
, ppCopy
);
1416 static const IClientSecurityVtbl ProxyCliSec_Vtbl
=
1418 ProxyCliSec_QueryInterface
,
1420 ProxyCliSec_Release
,
1421 ProxyCliSec_QueryBlanket
,
1422 ProxyCliSec_SetBlanket
,
1423 ProxyCliSec_CopyProxy
1426 static HRESULT
ifproxy_get_public_ref(struct ifproxy
* This
)
1430 if (WAIT_OBJECT_0
!= WaitForSingleObject(This
->parent
->remoting_mutex
, INFINITE
))
1432 ERR("Wait failed for ifproxy %p\n", This
);
1433 return E_UNEXPECTED
;
1436 if (This
->refs
== 0)
1438 IRemUnknown
*remunk
= NULL
;
1440 TRACE("getting public ref for ifproxy %p\n", This
);
1442 hr
= proxy_manager_get_remunknown(This
->parent
, &remunk
);
1445 HRESULT hrref
= S_OK
;
1446 REMINTERFACEREF rif
;
1447 rif
.ipid
= This
->stdobjref
.ipid
;
1448 rif
.cPublicRefs
= NORMALEXTREFS
;
1449 rif
.cPrivateRefs
= 0;
1450 hr
= IRemUnknown_RemAddRef(remunk
, 1, &rif
, &hrref
);
1451 IRemUnknown_Release(remunk
);
1452 if (hr
== S_OK
&& hrref
== S_OK
)
1453 InterlockedExchangeAdd((LONG
*)&This
->refs
, NORMALEXTREFS
);
1455 ERR("IRemUnknown_RemAddRef returned with %#lx, hrref = %#lx\n", hr
, hrref
);
1458 ReleaseMutex(This
->parent
->remoting_mutex
);
1463 static HRESULT
ifproxy_release_public_refs(struct ifproxy
* This
)
1468 if (WAIT_OBJECT_0
!= WaitForSingleObject(This
->parent
->remoting_mutex
, INFINITE
))
1470 ERR("Wait failed for ifproxy %p\n", This
);
1471 return E_UNEXPECTED
;
1474 public_refs
= This
->refs
;
1475 if (public_refs
> 0)
1477 IRemUnknown
*remunk
= NULL
;
1479 TRACE("releasing %ld refs\n", public_refs
);
1481 hr
= proxy_manager_get_remunknown(This
->parent
, &remunk
);
1484 REMINTERFACEREF rif
;
1485 rif
.ipid
= This
->stdobjref
.ipid
;
1486 rif
.cPublicRefs
= public_refs
;
1487 rif
.cPrivateRefs
= 0;
1488 hr
= IRemUnknown_RemRelease(remunk
, 1, &rif
);
1489 IRemUnknown_Release(remunk
);
1491 InterlockedExchangeAdd((LONG
*)&This
->refs
, -public_refs
);
1492 else if (hr
== RPC_E_DISCONNECTED
)
1493 WARN("couldn't release references because object was "
1494 "disconnected: oxid = %s, oid = %s\n",
1495 wine_dbgstr_longlong(This
->parent
->oxid
),
1496 wine_dbgstr_longlong(This
->parent
->oid
));
1498 ERR("IRemUnknown_RemRelease failed with error %#lx\n", hr
);
1501 ReleaseMutex(This
->parent
->remoting_mutex
);
1506 /* should be called inside This->parent->cs critical section */
1507 static void ifproxy_disconnect(struct ifproxy
* This
)
1509 ifproxy_release_public_refs(This
);
1510 if (This
->proxy
) IRpcProxyBuffer_Disconnect(This
->proxy
);
1512 IRpcChannelBuffer_Release(This
->chan
);
1516 /* should be called in This->parent->cs critical section if it is an entry in parent's list */
1517 static void ifproxy_destroy(struct ifproxy
* This
)
1519 TRACE("%p\n", This
);
1521 /* release public references to this object so that the stub can know
1522 * when to destroy itself */
1523 ifproxy_release_public_refs(This
);
1525 list_remove(&This
->entry
);
1529 IRpcChannelBuffer_Release(This
->chan
);
1533 if (This
->proxy
) IRpcProxyBuffer_Release(This
->proxy
);
1538 static HRESULT
proxy_manager_construct(
1539 struct apartment
* apt
, ULONG sorflags
, OXID oxid
, OID oid
,
1540 const OXID_INFO
*oxid_info
, struct proxy_manager
** proxy_manager
)
1542 struct proxy_manager
* This
= malloc(sizeof(*This
));
1543 if (!This
) return E_OUTOFMEMORY
;
1545 This
->remoting_mutex
= CreateMutexW(NULL
, FALSE
, NULL
);
1546 if (!This
->remoting_mutex
)
1549 return HRESULT_FROM_WIN32(GetLastError());
1554 This
->oxid_info
.dwPid
= oxid_info
->dwPid
;
1555 This
->oxid_info
.dwTid
= oxid_info
->dwTid
;
1556 This
->oxid_info
.ipidRemUnknown
= oxid_info
->ipidRemUnknown
;
1557 This
->oxid_info
.dwAuthnHint
= oxid_info
->dwAuthnHint
;
1558 This
->oxid_info
.psa
= NULL
/* FIXME: copy from oxid_info */;
1562 HRESULT hr
= rpc_resolve_oxid(oxid
, &This
->oxid_info
);
1565 CloseHandle(This
->remoting_mutex
);
1571 This
->IMultiQI_iface
.lpVtbl
= &ClientIdentity_Vtbl
;
1572 This
->IMarshal_iface
.lpVtbl
= &ProxyMarshal_Vtbl
;
1573 This
->IClientSecurity_iface
.lpVtbl
= &ProxyCliSec_Vtbl
;
1575 list_init(&This
->entry
);
1576 list_init(&This
->interfaces
);
1578 InitializeCriticalSection(&This
->cs
);
1579 This
->cs
.DebugInfo
->Spare
[0] = (DWORD_PTR
)(__FILE__
": proxy_manager");
1581 /* the apartment the object was unmarshaled into */
1584 /* the source apartment and id of the object */
1590 /* the DCOM draft specification states that the SORF_NOPING flag is
1591 * proxy manager specific, not ifproxy specific, so this implies that we
1592 * should store the STDOBJREF flags here in the proxy manager. */
1593 This
->sorflags
= sorflags
;
1595 /* we create the IRemUnknown proxy on demand */
1596 This
->remunk
= NULL
;
1598 /* initialise these values to the weakest values and they will be
1599 * overwritten in proxy_manager_set_context */
1600 This
->dest_context
= MSHCTX_INPROC
;
1601 This
->dest_context_data
= NULL
;
1603 EnterCriticalSection(&apt
->cs
);
1604 /* FIXME: we are dependent on the ordering in here to make sure a proxy's
1605 * IRemUnknown proxy doesn't get destroyed before the regular proxy does
1606 * because we need the IRemUnknown proxy during the destruction of the
1607 * regular proxy. Ideally, we should maintain a separate list for the
1608 * IRemUnknown proxies that need late destruction */
1609 list_add_tail(&apt
->proxies
, &This
->entry
);
1610 LeaveCriticalSection(&apt
->cs
);
1612 TRACE("%p created for OXID %s, OID %s\n", This
,
1613 wine_dbgstr_longlong(oxid
), wine_dbgstr_longlong(oid
));
1615 *proxy_manager
= This
;
1619 static inline void proxy_manager_set_context(struct proxy_manager
*This
, MSHCTX dest_context
, void *dest_context_data
)
1621 MSHCTX old_dest_context
;
1622 MSHCTX new_dest_context
;
1626 old_dest_context
= This
->dest_context
;
1627 new_dest_context
= old_dest_context
;
1628 /* "stronger" values overwrite "weaker" values. stronger values are
1629 * ones that disable more optimisations */
1630 switch (old_dest_context
)
1633 new_dest_context
= dest_context
;
1635 case MSHCTX_CROSSCTX
:
1636 switch (dest_context
)
1641 new_dest_context
= dest_context
;
1645 switch (dest_context
)
1648 case MSHCTX_CROSSCTX
:
1651 new_dest_context
= dest_context
;
1654 case MSHCTX_NOSHAREDMEM
:
1655 switch (dest_context
)
1657 case MSHCTX_DIFFERENTMACHINE
:
1658 new_dest_context
= dest_context
;
1668 if (old_dest_context
== new_dest_context
) break;
1670 new_dest_context
= InterlockedCompareExchange((PLONG
)&This
->dest_context
, new_dest_context
, old_dest_context
);
1671 } while (new_dest_context
!= old_dest_context
);
1673 if (dest_context_data
)
1674 InterlockedExchangePointer(&This
->dest_context_data
, dest_context_data
);
1677 static HRESULT
proxy_manager_query_local_interface(struct proxy_manager
* This
, REFIID riid
, void ** ppv
)
1680 struct ifproxy
* ifproxy
;
1682 TRACE("%s\n", debugstr_guid(riid
));
1684 if (IsEqualIID(riid
, &IID_IUnknown
) ||
1685 IsEqualIID(riid
, &IID_IMultiQI
))
1687 *ppv
= &This
->IMultiQI_iface
;
1688 IMultiQI_AddRef(&This
->IMultiQI_iface
);
1691 if (IsEqualIID(riid
, &IID_IMarshal
))
1693 *ppv
= &This
->IMarshal_iface
;
1694 IMarshal_AddRef(&This
->IMarshal_iface
);
1697 if (IsEqualIID(riid
, &IID_IClientSecurity
))
1699 *ppv
= &This
->IClientSecurity_iface
;
1700 IClientSecurity_AddRef(&This
->IClientSecurity_iface
);
1704 hr
= proxy_manager_find_ifproxy(This
, riid
, &ifproxy
);
1707 *ppv
= ifproxy
->iface
;
1708 IUnknown_AddRef((IUnknown
*)*ppv
);
1713 return E_NOINTERFACE
;
1716 static HRESULT
proxy_manager_create_ifproxy(
1717 struct proxy_manager
* This
, const STDOBJREF
*stdobjref
, REFIID riid
,
1718 IRpcChannelBuffer
* channel
, struct ifproxy
** iif_out
)
1721 IPSFactoryBuffer
* psfb
;
1722 struct ifproxy
* ifproxy
= malloc(sizeof(*ifproxy
));
1723 if (!ifproxy
) return E_OUTOFMEMORY
;
1725 list_init(&ifproxy
->entry
);
1727 ifproxy
->parent
= This
;
1728 ifproxy
->stdobjref
= *stdobjref
;
1729 ifproxy
->iid
= *riid
;
1731 ifproxy
->proxy
= NULL
;
1734 ifproxy
->chan
= channel
; /* FIXME: we should take the binding strings and construct the channel in this function */
1736 /* the IUnknown interface is special because it does not have a
1737 * proxy associated with the ifproxy as we handle IUnknown ourselves */
1738 if (IsEqualIID(riid
, &IID_IUnknown
))
1740 ifproxy
->iface
= &This
->IMultiQI_iface
;
1741 IMultiQI_AddRef(&This
->IMultiQI_iface
);
1746 hr
= get_facbuf_for_iid(riid
, &psfb
);
1749 /* important note: the outer unknown is set to the proxy manager.
1750 * This ensures the COM identity rules are not violated, by having a
1751 * one-to-one mapping of objects on the proxy side to objects on the
1752 * stub side, no matter which interface you view the object through */
1753 hr
= IPSFactoryBuffer_CreateProxy(psfb
, (IUnknown
*)&This
->IMultiQI_iface
, riid
,
1754 &ifproxy
->proxy
, &ifproxy
->iface
);
1755 IPSFactoryBuffer_Release(psfb
);
1757 ERR("Could not create proxy for interface %s, error %#lx\n", debugstr_guid(riid
), hr
);
1760 ERR("Could not get IPSFactoryBuffer for interface %s, error %#lx\n", debugstr_guid(riid
), hr
);
1763 hr
= IRpcProxyBuffer_Connect(ifproxy
->proxy
, ifproxy
->chan
);
1768 EnterCriticalSection(&This
->cs
);
1769 list_add_tail(&This
->interfaces
, &ifproxy
->entry
);
1770 LeaveCriticalSection(&This
->cs
);
1773 TRACE("ifproxy %p created for IPID %s, interface %s with %lu public refs\n",
1774 ifproxy
, debugstr_guid(&stdobjref
->ipid
), debugstr_guid(riid
), stdobjref
->cPublicRefs
);
1777 ifproxy_destroy(ifproxy
);
1782 static HRESULT
proxy_manager_find_ifproxy(struct proxy_manager
* This
, REFIID riid
, struct ifproxy
** ifproxy_found
)
1784 HRESULT hr
= E_NOINTERFACE
; /* assume not found */
1785 struct ifproxy
*ifproxy
;
1787 EnterCriticalSection(&This
->cs
);
1788 LIST_FOR_EACH_ENTRY(ifproxy
, &This
->interfaces
, struct ifproxy
, entry
)
1790 if (IsEqualIID(riid
, &ifproxy
->iid
))
1792 *ifproxy_found
= ifproxy
;
1797 LeaveCriticalSection(&This
->cs
);
1802 static void proxy_manager_disconnect(struct proxy_manager
* This
)
1804 struct ifproxy
*ifproxy
;
1806 TRACE("oxid = %s, oid = %s\n", wine_dbgstr_longlong(This
->oxid
),
1807 wine_dbgstr_longlong(This
->oid
));
1809 EnterCriticalSection(&This
->cs
);
1811 /* SORFP_NOLIFTIMEMGMT proxies (for IRemUnknown) shouldn't be
1812 * disconnected - it won't do anything anyway, except cause
1813 * problems for other objects that depend on this proxy always
1815 if (!(This
->sorflags
& SORFP_NOLIFETIMEMGMT
))
1817 LIST_FOR_EACH_ENTRY(ifproxy
, &This
->interfaces
, struct ifproxy
, entry
)
1819 ifproxy_disconnect(ifproxy
);
1823 /* apartment is being destroyed so don't keep a pointer around to it */
1824 This
->parent
= NULL
;
1826 LeaveCriticalSection(&This
->cs
);
1829 static HRESULT
proxy_manager_get_remunknown(struct proxy_manager
* This
, IRemUnknown
**remunk
)
1832 struct apartment
*apt
;
1833 BOOL called_in_original_apt
;
1835 /* we don't want to try and unmarshal or use IRemUnknown if we don't want
1836 * lifetime management */
1837 if (This
->sorflags
& SORFP_NOLIFETIMEMGMT
)
1840 if (!(apt
= apartment_get_current_or_mta()))
1841 return CO_E_NOTINITIALIZED
;
1843 called_in_original_apt
= This
->parent
&& (This
->parent
->oxid
== apt
->oxid
);
1845 EnterCriticalSection(&This
->cs
);
1846 /* only return the cached object if called from the original apartment.
1847 * in future, we might want to make the IRemUnknown proxy callable from any
1848 * apartment to avoid these checks */
1849 if (This
->remunk
&& called_in_original_apt
)
1851 /* already created - return existing object */
1852 *remunk
= This
->remunk
;
1853 IRemUnknown_AddRef(*remunk
);
1855 else if (!This
->parent
)
1857 /* disconnected - we can't create IRemUnknown */
1863 STDOBJREF stdobjref
;
1864 /* Don't want IRemUnknown lifetime management as this is IRemUnknown!
1865 * We also don't care about whether or not the stub is still alive */
1866 stdobjref
.flags
= SORFP_NOLIFETIMEMGMT
| SORF_NOPING
;
1867 stdobjref
.cPublicRefs
= 1;
1868 /* oxid of destination object */
1869 stdobjref
.oxid
= This
->oxid
;
1870 /* FIXME: what should be used for the oid? The DCOM draft doesn't say */
1871 stdobjref
.oid
= (OID
)-1;
1872 stdobjref
.ipid
= This
->oxid_info
.ipidRemUnknown
;
1874 /* do the unmarshal */
1875 hr
= unmarshal_object(&stdobjref
, apt
, This
->dest_context
,
1876 This
->dest_context_data
, &IID_IRemUnknown
,
1877 &This
->oxid_info
, (void**)remunk
);
1878 if (hr
== S_OK
&& called_in_original_apt
)
1880 This
->remunk
= *remunk
;
1881 IRemUnknown_AddRef(This
->remunk
);
1884 LeaveCriticalSection(&This
->cs
);
1885 apartment_release(apt
);
1887 TRACE("got IRemUnknown* pointer %p, hr = %#lx\n", *remunk
, hr
);
1893 * Safely increment the reference count of a proxy manager obtained from an
1894 * apartment proxy list.
1896 * This function shall be called inside the apartment's critical section.
1898 static LONG
proxy_manager_addref_if_alive(struct proxy_manager
* This
)
1900 LONG refs
= ReadNoFence(&This
->refs
);
1901 LONG old_refs
, new_refs
;
1907 /* This proxy manager is about to be destroyed */
1912 new_refs
= refs
+ 1;
1913 } while ((refs
= InterlockedCompareExchange(&This
->refs
, new_refs
, old_refs
)) != old_refs
);
1918 /* destroys a proxy manager, freeing the memory it used.
1919 * Note: this function should not be called from a list iteration in the
1920 * apartment, due to the fact that it removes itself from the apartment and
1921 * it could add a proxy to IRemUnknown into the apartment. */
1922 static void proxy_manager_destroy(struct proxy_manager
* This
)
1924 struct list
* cursor
;
1926 TRACE("oxid = %s, oid = %s\n", wine_dbgstr_longlong(This
->oxid
),
1927 wine_dbgstr_longlong(This
->oid
));
1931 EnterCriticalSection(&This
->parent
->cs
);
1933 /* remove ourself from the list of proxy objects in the apartment */
1934 LIST_FOR_EACH(cursor
, &This
->parent
->proxies
)
1936 if (cursor
== &This
->entry
)
1938 list_remove(&This
->entry
);
1943 LeaveCriticalSection(&This
->parent
->cs
);
1946 /* destroy all of the interface proxies */
1947 while ((cursor
= list_head(&This
->interfaces
)))
1949 struct ifproxy
* ifproxy
= LIST_ENTRY(cursor
, struct ifproxy
, entry
);
1950 ifproxy_destroy(ifproxy
);
1953 if (This
->remunk
) IRemUnknown_Release(This
->remunk
);
1954 CoTaskMemFree(This
->oxid_info
.psa
);
1956 This
->cs
.DebugInfo
->Spare
[0] = 0;
1957 DeleteCriticalSection(&This
->cs
);
1959 CloseHandle(This
->remoting_mutex
);
1964 /* finds the proxy manager corresponding to a given OXID and OID that has
1965 * been unmarshaled in the specified apartment. The caller must release the
1966 * reference to the proxy_manager when the object is no longer used. */
1967 static BOOL
find_proxy_manager(struct apartment
* apt
, OXID oxid
, OID oid
, struct proxy_manager
** proxy_found
)
1969 struct proxy_manager
*proxy
;
1972 EnterCriticalSection(&apt
->cs
);
1973 LIST_FOR_EACH_ENTRY(proxy
, &apt
->proxies
, struct proxy_manager
, entry
)
1975 if ((oxid
== proxy
->oxid
) && (oid
== proxy
->oid
))
1977 /* be careful of a race with ClientIdentity_Release, which would
1978 * cause us to return a proxy which is in the process of being
1980 if (proxy_manager_addref_if_alive(proxy
) != 0)
1982 *proxy_found
= proxy
;
1988 LeaveCriticalSection(&apt
->cs
);
1992 HRESULT
apartment_disconnectproxies(struct apartment
*apt
)
1994 struct proxy_manager
*proxy
;
1996 LIST_FOR_EACH_ENTRY(proxy
, &apt
->proxies
, struct proxy_manager
, entry
)
1998 proxy_manager_disconnect(proxy
);
2004 /********************** StdMarshal implementation ****************************/
2008 IMarshal IMarshal_iface
;
2011 void *dest_context_data
;
2014 static inline struct stdmarshal
*impl_from_StdMarshal(IMarshal
*iface
)
2016 return CONTAINING_RECORD(iface
, struct stdmarshal
, IMarshal_iface
);
2019 static HRESULT WINAPI
StdMarshalImpl_QueryInterface(IMarshal
*iface
, REFIID riid
, void **ppv
)
2022 if (IsEqualIID(&IID_IUnknown
, riid
) || IsEqualIID(&IID_IMarshal
, riid
))
2025 IMarshal_AddRef(iface
);
2028 FIXME("No interface for %s.\n", debugstr_guid(riid
));
2029 return E_NOINTERFACE
;
2032 static ULONG WINAPI
StdMarshalImpl_AddRef(IMarshal
*iface
)
2034 struct stdmarshal
*marshal
= impl_from_StdMarshal(iface
);
2035 return InterlockedIncrement(&marshal
->refcount
);
2038 static ULONG WINAPI
StdMarshalImpl_Release(IMarshal
*iface
)
2040 struct stdmarshal
*marshal
= impl_from_StdMarshal(iface
);
2041 ULONG refcount
= InterlockedDecrement(&marshal
->refcount
);
2049 static HRESULT WINAPI
StdMarshalImpl_GetUnmarshalClass(IMarshal
*iface
, REFIID riid
, void *pv
,
2050 DWORD dwDestContext
, void *pvDestContext
, DWORD mshlflags
, CLSID
*pCid
)
2052 *pCid
= CLSID_StdMarshal
;
2056 static HRESULT WINAPI
StdMarshalImpl_GetMarshalSizeMax(IMarshal
*iface
, REFIID riid
, void *pv
,
2057 DWORD dwDestContext
, void *pvDestContext
, DWORD mshlflags
, DWORD
*pSize
)
2059 *pSize
= FIELD_OFFSET(OBJREF
, u_objref
.u_standard
.saResAddr
.aStringArray
);
2063 static HRESULT WINAPI
StdMarshalImpl_MarshalInterface(IMarshal
*iface
, IStream
*stream
, REFIID riid
, void *pv
,
2064 DWORD dest_context
, void *dest_context_data
, DWORD mshlflags
)
2069 struct apartment
*apt
;
2071 TRACE("(...,%s,...)\n", debugstr_guid(riid
));
2073 if (!(apt
= apartment_get_current_or_mta()))
2075 ERR("Apartment not initialized\n");
2076 return CO_E_NOTINITIALIZED
;
2079 /* make sure this apartment can be reached from other threads / processes */
2080 rpc_start_remoting(apt
);
2082 fill_std_objref(&objref
, riid
, NULL
);
2083 hr
= marshal_object(apt
, &objref
.u_objref
.u_standard
.std
, riid
, pv
, dest_context
,
2084 dest_context_data
, mshlflags
);
2085 apartment_release(apt
);
2088 ERR("Failed to create ifstub, hr %#lx\n", hr
);
2092 return IStream_Write(stream
, &objref
, FIELD_OFFSET(OBJREF
, u_objref
.u_standard
.saResAddr
.aStringArray
), &res
);
2095 /* helper for StdMarshalImpl_UnmarshalInterface - does the unmarshaling with
2096 * no questions asked about the rules surrounding same-apartment unmarshals
2097 * and table marshaling */
2098 static HRESULT
unmarshal_object(const STDOBJREF
*stdobjref
, struct apartment
*apt
, MSHCTX dest_context
,
2099 void *dest_context_data
, REFIID riid
, const OXID_INFO
*oxid_info
, void **object
)
2101 struct proxy_manager
*proxy_manager
= NULL
;
2106 TRACE("stdobjref: flags = %#lx cPublicRefs = %ld oxid = %s oid = %s ipid = %s\n",
2107 stdobjref
->flags
, stdobjref
->cPublicRefs
,
2108 wine_dbgstr_longlong(stdobjref
->oxid
),
2109 wine_dbgstr_longlong(stdobjref
->oid
),
2110 debugstr_guid(&stdobjref
->ipid
));
2112 /* create a new proxy manager if one doesn't already exist for the
2114 if (!find_proxy_manager(apt
, stdobjref
->oxid
, stdobjref
->oid
, &proxy_manager
))
2116 hr
= proxy_manager_construct(apt
, stdobjref
->flags
,
2117 stdobjref
->oxid
, stdobjref
->oid
, oxid_info
,
2121 TRACE("proxy manager already created, using\n");
2125 struct ifproxy
* ifproxy
;
2127 proxy_manager_set_context(proxy_manager
, dest_context
, dest_context_data
);
2129 hr
= proxy_manager_find_ifproxy(proxy_manager
, riid
, &ifproxy
);
2130 if (hr
== E_NOINTERFACE
)
2132 IRpcChannelBuffer
*chanbuf
;
2133 hr
= rpc_create_clientchannel(&stdobjref
->oxid
, &stdobjref
->ipid
,
2134 &proxy_manager
->oxid_info
, riid
, proxy_manager
->dest_context
,
2135 proxy_manager
->dest_context_data
, &chanbuf
, apt
);
2137 hr
= proxy_manager_create_ifproxy(proxy_manager
, stdobjref
, riid
, chanbuf
, &ifproxy
);
2140 IUnknown_AddRef((IUnknown
*)ifproxy
->iface
);
2144 InterlockedExchangeAdd((LONG
*)&ifproxy
->refs
, stdobjref
->cPublicRefs
);
2145 /* get at least one external reference to the object to keep it alive */
2146 hr
= ifproxy_get_public_ref(ifproxy
);
2148 ifproxy_destroy(ifproxy
);
2152 *object
= ifproxy
->iface
;
2155 /* release our reference to the proxy manager - the client/apartment
2156 * will hold on to the remaining reference for us */
2157 if (proxy_manager
) IMultiQI_Release(&proxy_manager
->IMultiQI_iface
);
2162 static HRESULT WINAPI
StdMarshalImpl_UnmarshalInterface(IMarshal
*iface
, IStream
*stream
, REFIID riid
, void **ppv
)
2164 struct stdmarshal
*marshal
= impl_from_StdMarshal(iface
);
2169 hr
= IStream_Read(stream
, &objref
, FIELD_OFFSET(OBJREF
, u_objref
), &res
);
2170 if (hr
!= S_OK
|| (res
!= FIELD_OFFSET(OBJREF
, u_objref
)))
2172 ERR("Failed to read common OBJREF header, %#lx\n", hr
);
2173 return STG_E_READFAULT
;
2176 if (objref
.signature
!= OBJREF_SIGNATURE
)
2178 ERR("Bad OBJREF signature %#lx\n", objref
.signature
);
2179 return RPC_E_INVALID_OBJREF
;
2182 if (!(objref
.flags
& OBJREF_STANDARD
))
2184 FIXME("unsupported objref.flags = %lx\n", objref
.flags
);
2188 return std_unmarshal_interface(marshal
->dest_context
, marshal
->dest_context_data
, stream
, riid
, ppv
, TRUE
);
2191 static HRESULT WINAPI
StdMarshalImpl_ReleaseMarshalData(IMarshal
*iface
, IStream
*stream
)
2197 TRACE("%p, %p\n", iface
, stream
);
2199 hr
= IStream_Read(stream
, &objref
, FIELD_OFFSET(OBJREF
, u_objref
), &res
);
2200 if (hr
!= S_OK
|| (res
!= FIELD_OFFSET(OBJREF
, u_objref
)))
2202 ERR("Failed to read common OBJREF header, %#lx\n", hr
);
2203 return STG_E_READFAULT
;
2206 if (objref
.signature
!= OBJREF_SIGNATURE
)
2208 ERR("Bad OBJREF signature %#lx\n", objref
.signature
);
2209 return RPC_E_INVALID_OBJREF
;
2212 if (!(objref
.flags
& OBJREF_STANDARD
))
2214 FIXME("unsupported objref.flags = %lx\n", objref
.flags
);
2218 return std_release_marshal_data(stream
);
2221 static HRESULT WINAPI
StdMarshalImpl_DisconnectObject(IMarshal
*iface
, DWORD reserved
)
2223 FIXME("(), stub!\n");
2227 static const IMarshalVtbl StdMarshalVtbl
=
2229 StdMarshalImpl_QueryInterface
,
2230 StdMarshalImpl_AddRef
,
2231 StdMarshalImpl_Release
,
2232 StdMarshalImpl_GetUnmarshalClass
,
2233 StdMarshalImpl_GetMarshalSizeMax
,
2234 StdMarshalImpl_MarshalInterface
,
2235 StdMarshalImpl_UnmarshalInterface
,
2236 StdMarshalImpl_ReleaseMarshalData
,
2237 StdMarshalImpl_DisconnectObject
2240 static HRESULT
StdMarshalImpl_Construct(REFIID riid
, DWORD dest_context
, void *dest_context_data
, void **ppvObject
)
2242 struct stdmarshal
*object
;
2245 object
= malloc(sizeof(*object
));
2247 return E_OUTOFMEMORY
;
2249 object
->IMarshal_iface
.lpVtbl
= &StdMarshalVtbl
;
2250 object
->refcount
= 1;
2251 object
->dest_context
= dest_context
;
2252 object
->dest_context_data
= dest_context_data
;
2254 hr
= IMarshal_QueryInterface(&object
->IMarshal_iface
, riid
, ppvObject
);
2255 IMarshal_Release(&object
->IMarshal_iface
);
2260 HRESULT WINAPI
InternalCoStdMarshalObject(REFIID riid
, DWORD dest_context
, void *dest_context_data
, void **ppvObject
)
2262 return StdMarshalImpl_Construct(riid
, dest_context
, dest_context_data
, ppvObject
);
2265 /***********************************************************************
2266 * CoGetStandardMarshal (combase.@)
2268 HRESULT WINAPI
CoGetStandardMarshal(REFIID riid
, IUnknown
*pUnk
, DWORD dwDestContext
,
2269 void *dest_context
, DWORD flags
, IMarshal
**marshal
)
2273 FIXME("%s, NULL, %lx, %p, %lx, %p, unimplemented yet.\n", debugstr_guid(riid
), dwDestContext
,
2274 dest_context
, flags
, marshal
);
2277 TRACE("%s, %p, %lx, %p, %lx, %p\n", debugstr_guid(riid
), pUnk
, dwDestContext
, dest_context
, flags
, marshal
);
2279 return StdMarshalImpl_Construct(&IID_IMarshal
, dwDestContext
, dest_context
, (void **)marshal
);