2 * OLE32 proxy/stub handler
4 * Copyright 2002 Marcus Meissner
5 * Copyright 2001 Ove Kåven, TransGaming Technologies
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
22 /* Documentation on MSDN:
24 * (Top level COM documentation)
25 * http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnanchor/html/componentdevelopmentank.asp
28 * http://msdn.microsoft.com/library/default.asp?url=/library/en-us/com/htm/comext_1q0p.asp
31 * http://msdn.microsoft.com/library/default.asp?url=/library/en-us/com/htm/comext_1lia.asp
34 * http://msdn.microsoft.com/library/default.asp?url=/library/en-us/com/htm/comext_1gfn.asp
46 #define NONAMELESSUNION
47 #define NONAMELESSSTRUCT
59 #include "compobj_private.h"
62 #include "wine/debug.h"
64 WINE_DEFAULT_DEBUG_CHANNEL(ole);
66 static ULONG WINAPI RURpcProxyBufferImpl_Release(LPRPCPROXYBUFFER iface);
68 /* From: http://msdn.microsoft.com/library/en-us/com/cmi_m_4lda.asp
70 * The first time a client requests a pointer to an interface on a
71 * particular object, COM loads an IClassFactory stub in the server
72 * process and uses it to marshal the first pointer back to the
73 * client. In the client process, COM loads the generic proxy for the
74 * class factory object and calls its implementation of IMarshal to
75 * unmarshal that first pointer. COM then creates the first interface
76 * proxy and hands it a pointer to the RPC channel. Finally, COM returns
77 * the IClassFactory pointer to the client, which uses it to call
78 * IClassFactory::CreateInstance, passing it a reference to the interface.
80 * Back in the server process, COM now creates a new instance of the
81 * object, along with a stub for the requested interface. This stub marshals
82 * the interface pointer back to the client process, where another object
83 * proxy is created, this time for the object itself. Also created is a
84 * proxy for the requested interface, a pointer to which is returned to
85 * the client. With subsequent calls to other interfaces on the object,
86 * COM will load the appropriate interface stubs and proxies as needed.
88 typedef struct _CFStub {
89 const IRpcStubBufferVtbl *lpvtbl;
96 CFStub_QueryInterface(LPRPCSTUBBUFFER iface, REFIID riid, LPVOID *ppv) {
97 if (IsEqualIID(&IID_IUnknown,riid)||IsEqualIID(&IID_IRpcStubBuffer,riid)) {
99 IUnknown_AddRef(iface);
102 FIXME("(%s), interface not supported.\n",debugstr_guid(riid));
103 return E_NOINTERFACE;
107 CFStub_AddRef(LPRPCSTUBBUFFER iface) {
108 CFStub *This = (CFStub *)iface;
109 return InterlockedIncrement(&This->ref);
113 CFStub_Release(LPRPCSTUBBUFFER iface) {
114 CFStub *This = (CFStub *)iface;
117 ref = InterlockedDecrement(&This->ref);
119 IRpcStubBuffer_Disconnect(iface);
120 HeapFree(GetProcessHeap(),0,This);
125 static HRESULT WINAPI
126 CFStub_Connect(LPRPCSTUBBUFFER iface, IUnknown *pUnkServer) {
127 CFStub *This = (CFStub *)iface;
129 This->pUnkServer = pUnkServer;
130 IUnknown_AddRef(pUnkServer);
135 CFStub_Disconnect(LPRPCSTUBBUFFER iface) {
136 CFStub *This = (CFStub *)iface;
138 if (This->pUnkServer) {
139 IUnknown_Release(This->pUnkServer);
140 This->pUnkServer = NULL;
144 static HRESULT WINAPI
146 LPRPCSTUBBUFFER iface,RPCOLEMESSAGE* msg,IRpcChannelBuffer* chanbuf
148 CFStub *This = (CFStub *)iface;
151 if (msg->iMethod == 3) { /* CreateInstance */
153 IClassFactory *classfac;
157 ULARGE_INTEGER newpos;
158 LARGE_INTEGER seekto;
161 if (msg->cbBuffer < sizeof(IID)) {
162 FIXME("Not enough bytes in buffer (%d)?\n",msg->cbBuffer);
165 memcpy(&iid,msg->Buffer,sizeof(iid));
166 TRACE("->CreateInstance(%s)\n",debugstr_guid(&iid));
167 hres = IUnknown_QueryInterface(This->pUnkServer,&IID_IClassFactory,(LPVOID*)&classfac);
169 FIXME("Ole server does not provide an IClassFactory?\n");
172 hres = IClassFactory_CreateInstance(classfac,NULL,&iid,(LPVOID*)&ppv);
173 IClassFactory_Release(classfac);
176 FIXME("Failed to create an instance of %s\n",debugstr_guid(&iid));
179 hres = CreateStreamOnHGlobal(0,TRUE,&pStm);
181 FIXME("Failed to create stream on hglobal\n");
184 hres = IStream_Write(pStm, &ppv, sizeof(ppv), NULL);
186 ERR("IStream_Write failed, 0x%08x\n", hres);
190 hres = CoMarshalInterface(pStm,&iid,ppv,0,NULL,0);
191 IUnknown_Release(ppv);
193 FIXME("CoMarshalInterface failed, %x!\n",hres);
197 hres = IStream_Stat(pStm,&ststg,0);
199 FIXME("Stat failed.\n");
203 msg->cbBuffer = ststg.cbSize.u.LowPart;
206 IRpcChannelBuffer_GetBuffer(chanbuf, msg, &IID_IClassFactory);
207 if (hres) return hres;
209 seekto.u.LowPart = 0;seekto.u.HighPart = 0;
210 hres = IStream_Seek(pStm,seekto,SEEK_SET,&newpos);
212 FIXME("IStream_Seek failed, %x\n",hres);
215 hres = IStream_Read(pStm,msg->Buffer,msg->cbBuffer,&res);
217 FIXME("Stream Read failed, %x\n",hres);
220 IStream_Release(pStm);
223 FIXME("(%p,%p), stub!\n",msg,chanbuf);
224 FIXME("iMethod is %d\n",msg->iMethod);
225 FIXME("cbBuffer is %d\n",msg->cbBuffer);
229 static LPRPCSTUBBUFFER WINAPI
230 CFStub_IsIIDSupported(LPRPCSTUBBUFFER iface,REFIID riid) {
231 FIXME("(%s), stub!\n",debugstr_guid(riid));
236 CFStub_CountRefs(LPRPCSTUBBUFFER iface) {
237 FIXME("(), stub!\n");
241 static HRESULT WINAPI
242 CFStub_DebugServerQueryInterface(LPRPCSTUBBUFFER iface,void** ppv) {
243 FIXME("(%p), stub!\n",ppv);
247 CFStub_DebugServerRelease(LPRPCSTUBBUFFER iface,void *pv) {
248 FIXME("(%p), stub!\n",pv);
251 static const IRpcStubBufferVtbl cfstubvt = {
252 CFStub_QueryInterface,
258 CFStub_IsIIDSupported,
260 CFStub_DebugServerQueryInterface,
261 CFStub_DebugServerRelease
265 CFStub_Construct(LPRPCSTUBBUFFER *ppv) {
267 cfstub = HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,sizeof(CFStub));
269 return E_OUTOFMEMORY;
270 *ppv = (LPRPCSTUBBUFFER)cfstub;
271 cfstub->lpvtbl = &cfstubvt;
276 /* Since we create proxy buffers and classfactory in a pair, there is
277 * no need for 2 separate structs. Just put them in one, but remember
280 typedef struct _CFProxy {
281 const IClassFactoryVtbl *lpvtbl_cf;
282 const IRpcProxyBufferVtbl *lpvtbl_proxy;
285 IRpcChannelBuffer *chanbuf;
286 IUnknown *outer_unknown;
289 static HRESULT WINAPI IRpcProxyBufferImpl_QueryInterface(LPRPCPROXYBUFFER iface,REFIID riid,LPVOID *ppv) {
291 if (IsEqualIID(riid,&IID_IRpcProxyBuffer)||IsEqualIID(riid,&IID_IUnknown)) {
292 IRpcProxyBuffer_AddRef(iface);
293 *ppv = (LPVOID)iface;
296 FIXME("(%s), no interface.\n",debugstr_guid(riid));
297 return E_NOINTERFACE;
300 static ULONG WINAPI IRpcProxyBufferImpl_AddRef(LPRPCPROXYBUFFER iface) {
301 ICOM_THIS_MULTI(CFProxy,lpvtbl_proxy,iface);
302 return InterlockedIncrement(&This->ref);
305 static ULONG WINAPI IRpcProxyBufferImpl_Release(LPRPCPROXYBUFFER iface) {
306 ICOM_THIS_MULTI(CFProxy,lpvtbl_proxy,iface);
307 ULONG ref = InterlockedDecrement(&This->ref);
310 IRpcProxyBuffer_Disconnect(iface);
311 HeapFree(GetProcessHeap(),0,This);
316 static HRESULT WINAPI IRpcProxyBufferImpl_Connect(LPRPCPROXYBUFFER iface,IRpcChannelBuffer* pRpcChannelBuffer) {
317 ICOM_THIS_MULTI(CFProxy,lpvtbl_proxy,iface);
319 This->chanbuf = pRpcChannelBuffer;
320 IRpcChannelBuffer_AddRef(This->chanbuf);
323 static void WINAPI IRpcProxyBufferImpl_Disconnect(LPRPCPROXYBUFFER iface) {
324 ICOM_THIS_MULTI(CFProxy,lpvtbl_proxy,iface);
326 IRpcChannelBuffer_Release(This->chanbuf);
327 This->chanbuf = NULL;
331 static HRESULT WINAPI
332 CFProxy_QueryInterface(LPCLASSFACTORY iface,REFIID riid, LPVOID *ppv) {
333 ICOM_THIS_MULTI(CFProxy,lpvtbl_cf,iface);
334 if (This->outer_unknown) return IUnknown_QueryInterface(This->outer_unknown, riid, ppv);
336 if (IsEqualIID(&IID_IClassFactory,riid) || IsEqualIID(&IID_IUnknown,riid)) {
337 *ppv = (LPVOID)iface;
338 IClassFactory_AddRef(iface);
341 if (IsEqualIID(riid,&IID_IMarshal)) /* just to avoid debug output */
342 return E_NOINTERFACE;
343 FIXME("Unhandled interface: %s\n",debugstr_guid(riid));
344 return E_NOINTERFACE;
347 static ULONG WINAPI CFProxy_AddRef(LPCLASSFACTORY iface) {
348 ICOM_THIS_MULTI(CFProxy,lpvtbl_cf,iface);
349 if (This->outer_unknown) return IUnknown_AddRef(This->outer_unknown);
350 return InterlockedIncrement(&This->ref);
353 static ULONG WINAPI CFProxy_Release(LPCLASSFACTORY iface) {
354 ICOM_THIS_MULTI(CFProxy,lpvtbl_cf,iface);
355 if (This->outer_unknown)
356 return IUnknown_Release(This->outer_unknown);
358 return IRpcProxyBufferImpl_Release((IRpcProxyBuffer *)&This->lpvtbl_proxy);
361 static HRESULT WINAPI CFProxy_CreateInstance(
362 LPCLASSFACTORY iface,
363 LPUNKNOWN pUnkOuter,/* [in] */
364 REFIID riid, /* [in] */
365 LPVOID *ppv /* [out] */
367 ICOM_THIS_MULTI(CFProxy,lpvtbl_cf,iface);
374 TRACE("(%p,%s,%p)\n",pUnkOuter,debugstr_guid(riid),ppv);
376 /* Send CreateInstance to the remote classfactory.
378 * Data: Only the 'IID'.
381 msg.cbBuffer = sizeof(*riid);
383 hres = IRpcChannelBuffer_GetBuffer(This->chanbuf,&msg,&IID_IClassFactory);
385 FIXME("IRpcChannelBuffer_GetBuffer failed with %x?\n",hres);
388 memcpy(msg.Buffer,riid,sizeof(*riid));
389 hres = IRpcChannelBuffer_SendReceive(This->chanbuf,&msg,&srstatus);
391 FIXME("IRpcChannelBuffer_SendReceive failed with %x?\n",hres);
392 IRpcChannelBuffer_FreeBuffer(This->chanbuf,&msg);
396 if (!msg.cbBuffer) { /* interface not found on remote */
397 IRpcChannelBuffer_FreeBuffer(This->chanbuf,&msg);
401 /* We got back: [Marshalled Interface data] */
402 TRACE("got %d bytes data.\n",msg.cbBuffer);
403 hGlobal = GlobalAlloc(GMEM_MOVEABLE|GMEM_NODISCARD|GMEM_SHARE,msg.cbBuffer);
404 memcpy(GlobalLock(hGlobal),msg.Buffer,msg.cbBuffer);
405 hres = CreateStreamOnHGlobal(hGlobal,TRUE,&pStream);
407 FIXME("CreateStreamOnHGlobal failed with %x\n",hres);
408 IRpcChannelBuffer_FreeBuffer(This->chanbuf,&msg);
411 hres = IStream_Read(pStream, ppv, sizeof(*ppv), NULL);
415 hres = CoUnmarshalInterface(
421 IStream_Release(pStream); /* Does GlobalFree hGlobal too. */
423 IRpcChannelBuffer_FreeBuffer(This->chanbuf,&msg);
426 FIXME("CoMarshalInterface failed, %x\n",hres);
432 static HRESULT WINAPI CFProxy_LockServer(LPCLASSFACTORY iface,BOOL fLock) {
433 /*ICOM_THIS_MULTI(CFProxy,lpvtbl_cf,iface);*/
434 FIXME("(%d), stub!\n",fLock);
435 /* basically: write BOOL, read empty */
439 static const IRpcProxyBufferVtbl pspbvtbl = {
440 IRpcProxyBufferImpl_QueryInterface,
441 IRpcProxyBufferImpl_AddRef,
442 IRpcProxyBufferImpl_Release,
443 IRpcProxyBufferImpl_Connect,
444 IRpcProxyBufferImpl_Disconnect
446 static const IClassFactoryVtbl cfproxyvt = {
447 CFProxy_QueryInterface,
450 CFProxy_CreateInstance,
455 CFProxy_Construct(IUnknown *pUnkOuter, LPVOID *ppv,LPVOID *ppProxy) {
458 cf = HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,sizeof(CFProxy));
460 return E_OUTOFMEMORY;
462 cf->lpvtbl_cf = &cfproxyvt;
463 cf->lpvtbl_proxy = &pspbvtbl;
464 /* one reference for the proxy buffer */
466 cf->outer_unknown = pUnkOuter;
467 *ppv = &(cf->lpvtbl_cf);
468 *ppProxy = &(cf->lpvtbl_proxy);
469 /* and one reference for the object */
470 IUnknown_AddRef((IUnknown *)*ppv);
475 /********************* IRemUnknown Proxy/Stub ********************************/
479 const IRpcStubBufferVtbl *lpVtbl;
484 static HRESULT WINAPI RemUnkStub_QueryInterface(LPRPCSTUBBUFFER iface,
488 RemUnkStub *This = (RemUnkStub *)iface;
489 TRACE("(%p)->QueryInterface(%s,%p)\n",This,debugstr_guid(riid),obj);
490 if (IsEqualGUID(&IID_IUnknown,riid) ||
491 IsEqualGUID(&IID_IRpcStubBuffer,riid)) {
495 return E_NOINTERFACE;
498 static ULONG WINAPI RemUnkStub_AddRef(LPRPCSTUBBUFFER iface)
500 RemUnkStub *This = (RemUnkStub *)iface;
501 TRACE("(%p)->AddRef()\n",This);
502 return InterlockedIncrement(&This->refs);
505 static ULONG WINAPI RemUnkStub_Release(LPRPCSTUBBUFFER iface)
507 RemUnkStub *This = (RemUnkStub *)iface;
509 TRACE("(%p)->Release()\n",This);
510 refs = InterlockedDecrement(&This->refs);
512 HeapFree(GetProcessHeap(), 0, This);
516 static HRESULT WINAPI RemUnkStub_Connect(LPRPCSTUBBUFFER iface,
517 LPUNKNOWN lpUnkServer)
519 RemUnkStub *This = (RemUnkStub *)iface;
520 TRACE("(%p)->Connect(%p)\n",This,lpUnkServer);
521 This->iface = (IRemUnknown*)lpUnkServer;
522 IRemUnknown_AddRef(This->iface);
526 static void WINAPI RemUnkStub_Disconnect(LPRPCSTUBBUFFER iface)
528 RemUnkStub *This = (RemUnkStub *)iface;
529 TRACE("(%p)->Disconnect()\n",This);
530 IUnknown_Release(This->iface);
534 static HRESULT WINAPI RemUnkStub_Invoke(LPRPCSTUBBUFFER iface,
536 LPRPCCHANNELBUFFER pChannel)
538 RemUnkStub *This = (RemUnkStub *)iface;
539 ULONG iMethod = pMsg->iMethod;
540 LPBYTE buf = pMsg->Buffer;
541 HRESULT hr = RPC_E_INVALIDMETHOD;
543 TRACE("(%p)->Invoke(%p,%p) method %d\n", This, pMsg, pChannel, iMethod);
546 case 3: /* RemQueryInterface */
552 REMQIRESULT *pQIResults = NULL;
555 memcpy(&ipid, buf, sizeof(ipid));
557 memcpy(&cRefs, buf, sizeof(cRefs));
558 buf += sizeof(cRefs);
559 memcpy(&cIids, buf, sizeof(cIids));
560 buf += sizeof(cIids);
563 hr = IRemUnknown_RemQueryInterface(This->iface, &ipid, cRefs, cIids, iids, &pQIResults);
566 pMsg->cbBuffer = cIids * sizeof(REMQIRESULT) + sizeof(HRESULT);
568 IRpcChannelBuffer_GetBuffer(pChannel, pMsg, &IID_IRemUnknown);
571 *(HRESULT *)buf = hr;
572 buf += sizeof(HRESULT);
575 /* FIXME: pQIResults is a unique pointer so pQIResults can be NULL! */
576 memcpy(buf, pQIResults, cIids * sizeof(REMQIRESULT));
580 case 4: /* RemAddRef */
587 memcpy(&cIids, buf, sizeof(USHORT));
588 buf += sizeof(USHORT);
589 ir = (REMINTERFACEREF*)buf;
590 pResults = CoTaskMemAlloc(cIids * sizeof(HRESULT));
591 if (!pResults) return E_OUTOFMEMORY;
593 hr = IRemUnknown_RemAddRef(This->iface, cIids, ir, pResults);
596 pMsg->cbBuffer = cIids * sizeof(HRESULT);
598 IRpcChannelBuffer_GetBuffer(pChannel, pMsg, &IID_IRemUnknown);
602 memcpy(buf, pResults, cIids * sizeof(HRESULT));
605 CoTaskMemFree(pResults);
609 case 5: /* RemRelease */
615 memcpy(&cIids, buf, sizeof(USHORT));
616 buf += sizeof(USHORT);
617 ir = (REMINTERFACEREF*)buf;
619 hr = IRemUnknown_RemRelease(This->iface, cIids, ir);
623 IRpcChannelBuffer_GetBuffer(pChannel, pMsg, &IID_IRemUnknown);
630 static LPRPCSTUBBUFFER WINAPI RemUnkStub_IsIIDSupported(LPRPCSTUBBUFFER iface,
633 RemUnkStub *This = (RemUnkStub *)iface;
634 TRACE("(%p)->IsIIDSupported(%s)\n", This, debugstr_guid(riid));
635 return IsEqualGUID(&IID_IRemUnknown, riid) ? iface : NULL;
638 static ULONG WINAPI RemUnkStub_CountRefs(LPRPCSTUBBUFFER iface)
640 RemUnkStub *This = (RemUnkStub *)iface;
641 FIXME("(%p)->CountRefs()\n", This);
645 static HRESULT WINAPI RemUnkStub_DebugServerQueryInterface(LPRPCSTUBBUFFER iface,
648 RemUnkStub *This = (RemUnkStub *)iface;
649 FIXME("(%p)->DebugServerQueryInterface(%p)\n",This,ppv);
650 return E_NOINTERFACE;
653 static void WINAPI RemUnkStub_DebugServerRelease(LPRPCSTUBBUFFER iface,
656 RemUnkStub *This = (RemUnkStub *)iface;
657 FIXME("(%p)->DebugServerRelease(%p)\n", This, pv);
660 static const IRpcStubBufferVtbl RemUnkStub_VTable =
662 RemUnkStub_QueryInterface,
666 RemUnkStub_Disconnect,
668 RemUnkStub_IsIIDSupported,
669 RemUnkStub_CountRefs,
670 RemUnkStub_DebugServerQueryInterface,
671 RemUnkStub_DebugServerRelease
674 static HRESULT RemUnkStub_Construct(IRpcStubBuffer **ppStub)
676 RemUnkStub *This = HeapAlloc(GetProcessHeap(), 0, sizeof(*This));
677 if (!This) return E_OUTOFMEMORY;
678 This->lpVtbl = &RemUnkStub_VTable;
681 *ppStub = (IRpcStubBuffer*)This;
686 typedef struct _RemUnkProxy {
687 const IRemUnknownVtbl *lpvtbl_remunk;
688 const IRpcProxyBufferVtbl *lpvtbl_proxy;
691 IRpcChannelBuffer *chan;
692 IUnknown *outer_unknown;
695 static HRESULT WINAPI RemUnkProxy_QueryInterface(LPREMUNKNOWN iface, REFIID riid, void **ppv)
697 RemUnkProxy *This = (RemUnkProxy *)iface;
698 if (This->outer_unknown)
699 return IUnknown_QueryInterface(This->outer_unknown, riid, ppv);
700 if (IsEqualIID(riid, &IID_IUnknown) ||
701 IsEqualIID(riid, &IID_IRemUnknown))
703 IRemUnknown_AddRef(iface);
704 *ppv = (LPVOID)iface;
707 return E_NOINTERFACE;
710 static ULONG WINAPI RemUnkProxy_AddRef(LPREMUNKNOWN iface)
712 RemUnkProxy *This = (RemUnkProxy *)iface;
715 TRACE("(%p)->AddRef()\n",This);
717 if (This->outer_unknown)
718 refs = IUnknown_AddRef(This->outer_unknown);
720 refs = InterlockedIncrement(&This->refs);
724 static ULONG WINAPI RemUnkProxy_Release(LPREMUNKNOWN iface)
726 RemUnkProxy *This = (RemUnkProxy *)iface;
728 TRACE("(%p)->Release()\n",This);
729 if (This->outer_unknown)
730 return IUnknown_Release(This->outer_unknown);
732 return IRpcProxyBufferImpl_Release((IRpcProxyBuffer *)&This->lpvtbl_proxy);
735 static HRESULT WINAPI RemUnkProxy_RemQueryInterface(LPREMUNKNOWN iface,
740 REMQIRESULT** ppQIResults)
742 RemUnkProxy *This = (RemUnkProxy *)iface;
747 TRACE("(%p)->(%s,%d,%d,%p,%p)\n",This,
748 debugstr_guid(ripid),cRefs,cIids,iids,ppQIResults);
751 memset(&msg, 0, sizeof(msg));
753 msg.cbBuffer = sizeof(IPID) + sizeof(ULONG) +
754 sizeof(USHORT) + cIids*sizeof(IID);
755 hr = IRpcChannelBuffer_GetBuffer(This->chan, &msg, &IID_IRemUnknown);
757 LPBYTE buf = msg.Buffer;
758 memcpy(buf, ripid, sizeof(IPID));
760 memcpy(buf, &cRefs, sizeof(ULONG));
761 buf += sizeof(ULONG);
762 memcpy(buf, &cIids, sizeof(USHORT));
763 buf += sizeof(USHORT);
764 memcpy(buf, iids, cIids*sizeof(IID));
766 hr = IRpcChannelBuffer_SendReceive(This->chan, &msg, &status);
771 hr = *(HRESULT *)buf;
772 buf += sizeof(HRESULT);
776 *ppQIResults = CoTaskMemAlloc(cIids*sizeof(REMQIRESULT));
777 memcpy(*ppQIResults, buf, cIids*sizeof(REMQIRESULT));
780 IRpcChannelBuffer_FreeBuffer(This->chan, &msg);
786 static HRESULT WINAPI RemUnkProxy_RemAddRef(LPREMUNKNOWN iface,
787 USHORT cInterfaceRefs,
788 REMINTERFACEREF* InterfaceRefs,
791 RemUnkProxy *This = (RemUnkProxy *)iface;
796 TRACE("(%p)->(%d,%p,%p)\n",This,
797 cInterfaceRefs,InterfaceRefs,pResults);
799 memset(&msg, 0, sizeof(msg));
801 msg.cbBuffer = sizeof(USHORT) + cInterfaceRefs*sizeof(REMINTERFACEREF);
802 hr = IRpcChannelBuffer_GetBuffer(This->chan, &msg, &IID_IRemUnknown);
804 LPBYTE buf = msg.Buffer;
805 memcpy(buf, &cInterfaceRefs, sizeof(USHORT));
806 buf += sizeof(USHORT);
807 memcpy(buf, InterfaceRefs, cInterfaceRefs*sizeof(REMINTERFACEREF));
809 hr = IRpcChannelBuffer_SendReceive(This->chan, &msg, &status);
813 memcpy(pResults, buf, cInterfaceRefs*sizeof(HRESULT));
816 IRpcChannelBuffer_FreeBuffer(This->chan, &msg);
822 static HRESULT WINAPI RemUnkProxy_RemRelease(LPREMUNKNOWN iface,
823 USHORT cInterfaceRefs,
824 REMINTERFACEREF* InterfaceRefs)
826 RemUnkProxy *This = (RemUnkProxy *)iface;
831 TRACE("(%p)->(%d,%p)\n",This,
832 cInterfaceRefs,InterfaceRefs);
834 memset(&msg, 0, sizeof(msg));
836 msg.cbBuffer = sizeof(USHORT) + cInterfaceRefs*sizeof(REMINTERFACEREF);
837 hr = IRpcChannelBuffer_GetBuffer(This->chan, &msg, &IID_IRemUnknown);
839 LPBYTE buf = msg.Buffer;
840 memcpy(buf, &cInterfaceRefs, sizeof(USHORT));
841 buf += sizeof(USHORT);
842 memcpy(buf, InterfaceRefs, cInterfaceRefs*sizeof(REMINTERFACEREF));
844 hr = IRpcChannelBuffer_SendReceive(This->chan, &msg, &status);
846 IRpcChannelBuffer_FreeBuffer(This->chan, &msg);
852 static const IRemUnknownVtbl RemUnkProxy_VTable =
854 RemUnkProxy_QueryInterface,
857 RemUnkProxy_RemQueryInterface,
858 RemUnkProxy_RemAddRef,
859 RemUnkProxy_RemRelease
863 static HRESULT WINAPI RURpcProxyBufferImpl_QueryInterface(LPRPCPROXYBUFFER iface,REFIID riid,LPVOID *ppv) {
865 if (IsEqualIID(riid,&IID_IRpcProxyBuffer)||IsEqualIID(riid,&IID_IUnknown)) {
866 IRpcProxyBuffer_AddRef(iface);
867 *ppv = (LPVOID)iface;
870 FIXME("(%s), no interface.\n",debugstr_guid(riid));
871 return E_NOINTERFACE;
874 static ULONG WINAPI RURpcProxyBufferImpl_AddRef(LPRPCPROXYBUFFER iface) {
875 ICOM_THIS_MULTI(RemUnkProxy,lpvtbl_proxy,iface);
876 TRACE("%p, %d\n", iface, This->refs + 1);
877 return InterlockedIncrement(&This->refs);
880 static ULONG WINAPI RURpcProxyBufferImpl_Release(LPRPCPROXYBUFFER iface) {
881 ICOM_THIS_MULTI(RemUnkProxy,lpvtbl_proxy,iface);
882 ULONG ref = InterlockedDecrement(&This->refs);
883 TRACE("%p, %d\n", iface, ref);
885 IRpcProxyBuffer_Disconnect(iface);
886 HeapFree(GetProcessHeap(),0,This);
891 static HRESULT WINAPI RURpcProxyBufferImpl_Connect(LPRPCPROXYBUFFER iface,IRpcChannelBuffer* pRpcChannelBuffer) {
892 ICOM_THIS_MULTI(RemUnkProxy,lpvtbl_proxy,iface);
894 TRACE("%p, %p\n", iface, pRpcChannelBuffer);
895 This->chan = pRpcChannelBuffer;
896 IRpcChannelBuffer_AddRef(This->chan);
899 static void WINAPI RURpcProxyBufferImpl_Disconnect(LPRPCPROXYBUFFER iface) {
900 ICOM_THIS_MULTI(RemUnkProxy,lpvtbl_proxy,iface);
901 TRACE("%p, %p\n", iface, This->chan);
903 IRpcChannelBuffer_Release(This->chan);
909 static const IRpcProxyBufferVtbl RURpcProxyBuffer_VTable = {
910 RURpcProxyBufferImpl_QueryInterface,
911 RURpcProxyBufferImpl_AddRef,
912 RURpcProxyBufferImpl_Release,
913 RURpcProxyBufferImpl_Connect,
914 RURpcProxyBufferImpl_Disconnect
918 RemUnkProxy_Construct(IUnknown *pUnkOuter, LPVOID *ppv,LPVOID *ppProxy) {
921 This = HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,sizeof(*This));
923 return E_OUTOFMEMORY;
925 This->lpvtbl_remunk = &RemUnkProxy_VTable;
926 This->lpvtbl_proxy = &RURpcProxyBuffer_VTable;
927 /* only one reference for the proxy buffer */
929 This->outer_unknown = pUnkOuter;
930 *ppv = &(This->lpvtbl_remunk);
931 *ppProxy = &(This->lpvtbl_proxy);
932 /* and one reference for the object */
933 IUnknown_AddRef((IUnknown *)*ppv);
938 /********************* OLE Proxy/Stub Factory ********************************/
939 static HRESULT WINAPI
940 PSFacBuf_QueryInterface(LPPSFACTORYBUFFER iface, REFIID iid, LPVOID *ppv) {
941 if (IsEqualIID(iid,&IID_IPSFactoryBuffer)||IsEqualIID(iid,&IID_IUnknown)) {
942 *ppv = (LPVOID)iface;
943 /* No ref counting, static class */
946 FIXME("(%s) unknown IID?\n",debugstr_guid(iid));
947 return E_NOINTERFACE;
950 static ULONG WINAPI PSFacBuf_AddRef(LPPSFACTORYBUFFER iface) { return 2; }
951 static ULONG WINAPI PSFacBuf_Release(LPPSFACTORYBUFFER iface) { return 1; }
953 static HRESULT WINAPI
954 PSFacBuf_CreateProxy(
955 LPPSFACTORYBUFFER iface, IUnknown* pUnkOuter, REFIID riid,
956 IRpcProxyBuffer **ppProxy, LPVOID *ppv
958 if (IsEqualIID(&IID_IClassFactory,riid))
959 return CFProxy_Construct(pUnkOuter, ppv,(LPVOID*)ppProxy);
960 else if (IsEqualIID(&IID_IRemUnknown,riid))
961 return RemUnkProxy_Construct(pUnkOuter, ppv,(LPVOID*)ppProxy);
962 FIXME("proxying not implemented for (%s) yet!\n",debugstr_guid(riid));
966 static HRESULT WINAPI
968 LPPSFACTORYBUFFER iface, REFIID riid,IUnknown *pUnkServer,
969 IRpcStubBuffer** ppStub
973 TRACE("(%s,%p,%p)\n",debugstr_guid(riid),pUnkServer,ppStub);
975 if (IsEqualIID(&IID_IClassFactory, riid) ||
976 IsEqualIID(&IID_IUnknown, riid) /* FIXME: fixup stub manager and remove this*/) {
977 hres = CFStub_Construct(ppStub);
979 IRpcStubBuffer_Connect((*ppStub),pUnkServer);
981 } else if (IsEqualIID(&IID_IRemUnknown,riid)) {
982 hres = RemUnkStub_Construct(ppStub);
984 IRpcStubBuffer_Connect((*ppStub),pUnkServer);
987 FIXME("stubbing not implemented for (%s) yet!\n",debugstr_guid(riid));
991 static const IPSFactoryBufferVtbl psfacbufvtbl = {
992 PSFacBuf_QueryInterface,
995 PSFacBuf_CreateProxy,
999 /* This is the whole PSFactoryBuffer object, just the vtableptr */
1000 static const IPSFactoryBufferVtbl *lppsfac = &psfacbufvtbl;
1002 /***********************************************************************
1003 * DllGetClassObject [OLE32.@]
1005 HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID iid,LPVOID *ppv)
1008 if (IsEqualIID(rclsid, &CLSID_PSFactoryBuffer))
1009 return IPSFactoryBuffer_QueryInterface((IPSFactoryBuffer *)&lppsfac, iid, ppv);
1010 if (IsEqualIID(rclsid,&CLSID_DfMarshal)&&(
1011 IsEqualIID(iid,&IID_IClassFactory) ||
1012 IsEqualIID(iid,&IID_IUnknown)
1015 return MARSHAL_GetStandardMarshalCF(ppv);
1016 if (IsEqualIID(rclsid,&CLSID_StdGlobalInterfaceTable) && (IsEqualIID(iid,&IID_IClassFactory) || IsEqualIID(iid,&IID_IUnknown)))
1017 return StdGlobalInterfaceTable_GetFactory(ppv);
1018 if (IsEqualCLSID(rclsid, &CLSID_FileMoniker))
1019 return FileMonikerCF_Create(iid, ppv);
1020 if (IsEqualCLSID(rclsid, &CLSID_ItemMoniker))
1021 return ItemMonikerCF_Create(iid, ppv);
1022 if (IsEqualCLSID(rclsid, &CLSID_AntiMoniker))
1023 return AntiMonikerCF_Create(iid, ppv);
1024 if (IsEqualCLSID(rclsid, &CLSID_CompositeMoniker))
1025 return CompositeMonikerCF_Create(iid, ppv);
1026 if (IsEqualCLSID(rclsid, &CLSID_ClassMoniker))
1027 return ClassMonikerCF_Create(iid, ppv);
1029 FIXME("\n\tCLSID:\t%s,\n\tIID:\t%s\n",debugstr_guid(rclsid),debugstr_guid(iid));
1030 return CLASS_E_CLASSNOTAVAILABLE;