2 * OLE32 proxy/stub handler
4 * Copyright 2002 Marcus Meissner
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 /* Documentation on MSDN:
24 * http://msdn.microsoft.com/library/en-us/com/comext_1q0p.asp
27 * http://msdn.microsoft.com/library/en-us/com/comext_1lia.asp
30 * http://msdn.microsoft.com/library/en-us/com/comext_1gfn.asp
47 #include "wine/obj_base.h"
48 #include "wine/obj_marshal.h"
49 #include "wine/obj_channel.h"
51 #include "compobj_private.h"
53 #include "wine/debug.h"
55 WINE_DEFAULT_DEBUG_CHANNEL(ole
);
57 /* From: http://msdn.microsoft.com/library/en-us/com/cmi_m_4lda.asp
59 * The first time a client requests a pointer to an interface on a
60 * particular object, COM loads an IClassFactory stub in the server
61 * process and uses it to marshal the first pointer back to the
62 * client. In the client process, COM loads the generic proxy for the
63 * class factory object and calls its implementation of IMarshal to
64 * unmarshal that first pointer. COM then creates the first interface
65 * proxy and hands it a pointer to the RPC channel. Finally, COM returns
66 * the IClassFactory pointer to the client, which uses it to call
67 * IClassFactory::CreateInstance, passing it a reference to the interface.
69 * Back in the server process, COM now creates a new instance of the
70 * object, along with a stub for the requested interface. This stub marshals
71 * the interface pointer back to the client process, where another object
72 * proxy is created, this time for the object itself. Also created is a
73 * proxy for the requested interface, a pointer to which is returned to
74 * the client. With subsequent calls to other interfaces on the object,
75 * COM will load the appropriate interface stubs and proxies as needed.
77 typedef struct _CFStub
{
78 ICOM_VTABLE(IRpcStubBuffer
) *lpvtbl
;
85 CFStub_QueryInterface(LPRPCSTUBBUFFER iface
, REFIID riid
, LPVOID
*ppv
) {
86 if (IsEqualIID(&IID_IUnknown
,riid
)||IsEqualIID(&IID_IRpcStubBuffer
,riid
)) {
88 IUnknown_AddRef(iface
);
91 FIXME("(%s), interface not supported.\n",debugstr_guid(riid
));
96 CFStub_AddRef(LPRPCSTUBBUFFER iface
) {
97 ICOM_THIS(CFStub
,iface
);
104 CFStub_Release(LPRPCSTUBBUFFER iface
) {
105 ICOM_THIS(CFStub
,iface
);
110 HeapFree(GetProcessHeap(),0,This
);
114 static HRESULT WINAPI
115 CFStub_Connect(LPRPCSTUBBUFFER iface
, IUnknown
*pUnkServer
) {
116 ICOM_THIS(CFStub
,iface
);
118 This
->pUnkServer
= pUnkServer
;
119 IUnknown_AddRef(pUnkServer
);
124 CFStub_Disconnect(LPRPCSTUBBUFFER iface
) {
125 ICOM_THIS(CFStub
,iface
);
127 IUnknown_Release(This
->pUnkServer
);
128 This
->pUnkServer
= NULL
;
130 static HRESULT WINAPI
132 LPRPCSTUBBUFFER iface
,RPCOLEMESSAGE
* msg
,IRpcChannelBuffer
* chanbuf
134 ICOM_THIS(CFStub
,iface
);
137 if (msg
->iMethod
== 3) { /* CreateInstance */
139 IClassFactory
*classfac
;
143 ULARGE_INTEGER newpos
;
144 LARGE_INTEGER seekto
;
147 if (msg
->cbBuffer
< sizeof(IID
)) {
148 FIXME("Not enough bytes in buffer (%ld instead of %d)?\n",msg
->cbBuffer
,sizeof(IID
));
151 memcpy(&iid
,msg
->Buffer
,sizeof(iid
));
152 TRACE("->CreateInstance(%s)\n",debugstr_guid(&iid
));
153 hres
= IUnknown_QueryInterface(This
->pUnkServer
,&IID_IClassFactory
,(LPVOID
*)&classfac
);
155 FIXME("Ole server does not provide a IClassFactory?\n");
158 hres
= IClassFactory_CreateInstance(classfac
,NULL
,&iid
,(LPVOID
*)&ppv
);
159 IClassFactory_Release(classfac
);
162 FIXME("Failed to create an instance of %s\n",debugstr_guid(&iid
));
165 hres
= CreateStreamOnHGlobal(0,TRUE
,&pStm
);
167 FIXME("Failed to create stream on hglobal\n");
170 hres
= CoMarshalInterface(pStm
,&iid
,ppv
,0,NULL
,0);
172 FIXME("CoMarshalInterface failed, %lx!\n",hres
);
176 hres
= IStream_Stat(pStm
,&ststg
,0);
178 FIXME("Stat failed.\n");
182 msg
->cbBuffer
= ststg
.cbSize
.s
.LowPart
;
183 msg
->Buffer
= HeapReAlloc(GetProcessHeap(),0,msg
->Buffer
,ststg
.cbSize
.s
.LowPart
);
184 seekto
.s
.LowPart
= 0;seekto
.s
.HighPart
= 0;
185 hres
= IStream_Seek(pStm
,seekto
,SEEK_SET
,&newpos
);
187 FIXME("IStream_Seek failed, %lx\n",hres
);
190 hres
= IStream_Read(pStm
,msg
->Buffer
,msg
->cbBuffer
,&res
);
192 FIXME("Stream Read failed, %lx\n",hres
);
195 IStream_Release(pStm
);
198 FIXME("(%p,%p), stub!\n",msg
,chanbuf
);
199 FIXME("iMethod is %ld\n",msg
->iMethod
);
200 FIXME("cbBuffer is %ld\n",msg
->cbBuffer
);
204 static LPRPCSTUBBUFFER WINAPI
205 CFStub_IsIIDSupported(LPRPCSTUBBUFFER iface
,REFIID riid
) {
206 FIXME("(%s), stub!\n",debugstr_guid(riid
));
211 CFStub_CountRefs(LPRPCSTUBBUFFER iface
) {
212 FIXME("(), stub!\n");
216 static HRESULT WINAPI
217 CFStub_DebugServerQueryInterface(LPRPCSTUBBUFFER iface
,void** ppv
) {
218 FIXME("(%p), stub!\n",ppv
);
222 CFStub_DebugServerRelease(LPRPCSTUBBUFFER iface
,void *pv
) {
223 FIXME("(%p), stub!\n",pv
);
226 static ICOM_VTABLE(IRpcStubBuffer
) cfstubvt
= {
227 ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE
228 CFStub_QueryInterface
,
234 CFStub_IsIIDSupported
,
236 CFStub_DebugServerQueryInterface
,
237 CFStub_DebugServerRelease
241 CFStub_Construct(LPRPCSTUBBUFFER
*ppv
) {
243 cfstub
= HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY
,sizeof(CFStub
));
245 return E_OUTOFMEMORY
;
246 *ppv
= (LPRPCSTUBBUFFER
)cfstub
;
247 cfstub
->lpvtbl
= &cfstubvt
;
252 /* Since we create proxy buffers and classfactory in a pair, there is
253 * no need for 2 seperate structs. Just put them in one, but remember
256 typedef struct _CFProxy
{
257 ICOM_VTABLE(IClassFactory
) *lpvtbl_cf
;
258 ICOM_VTABLE(IRpcProxyBuffer
) *lpvtbl_proxy
;
261 IRpcChannelBuffer
*chanbuf
;
264 static HRESULT WINAPI
IRpcProxyBufferImpl_QueryInterface(LPRPCPROXYBUFFER iface
,REFIID riid
,LPVOID
*ppv
) {
266 if (IsEqualIID(riid
,&IID_IRpcProxyBuffer
)||IsEqualIID(riid
,&IID_IUnknown
)) {
267 IRpcProxyBuffer_AddRef(iface
);
268 *ppv
= (LPVOID
)iface
;
271 FIXME("(%s), no interface.\n",debugstr_guid(riid
));
272 return E_NOINTERFACE
;
275 static ULONG WINAPI
IRpcProxyBufferImpl_AddRef(LPRPCPROXYBUFFER iface
) {
276 ICOM_THIS_MULTI(CFProxy
,lpvtbl_proxy
,iface
);
277 return ++(This
->ref
);
280 static ULONG WINAPI
IRpcProxyBufferImpl_Release(LPRPCPROXYBUFFER iface
) {
281 ICOM_THIS_MULTI(CFProxy
,lpvtbl_proxy
,iface
);
283 if (!--(This
->ref
)) {
284 IRpcChannelBuffer_Release(This
->chanbuf
);This
->chanbuf
= NULL
;
285 HeapFree(GetProcessHeap(),0,This
);
291 static HRESULT WINAPI
IRpcProxyBufferImpl_Connect(LPRPCPROXYBUFFER iface
,IRpcChannelBuffer
* pRpcChannelBuffer
) {
292 ICOM_THIS_MULTI(CFProxy
,lpvtbl_proxy
,iface
);
294 This
->chanbuf
= pRpcChannelBuffer
;
295 IRpcChannelBuffer_AddRef(This
->chanbuf
);
298 static void WINAPI
IRpcProxyBufferImpl_Disconnect(LPRPCPROXYBUFFER iface
) {
299 ICOM_THIS_MULTI(CFProxy
,lpvtbl_proxy
,iface
);
301 IRpcChannelBuffer_Release(This
->chanbuf
);
302 This
->chanbuf
= NULL
;
306 static HRESULT WINAPI
307 CFProxy_QueryInterface(LPCLASSFACTORY iface
,REFIID riid
, LPVOID
*ppv
) {
309 if (IsEqualIID(&IID_IClassFactory
,riid
) || IsEqualIID(&IID_IUnknown
,riid
)) {
310 *ppv
= (LPVOID
)iface
;
311 IClassFactory_AddRef(iface
);
314 if (IsEqualIID(riid
,&IID_IMarshal
)) /* just to avoid debugoutput */
315 return E_NOINTERFACE
;
316 FIXME("Unhandled interface: %s\n",debugstr_guid(riid
));
317 return E_NOINTERFACE
;
320 static ULONG WINAPI
CFProxy_AddRef(LPCLASSFACTORY iface
) {
321 ICOM_THIS_MULTI(CFProxy
,lpvtbl_cf
,iface
);
326 static ULONG WINAPI
CFProxy_Release(LPCLASSFACTORY iface
) {
327 ICOM_THIS_MULTI(CFProxy
,lpvtbl_cf
,iface
);
331 HeapFree(GetProcessHeap(),0,This
);
335 static HRESULT WINAPI
CFProxy_CreateInstance(
336 LPCLASSFACTORY iface
,
337 LPUNKNOWN pUnkOuter
,/* [in] */
338 REFIID riid
, /* [in] */
339 LPVOID
*ppv
/* [out] */
341 ICOM_THIS_MULTI(CFProxy
,lpvtbl_cf
,iface
);
348 TRACE("(%p,%s,%p)\n",pUnkOuter
,debugstr_guid(riid
),ppv
);
350 /* Send CreateInstance to the remote classfactory.
352 * Data: Only the 'IID'.
355 msg
.cbBuffer
= sizeof(*riid
);
357 hres
= IRpcChannelBuffer_GetBuffer(This
->chanbuf
,&msg
,&IID_IClassFactory
);
359 FIXME("IRpcChannelBuffer_GetBuffer failed with %lx?\n",hres
);
362 memcpy(msg
.Buffer
,riid
,sizeof(*riid
));
363 hres
= IRpcChannelBuffer_SendReceive(This
->chanbuf
,&msg
,&srstatus
);
365 FIXME("IRpcChannelBuffer_SendReceive failed with %lx?\n",hres
);
369 if (!msg
.cbBuffer
) /* interface not found on remote */
372 /* We got back: [Marshaled Interface data] */
373 TRACE("got %ld bytes data.\n",msg
.cbBuffer
);
374 hGlobal
= GlobalAlloc(GMEM_MOVEABLE
|GMEM_NODISCARD
|GMEM_SHARE
,msg
.cbBuffer
);
375 memcpy(GlobalLock(hGlobal
),msg
.Buffer
,msg
.cbBuffer
);
376 hres
= CreateStreamOnHGlobal(hGlobal
,TRUE
,&pStream
);
378 FIXME("CreateStreamOnHGlobal failed with %lx\n",hres
);
381 hres
= CoUnmarshalInterface(
386 IStream_Release(pStream
); /* Does GlobalFree hGlobal too. */
388 FIXME("CoMarshalInterface failed, %lx\n",hres
);
394 static HRESULT WINAPI
CFProxy_LockServer(LPCLASSFACTORY iface
,BOOL fLock
) {
395 /*ICOM_THIS_MULTI(CFProxy,lpvtbl_cf,iface);*/
396 FIXME("(%d), stub!\n",fLock
);
397 /* basically: write BOOL, read empty */
401 static ICOM_VTABLE(IRpcProxyBuffer
) pspbvtbl
= {
402 ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE
403 IRpcProxyBufferImpl_QueryInterface
,
404 IRpcProxyBufferImpl_AddRef
,
405 IRpcProxyBufferImpl_Release
,
406 IRpcProxyBufferImpl_Connect
,
407 IRpcProxyBufferImpl_Disconnect
409 static ICOM_VTABLE(IClassFactory
) cfproxyvt
= {
410 ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE
411 CFProxy_QueryInterface
,
414 CFProxy_CreateInstance
,
419 CFProxy_Construct(LPVOID
*ppv
,LPVOID
*ppProxy
) {
422 cf
= HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY
,sizeof(CFProxy
));
424 return E_OUTOFMEMORY
;
426 cf
->lpvtbl_cf
= &cfproxyvt
;
427 cf
->lpvtbl_proxy
= &pspbvtbl
;
428 cf
->ref
= 2; /* we return 2 references to the object! */
429 *ppv
= &(cf
->lpvtbl_cf
);
430 *ppProxy
= &(cf
->lpvtbl_proxy
);
435 /********************* OLE Proxy/Stub Factory ********************************/
436 static HRESULT WINAPI
437 PSFacBuf_QueryInterface(LPPSFACTORYBUFFER iface
, REFIID iid
, LPVOID
*ppv
) {
438 if (IsEqualIID(iid
,&IID_IPSFactoryBuffer
)||IsEqualIID(iid
,&IID_IUnknown
)) {
439 *ppv
= (LPVOID
)iface
;
440 /* No ref counting, static class */
443 FIXME("(%s) unknown IID?\n",debugstr_guid(iid
));
444 return E_NOINTERFACE
;
447 static ULONG WINAPI
PSFacBuf_AddRef(LPPSFACTORYBUFFER iface
) { return 2; }
448 static ULONG WINAPI
PSFacBuf_Release(LPPSFACTORYBUFFER iface
) { return 1; }
450 static HRESULT WINAPI
451 PSFacBuf_CreateProxy(
452 LPPSFACTORYBUFFER iface
, IUnknown
* pUnkOuter
, REFIID riid
,
453 IRpcProxyBuffer
**ppProxy
, LPVOID
*ppv
455 if (IsEqualIID(&IID_IClassFactory
,riid
))
456 return CFProxy_Construct(ppv
,(LPVOID
*)ppProxy
);
457 FIXME("proxying not implemented for (%s) yet!\n",debugstr_guid(riid
));
461 static HRESULT WINAPI
463 LPPSFACTORYBUFFER iface
, REFIID riid
,IUnknown
*pUnkServer
,
464 IRpcStubBuffer
** ppStub
468 TRACE("(%s,%p,%p)\n",debugstr_guid(riid
),pUnkServer
,ppStub
);
470 if (IsEqualIID(&IID_IClassFactory
,riid
)) {
471 hres
= CFStub_Construct(ppStub
);
473 IRpcStubBuffer_Connect((*ppStub
),pUnkServer
);
476 FIXME("stubbing not implemented for (%s) yet!\n",debugstr_guid(riid
));
480 static ICOM_VTABLE(IPSFactoryBuffer
) psfacbufvtbl
= {
481 ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE
482 PSFacBuf_QueryInterface
,
485 PSFacBuf_CreateProxy
,
489 /* This is the whole PSFactoryBuffer object, just the vtableptr */
490 static ICOM_VTABLE(IPSFactoryBuffer
) *lppsfac
= &psfacbufvtbl
;
492 /***********************************************************************
493 * DllGetClassObject [OLE32.63]
495 HRESULT WINAPI
OLE32_DllGetClassObject(REFCLSID rclsid
, REFIID iid
,LPVOID
*ppv
)
498 if (IsEqualIID(rclsid
,&CLSID_PSFactoryBuffer
)) {
500 /* If we create a ps factory, we might need a stub manager later
506 if (IsEqualIID(rclsid
,&CLSID_DfMarshal
)&&IsEqualIID(iid
,&IID_IClassFactory
))
507 return MARSHAL_GetStandardMarshalCF(ppv
);
508 FIXME("\n\tCLSID:\t%s,\n\tIID:\t%s\n",debugstr_guid(rclsid
),debugstr_guid(iid
));
509 return CLASS_E_CLASSNOTAVAILABLE
;