2 * COM proxy implementation
4 * Copyright 2001 Ove Kåven, TransGaming Technologies
5 * Copyright 2009 Alexandre Julliard
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
21 * TODO: Handle non-i386 architectures
25 #include "wine/port.h"
40 #include "wine/debug.h"
42 WINE_DEFAULT_DEBUG_CHANNEL(ole
);
44 /* I don't know what MS's std proxy structure looks like,
45 so this probably doesn't match, but that shouldn't matter */
47 const IRpcProxyBufferVtbl
*lpVtbl
;
52 IUnknown
*base_object
; /* must be at offset 0x10 from PVtbl */
53 IRpcProxyBuffer
*base_proxy
;
55 LPPSFACTORYBUFFER pPSFactory
;
56 LPRPCCHANNELBUFFER pChannel
;
59 static const IRpcProxyBufferVtbl StdProxy_Vtbl
;
61 #define ICOM_THIS_MULTI(impl,field,iface) impl* const This=(impl*)((char*)(iface) - offsetof(impl,field))
76 extern void call_stubless_func(void);
77 __ASM_GLOBAL_FUNC(call_stubless_func
,
78 "pushl %eax\n\t" /* method index */
79 __ASM_CFI(".cfi_adjust_cfa_offset 4\n\t")
80 "pushl %esp\n\t" /* pointer to index */
81 __ASM_CFI(".cfi_adjust_cfa_offset 4\n\t")
82 "call " __ASM_NAME("ObjectStubless") __ASM_STDCALL(4) "\n\t"
83 __ASM_CFI(".cfi_adjust_cfa_offset -4\n\t")
84 "popl %edx\n\t" /* args size */
85 __ASM_CFI(".cfi_adjust_cfa_offset -4\n\t")
86 "movl (%esp),%ecx\n\t" /* return address */
90 HRESULT WINAPI
ObjectStubless(DWORD
*args
)
92 DWORD index
= args
[0];
93 void **iface
= (void **)args
[2];
94 const void **vtbl
= (const void **)*iface
;
95 const MIDL_STUBLESS_PROXY_INFO
*stubless
= *(const MIDL_STUBLESS_PROXY_INFO
**)(vtbl
- 2);
96 const PFORMAT_STRING fs
= stubless
->ProcFormatString
+ stubless
->FormatStringOffset
[index
];
98 /* store bytes to remove from stack */
99 args
[0] = *(const WORD
*)(fs
+ 8);
100 TRACE("(%p)->(%d)([%d bytes]) ret=%08x\n", iface
, index
, args
[0], args
[1]);
102 return NdrClientCall2(stubless
->pStubDesc
, fs
, args
+ 2);
105 #define BLOCK_SIZE 1024
106 #define MAX_BLOCKS 64 /* 64k methods should be enough for anybody */
108 static const struct thunk
*method_blocks
[MAX_BLOCKS
];
110 static const struct thunk
*allocate_block( unsigned int num
)
113 struct thunk
*prev
, *block
;
115 block
= VirtualAlloc( NULL
, BLOCK_SIZE
* sizeof(*block
),
116 MEM_COMMIT
| MEM_RESERVE
, PAGE_EXECUTE_READWRITE
);
117 if (!block
) return NULL
;
119 for (i
= 0; i
< BLOCK_SIZE
; i
++)
121 block
[i
].mov_eax
= 0xb8; /* movl $n,%eax */
122 block
[i
].index
= BLOCK_SIZE
* num
+ i
+ 3;
123 block
[i
].jmp
= 0xe9; /* jmp */
124 block
[i
].handler
= (char *)call_stubless_func
- (char *)(&block
[i
].handler
+ 1);
126 VirtualProtect( block
, BLOCK_SIZE
* sizeof(*block
), PAGE_EXECUTE_READ
, NULL
);
127 prev
= InterlockedCompareExchangePointer( (void **)&method_blocks
[num
], block
, NULL
);
128 if (prev
) /* someone beat us to it */
130 VirtualFree( block
, 0, MEM_RELEASE
);
136 static BOOL
fill_stubless_table( IUnknownVtbl
*vtbl
, DWORD num
)
138 const void **entry
= (const void **)(vtbl
+ 1);
141 if (num
- 3 > BLOCK_SIZE
* MAX_BLOCKS
)
143 FIXME( "%u methods not supported\n", num
);
146 for (i
= 0; i
< (num
- 3 + BLOCK_SIZE
- 1) / BLOCK_SIZE
; i
++)
148 const struct thunk
*block
= method_blocks
[i
];
149 if (!block
&& !(block
= allocate_block( i
))) return FALSE
;
150 for (j
= 0; j
< BLOCK_SIZE
&& j
< num
- 3 - i
* BLOCK_SIZE
; j
++, entry
++)
151 if (*entry
== (LPVOID
)-1) *entry
= &block
[j
];
158 static BOOL
fill_stubless_table( IUnknownVtbl
*vtbl
, DWORD num
)
160 ERR("stubless proxies are not supported on this architecture\n");
164 #endif /* __i386__ */
166 HRESULT
StdProxy_Construct(REFIID riid
,
168 const ProxyFileInfo
*ProxyInfo
,
170 LPPSFACTORYBUFFER pPSFactory
,
171 LPRPCPROXYBUFFER
*ppProxy
,
175 PCInterfaceName name
= ProxyInfo
->pNamesArray
[Index
];
176 CInterfaceProxyVtbl
*vtbl
= ProxyInfo
->pProxyVtblList
[Index
];
178 TRACE("(%p,%p,%p,%p,%p) %s\n", pUnkOuter
, vtbl
, pPSFactory
, ppProxy
, ppvObj
, name
);
180 /* TableVersion = 2 means it is the stubless version of CInterfaceProxyVtbl */
181 if (ProxyInfo
->TableVersion
> 1) {
182 ULONG count
= ProxyInfo
->pStubVtblList
[Index
]->header
.DispatchTableCount
;
183 vtbl
= (CInterfaceProxyVtbl
*)((const void **)vtbl
+ 1);
184 TRACE("stubless vtbl %p: count=%d\n", vtbl
->Vtbl
, count
);
185 fill_stubless_table( (IUnknownVtbl
*)vtbl
->Vtbl
, count
);
188 if (!IsEqualGUID(vtbl
->header
.piid
, riid
)) {
189 ERR("IID mismatch during proxy creation\n");
190 return RPC_E_UNEXPECTED
;
193 This
= HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY
,sizeof(StdProxyImpl
));
194 if (!This
) return E_OUTOFMEMORY
;
196 if (!pUnkOuter
) pUnkOuter
= (IUnknown
*)This
;
197 This
->lpVtbl
= &StdProxy_Vtbl
;
198 This
->PVtbl
= vtbl
->Vtbl
;
199 /* one reference for the proxy */
201 This
->piid
= vtbl
->header
.piid
;
202 This
->base_object
= NULL
;
203 This
->base_proxy
= NULL
;
204 This
->pUnkOuter
= pUnkOuter
;
206 This
->pPSFactory
= pPSFactory
;
207 This
->pChannel
= NULL
;
209 if(ProxyInfo
->pDelegatedIIDs
&& ProxyInfo
->pDelegatedIIDs
[Index
])
211 HRESULT r
= create_proxy( ProxyInfo
->pDelegatedIIDs
[Index
], NULL
,
212 &This
->base_proxy
, (void **)&This
->base_object
);
215 HeapFree( GetProcessHeap(), 0, This
);
220 *ppProxy
= (LPRPCPROXYBUFFER
)&This
->lpVtbl
;
221 *ppvObj
= &This
->PVtbl
;
222 IUnknown_AddRef((IUnknown
*)*ppvObj
);
223 IPSFactoryBuffer_AddRef(pPSFactory
);
225 TRACE( "iid=%s this %p proxy %p obj %p vtbl %p base proxy %p base obj %p\n",
226 debugstr_guid(riid
), This
, *ppProxy
, *ppvObj
, This
->PVtbl
, This
->base_proxy
, This
->base_object
);
230 static void StdProxy_Destruct(LPRPCPROXYBUFFER iface
)
232 ICOM_THIS_MULTI(StdProxyImpl
,lpVtbl
,iface
);
235 IRpcProxyBuffer_Disconnect(iface
);
237 if (This
->base_object
) IUnknown_Release( This
->base_object
);
238 if (This
->base_proxy
) IRpcProxyBuffer_Release( This
->base_proxy
);
240 IPSFactoryBuffer_Release(This
->pPSFactory
);
241 HeapFree(GetProcessHeap(),0,This
);
244 static HRESULT WINAPI
StdProxy_QueryInterface(LPRPCPROXYBUFFER iface
,
248 ICOM_THIS_MULTI(StdProxyImpl
,lpVtbl
,iface
);
249 TRACE("(%p)->QueryInterface(%s,%p)\n",This
,debugstr_guid(riid
),obj
);
251 if (IsEqualGUID(&IID_IUnknown
,riid
) ||
252 IsEqualGUID(This
->piid
,riid
)) {
254 InterlockedIncrement(&This
->RefCount
);
258 if (IsEqualGUID(&IID_IRpcProxyBuffer
,riid
)) {
259 *obj
= &This
->lpVtbl
;
260 InterlockedIncrement(&This
->RefCount
);
264 return E_NOINTERFACE
;
267 static ULONG WINAPI
StdProxy_AddRef(LPRPCPROXYBUFFER iface
)
269 ICOM_THIS_MULTI(StdProxyImpl
,lpVtbl
,iface
);
270 TRACE("(%p)->AddRef()\n",This
);
272 return InterlockedIncrement(&This
->RefCount
);
275 static ULONG WINAPI
StdProxy_Release(LPRPCPROXYBUFFER iface
)
278 ICOM_THIS_MULTI(StdProxyImpl
,lpVtbl
,iface
);
279 TRACE("(%p)->Release()\n",This
);
281 refs
= InterlockedDecrement(&This
->RefCount
);
283 StdProxy_Destruct((LPRPCPROXYBUFFER
)&This
->lpVtbl
);
287 static HRESULT WINAPI
StdProxy_Connect(LPRPCPROXYBUFFER iface
,
288 LPRPCCHANNELBUFFER pChannel
)
290 ICOM_THIS_MULTI(StdProxyImpl
,lpVtbl
,iface
);
291 TRACE("(%p)->Connect(%p)\n",This
,pChannel
);
293 This
->pChannel
= pChannel
;
294 IRpcChannelBuffer_AddRef(pChannel
);
295 if (This
->base_proxy
) IRpcProxyBuffer_Connect( This
->base_proxy
, pChannel
);
299 static VOID WINAPI
StdProxy_Disconnect(LPRPCPROXYBUFFER iface
)
301 ICOM_THIS_MULTI(StdProxyImpl
,lpVtbl
,iface
);
302 TRACE("(%p)->Disconnect()\n",This
);
304 if (This
->base_proxy
) IRpcProxyBuffer_Disconnect( This
->base_proxy
);
306 IRpcChannelBuffer_Release(This
->pChannel
);
307 This
->pChannel
= NULL
;
310 static const IRpcProxyBufferVtbl StdProxy_Vtbl
=
312 StdProxy_QueryInterface
,
319 static void StdProxy_GetChannel(LPVOID iface
,
320 LPRPCCHANNELBUFFER
*ppChannel
)
322 ICOM_THIS_MULTI(StdProxyImpl
,PVtbl
,iface
);
323 TRACE("(%p)->GetChannel(%p) %s\n",This
,ppChannel
,This
->name
);
325 *ppChannel
= This
->pChannel
;
328 static void StdProxy_GetIID(LPVOID iface
,
331 ICOM_THIS_MULTI(StdProxyImpl
,PVtbl
,iface
);
332 TRACE("(%p)->GetIID(%p) %s\n",This
,ppiid
,This
->name
);
337 HRESULT WINAPI
IUnknown_QueryInterface_Proxy(LPUNKNOWN iface
,
341 ICOM_THIS_MULTI(StdProxyImpl
,PVtbl
,iface
);
342 TRACE("(%p)->QueryInterface(%s,%p) %s\n",This
,debugstr_guid(riid
),ppvObj
,This
->name
);
343 return IUnknown_QueryInterface(This
->pUnkOuter
,riid
,ppvObj
);
346 ULONG WINAPI
IUnknown_AddRef_Proxy(LPUNKNOWN iface
)
348 ICOM_THIS_MULTI(StdProxyImpl
,PVtbl
,iface
);
349 TRACE("(%p)->AddRef() %s\n",This
,This
->name
);
350 return IUnknown_AddRef(This
->pUnkOuter
);
353 ULONG WINAPI
IUnknown_Release_Proxy(LPUNKNOWN iface
)
355 ICOM_THIS_MULTI(StdProxyImpl
,PVtbl
,iface
);
356 TRACE("(%p)->Release() %s\n",This
,This
->name
);
357 return IUnknown_Release(This
->pUnkOuter
);
360 /***********************************************************************
361 * NdrProxyInitialize [RPCRT4.@]
363 void WINAPI
NdrProxyInitialize(void *This
,
364 PRPC_MESSAGE pRpcMsg
,
365 PMIDL_STUB_MESSAGE pStubMsg
,
366 PMIDL_STUB_DESC pStubDescriptor
,
367 unsigned int ProcNum
)
369 TRACE("(%p,%p,%p,%p,%d)\n", This
, pRpcMsg
, pStubMsg
, pStubDescriptor
, ProcNum
);
370 NdrClientInitializeNew(pRpcMsg
, pStubMsg
, pStubDescriptor
, ProcNum
);
371 StdProxy_GetChannel(This
, &pStubMsg
->pRpcChannelBuffer
);
372 IRpcChannelBuffer_GetDestCtx(pStubMsg
->pRpcChannelBuffer
,
373 &pStubMsg
->dwDestContext
,
374 &pStubMsg
->pvDestContext
);
375 TRACE("channel=%p\n", pStubMsg
->pRpcChannelBuffer
);
378 /***********************************************************************
379 * NdrProxyGetBuffer [RPCRT4.@]
381 void WINAPI
NdrProxyGetBuffer(void *This
,
382 PMIDL_STUB_MESSAGE pStubMsg
)
385 const IID
*riid
= NULL
;
387 TRACE("(%p,%p)\n", This
, pStubMsg
);
388 pStubMsg
->RpcMsg
->BufferLength
= pStubMsg
->BufferLength
;
389 pStubMsg
->dwStubPhase
= PROXY_GETBUFFER
;
390 StdProxy_GetIID(This
, &riid
);
391 hr
= IRpcChannelBuffer_GetBuffer(pStubMsg
->pRpcChannelBuffer
,
392 (RPCOLEMESSAGE
*)pStubMsg
->RpcMsg
,
396 RpcRaiseException(hr
);
399 pStubMsg
->fBufferValid
= TRUE
;
400 pStubMsg
->BufferStart
= pStubMsg
->RpcMsg
->Buffer
;
401 pStubMsg
->BufferEnd
= pStubMsg
->BufferStart
+ pStubMsg
->BufferLength
;
402 pStubMsg
->Buffer
= pStubMsg
->BufferStart
;
403 pStubMsg
->dwStubPhase
= PROXY_MARSHAL
;
406 /***********************************************************************
407 * NdrProxySendReceive [RPCRT4.@]
409 void WINAPI
NdrProxySendReceive(void *This
,
410 PMIDL_STUB_MESSAGE pStubMsg
)
415 TRACE("(%p,%p)\n", This
, pStubMsg
);
417 if (!pStubMsg
->pRpcChannelBuffer
)
419 WARN("Trying to use disconnected proxy %p\n", This
);
420 RpcRaiseException(RPC_E_DISCONNECTED
);
423 pStubMsg
->dwStubPhase
= PROXY_SENDRECEIVE
;
424 /* avoid sending uninitialised parts of the buffer on the wire */
425 pStubMsg
->RpcMsg
->BufferLength
= pStubMsg
->Buffer
- (unsigned char *)pStubMsg
->RpcMsg
->Buffer
;
426 hr
= IRpcChannelBuffer_SendReceive(pStubMsg
->pRpcChannelBuffer
,
427 (RPCOLEMESSAGE
*)pStubMsg
->RpcMsg
,
429 pStubMsg
->dwStubPhase
= PROXY_UNMARSHAL
;
430 pStubMsg
->BufferLength
= pStubMsg
->RpcMsg
->BufferLength
;
431 pStubMsg
->BufferStart
= pStubMsg
->RpcMsg
->Buffer
;
432 pStubMsg
->BufferEnd
= pStubMsg
->BufferStart
+ pStubMsg
->BufferLength
;
433 pStubMsg
->Buffer
= pStubMsg
->BufferStart
;
435 /* raise exception if call failed */
436 if (hr
== RPC_S_CALL_FAILED
) RpcRaiseException(*(DWORD
*)pStubMsg
->Buffer
);
437 else if (FAILED(hr
)) RpcRaiseException(hr
);
440 /***********************************************************************
441 * NdrProxyFreeBuffer [RPCRT4.@]
443 void WINAPI
NdrProxyFreeBuffer(void *This
,
444 PMIDL_STUB_MESSAGE pStubMsg
)
446 TRACE("(%p,%p)\n", This
, pStubMsg
);
448 if (pStubMsg
->fBufferValid
)
450 IRpcChannelBuffer_FreeBuffer(pStubMsg
->pRpcChannelBuffer
,
451 (RPCOLEMESSAGE
*)pStubMsg
->RpcMsg
);
452 pStubMsg
->fBufferValid
= TRUE
;
456 /***********************************************************************
457 * NdrProxyErrorHandler [RPCRT4.@]
459 HRESULT WINAPI
NdrProxyErrorHandler(DWORD dwExceptionCode
)
461 WARN("(0x%08x): a proxy call failed\n", dwExceptionCode
);
463 if (FAILED(dwExceptionCode
))
464 return dwExceptionCode
;
466 return HRESULT_FROM_WIN32(dwExceptionCode
);
470 CreateProxyFromTypeInfo( LPTYPEINFO pTypeInfo
, LPUNKNOWN pUnkOuter
, REFIID riid
,
471 LPRPCPROXYBUFFER
*ppProxy
, LPVOID
*ppv
)
473 typedef INT (WINAPI
*MessageBoxA
)(HWND
,LPCSTR
,LPCSTR
,UINT
);
474 HMODULE hUser32
= LoadLibraryA("user32");
475 MessageBoxA pMessageBoxA
= (void *)GetProcAddress(hUser32
, "MessageBoxA");
477 FIXME("%p %p %s %p %p\n", pTypeInfo
, pUnkOuter
, debugstr_guid(riid
), ppProxy
, ppv
);
481 "The native implementation of OLEAUT32.DLL cannot be used "
482 "with Wine's RPCRT4.DLL. Remove OLEAUT32.DLL and try again.\n",
483 "Wine: Unimplemented CreateProxyFromTypeInfo",
491 CreateStubFromTypeInfo(ITypeInfo
*pTypeInfo
, REFIID riid
, IUnknown
*pUnkServer
,
492 IRpcStubBuffer
**ppStub
)
494 typedef INT (WINAPI
*MessageBoxA
)(HWND
,LPCSTR
,LPCSTR
,UINT
);
495 HMODULE hUser32
= LoadLibraryA("user32");
496 MessageBoxA pMessageBoxA
= (void *)GetProcAddress(hUser32
, "MessageBoxA");
498 FIXME("%p %s %p %p\n", pTypeInfo
, debugstr_guid(riid
), pUnkServer
, ppStub
);
502 "The native implementation of OLEAUT32.DLL cannot be used "
503 "with Wine's RPCRT4.DLL. Remove OLEAUT32.DLL and try again.\n",
504 "Wine: Unimplemented CreateProxyFromTypeInfo",