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:
23 * (Top level COM documentation)
24 * http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnanchor/html/componentdevelopmentank.asp
27 * http://msdn.microsoft.com/library/default.asp?url=/library/en-us/com/htm/comext_1q0p.asp
30 * http://msdn.microsoft.com/library/default.asp?url=/library/en-us/com/htm/comext_1lia.asp
33 * http://msdn.microsoft.com/library/default.asp?url=/library/en-us/com/htm/comext_1gfn.asp
44 #define NONAMELESSUNION
45 #define NONAMELESSSTRUCT
56 #include "compobj_private.h"
58 #include "wine/debug.h"
60 WINE_DEFAULT_DEBUG_CHANNEL(ole);
62 const CLSID CLSID_DfMarshal = { 0x0000030b, 0, 0, {0xc0, 0, 0, 0, 0, 0, 0, 0x46} };
63 const CLSID CLSID_PSFactoryBuffer = { 0x00000320, 0, 0, {0xc0, 0, 0, 0, 0, 0, 0, 0x46} };
65 /* From: http://msdn.microsoft.com/library/en-us/com/cmi_m_4lda.asp
67 * The first time a client requests a pointer to an interface on a
68 * particular object, COM loads an IClassFactory stub in the server
69 * process and uses it to marshal the first pointer back to the
70 * client. In the client process, COM loads the generic proxy for the
71 * class factory object and calls its implementation of IMarshal to
72 * unmarshal that first pointer. COM then creates the first interface
73 * proxy and hands it a pointer to the RPC channel. Finally, COM returns
74 * the IClassFactory pointer to the client, which uses it to call
75 * IClassFactory::CreateInstance, passing it a reference to the interface.
77 * Back in the server process, COM now creates a new instance of the
78 * object, along with a stub for the requested interface. This stub marshals
79 * the interface pointer back to the client process, where another object
80 * proxy is created, this time for the object itself. Also created is a
81 * proxy for the requested interface, a pointer to which is returned to
82 * the client. With subsequent calls to other interfaces on the object,
83 * COM will load the appropriate interface stubs and proxies as needed.
85 typedef struct _CFStub {
86 IRpcStubBufferVtbl *lpvtbl;
93 CFStub_QueryInterface(LPRPCSTUBBUFFER iface, REFIID riid, LPVOID *ppv) {
94 if (IsEqualIID(&IID_IUnknown,riid)||IsEqualIID(&IID_IRpcStubBuffer,riid)) {
96 IUnknown_AddRef(iface);
99 FIXME("(%s), interface not supported.\n",debugstr_guid(riid));
100 return E_NOINTERFACE;
104 CFStub_AddRef(LPRPCSTUBBUFFER iface) {
105 ICOM_THIS(CFStub,iface);
112 CFStub_Release(LPRPCSTUBBUFFER iface) {
113 ICOM_THIS(CFStub,iface);
118 HeapFree(GetProcessHeap(),0,This);
122 static HRESULT WINAPI
123 CFStub_Connect(LPRPCSTUBBUFFER iface, IUnknown *pUnkServer) {
124 ICOM_THIS(CFStub,iface);
126 This->pUnkServer = pUnkServer;
127 IUnknown_AddRef(pUnkServer);
132 CFStub_Disconnect(LPRPCSTUBBUFFER iface) {
133 ICOM_THIS(CFStub,iface);
135 IUnknown_Release(This->pUnkServer);
136 This->pUnkServer = NULL;
138 static HRESULT WINAPI
140 LPRPCSTUBBUFFER iface,RPCOLEMESSAGE* msg,IRpcChannelBuffer* chanbuf
142 ICOM_THIS(CFStub,iface);
145 if (msg->iMethod == 3) { /* CreateInstance */
147 IClassFactory *classfac;
151 ULARGE_INTEGER newpos;
152 LARGE_INTEGER seekto;
155 if (msg->cbBuffer < sizeof(IID)) {
156 FIXME("Not enough bytes in buffer (%ld instead of %d)?\n",msg->cbBuffer,sizeof(IID));
159 memcpy(&iid,msg->Buffer,sizeof(iid));
160 TRACE("->CreateInstance(%s)\n",debugstr_guid(&iid));
161 hres = IUnknown_QueryInterface(This->pUnkServer,&IID_IClassFactory,(LPVOID*)&classfac);
163 FIXME("Ole server does not provide a IClassFactory?\n");
166 hres = IClassFactory_CreateInstance(classfac,NULL,&iid,(LPVOID*)&ppv);
167 IClassFactory_Release(classfac);
170 FIXME("Failed to create an instance of %s\n",debugstr_guid(&iid));
173 hres = CreateStreamOnHGlobal(0,TRUE,&pStm);
175 FIXME("Failed to create stream on hglobal\n");
178 hres = CoMarshalInterface(pStm,&iid,ppv,0,NULL,0);
180 FIXME("CoMarshalInterface failed, %lx!\n",hres);
184 hres = IStream_Stat(pStm,&ststg,0);
186 FIXME("Stat failed.\n");
190 msg->cbBuffer = ststg.cbSize.u.LowPart;
193 msg->Buffer = HeapReAlloc(GetProcessHeap(),0,msg->Buffer,ststg.cbSize.u.LowPart);
195 msg->Buffer = HeapAlloc(GetProcessHeap(),0,ststg.cbSize.u.LowPart);
197 seekto.u.LowPart = 0;seekto.u.HighPart = 0;
198 hres = IStream_Seek(pStm,seekto,SEEK_SET,&newpos);
200 FIXME("IStream_Seek failed, %lx\n",hres);
203 hres = IStream_Read(pStm,msg->Buffer,msg->cbBuffer,&res);
205 FIXME("Stream Read failed, %lx\n",hres);
208 IStream_Release(pStm);
211 FIXME("(%p,%p), stub!\n",msg,chanbuf);
212 FIXME("iMethod is %ld\n",msg->iMethod);
213 FIXME("cbBuffer is %ld\n",msg->cbBuffer);
217 static LPRPCSTUBBUFFER WINAPI
218 CFStub_IsIIDSupported(LPRPCSTUBBUFFER iface,REFIID riid) {
219 FIXME("(%s), stub!\n",debugstr_guid(riid));
224 CFStub_CountRefs(LPRPCSTUBBUFFER iface) {
225 FIXME("(), stub!\n");
229 static HRESULT WINAPI
230 CFStub_DebugServerQueryInterface(LPRPCSTUBBUFFER iface,void** ppv) {
231 FIXME("(%p), stub!\n",ppv);
235 CFStub_DebugServerRelease(LPRPCSTUBBUFFER iface,void *pv) {
236 FIXME("(%p), stub!\n",pv);
239 static IRpcStubBufferVtbl cfstubvt = {
240 ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE
241 CFStub_QueryInterface,
247 CFStub_IsIIDSupported,
249 CFStub_DebugServerQueryInterface,
250 CFStub_DebugServerRelease
254 CFStub_Construct(LPRPCSTUBBUFFER *ppv) {
256 cfstub = HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,sizeof(CFStub));
258 return E_OUTOFMEMORY;
259 *ppv = (LPRPCSTUBBUFFER)cfstub;
260 cfstub->lpvtbl = &cfstubvt;
265 /* Since we create proxy buffers and classfactory in a pair, there is
266 * no need for 2 separate structs. Just put them in one, but remember
269 typedef struct _CFProxy {
270 IClassFactoryVtbl *lpvtbl_cf;
271 IRpcProxyBufferVtbl *lpvtbl_proxy;
274 IRpcChannelBuffer *chanbuf;
277 static HRESULT WINAPI IRpcProxyBufferImpl_QueryInterface(LPRPCPROXYBUFFER iface,REFIID riid,LPVOID *ppv) {
279 if (IsEqualIID(riid,&IID_IRpcProxyBuffer)||IsEqualIID(riid,&IID_IUnknown)) {
280 IRpcProxyBuffer_AddRef(iface);
281 *ppv = (LPVOID)iface;
284 FIXME("(%s), no interface.\n",debugstr_guid(riid));
285 return E_NOINTERFACE;
288 static ULONG WINAPI IRpcProxyBufferImpl_AddRef(LPRPCPROXYBUFFER iface) {
289 ICOM_THIS_MULTI(CFProxy,lpvtbl_proxy,iface);
290 return ++(This->ref);
293 static ULONG WINAPI IRpcProxyBufferImpl_Release(LPRPCPROXYBUFFER iface) {
294 ICOM_THIS_MULTI(CFProxy,lpvtbl_proxy,iface);
296 if (!--(This->ref)) {
297 IRpcChannelBuffer_Release(This->chanbuf);This->chanbuf = NULL;
298 HeapFree(GetProcessHeap(),0,This);
304 static HRESULT WINAPI IRpcProxyBufferImpl_Connect(LPRPCPROXYBUFFER iface,IRpcChannelBuffer* pRpcChannelBuffer) {
305 ICOM_THIS_MULTI(CFProxy,lpvtbl_proxy,iface);
307 This->chanbuf = pRpcChannelBuffer;
308 IRpcChannelBuffer_AddRef(This->chanbuf);
311 static void WINAPI IRpcProxyBufferImpl_Disconnect(LPRPCPROXYBUFFER iface) {
312 ICOM_THIS_MULTI(CFProxy,lpvtbl_proxy,iface);
314 IRpcChannelBuffer_Release(This->chanbuf);
315 This->chanbuf = NULL;
319 static HRESULT WINAPI
320 CFProxy_QueryInterface(LPCLASSFACTORY iface,REFIID riid, LPVOID *ppv) {
322 if (IsEqualIID(&IID_IClassFactory,riid) || IsEqualIID(&IID_IUnknown,riid)) {
323 *ppv = (LPVOID)iface;
324 IClassFactory_AddRef(iface);
327 if (IsEqualIID(riid,&IID_IMarshal)) /* just to avoid debug output */
328 return E_NOINTERFACE;
329 FIXME("Unhandled interface: %s\n",debugstr_guid(riid));
330 return E_NOINTERFACE;
333 static ULONG WINAPI CFProxy_AddRef(LPCLASSFACTORY iface) {
334 ICOM_THIS_MULTI(CFProxy,lpvtbl_cf,iface);
339 static ULONG WINAPI CFProxy_Release(LPCLASSFACTORY iface) {
340 ICOM_THIS_MULTI(CFProxy,lpvtbl_cf,iface);
344 HeapFree(GetProcessHeap(),0,This);
348 static HRESULT WINAPI CFProxy_CreateInstance(
349 LPCLASSFACTORY iface,
350 LPUNKNOWN pUnkOuter,/* [in] */
351 REFIID riid, /* [in] */
352 LPVOID *ppv /* [out] */
354 ICOM_THIS_MULTI(CFProxy,lpvtbl_cf,iface);
361 TRACE("(%p,%s,%p)\n",pUnkOuter,debugstr_guid(riid),ppv);
363 /* Send CreateInstance to the remote classfactory.
365 * Data: Only the 'IID'.
368 msg.cbBuffer = sizeof(*riid);
370 hres = IRpcChannelBuffer_GetBuffer(This->chanbuf,&msg,&IID_IClassFactory);
372 FIXME("IRpcChannelBuffer_GetBuffer failed with %lx?\n",hres);
375 memcpy(msg.Buffer,riid,sizeof(*riid));
376 hres = IRpcChannelBuffer_SendReceive(This->chanbuf,&msg,&srstatus);
378 FIXME("IRpcChannelBuffer_SendReceive failed with %lx?\n",hres);
382 if (!msg.cbBuffer) /* interface not found on remote */
385 /* We got back: [Marshalled Interface data] */
386 TRACE("got %ld bytes data.\n",msg.cbBuffer);
387 hGlobal = GlobalAlloc(GMEM_MOVEABLE|GMEM_NODISCARD|GMEM_SHARE,msg.cbBuffer);
388 memcpy(GlobalLock(hGlobal),msg.Buffer,msg.cbBuffer);
389 hres = CreateStreamOnHGlobal(hGlobal,TRUE,&pStream);
391 FIXME("CreateStreamOnHGlobal failed with %lx\n",hres);
394 hres = CoUnmarshalInterface(
399 IStream_Release(pStream); /* Does GlobalFree hGlobal too. */
401 FIXME("CoMarshalInterface failed, %lx\n",hres);
407 static HRESULT WINAPI CFProxy_LockServer(LPCLASSFACTORY iface,BOOL fLock) {
408 /*ICOM_THIS_MULTI(CFProxy,lpvtbl_cf,iface);*/
409 FIXME("(%d), stub!\n",fLock);
410 /* basically: write BOOL, read empty */
414 static IRpcProxyBufferVtbl pspbvtbl = {
415 ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE
416 IRpcProxyBufferImpl_QueryInterface,
417 IRpcProxyBufferImpl_AddRef,
418 IRpcProxyBufferImpl_Release,
419 IRpcProxyBufferImpl_Connect,
420 IRpcProxyBufferImpl_Disconnect
422 static IClassFactoryVtbl cfproxyvt = {
423 ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE
424 CFProxy_QueryInterface,
427 CFProxy_CreateInstance,
432 CFProxy_Construct(LPVOID *ppv,LPVOID *ppProxy) {
435 cf = HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,sizeof(CFProxy));
437 return E_OUTOFMEMORY;
439 cf->lpvtbl_cf = &cfproxyvt;
440 cf->lpvtbl_proxy = &pspbvtbl;
441 /* 1 reference for the proxy and 1 for the object */
443 *ppv = &(cf->lpvtbl_cf);
444 *ppProxy = &(cf->lpvtbl_proxy);
449 /********************* OLE Proxy/Stub Factory ********************************/
450 static HRESULT WINAPI
451 PSFacBuf_QueryInterface(LPPSFACTORYBUFFER iface, REFIID iid, LPVOID *ppv) {
452 if (IsEqualIID(iid,&IID_IPSFactoryBuffer)||IsEqualIID(iid,&IID_IUnknown)) {
453 *ppv = (LPVOID)iface;
454 /* No ref counting, static class */
457 FIXME("(%s) unknown IID?\n",debugstr_guid(iid));
458 return E_NOINTERFACE;
461 static ULONG WINAPI PSFacBuf_AddRef(LPPSFACTORYBUFFER iface) { return 2; }
462 static ULONG WINAPI PSFacBuf_Release(LPPSFACTORYBUFFER iface) { return 1; }
464 static HRESULT WINAPI
465 PSFacBuf_CreateProxy(
466 LPPSFACTORYBUFFER iface, IUnknown* pUnkOuter, REFIID riid,
467 IRpcProxyBuffer **ppProxy, LPVOID *ppv
469 if (IsEqualIID(&IID_IClassFactory,riid) ||
470 IsEqualIID(&IID_IUnknown,riid)
472 return CFProxy_Construct(ppv,(LPVOID*)ppProxy);
473 FIXME("proxying not implemented for (%s) yet!\n",debugstr_guid(riid));
477 static HRESULT WINAPI
479 LPPSFACTORYBUFFER iface, REFIID riid,IUnknown *pUnkServer,
480 IRpcStubBuffer** ppStub
484 TRACE("(%s,%p,%p)\n",debugstr_guid(riid),pUnkServer,ppStub);
486 if (IsEqualIID(&IID_IClassFactory,riid) ||
487 IsEqualIID(&IID_IUnknown,riid)
489 hres = CFStub_Construct(ppStub);
491 IRpcStubBuffer_Connect((*ppStub),pUnkServer);
494 FIXME("stubbing not implemented for (%s) yet!\n",debugstr_guid(riid));
498 static IPSFactoryBufferVtbl psfacbufvtbl = {
499 ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE
500 PSFacBuf_QueryInterface,
503 PSFacBuf_CreateProxy,
507 /* This is the whole PSFactoryBuffer object, just the vtableptr */
508 static IPSFactoryBufferVtbl *lppsfac = &psfacbufvtbl;
510 /***********************************************************************
511 * DllGetClassObject [OLE32.@]
513 HRESULT WINAPI OLE32_DllGetClassObject(REFCLSID rclsid, REFIID iid,LPVOID *ppv)
516 if (IsEqualIID(rclsid,&CLSID_PSFactoryBuffer)) {
520 if (IsEqualIID(rclsid,&CLSID_DfMarshal)&&(
521 IsEqualIID(iid,&IID_IClassFactory) ||
522 IsEqualIID(iid,&IID_IUnknown)
525 return MARSHAL_GetStandardMarshalCF(ppv);
526 if (IsEqualIID(rclsid,&CLSID_StdGlobalInterfaceTable) && (IsEqualIID(iid,&IID_IClassFactory) || IsEqualIID(iid,&IID_IUnknown)))
527 return StdGlobalInterfaceTable_GetFactory(ppv);
529 FIXME("\n\tCLSID:\t%s,\n\tIID:\t%s\n",debugstr_guid(rclsid),debugstr_guid(iid));
530 return CLASS_E_CLASSNOTAVAILABLE;