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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 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 const CLSID CLSID_DfMarshal
= { 0x0000030b, 0, 0, {0xc0, 0, 0, 0, 0, 0, 0, 0x46} };
67 const CLSID CLSID_PSFactoryBuffer
= { 0x00000320, 0, 0, {0xc0, 0, 0, 0, 0, 0, 0, 0x46} };
69 /* From: http://msdn.microsoft.com/library/en-us/com/cmi_m_4lda.asp
71 * The first time a client requests a pointer to an interface on a
72 * particular object, COM loads an IClassFactory stub in the server
73 * process and uses it to marshal the first pointer back to the
74 * client. In the client process, COM loads the generic proxy for the
75 * class factory object and calls its implementation of IMarshal to
76 * unmarshal that first pointer. COM then creates the first interface
77 * proxy and hands it a pointer to the RPC channel. Finally, COM returns
78 * the IClassFactory pointer to the client, which uses it to call
79 * IClassFactory::CreateInstance, passing it a reference to the interface.
81 * Back in the server process, COM now creates a new instance of the
82 * object, along with a stub for the requested interface. This stub marshals
83 * the interface pointer back to the client process, where another object
84 * proxy is created, this time for the object itself. Also created is a
85 * proxy for the requested interface, a pointer to which is returned to
86 * the client. With subsequent calls to other interfaces on the object,
87 * COM will load the appropriate interface stubs and proxies as needed.
89 typedef struct _CFStub
{
90 const IRpcStubBufferVtbl
*lpvtbl
;
97 CFStub_QueryInterface(LPRPCSTUBBUFFER iface
, REFIID riid
, LPVOID
*ppv
) {
98 if (IsEqualIID(&IID_IUnknown
,riid
)||IsEqualIID(&IID_IRpcStubBuffer
,riid
)) {
100 IUnknown_AddRef(iface
);
103 FIXME("(%s), interface not supported.\n",debugstr_guid(riid
));
104 return E_NOINTERFACE
;
108 CFStub_AddRef(LPRPCSTUBBUFFER iface
) {
109 CFStub
*This
= (CFStub
*)iface
;
110 return InterlockedIncrement(&This
->ref
);
114 CFStub_Release(LPRPCSTUBBUFFER iface
) {
115 CFStub
*This
= (CFStub
*)iface
;
118 ref
= InterlockedDecrement(&This
->ref
);
120 IRpcStubBuffer_Disconnect(iface
);
121 HeapFree(GetProcessHeap(),0,This
);
126 static HRESULT WINAPI
127 CFStub_Connect(LPRPCSTUBBUFFER iface
, IUnknown
*pUnkServer
) {
128 CFStub
*This
= (CFStub
*)iface
;
130 This
->pUnkServer
= pUnkServer
;
131 IUnknown_AddRef(pUnkServer
);
136 CFStub_Disconnect(LPRPCSTUBBUFFER iface
) {
137 CFStub
*This
= (CFStub
*)iface
;
139 if (This
->pUnkServer
) {
140 IUnknown_Release(This
->pUnkServer
);
141 This
->pUnkServer
= NULL
;
145 static HRESULT WINAPI
147 LPRPCSTUBBUFFER iface
,RPCOLEMESSAGE
* msg
,IRpcChannelBuffer
* chanbuf
149 CFStub
*This
= (CFStub
*)iface
;
152 if (msg
->iMethod
== 3) { /* CreateInstance */
154 IClassFactory
*classfac
;
158 ULARGE_INTEGER newpos
;
159 LARGE_INTEGER seekto
;
162 if (msg
->cbBuffer
< sizeof(IID
)) {
163 FIXME("Not enough bytes in buffer (%ld instead of %d)?\n",msg
->cbBuffer
,sizeof(IID
));
166 memcpy(&iid
,msg
->Buffer
,sizeof(iid
));
167 TRACE("->CreateInstance(%s)\n",debugstr_guid(&iid
));
168 hres
= IUnknown_QueryInterface(This
->pUnkServer
,&IID_IClassFactory
,(LPVOID
*)&classfac
);
170 FIXME("Ole server does not provide an IClassFactory?\n");
173 hres
= IClassFactory_CreateInstance(classfac
,NULL
,&iid
,(LPVOID
*)&ppv
);
174 IClassFactory_Release(classfac
);
177 FIXME("Failed to create an instance of %s\n",debugstr_guid(&iid
));
180 hres
= CreateStreamOnHGlobal(0,TRUE
,&pStm
);
182 FIXME("Failed to create stream on hglobal\n");
185 hres
= CoMarshalInterface(pStm
,&iid
,ppv
,0,NULL
,0);
186 IUnknown_Release((IUnknown
*)ppv
);
188 FIXME("CoMarshalInterface failed, %lx!\n",hres
);
192 hres
= IStream_Stat(pStm
,&ststg
,0);
194 FIXME("Stat failed.\n");
198 msg
->cbBuffer
= ststg
.cbSize
.u
.LowPart
;
200 I_RpcGetBuffer((RPC_MESSAGE
*)msg
);
201 if (hres
) return hres
;
203 seekto
.u
.LowPart
= 0;seekto
.u
.HighPart
= 0;
204 hres
= IStream_Seek(pStm
,seekto
,SEEK_SET
,&newpos
);
206 FIXME("IStream_Seek failed, %lx\n",hres
);
209 hres
= IStream_Read(pStm
,msg
->Buffer
,msg
->cbBuffer
,&res
);
211 FIXME("Stream Read failed, %lx\n",hres
);
214 IStream_Release(pStm
);
217 FIXME("(%p,%p), stub!\n",msg
,chanbuf
);
218 FIXME("iMethod is %ld\n",msg
->iMethod
);
219 FIXME("cbBuffer is %ld\n",msg
->cbBuffer
);
223 static LPRPCSTUBBUFFER WINAPI
224 CFStub_IsIIDSupported(LPRPCSTUBBUFFER iface
,REFIID riid
) {
225 FIXME("(%s), stub!\n",debugstr_guid(riid
));
230 CFStub_CountRefs(LPRPCSTUBBUFFER iface
) {
231 FIXME("(), stub!\n");
235 static HRESULT WINAPI
236 CFStub_DebugServerQueryInterface(LPRPCSTUBBUFFER iface
,void** ppv
) {
237 FIXME("(%p), stub!\n",ppv
);
241 CFStub_DebugServerRelease(LPRPCSTUBBUFFER iface
,void *pv
) {
242 FIXME("(%p), stub!\n",pv
);
245 static const IRpcStubBufferVtbl cfstubvt
= {
246 CFStub_QueryInterface
,
252 CFStub_IsIIDSupported
,
254 CFStub_DebugServerQueryInterface
,
255 CFStub_DebugServerRelease
259 CFStub_Construct(LPRPCSTUBBUFFER
*ppv
) {
261 cfstub
= HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY
,sizeof(CFStub
));
263 return E_OUTOFMEMORY
;
264 *ppv
= (LPRPCSTUBBUFFER
)cfstub
;
265 cfstub
->lpvtbl
= &cfstubvt
;
270 /* Since we create proxy buffers and classfactory in a pair, there is
271 * no need for 2 separate structs. Just put them in one, but remember
274 typedef struct _CFProxy
{
275 const IClassFactoryVtbl
*lpvtbl_cf
;
276 const IRpcProxyBufferVtbl
*lpvtbl_proxy
;
279 IRpcChannelBuffer
*chanbuf
;
280 IUnknown
*outer_unknown
;
283 static HRESULT WINAPI
IRpcProxyBufferImpl_QueryInterface(LPRPCPROXYBUFFER iface
,REFIID riid
,LPVOID
*ppv
) {
285 if (IsEqualIID(riid
,&IID_IRpcProxyBuffer
)||IsEqualIID(riid
,&IID_IUnknown
)) {
286 IRpcProxyBuffer_AddRef(iface
);
287 *ppv
= (LPVOID
)iface
;
290 FIXME("(%s), no interface.\n",debugstr_guid(riid
));
291 return E_NOINTERFACE
;
294 static ULONG WINAPI
IRpcProxyBufferImpl_AddRef(LPRPCPROXYBUFFER iface
) {
295 ICOM_THIS_MULTI(CFProxy
,lpvtbl_proxy
,iface
);
296 return InterlockedIncrement(&This
->ref
);
299 static ULONG WINAPI
IRpcProxyBufferImpl_Release(LPRPCPROXYBUFFER iface
) {
300 ICOM_THIS_MULTI(CFProxy
,lpvtbl_proxy
,iface
);
301 ULONG ref
= InterlockedDecrement(&This
->ref
);
304 IRpcProxyBuffer_Disconnect(iface
);
305 HeapFree(GetProcessHeap(),0,This
);
310 static HRESULT WINAPI
IRpcProxyBufferImpl_Connect(LPRPCPROXYBUFFER iface
,IRpcChannelBuffer
* pRpcChannelBuffer
) {
311 ICOM_THIS_MULTI(CFProxy
,lpvtbl_proxy
,iface
);
313 This
->chanbuf
= pRpcChannelBuffer
;
314 IRpcChannelBuffer_AddRef(This
->chanbuf
);
317 static void WINAPI
IRpcProxyBufferImpl_Disconnect(LPRPCPROXYBUFFER iface
) {
318 ICOM_THIS_MULTI(CFProxy
,lpvtbl_proxy
,iface
);
320 IRpcChannelBuffer_Release(This
->chanbuf
);
321 This
->chanbuf
= NULL
;
325 static HRESULT WINAPI
326 CFProxy_QueryInterface(LPCLASSFACTORY iface
,REFIID riid
, LPVOID
*ppv
) {
327 ICOM_THIS_MULTI(CFProxy
,lpvtbl_cf
,iface
);
328 if (This
->outer_unknown
) return IUnknown_QueryInterface(This
->outer_unknown
, riid
, ppv
);
330 if (IsEqualIID(&IID_IClassFactory
,riid
) || IsEqualIID(&IID_IUnknown
,riid
)) {
331 *ppv
= (LPVOID
)iface
;
332 IClassFactory_AddRef(iface
);
335 if (IsEqualIID(riid
,&IID_IMarshal
)) /* just to avoid debug output */
336 return E_NOINTERFACE
;
337 FIXME("Unhandled interface: %s\n",debugstr_guid(riid
));
338 return E_NOINTERFACE
;
341 static ULONG WINAPI
CFProxy_AddRef(LPCLASSFACTORY iface
) {
342 ICOM_THIS_MULTI(CFProxy
,lpvtbl_cf
,iface
);
343 if (This
->outer_unknown
) return IUnknown_AddRef(This
->outer_unknown
);
344 return InterlockedIncrement(&This
->ref
);
347 static ULONG WINAPI
CFProxy_Release(LPCLASSFACTORY iface
) {
349 ICOM_THIS_MULTI(CFProxy
,lpvtbl_cf
,iface
);
350 if (This
->outer_unknown
)
351 ref
= IUnknown_Release(This
->outer_unknown
);
353 ref
= InterlockedDecrement(&This
->ref
);
356 if (This
->chanbuf
) IRpcChannelBuffer_Release(This
->chanbuf
);
357 HeapFree(GetProcessHeap(),0,This
);
362 static HRESULT WINAPI
CFProxy_CreateInstance(
363 LPCLASSFACTORY iface
,
364 LPUNKNOWN pUnkOuter
,/* [in] */
365 REFIID riid
, /* [in] */
366 LPVOID
*ppv
/* [out] */
368 ICOM_THIS_MULTI(CFProxy
,lpvtbl_cf
,iface
);
375 TRACE("(%p,%s,%p)\n",pUnkOuter
,debugstr_guid(riid
),ppv
);
377 /* Send CreateInstance to the remote classfactory.
379 * Data: Only the 'IID'.
382 msg
.cbBuffer
= sizeof(*riid
);
384 hres
= IRpcChannelBuffer_GetBuffer(This
->chanbuf
,&msg
,&IID_IClassFactory
);
386 FIXME("IRpcChannelBuffer_GetBuffer failed with %lx?\n",hres
);
389 memcpy(msg
.Buffer
,riid
,sizeof(*riid
));
390 hres
= IRpcChannelBuffer_SendReceive(This
->chanbuf
,&msg
,&srstatus
);
392 FIXME("IRpcChannelBuffer_SendReceive failed with %lx?\n",hres
);
396 if (!msg
.cbBuffer
) /* interface not found on remote */
399 /* We got back: [Marshalled Interface data] */
400 TRACE("got %ld bytes data.\n",msg
.cbBuffer
);
401 hGlobal
= GlobalAlloc(GMEM_MOVEABLE
|GMEM_NODISCARD
|GMEM_SHARE
,msg
.cbBuffer
);
402 memcpy(GlobalLock(hGlobal
),msg
.Buffer
,msg
.cbBuffer
);
403 hres
= CreateStreamOnHGlobal(hGlobal
,TRUE
,&pStream
);
405 FIXME("CreateStreamOnHGlobal failed with %lx\n",hres
);
408 hres
= CoUnmarshalInterface(
413 IStream_Release(pStream
); /* Does GlobalFree hGlobal too. */
415 FIXME("CoMarshalInterface failed, %lx\n",hres
);
421 static HRESULT WINAPI
CFProxy_LockServer(LPCLASSFACTORY iface
,BOOL fLock
) {
422 /*ICOM_THIS_MULTI(CFProxy,lpvtbl_cf,iface);*/
423 FIXME("(%d), stub!\n",fLock
);
424 /* basically: write BOOL, read empty */
428 static const IRpcProxyBufferVtbl pspbvtbl
= {
429 IRpcProxyBufferImpl_QueryInterface
,
430 IRpcProxyBufferImpl_AddRef
,
431 IRpcProxyBufferImpl_Release
,
432 IRpcProxyBufferImpl_Connect
,
433 IRpcProxyBufferImpl_Disconnect
435 static const IClassFactoryVtbl cfproxyvt
= {
436 CFProxy_QueryInterface
,
439 CFProxy_CreateInstance
,
444 CFProxy_Construct(IUnknown
*pUnkOuter
, LPVOID
*ppv
,LPVOID
*ppProxy
) {
447 cf
= HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY
,sizeof(CFProxy
));
449 return E_OUTOFMEMORY
;
451 cf
->lpvtbl_cf
= &cfproxyvt
;
452 cf
->lpvtbl_proxy
= &pspbvtbl
;
453 /* one reference for the proxy buffer */
455 cf
->outer_unknown
= pUnkOuter
;
456 *ppv
= &(cf
->lpvtbl_cf
);
457 *ppProxy
= &(cf
->lpvtbl_proxy
);
458 /* and one reference for the object */
459 IUnknown_AddRef((IUnknown
*)*ppv
);
464 /********************* IRemUnknown Proxy/Stub ********************************/
468 const IRpcStubBufferVtbl
*lpVtbl
;
473 static HRESULT WINAPI
RemUnkStub_QueryInterface(LPRPCSTUBBUFFER iface
,
477 RemUnkStub
*This
= (RemUnkStub
*)iface
;
478 TRACE("(%p)->QueryInterface(%s,%p)\n",This
,debugstr_guid(riid
),obj
);
479 if (IsEqualGUID(&IID_IUnknown
,riid
) ||
480 IsEqualGUID(&IID_IRpcStubBuffer
,riid
)) {
484 return E_NOINTERFACE
;
487 static ULONG WINAPI
RemUnkStub_AddRef(LPRPCSTUBBUFFER iface
)
489 RemUnkStub
*This
= (RemUnkStub
*)iface
;
490 TRACE("(%p)->AddRef()\n",This
);
491 return InterlockedIncrement(&This
->refs
);
494 static ULONG WINAPI
RemUnkStub_Release(LPRPCSTUBBUFFER iface
)
496 RemUnkStub
*This
= (RemUnkStub
*)iface
;
498 TRACE("(%p)->Release()\n",This
);
499 refs
= InterlockedDecrement(&This
->refs
);
501 HeapFree(GetProcessHeap(), 0, This
);
505 static HRESULT WINAPI
RemUnkStub_Connect(LPRPCSTUBBUFFER iface
,
506 LPUNKNOWN lpUnkServer
)
508 RemUnkStub
*This
= (RemUnkStub
*)iface
;
509 TRACE("(%p)->Connect(%p)\n",This
,lpUnkServer
);
510 This
->iface
= (IRemUnknown
*)lpUnkServer
;
511 IRemUnknown_AddRef(This
->iface
);
515 static void WINAPI
RemUnkStub_Disconnect(LPRPCSTUBBUFFER iface
)
517 RemUnkStub
*This
= (RemUnkStub
*)iface
;
518 TRACE("(%p)->Disconnect()\n",This
);
519 IUnknown_Release(This
->iface
);
523 static HRESULT WINAPI
RemUnkStub_Invoke(LPRPCSTUBBUFFER iface
,
525 LPRPCCHANNELBUFFER pChannel
)
527 RemUnkStub
*This
= (RemUnkStub
*)iface
;
528 ULONG iMethod
= pMsg
->iMethod
;
529 LPBYTE buf
= pMsg
->Buffer
;
530 HRESULT hr
= RPC_E_INVALIDMETHOD
;
532 TRACE("(%p)->Invoke(%p,%p) method %ld\n", This
, pMsg
, pChannel
, iMethod
);
535 case 3: /* RemQueryInterface */
541 REMQIRESULT
*pQIResults
= NULL
;
544 memcpy(&ipid
, buf
, sizeof(ipid
));
546 memcpy(&cRefs
, buf
, sizeof(cRefs
));
547 buf
+= sizeof(cRefs
);
548 memcpy(&cIids
, buf
, sizeof(cIids
));
549 buf
+= sizeof(cIids
);
552 hr
= IRemUnknown_RemQueryInterface(This
->iface
, &ipid
, cRefs
, cIids
, iids
, &pQIResults
);
555 pMsg
->cbBuffer
= cIids
* sizeof(REMQIRESULT
) + sizeof(HRESULT
);
557 I_RpcGetBuffer((RPC_MESSAGE
*)pMsg
);
560 *(HRESULT
*)buf
= hr
;
561 buf
+= sizeof(HRESULT
);
564 /* FIXME: pQIResults is a unique pointer so pQIResults can be NULL! */
565 memcpy(buf
, pQIResults
, cIids
* sizeof(REMQIRESULT
));
569 case 4: /* RemAddRef */
576 memcpy(&cIids
, buf
, sizeof(USHORT
));
577 buf
+= sizeof(USHORT
);
578 ir
= (REMINTERFACEREF
*)buf
;
579 pResults
= CoTaskMemAlloc(cIids
* sizeof(HRESULT
));
580 if (!pResults
) return E_OUTOFMEMORY
;
582 hr
= IRemUnknown_RemAddRef(This
->iface
, cIids
, ir
, pResults
);
585 pMsg
->cbBuffer
= cIids
* sizeof(HRESULT
);
587 I_RpcGetBuffer((RPC_MESSAGE
*)pMsg
);
591 memcpy(buf
, pResults
, cIids
* sizeof(HRESULT
));
594 CoTaskMemFree(pResults
);
598 case 5: /* RemRelease */
604 memcpy(&cIids
, buf
, sizeof(USHORT
));
605 buf
+= sizeof(USHORT
);
606 ir
= (REMINTERFACEREF
*)buf
;
608 hr
= IRemUnknown_RemRelease(This
->iface
, cIids
, ir
);
618 static LPRPCSTUBBUFFER WINAPI
RemUnkStub_IsIIDSupported(LPRPCSTUBBUFFER iface
,
621 RemUnkStub
*This
= (RemUnkStub
*)iface
;
622 TRACE("(%p)->IsIIDSupported(%s)\n", This
, debugstr_guid(riid
));
623 return IsEqualGUID(&IID_IRemUnknown
, riid
) ? iface
: NULL
;
626 static ULONG WINAPI
RemUnkStub_CountRefs(LPRPCSTUBBUFFER iface
)
628 RemUnkStub
*This
= (RemUnkStub
*)iface
;
629 FIXME("(%p)->CountRefs()\n", This
);
633 static HRESULT WINAPI
RemUnkStub_DebugServerQueryInterface(LPRPCSTUBBUFFER iface
,
636 RemUnkStub
*This
= (RemUnkStub
*)iface
;
637 FIXME("(%p)->DebugServerQueryInterface(%p)\n",This
,ppv
);
638 return E_NOINTERFACE
;
641 static void WINAPI
RemUnkStub_DebugServerRelease(LPRPCSTUBBUFFER iface
,
644 RemUnkStub
*This
= (RemUnkStub
*)iface
;
645 FIXME("(%p)->DebugServerRelease(%p)\n", This
, pv
);
648 static const IRpcStubBufferVtbl RemUnkStub_VTable
=
650 RemUnkStub_QueryInterface
,
654 RemUnkStub_Disconnect
,
656 RemUnkStub_IsIIDSupported
,
657 RemUnkStub_CountRefs
,
658 RemUnkStub_DebugServerQueryInterface
,
659 RemUnkStub_DebugServerRelease
662 static HRESULT
RemUnkStub_Construct(IRpcStubBuffer
**ppStub
)
664 RemUnkStub
*This
= HeapAlloc(GetProcessHeap(), 0, sizeof(*This
));
665 if (!This
) return E_OUTOFMEMORY
;
666 This
->lpVtbl
= &RemUnkStub_VTable
;
669 *ppStub
= (IRpcStubBuffer
*)This
;
674 typedef struct _RemUnkProxy
{
675 const IRemUnknownVtbl
*lpvtbl_remunk
;
676 const IRpcProxyBufferVtbl
*lpvtbl_proxy
;
679 IRpcChannelBuffer
*chan
;
680 IUnknown
*outer_unknown
;
683 static HRESULT WINAPI
RemUnkProxy_QueryInterface(LPREMUNKNOWN iface
, REFIID riid
, void **ppv
)
685 RemUnkProxy
*This
= (RemUnkProxy
*)iface
;
686 if (This
->outer_unknown
)
687 return IUnknown_QueryInterface(This
->outer_unknown
, riid
, ppv
);
688 if (IsEqualIID(riid
, &IID_IUnknown
) ||
689 IsEqualIID(riid
, &IID_IRemUnknown
))
691 IRemUnknown_AddRef(iface
);
692 *ppv
= (LPVOID
)iface
;
695 return E_NOINTERFACE
;
698 static ULONG WINAPI
RemUnkProxy_AddRef(LPREMUNKNOWN iface
)
700 RemUnkProxy
*This
= (RemUnkProxy
*)iface
;
703 TRACE("(%p)->AddRef()\n",This
);
705 if (This
->outer_unknown
)
706 refs
= IUnknown_AddRef(This
->outer_unknown
);
708 refs
= InterlockedIncrement(&This
->refs
);
712 static ULONG WINAPI
RemUnkProxy_Release(LPREMUNKNOWN iface
)
714 RemUnkProxy
*This
= (RemUnkProxy
*)iface
;
717 TRACE("(%p)->Release()\n",This
);
718 if (This
->outer_unknown
)
719 refs
= IUnknown_Release(This
->outer_unknown
);
721 refs
= InterlockedDecrement(&This
->refs
);
724 if (This
->chan
) IRpcChannelBuffer_Release(This
->chan
);
725 HeapFree(GetProcessHeap(),0,This
);
730 static HRESULT WINAPI
RemUnkProxy_RemQueryInterface(LPREMUNKNOWN iface
,
735 REMQIRESULT
** ppQIResults
)
737 RemUnkProxy
*This
= (RemUnkProxy
*)iface
;
742 TRACE("(%p)->(%s,%ld,%d,%p,%p)\n",This
,
743 debugstr_guid(ripid
),cRefs
,cIids
,iids
,ppQIResults
);
746 memset(&msg
, 0, sizeof(msg
));
748 msg
.cbBuffer
= sizeof(IPID
) + sizeof(ULONG
) +
749 sizeof(USHORT
) + cIids
*sizeof(IID
);
750 hr
= IRpcChannelBuffer_GetBuffer(This
->chan
, &msg
, &IID_IRemUnknown
);
752 LPBYTE buf
= msg
.Buffer
;
753 memcpy(buf
, ripid
, sizeof(IPID
));
755 memcpy(buf
, &cRefs
, sizeof(ULONG
));
756 buf
+= sizeof(ULONG
);
757 memcpy(buf
, &cIids
, sizeof(USHORT
));
758 buf
+= sizeof(USHORT
);
759 memcpy(buf
, iids
, cIids
*sizeof(IID
));
761 hr
= IRpcChannelBuffer_SendReceive(This
->chan
, &msg
, &status
);
766 hr
= *(HRESULT
*)buf
;
767 buf
+= sizeof(HRESULT
);
771 *ppQIResults
= CoTaskMemAlloc(cIids
*sizeof(REMQIRESULT
));
772 memcpy(*ppQIResults
, buf
, cIids
*sizeof(REMQIRESULT
));
775 IRpcChannelBuffer_FreeBuffer(This
->chan
, &msg
);
781 static HRESULT WINAPI
RemUnkProxy_RemAddRef(LPREMUNKNOWN iface
,
782 USHORT cInterfaceRefs
,
783 REMINTERFACEREF
* InterfaceRefs
,
786 RemUnkProxy
*This
= (RemUnkProxy
*)iface
;
791 TRACE("(%p)->(%d,%p,%p)\n",This
,
792 cInterfaceRefs
,InterfaceRefs
,pResults
);
794 memset(&msg
, 0, sizeof(msg
));
796 msg
.cbBuffer
= sizeof(USHORT
) + cInterfaceRefs
*sizeof(REMINTERFACEREF
);
797 hr
= IRpcChannelBuffer_GetBuffer(This
->chan
, &msg
, &IID_IRemUnknown
);
799 LPBYTE buf
= msg
.Buffer
;
800 memcpy(buf
, &cInterfaceRefs
, sizeof(USHORT
));
801 buf
+= sizeof(USHORT
);
802 memcpy(buf
, InterfaceRefs
, cInterfaceRefs
*sizeof(REMINTERFACEREF
));
804 hr
= IRpcChannelBuffer_SendReceive(This
->chan
, &msg
, &status
);
808 memcpy(pResults
, buf
, cInterfaceRefs
*sizeof(HRESULT
));
811 IRpcChannelBuffer_FreeBuffer(This
->chan
, &msg
);
817 static HRESULT WINAPI
RemUnkProxy_RemRelease(LPREMUNKNOWN iface
,
818 USHORT cInterfaceRefs
,
819 REMINTERFACEREF
* InterfaceRefs
)
821 RemUnkProxy
*This
= (RemUnkProxy
*)iface
;
826 TRACE("(%p)->(%d,%p)\n",This
,
827 cInterfaceRefs
,InterfaceRefs
);
829 memset(&msg
, 0, sizeof(msg
));
831 msg
.cbBuffer
= sizeof(USHORT
) + cInterfaceRefs
*sizeof(REMINTERFACEREF
);
832 hr
= IRpcChannelBuffer_GetBuffer(This
->chan
, &msg
, &IID_IRemUnknown
);
834 LPBYTE buf
= msg
.Buffer
;
835 memcpy(buf
, &cInterfaceRefs
, sizeof(USHORT
));
836 buf
+= sizeof(USHORT
);
837 memcpy(buf
, InterfaceRefs
, cInterfaceRefs
*sizeof(REMINTERFACEREF
));
839 hr
= IRpcChannelBuffer_SendReceive(This
->chan
, &msg
, &status
);
841 IRpcChannelBuffer_FreeBuffer(This
->chan
, &msg
);
847 static const IRemUnknownVtbl RemUnkProxy_VTable
=
849 RemUnkProxy_QueryInterface
,
852 RemUnkProxy_RemQueryInterface
,
853 RemUnkProxy_RemAddRef
,
854 RemUnkProxy_RemRelease
858 static HRESULT WINAPI
RURpcProxyBufferImpl_QueryInterface(LPRPCPROXYBUFFER iface
,REFIID riid
,LPVOID
*ppv
) {
860 if (IsEqualIID(riid
,&IID_IRpcProxyBuffer
)||IsEqualIID(riid
,&IID_IUnknown
)) {
861 IRpcProxyBuffer_AddRef(iface
);
862 *ppv
= (LPVOID
)iface
;
865 FIXME("(%s), no interface.\n",debugstr_guid(riid
));
866 return E_NOINTERFACE
;
869 static ULONG WINAPI
RURpcProxyBufferImpl_AddRef(LPRPCPROXYBUFFER iface
) {
870 ICOM_THIS_MULTI(RemUnkProxy
,lpvtbl_proxy
,iface
);
871 TRACE("%p, %ld\n", iface
, This
->refs
+ 1);
872 return InterlockedIncrement(&This
->refs
);
875 static ULONG WINAPI
RURpcProxyBufferImpl_Release(LPRPCPROXYBUFFER iface
) {
876 ICOM_THIS_MULTI(RemUnkProxy
,lpvtbl_proxy
,iface
);
877 ULONG ref
= InterlockedDecrement(&This
->refs
);
878 TRACE("%p, %ld\n", iface
, ref
);
880 IRpcProxyBuffer_Disconnect(iface
);
881 HeapFree(GetProcessHeap(),0,This
);
886 static HRESULT WINAPI
RURpcProxyBufferImpl_Connect(LPRPCPROXYBUFFER iface
,IRpcChannelBuffer
* pRpcChannelBuffer
) {
887 ICOM_THIS_MULTI(RemUnkProxy
,lpvtbl_proxy
,iface
);
889 TRACE("%p, %p\n", iface
, pRpcChannelBuffer
);
890 This
->chan
= pRpcChannelBuffer
;
891 IRpcChannelBuffer_AddRef(This
->chan
);
894 static void WINAPI
RURpcProxyBufferImpl_Disconnect(LPRPCPROXYBUFFER iface
) {
895 ICOM_THIS_MULTI(RemUnkProxy
,lpvtbl_proxy
,iface
);
896 TRACE("%p, %p\n", iface
, This
->chan
);
898 IRpcChannelBuffer_Release(This
->chan
);
904 static const IRpcProxyBufferVtbl RURpcProxyBuffer_VTable
= {
905 RURpcProxyBufferImpl_QueryInterface
,
906 RURpcProxyBufferImpl_AddRef
,
907 RURpcProxyBufferImpl_Release
,
908 RURpcProxyBufferImpl_Connect
,
909 RURpcProxyBufferImpl_Disconnect
913 RemUnkProxy_Construct(IUnknown
*pUnkOuter
, LPVOID
*ppv
,LPVOID
*ppProxy
) {
916 This
= HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY
,sizeof(*This
));
918 return E_OUTOFMEMORY
;
920 This
->lpvtbl_remunk
= &RemUnkProxy_VTable
;
921 This
->lpvtbl_proxy
= &RURpcProxyBuffer_VTable
;
922 /* only one reference for the proxy buffer */
924 This
->outer_unknown
= pUnkOuter
;
925 *ppv
= &(This
->lpvtbl_remunk
);
926 *ppProxy
= &(This
->lpvtbl_proxy
);
927 /* and one reference for the object */
928 IUnknown_AddRef((IUnknown
*)*ppv
);
933 /********************* OLE Proxy/Stub Factory ********************************/
934 static HRESULT WINAPI
935 PSFacBuf_QueryInterface(LPPSFACTORYBUFFER iface
, REFIID iid
, LPVOID
*ppv
) {
936 if (IsEqualIID(iid
,&IID_IPSFactoryBuffer
)||IsEqualIID(iid
,&IID_IUnknown
)) {
937 *ppv
= (LPVOID
)iface
;
938 /* No ref counting, static class */
941 FIXME("(%s) unknown IID?\n",debugstr_guid(iid
));
942 return E_NOINTERFACE
;
945 static ULONG WINAPI
PSFacBuf_AddRef(LPPSFACTORYBUFFER iface
) { return 2; }
946 static ULONG WINAPI
PSFacBuf_Release(LPPSFACTORYBUFFER iface
) { return 1; }
948 static HRESULT WINAPI
949 PSFacBuf_CreateProxy(
950 LPPSFACTORYBUFFER iface
, IUnknown
* pUnkOuter
, REFIID riid
,
951 IRpcProxyBuffer
**ppProxy
, LPVOID
*ppv
953 if (IsEqualIID(&IID_IClassFactory
,riid
))
954 return CFProxy_Construct(pUnkOuter
, ppv
,(LPVOID
*)ppProxy
);
955 else if (IsEqualIID(&IID_IRemUnknown
,riid
))
956 return RemUnkProxy_Construct(pUnkOuter
, ppv
,(LPVOID
*)ppProxy
);
957 FIXME("proxying not implemented for (%s) yet!\n",debugstr_guid(riid
));
961 static HRESULT WINAPI
963 LPPSFACTORYBUFFER iface
, REFIID riid
,IUnknown
*pUnkServer
,
964 IRpcStubBuffer
** ppStub
968 TRACE("(%s,%p,%p)\n",debugstr_guid(riid
),pUnkServer
,ppStub
);
970 if (IsEqualIID(&IID_IClassFactory
, riid
) ||
971 IsEqualIID(&IID_IUnknown
, riid
) /* FIXME: fixup stub manager and remove this*/) {
972 hres
= CFStub_Construct(ppStub
);
974 IRpcStubBuffer_Connect((*ppStub
),pUnkServer
);
976 } else if (IsEqualIID(&IID_IRemUnknown
,riid
)) {
977 hres
= RemUnkStub_Construct(ppStub
);
979 IRpcStubBuffer_Connect((*ppStub
),pUnkServer
);
982 FIXME("stubbing not implemented for (%s) yet!\n",debugstr_guid(riid
));
986 static const IPSFactoryBufferVtbl psfacbufvtbl
= {
987 PSFacBuf_QueryInterface
,
990 PSFacBuf_CreateProxy
,
994 /* This is the whole PSFactoryBuffer object, just the vtableptr */
995 static const IPSFactoryBufferVtbl
*lppsfac
= &psfacbufvtbl
;
997 /***********************************************************************
998 * DllGetClassObject [OLE32.@]
1000 HRESULT WINAPI
DllGetClassObject(REFCLSID rclsid
, REFIID iid
,LPVOID
*ppv
)
1003 if (IsEqualIID(rclsid
, &CLSID_PSFactoryBuffer
))
1004 return IPSFactoryBuffer_QueryInterface((IPSFactoryBuffer
*)&lppsfac
, iid
, ppv
);
1005 if (IsEqualIID(rclsid
,&CLSID_DfMarshal
)&&(
1006 IsEqualIID(iid
,&IID_IClassFactory
) ||
1007 IsEqualIID(iid
,&IID_IUnknown
)
1010 return MARSHAL_GetStandardMarshalCF(ppv
);
1011 if (IsEqualIID(rclsid
,&CLSID_StdGlobalInterfaceTable
) && (IsEqualIID(iid
,&IID_IClassFactory
) || IsEqualIID(iid
,&IID_IUnknown
)))
1012 return StdGlobalInterfaceTable_GetFactory(ppv
);
1013 if (IsEqualCLSID(rclsid
, &CLSID_FileMoniker
))
1014 return FileMonikerCF_Create(iid
, ppv
);
1015 if (IsEqualCLSID(rclsid
, &CLSID_ItemMoniker
))
1016 return ItemMonikerCF_Create(iid
, ppv
);
1018 FIXME("\n\tCLSID:\t%s,\n\tIID:\t%s\n",debugstr_guid(rclsid
),debugstr_guid(iid
));
1019 return CLASS_E_CLASSNOTAVAILABLE
;