2 * COM proxy implementation
4 * Copyright 2001 Ove Kåven, TransGaming Technologies
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
20 * TODO: Handle non-i386 architectures
21 * Get rid of #if 0'ed code.
35 #include "wine/debug.h"
37 WINE_DEFAULT_DEBUG_CHANNEL(ole);
41 /* I don't know what MS's std proxy structure looks like,
42 so this probably doesn't match, but that shouldn't matter */
44 ICOM_VTABLE(IRpcProxyBuffer) *lpVtbl;
47 const MIDL_STUBLESS_PROXY_INFO *stubless;
51 LPPSFACTORYBUFFER pPSFactory;
52 LPRPCCHANNELBUFFER pChannel;
53 struct StublessThunk *thunks;
56 static ICOM_VTABLE(IRpcProxyBuffer) StdProxy_Vtbl;
58 /* How the Windows stubless proxy thunks work is explained at
59 * http://msdn.microsoft.com/library/en-us/dnmsj99/html/com0199.asp,
60 * but I'll use a slightly different method, to make life easier */
66 struct StublessThunk {
78 /* adjust the stack size since we don't use Windows's method */
79 #define STACK_ADJUST sizeof(DWORD)
81 #define FILL_STUBLESS(x,idx,stk) \
82 x->push = 0x68; /* pushl [immediate] */ \
84 x->call = 0xe8; /* call [near] */ \
85 x->handler = (char*)ObjectStubless - (char*)&x->ret; \
86 x->ret = 0xc2; /* ret [immediate] */ \
88 x->pad[0] = 0x8d; /* leal (%esi),%esi */ \
92 static HRESULT WINAPI ObjectStubless(DWORD index)
94 char *args = (char*)(&index + 2);
95 LPVOID iface = *(LPVOID*)args;
97 ICOM_THIS_MULTI(StdProxyImpl,PVtbl,iface);
99 PFORMAT_STRING fs = This->stubless->ProcFormatString + This->stubless->FormatStringOffset[index];
100 unsigned bytes = *(WORD*)(fs+8) - STACK_ADJUST;
101 TRACE("(%p)->(%ld)([%d bytes]) ret=%08lx\n", iface, index, bytes, *(DWORD*)(args+bytes));
103 return RPCRT4_NdrClientCall2(This->stubless->pStubDesc, fs, args);
108 /* can't do that on this arch */
109 struct StublessThunk { int dummy; };
110 #define FILL_STUBLESS(x,idx,stk) \
111 ERR("stubless proxies are not supported on this architecture\n");
112 #define STACK_ADJUST 0
114 #endif /* __i386__ */
116 HRESULT WINAPI StdProxy_Construct(REFIID riid,
118 PCInterfaceName name,
119 CInterfaceProxyVtbl *vtbl,
120 CInterfaceStubVtbl *svtbl,
121 LPPSFACTORYBUFFER pPSFactory,
122 LPRPCPROXYBUFFER *ppProxy,
126 const MIDL_STUBLESS_PROXY_INFO *stubless = NULL;
128 TRACE("(%p,%p,%p,%p,%p) %s\n", pUnkOuter, vtbl, pPSFactory, ppProxy, ppvObj, name);
130 /* I can't find any other way to detect stubless proxies than this hack */
131 if (!IsEqualGUID(vtbl->header.piid, riid)) {
132 stubless = *(const void **)vtbl;
133 vtbl = (CInterfaceProxyVtbl *)((const void **)vtbl + 1);
134 TRACE("stubless=%p\n", stubless);
137 TRACE("iid=%s\n", debugstr_guid(vtbl->header.piid));
138 TRACE("vtbl=%p\n", vtbl->Vtbl);
140 if (!IsEqualGUID(vtbl->header.piid, riid)) {
141 ERR("IID mismatch during proxy creation\n");
142 return RPC_E_UNEXPECTED;
145 This = HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,sizeof(StdProxyImpl));
146 if (!This) return E_OUTOFMEMORY;
149 unsigned i, count = svtbl->header.DispatchTableCount;
150 /* Maybe the original vtbl is just modified directly to point at
151 * ObjectStublessClientXXX thunks in real Windows, but I don't like it
153 TRACE("stubless thunks: count=%d\n", count);
154 This->thunks = HeapAlloc(GetProcessHeap(),0,sizeof(struct StublessThunk)*count);
155 This->PVtbl = HeapAlloc(GetProcessHeap(),0,sizeof(LPVOID)*count);
156 for (i=0; i<count; i++) {
157 struct StublessThunk *thunk = &This->thunks[i];
158 if (vtbl->Vtbl[i] == (LPVOID)-1) {
159 PFORMAT_STRING fs = stubless->ProcFormatString + stubless->FormatStringOffset[i];
160 unsigned bytes = *(WORD*)(fs+8) - STACK_ADJUST;
161 TRACE("method %d: stacksize=%d\n", i, bytes);
162 FILL_STUBLESS(thunk, i, bytes)
163 This->PVtbl[i] = thunk;
166 memset(thunk, 0, sizeof(struct StublessThunk));
167 This->PVtbl[i] = vtbl->Vtbl[i];
172 This->PVtbl = vtbl->Vtbl;
174 This->lpVtbl = &StdProxy_Vtbl;
175 /* 1 reference for the proxy and 1 for the object */
177 This->stubless = stubless;
178 This->piid = vtbl->header.piid;
179 This->pUnkOuter = pUnkOuter;
181 This->pPSFactory = pPSFactory;
182 This->pChannel = NULL;
183 *ppProxy = (LPRPCPROXYBUFFER)&This->lpVtbl;
184 *ppvObj = &This->PVtbl;
185 IPSFactoryBuffer_AddRef(pPSFactory);
190 static void WINAPI StdProxy_Destruct(LPRPCPROXYBUFFER iface)
192 ICOM_THIS_MULTI(StdProxyImpl,lpVtbl,iface);
195 IRpcProxyBuffer_Disconnect(iface);
197 IPSFactoryBuffer_Release(This->pPSFactory);
199 HeapFree(GetProcessHeap(),0,This->PVtbl);
200 HeapFree(GetProcessHeap(),0,This->thunks);
202 HeapFree(GetProcessHeap(),0,This);
205 static HRESULT WINAPI StdProxy_QueryInterface(LPRPCPROXYBUFFER iface,
209 ICOM_THIS_MULTI(StdProxyImpl,lpVtbl,iface);
210 TRACE("(%p)->QueryInterface(%s,%p)\n",This,debugstr_guid(riid),obj);
212 if (IsEqualGUID(&IID_IUnknown,riid) ||
213 IsEqualGUID(This->piid,riid)) {
219 if (IsEqualGUID(&IID_IRpcProxyBuffer,riid)) {
220 *obj = &This->lpVtbl;
225 return E_NOINTERFACE;
228 static ULONG WINAPI StdProxy_AddRef(LPRPCPROXYBUFFER iface)
230 ICOM_THIS_MULTI(StdProxyImpl,lpVtbl,iface);
231 TRACE("(%p)->AddRef()\n",This);
233 return ++(This->RefCount);
236 static ULONG WINAPI StdProxy_Release(LPRPCPROXYBUFFER iface)
238 ICOM_THIS_MULTI(StdProxyImpl,lpVtbl,iface);
239 TRACE("(%p)->Release()\n",This);
241 if (!--(This->RefCount)) {
242 StdProxy_Destruct((LPRPCPROXYBUFFER)&This->lpVtbl);
245 return This->RefCount;
248 static HRESULT WINAPI StdProxy_Connect(LPRPCPROXYBUFFER iface,
249 LPRPCCHANNELBUFFER pChannel)
251 ICOM_THIS_MULTI(StdProxyImpl,lpVtbl,iface);
252 TRACE("(%p)->Connect(%p)\n",This,pChannel);
254 This->pChannel = pChannel;
255 IRpcChannelBuffer_AddRef(pChannel);
259 static VOID WINAPI StdProxy_Disconnect(LPRPCPROXYBUFFER iface)
261 ICOM_THIS_MULTI(StdProxyImpl,lpVtbl,iface);
262 TRACE("(%p)->Disconnect()\n",This);
264 IRpcChannelBuffer_Release(This->pChannel);
265 This->pChannel = NULL;
268 static ICOM_VTABLE(IRpcProxyBuffer) StdProxy_Vtbl =
270 ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE
271 StdProxy_QueryInterface,
278 HRESULT WINAPI StdProxy_GetChannel(LPVOID iface,
279 LPRPCCHANNELBUFFER *ppChannel)
281 ICOM_THIS_MULTI(StdProxyImpl,PVtbl,iface);
282 TRACE("(%p)->GetChannel(%p) %s\n",This,ppChannel,This->name);
284 *ppChannel = This->pChannel;
288 HRESULT WINAPI StdProxy_GetIID(LPVOID iface,
291 ICOM_THIS_MULTI(StdProxyImpl,PVtbl,iface);
292 TRACE("(%p)->GetIID(%p) %s\n",This,ppiid,This->name);
298 HRESULT WINAPI IUnknown_QueryInterface_Proxy(LPUNKNOWN iface,
302 ICOM_THIS_MULTI(StdProxyImpl,PVtbl,iface);
303 TRACE("(%p)->QueryInterface(%s,%p) %s\n",This,debugstr_guid(riid),ppvObj,This->name);
304 return IUnknown_QueryInterface(This->pUnkOuter,riid,ppvObj);
307 ULONG WINAPI IUnknown_AddRef_Proxy(LPUNKNOWN iface)
309 ICOM_THIS_MULTI(StdProxyImpl,PVtbl,iface);
310 TRACE("(%p)->AddRef() %s\n",This,This->name);
311 #if 0 /* interface refcounting */
312 return ++(This->RefCount);
313 #else /* object refcounting */
314 return IUnknown_AddRef(This->pUnkOuter);
318 ULONG WINAPI IUnknown_Release_Proxy(LPUNKNOWN iface)
320 ICOM_THIS_MULTI(StdProxyImpl,PVtbl,iface);
321 TRACE("(%p)->Release() %s\n",This,This->name);
322 #if 0 /* interface refcounting */
323 if (!--(This->RefCount)) {
324 StdProxy_Destruct((LPRPCPROXYBUFFER)&This->lpVtbl);
327 return This->RefCount;
328 #else /* object refcounting */
329 return IUnknown_Release(This->pUnkOuter);