oleaut32: When marshalling VT_CARRAY, only marshall by reference for appropriate...
[wine/multimedia.git] / dlls / oleaut32 / tmarshal.c
blob44a6d44eea25436be9ce757f58cb122da58a96ad
1 /*
2 * TYPELIB Marshaler
4 * Copyright 2002,2005 Marcus Meissner
6 * The olerelay debug channel allows you to see calls marshalled by
7 * the typelib marshaller. It is not a generic COM relaying system.
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
24 #include "config.h"
25 #include "wine/port.h"
27 #include <assert.h>
28 #include <stdlib.h>
29 #include <string.h>
30 #include <stdarg.h>
31 #include <stdio.h>
32 #include <ctype.h>
34 #define COBJMACROS
35 #define NONAMELESSUNION
36 #define NONAMELESSSTRUCT
38 #include "winerror.h"
39 #include "windef.h"
40 #include "winbase.h"
41 #include "winnls.h"
42 #include "winreg.h"
43 #include "winuser.h"
45 #include "ole2.h"
46 #include "propidl.h" /* for LPSAFEARRAY_User* functions */
47 #include "typelib.h"
48 #include "variant.h"
49 #include "wine/debug.h"
50 #include "wine/exception.h"
52 static const WCHAR IDispatchW[] = { 'I','D','i','s','p','a','t','c','h',0};
54 WINE_DEFAULT_DEBUG_CHANNEL(ole);
55 WINE_DECLARE_DEBUG_CHANNEL(olerelay);
57 static HRESULT TMarshalDispatchChannel_Create(
58 IRpcChannelBuffer *pDelegateChannel, REFIID tmarshal_riid,
59 IRpcChannelBuffer **ppChannel);
61 typedef struct _marshal_state {
62 LPBYTE base;
63 int size;
64 int curoff;
65 } marshal_state;
67 /* used in the olerelay code to avoid having the L"" stuff added by debugstr_w */
68 static char *relaystr(WCHAR *in) {
69 char *tmp = (char *)debugstr_w(in);
70 tmp += 2;
71 tmp[strlen(tmp)-1] = '\0';
72 return tmp;
75 static HRESULT
76 xbuf_resize(marshal_state *buf, DWORD newsize)
78 if(buf->size >= newsize)
79 return S_FALSE;
81 if(buf->base)
83 buf->base = HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, buf->base, newsize);
84 if(!buf->base)
85 return E_OUTOFMEMORY;
87 else
89 buf->base = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, newsize);
90 if(!buf->base)
91 return E_OUTOFMEMORY;
93 buf->size = newsize;
94 return S_OK;
97 static HRESULT
98 xbuf_add(marshal_state *buf, const BYTE *stuff, DWORD size)
100 HRESULT hr;
102 if(buf->size - buf->curoff < size)
104 hr = xbuf_resize(buf, buf->size + size + 100);
105 if(FAILED(hr)) return hr;
107 memcpy(buf->base+buf->curoff,stuff,size);
108 buf->curoff += size;
109 return S_OK;
112 static HRESULT
113 xbuf_get(marshal_state *buf, LPBYTE stuff, DWORD size) {
114 if (buf->size < buf->curoff+size) return E_FAIL;
115 memcpy(stuff,buf->base+buf->curoff,size);
116 buf->curoff += size;
117 return S_OK;
120 static HRESULT
121 xbuf_skip(marshal_state *buf, DWORD size) {
122 if (buf->size < buf->curoff+size) return E_FAIL;
123 buf->curoff += size;
124 return S_OK;
127 static HRESULT
128 _unmarshal_interface(marshal_state *buf, REFIID riid, LPUNKNOWN *pUnk) {
129 IStream *pStm;
130 ULARGE_INTEGER newpos;
131 LARGE_INTEGER seekto;
132 ULONG res;
133 HRESULT hres;
134 DWORD xsize;
136 TRACE("...%s...\n",debugstr_guid(riid));
138 *pUnk = NULL;
139 hres = xbuf_get(buf,(LPBYTE)&xsize,sizeof(xsize));
140 if (hres) {
141 ERR("xbuf_get failed\n");
142 return hres;
145 if (xsize == 0) return S_OK;
147 hres = CreateStreamOnHGlobal(0,TRUE,&pStm);
148 if (hres) {
149 ERR("Stream create failed %x\n",hres);
150 return hres;
153 hres = IStream_Write(pStm,buf->base+buf->curoff,xsize,&res);
154 if (hres) {
155 ERR("stream write %x\n",hres);
156 IStream_Release(pStm);
157 return hres;
160 memset(&seekto,0,sizeof(seekto));
161 hres = IStream_Seek(pStm,seekto,SEEK_SET,&newpos);
162 if (hres) {
163 ERR("Failed Seek %x\n",hres);
164 IStream_Release(pStm);
165 return hres;
168 hres = CoUnmarshalInterface(pStm,riid,(LPVOID*)pUnk);
169 if (hres) {
170 ERR("Unmarshalling interface %s failed with %x\n",debugstr_guid(riid),hres);
171 IStream_Release(pStm);
172 return hres;
175 IStream_Release(pStm);
176 return xbuf_skip(buf,xsize);
179 static HRESULT
180 _marshal_interface(marshal_state *buf, REFIID riid, LPUNKNOWN pUnk) {
181 LPBYTE tempbuf = NULL;
182 IStream *pStm = NULL;
183 STATSTG ststg;
184 ULARGE_INTEGER newpos;
185 LARGE_INTEGER seekto;
186 ULONG res;
187 DWORD xsize;
188 HRESULT hres;
190 if (!pUnk) {
191 /* this is valid, if for instance we serialize
192 * a VT_DISPATCH with NULL ptr which apparently
193 * can happen. S_OK to make sure we continue
194 * serializing.
196 WARN("pUnk is NULL\n");
197 xsize = 0;
198 return xbuf_add(buf,(LPBYTE)&xsize,sizeof(xsize));
201 hres = E_FAIL;
203 TRACE("...%s...\n",debugstr_guid(riid));
205 hres = CreateStreamOnHGlobal(0,TRUE,&pStm);
206 if (hres) {
207 ERR("Stream create failed %x\n",hres);
208 goto fail;
211 hres = CoMarshalInterface(pStm,riid,pUnk,0,NULL,0);
212 if (hres) {
213 ERR("Marshalling interface %s failed with %x\n", debugstr_guid(riid), hres);
214 goto fail;
217 hres = IStream_Stat(pStm,&ststg,STATFLAG_NONAME);
218 if (hres) {
219 ERR("Stream stat failed\n");
220 goto fail;
223 tempbuf = HeapAlloc(GetProcessHeap(), 0, ststg.cbSize.u.LowPart);
224 memset(&seekto,0,sizeof(seekto));
225 hres = IStream_Seek(pStm,seekto,SEEK_SET,&newpos);
226 if (hres) {
227 ERR("Failed Seek %x\n",hres);
228 goto fail;
231 hres = IStream_Read(pStm,tempbuf,ststg.cbSize.u.LowPart,&res);
232 if (hres) {
233 ERR("Failed Read %x\n",hres);
234 goto fail;
237 xsize = ststg.cbSize.u.LowPart;
238 xbuf_add(buf,(LPBYTE)&xsize,sizeof(xsize));
239 hres = xbuf_add(buf,tempbuf,ststg.cbSize.u.LowPart);
241 HeapFree(GetProcessHeap(),0,tempbuf);
242 IStream_Release(pStm);
244 return hres;
246 fail:
247 xsize = 0;
248 xbuf_add(buf,(LPBYTE)&xsize,sizeof(xsize));
249 if (pStm) IUnknown_Release(pStm);
250 HeapFree(GetProcessHeap(), 0, tempbuf);
251 return hres;
254 /********************* OLE Proxy/Stub Factory ********************************/
255 static HRESULT WINAPI
256 PSFacBuf_QueryInterface(LPPSFACTORYBUFFER iface, REFIID iid, LPVOID *ppv) {
257 if (IsEqualIID(iid,&IID_IPSFactoryBuffer)||IsEqualIID(iid,&IID_IUnknown)) {
258 *ppv = iface;
259 /* No ref counting, static class */
260 return S_OK;
262 FIXME("(%s) unknown IID?\n",debugstr_guid(iid));
263 return E_NOINTERFACE;
266 static ULONG WINAPI PSFacBuf_AddRef(LPPSFACTORYBUFFER iface) { return 2; }
267 static ULONG WINAPI PSFacBuf_Release(LPPSFACTORYBUFFER iface) { return 1; }
269 static HRESULT
270 _get_typeinfo_for_iid(REFIID riid, ITypeInfo**ti) {
271 HRESULT hres;
272 HKEY ikey;
273 char tlguid[200],typelibkey[300],interfacekey[300],ver[100];
274 char tlfn[260];
275 OLECHAR tlfnW[260];
276 DWORD tlguidlen, verlen, type;
277 LONG tlfnlen;
278 ITypeLib *tl;
280 sprintf( interfacekey, "Interface\\{%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x}\\Typelib",
281 riid->Data1, riid->Data2, riid->Data3,
282 riid->Data4[0], riid->Data4[1], riid->Data4[2], riid->Data4[3],
283 riid->Data4[4], riid->Data4[5], riid->Data4[6], riid->Data4[7]
286 if (RegOpenKeyA(HKEY_CLASSES_ROOT,interfacekey,&ikey)) {
287 ERR("No %s key found.\n",interfacekey);
288 return E_FAIL;
290 tlguidlen = sizeof(tlguid);
291 if (RegQueryValueExA(ikey,NULL,NULL,&type,(LPBYTE)tlguid,&tlguidlen)) {
292 ERR("Getting typelib guid failed.\n");
293 RegCloseKey(ikey);
294 return E_FAIL;
296 verlen = sizeof(ver);
297 if (RegQueryValueExA(ikey,"Version",NULL,&type,(LPBYTE)ver,&verlen)) {
298 ERR("Could not get version value?\n");
299 RegCloseKey(ikey);
300 return E_FAIL;
302 RegCloseKey(ikey);
303 sprintf(typelibkey,"Typelib\\%s\\%s\\0\\win%u",tlguid,ver,(sizeof(void*) == 8) ? 64 : 32);
304 tlfnlen = sizeof(tlfn);
305 if (RegQueryValueA(HKEY_CLASSES_ROOT,typelibkey,tlfn,&tlfnlen)) {
306 ERR("Could not get typelib fn?\n");
307 return E_FAIL;
309 MultiByteToWideChar(CP_ACP, 0, tlfn, -1, tlfnW, sizeof(tlfnW) / sizeof(tlfnW[0]));
310 hres = LoadTypeLib(tlfnW,&tl);
311 if (hres) {
312 ERR("Failed to load typelib for %s, but it should be there.\n",debugstr_guid(riid));
313 return hres;
315 hres = ITypeLib_GetTypeInfoOfGuid(tl,riid,ti);
316 if (hres) {
317 ERR("typelib does not contain info for %s?\n",debugstr_guid(riid));
318 ITypeLib_Release(tl);
319 return hres;
321 ITypeLib_Release(tl);
322 return hres;
326 * Determine the number of functions including all inherited functions
327 * and well as the size of the vtbl.
328 * Note for non-dual dispinterfaces we simply return the size of IDispatch.
330 static HRESULT num_of_funcs(ITypeInfo *tinfo, unsigned int *num,
331 unsigned int *vtbl_size)
333 HRESULT hr;
334 TYPEATTR *attr;
335 ITypeInfo *tinfo2;
336 UINT inherited_funcs = 0, i;
338 *num = 0;
339 if(vtbl_size) *vtbl_size = 0;
341 hr = ITypeInfo_GetTypeAttr(tinfo, &attr);
342 if (hr)
344 ERR("GetTypeAttr failed with %x\n", hr);
345 return hr;
348 if(attr->typekind == TKIND_DISPATCH)
350 if(attr->wTypeFlags & TYPEFLAG_FDUAL)
352 HREFTYPE href;
354 ITypeInfo_ReleaseTypeAttr(tinfo, attr);
355 hr = ITypeInfo_GetRefTypeOfImplType(tinfo, -1, &href);
356 if(FAILED(hr))
358 ERR("Unable to get interface href from dual dispinterface\n");
359 return hr;
361 hr = ITypeInfo_GetRefTypeInfo(tinfo, href, &tinfo2);
362 if(FAILED(hr))
364 ERR("Unable to get interface from dual dispinterface\n");
365 return hr;
367 hr = num_of_funcs(tinfo2, num, vtbl_size);
368 ITypeInfo_Release(tinfo2);
369 return hr;
371 else /* non-dual dispinterface */
373 /* These will be the size of IDispatchVtbl */
374 *num = attr->cbSizeVft / sizeof(void *);
375 if(vtbl_size) *vtbl_size = attr->cbSizeVft;
376 ITypeInfo_ReleaseTypeAttr(tinfo, attr);
377 return hr;
381 for (i = 0; i < attr->cImplTypes; i++)
383 HREFTYPE href;
384 ITypeInfo *pSubTypeInfo;
385 UINT sub_funcs;
387 hr = ITypeInfo_GetRefTypeOfImplType(tinfo, i, &href);
388 if (FAILED(hr)) goto end;
389 hr = ITypeInfo_GetRefTypeInfo(tinfo, href, &pSubTypeInfo);
390 if (FAILED(hr)) goto end;
392 hr = num_of_funcs(pSubTypeInfo, &sub_funcs, NULL);
393 ITypeInfo_Release(pSubTypeInfo);
395 if(FAILED(hr)) goto end;
396 inherited_funcs += sub_funcs;
399 *num = inherited_funcs + attr->cFuncs;
400 if(vtbl_size) *vtbl_size = attr->cbSizeVft;
402 end:
403 ITypeInfo_ReleaseTypeAttr(tinfo, attr);
404 return hr;
407 #ifdef __i386__
409 #include "pshpack1.h"
411 typedef struct _TMAsmProxy {
412 BYTE popleax;
413 BYTE pushlval;
414 DWORD nr;
415 BYTE pushleax;
416 BYTE lcall;
417 DWORD xcall;
418 BYTE lret;
419 WORD bytestopop;
420 BYTE nop;
421 } TMAsmProxy;
423 #include "poppack.h"
425 #else /* __i386__ */
426 # warning You need to implement stubless proxies for your architecture
427 typedef struct _TMAsmProxy {
428 } TMAsmProxy;
429 #endif
431 typedef struct _TMProxyImpl {
432 LPVOID *lpvtbl;
433 IRpcProxyBuffer IRpcProxyBuffer_iface;
434 LONG ref;
436 TMAsmProxy *asmstubs;
437 ITypeInfo* tinfo;
438 IRpcChannelBuffer* chanbuf;
439 IID iid;
440 CRITICAL_SECTION crit;
441 IUnknown *outerunknown;
442 IDispatch *dispatch;
443 IRpcProxyBuffer *dispatch_proxy;
444 } TMProxyImpl;
446 static inline TMProxyImpl *impl_from_IRpcProxyBuffer( IRpcProxyBuffer *iface )
448 return CONTAINING_RECORD(iface, TMProxyImpl, IRpcProxyBuffer_iface);
451 static HRESULT WINAPI
452 TMProxyImpl_QueryInterface(LPRPCPROXYBUFFER iface, REFIID riid, LPVOID *ppv)
454 TRACE("()\n");
455 if (IsEqualIID(riid,&IID_IUnknown)||IsEqualIID(riid,&IID_IRpcProxyBuffer)) {
456 *ppv = iface;
457 IRpcProxyBuffer_AddRef(iface);
458 return S_OK;
460 FIXME("no interface for %s\n",debugstr_guid(riid));
461 return E_NOINTERFACE;
464 static ULONG WINAPI
465 TMProxyImpl_AddRef(LPRPCPROXYBUFFER iface)
467 TMProxyImpl *This = impl_from_IRpcProxyBuffer( iface );
468 ULONG refCount = InterlockedIncrement(&This->ref);
470 TRACE("(%p)->(ref before=%u)\n",This, refCount - 1);
472 return refCount;
475 static ULONG WINAPI
476 TMProxyImpl_Release(LPRPCPROXYBUFFER iface)
478 TMProxyImpl *This = impl_from_IRpcProxyBuffer( iface );
479 ULONG refCount = InterlockedDecrement(&This->ref);
481 TRACE("(%p)->(ref before=%u)\n",This, refCount + 1);
483 if (!refCount)
485 if (This->dispatch_proxy) IRpcProxyBuffer_Release(This->dispatch_proxy);
486 This->crit.DebugInfo->Spare[0] = 0;
487 DeleteCriticalSection(&This->crit);
488 if (This->chanbuf) IRpcChannelBuffer_Release(This->chanbuf);
489 VirtualFree(This->asmstubs, 0, MEM_RELEASE);
490 HeapFree(GetProcessHeap(), 0, This->lpvtbl);
491 ITypeInfo_Release(This->tinfo);
492 CoTaskMemFree(This);
494 return refCount;
497 static HRESULT WINAPI
498 TMProxyImpl_Connect(
499 LPRPCPROXYBUFFER iface,IRpcChannelBuffer* pRpcChannelBuffer)
501 TMProxyImpl *This = impl_from_IRpcProxyBuffer( iface );
503 TRACE("(%p)\n", pRpcChannelBuffer);
505 EnterCriticalSection(&This->crit);
507 IRpcChannelBuffer_AddRef(pRpcChannelBuffer);
508 This->chanbuf = pRpcChannelBuffer;
510 LeaveCriticalSection(&This->crit);
512 if (This->dispatch_proxy)
514 IRpcChannelBuffer *pDelegateChannel;
515 HRESULT hr = TMarshalDispatchChannel_Create(pRpcChannelBuffer, &This->iid, &pDelegateChannel);
516 if (FAILED(hr))
517 return hr;
518 hr = IRpcProxyBuffer_Connect(This->dispatch_proxy, pDelegateChannel);
519 IRpcChannelBuffer_Release(pDelegateChannel);
520 return hr;
523 return S_OK;
526 static void WINAPI
527 TMProxyImpl_Disconnect(LPRPCPROXYBUFFER iface)
529 TMProxyImpl *This = impl_from_IRpcProxyBuffer( iface );
531 TRACE("()\n");
533 EnterCriticalSection(&This->crit);
535 IRpcChannelBuffer_Release(This->chanbuf);
536 This->chanbuf = NULL;
538 LeaveCriticalSection(&This->crit);
540 if (This->dispatch_proxy)
541 IRpcProxyBuffer_Disconnect(This->dispatch_proxy);
545 static const IRpcProxyBufferVtbl tmproxyvtable = {
546 TMProxyImpl_QueryInterface,
547 TMProxyImpl_AddRef,
548 TMProxyImpl_Release,
549 TMProxyImpl_Connect,
550 TMProxyImpl_Disconnect
553 /* how much space do we use on stack in DWORD steps. */
554 static int
555 _argsize(TYPEDESC *tdesc, ITypeInfo *tinfo) {
556 switch (tdesc->vt) {
557 case VT_I8:
558 case VT_UI8:
559 return 8/sizeof(DWORD);
560 case VT_R8:
561 return sizeof(double)/sizeof(DWORD);
562 case VT_CY:
563 return sizeof(CY)/sizeof(DWORD);
564 case VT_DATE:
565 return sizeof(DATE)/sizeof(DWORD);
566 case VT_DECIMAL:
567 return (sizeof(DECIMAL)+3)/sizeof(DWORD);
568 case VT_VARIANT:
569 return (sizeof(VARIANT)+3)/sizeof(DWORD);
570 case VT_USERDEFINED:
572 ITypeInfo *tinfo2;
573 TYPEATTR *tattr;
574 HRESULT hres;
575 DWORD ret;
577 hres = ITypeInfo_GetRefTypeInfo(tinfo,tdesc->u.hreftype,&tinfo2);
578 if (FAILED(hres))
579 return 0; /* should fail critically in serialize_param */
580 ITypeInfo_GetTypeAttr(tinfo2,&tattr);
581 ret = (tattr->cbSizeInstance+3)/sizeof(DWORD);
582 ITypeInfo_ReleaseTypeAttr(tinfo2, tattr);
583 ITypeInfo_Release(tinfo2);
584 return ret;
586 default:
587 return 1;
591 /* how much space do we use on the heap (in bytes) */
592 static int
593 _xsize(const TYPEDESC *td, ITypeInfo *tinfo) {
594 switch (td->vt) {
595 case VT_DATE:
596 return sizeof(DATE);
597 case VT_CY:
598 return sizeof(CY);
599 case VT_VARIANT:
600 return sizeof(VARIANT);
601 case VT_CARRAY: {
602 int i, arrsize = 1;
603 const ARRAYDESC *adesc = td->u.lpadesc;
605 for (i=0;i<adesc->cDims;i++)
606 arrsize *= adesc->rgbounds[i].cElements;
607 return arrsize*_xsize(&adesc->tdescElem, tinfo);
609 case VT_UI8:
610 case VT_I8:
611 case VT_R8:
612 return 8;
613 case VT_UI2:
614 case VT_I2:
615 case VT_BOOL:
616 return 2;
617 case VT_UI1:
618 case VT_I1:
619 return 1;
620 case VT_USERDEFINED:
622 ITypeInfo *tinfo2;
623 TYPEATTR *tattr;
624 HRESULT hres;
625 DWORD ret;
627 hres = ITypeInfo_GetRefTypeInfo(tinfo,td->u.hreftype,&tinfo2);
628 if (FAILED(hres))
629 return 0;
630 ITypeInfo_GetTypeAttr(tinfo2,&tattr);
631 ret = tattr->cbSizeInstance;
632 ITypeInfo_ReleaseTypeAttr(tinfo2, tattr);
633 ITypeInfo_Release(tinfo2);
634 return ret;
636 default:
637 return 4;
641 /* Whether we pass this type by reference or by value */
642 static int
643 _passbyref(const TYPEDESC *td, ITypeInfo *tinfo) {
644 if (td->vt == VT_USERDEFINED ||
645 td->vt == VT_VARIANT ||
646 td->vt == VT_PTR)
647 return 1;
649 return 0;
652 static HRESULT
653 serialize_param(
654 ITypeInfo *tinfo,
655 BOOL writeit,
656 BOOL debugout,
657 BOOL dealloc,
658 TYPEDESC *tdesc,
659 DWORD *arg,
660 marshal_state *buf)
662 HRESULT hres = S_OK;
663 VARTYPE vartype;
665 TRACE("(tdesc.vt %s)\n",debugstr_vt(tdesc->vt));
667 vartype = tdesc->vt;
668 if ((vartype & 0xf000) == VT_ARRAY)
669 vartype = VT_SAFEARRAY;
671 switch (vartype) {
672 case VT_DATE:
673 case VT_I8:
674 case VT_UI8:
675 case VT_R8:
676 case VT_CY:
677 hres = S_OK;
678 if (debugout) TRACE_(olerelay)("%x%x\n",arg[0],arg[1]);
679 if (writeit)
680 hres = xbuf_add(buf,(LPBYTE)arg,8);
681 return hres;
682 case VT_ERROR:
683 case VT_INT:
684 case VT_UINT:
685 case VT_I4:
686 case VT_R4:
687 case VT_UI4:
688 hres = S_OK;
689 if (debugout) TRACE_(olerelay)("%x\n",*arg);
690 if (writeit)
691 hres = xbuf_add(buf,(LPBYTE)arg,sizeof(DWORD));
692 return hres;
693 case VT_I2:
694 case VT_UI2:
695 case VT_BOOL:
696 hres = S_OK;
697 if (debugout) TRACE_(olerelay)("%04x\n",*arg & 0xffff);
698 if (writeit)
699 hres = xbuf_add(buf,(LPBYTE)arg,sizeof(DWORD));
700 return hres;
701 case VT_I1:
702 case VT_UI1:
703 hres = S_OK;
704 if (debugout) TRACE_(olerelay)("%02x\n",*arg & 0xff);
705 if (writeit)
706 hres = xbuf_add(buf,(LPBYTE)arg,sizeof(DWORD));
707 return hres;
708 case VT_VARIANT: {
709 if (debugout) TRACE_(olerelay)("Vt(%s%s)(",debugstr_vt(V_VT((VARIANT *)arg)),debugstr_vf(V_VT((VARIANT *)arg)));
710 if (writeit)
712 ULONG flags = MAKELONG(MSHCTX_DIFFERENTMACHINE, NDR_LOCAL_DATA_REPRESENTATION);
713 ULONG size = VARIANT_UserSize(&flags, buf->curoff, (VARIANT *)arg);
714 xbuf_resize(buf, size);
715 VARIANT_UserMarshal(&flags, buf->base + buf->curoff, (VARIANT *)arg);
716 buf->curoff = size;
718 if (dealloc)
720 ULONG flags = MAKELONG(MSHCTX_DIFFERENTMACHINE, NDR_LOCAL_DATA_REPRESENTATION);
721 VARIANT_UserFree(&flags, (VARIANT *)arg);
723 return S_OK;
725 case VT_BSTR: {
726 if (debugout) {
727 if (*arg)
728 TRACE_(olerelay)("%s",relaystr((WCHAR*)*arg));
729 else
730 TRACE_(olerelay)("<bstr NULL>");
732 if (writeit)
734 ULONG flags = MAKELONG(MSHCTX_DIFFERENTMACHINE, NDR_LOCAL_DATA_REPRESENTATION);
735 ULONG size = BSTR_UserSize(&flags, buf->curoff, (BSTR *)arg);
736 xbuf_resize(buf, size);
737 BSTR_UserMarshal(&flags, buf->base + buf->curoff, (BSTR *)arg);
738 buf->curoff = size;
740 if (dealloc)
742 ULONG flags = MAKELONG(MSHCTX_DIFFERENTMACHINE, NDR_LOCAL_DATA_REPRESENTATION);
743 BSTR_UserFree(&flags, (BSTR *)arg);
745 return S_OK;
747 case VT_PTR: {
748 DWORD cookie;
749 BOOL derefhere = TRUE;
751 if (tdesc->u.lptdesc->vt == VT_USERDEFINED) {
752 ITypeInfo *tinfo2;
753 TYPEATTR *tattr;
755 hres = ITypeInfo_GetRefTypeInfo(tinfo,tdesc->u.lptdesc->u.hreftype,&tinfo2);
756 if (hres) {
757 ERR("Could not get typeinfo of hreftype %x for VT_USERDEFINED.\n",tdesc->u.lptdesc->u.hreftype);
758 return hres;
760 ITypeInfo_GetTypeAttr(tinfo2,&tattr);
761 switch (tattr->typekind) {
762 case TKIND_ALIAS:
763 if (tattr->tdescAlias.vt == VT_USERDEFINED)
765 DWORD href = tattr->tdescAlias.u.hreftype;
766 ITypeInfo_ReleaseTypeAttr(tinfo, tattr);
767 ITypeInfo_Release(tinfo2);
768 hres = ITypeInfo_GetRefTypeInfo(tinfo,href,&tinfo2);
769 if (hres) {
770 ERR("Could not get typeinfo of hreftype %x for VT_USERDEFINED.\n",tdesc->u.lptdesc->u.hreftype);
771 return hres;
773 ITypeInfo_GetTypeAttr(tinfo2,&tattr);
774 derefhere = (tattr->typekind != TKIND_DISPATCH && tattr->typekind != TKIND_INTERFACE);
776 break;
777 case TKIND_ENUM: /* confirmed */
778 case TKIND_RECORD: /* FIXME: mostly untested */
779 break;
780 case TKIND_DISPATCH: /* will be done in VT_USERDEFINED case */
781 case TKIND_INTERFACE: /* will be done in VT_USERDEFINED case */
782 derefhere=FALSE;
783 break;
784 default:
785 FIXME("unhandled switch cases tattr->typekind %d\n", tattr->typekind);
786 derefhere=FALSE;
787 break;
789 ITypeInfo_ReleaseTypeAttr(tinfo, tattr);
790 ITypeInfo_Release(tinfo2);
793 if (debugout) TRACE_(olerelay)("*");
794 /* Write always, so the other side knows when it gets a NULL pointer.
796 cookie = *arg ? 0x42424242 : 0;
797 hres = xbuf_add(buf,(LPBYTE)&cookie,sizeof(cookie));
798 if (hres)
799 return hres;
800 if (!*arg) {
801 if (debugout) TRACE_(olerelay)("NULL");
802 return S_OK;
804 hres = serialize_param(tinfo,writeit,debugout,dealloc,tdesc->u.lptdesc,(DWORD*)*arg,buf);
805 if (derefhere && dealloc) HeapFree(GetProcessHeap(),0,(LPVOID)*arg);
806 return hres;
808 case VT_UNKNOWN:
809 if (debugout) TRACE_(olerelay)("unk(0x%x)",*arg);
810 if (writeit)
811 hres = _marshal_interface(buf,&IID_IUnknown,(LPUNKNOWN)*arg);
812 if (dealloc && *(IUnknown **)arg)
813 IUnknown_Release((LPUNKNOWN)*arg);
814 return hres;
815 case VT_DISPATCH:
816 if (debugout) TRACE_(olerelay)("idisp(0x%x)",*arg);
817 if (writeit)
818 hres = _marshal_interface(buf,&IID_IDispatch,(LPUNKNOWN)*arg);
819 if (dealloc && *(IUnknown **)arg)
820 IUnknown_Release((LPUNKNOWN)*arg);
821 return hres;
822 case VT_VOID:
823 if (debugout) TRACE_(olerelay)("<void>");
824 return S_OK;
825 case VT_USERDEFINED: {
826 ITypeInfo *tinfo2;
827 TYPEATTR *tattr;
829 hres = ITypeInfo_GetRefTypeInfo(tinfo,tdesc->u.hreftype,&tinfo2);
830 if (hres) {
831 ERR("Could not get typeinfo of hreftype %x for VT_USERDEFINED.\n",tdesc->u.hreftype);
832 return hres;
834 ITypeInfo_GetTypeAttr(tinfo2,&tattr);
835 switch (tattr->typekind) {
836 case TKIND_DISPATCH:
837 case TKIND_INTERFACE:
838 if (writeit)
839 hres=_marshal_interface(buf,&(tattr->guid),(LPUNKNOWN)arg);
840 if (dealloc)
841 IUnknown_Release((LPUNKNOWN)arg);
842 break;
843 case TKIND_RECORD: {
844 int i;
845 if (debugout) TRACE_(olerelay)("{");
846 for (i=0;i<tattr->cVars;i++) {
847 VARDESC *vdesc;
848 ELEMDESC *elem2;
849 TYPEDESC *tdesc2;
851 hres = ITypeInfo2_GetVarDesc(tinfo2, i, &vdesc);
852 if (hres) {
853 ERR("Could not get vardesc of %d\n",i);
854 return hres;
856 elem2 = &vdesc->elemdescVar;
857 tdesc2 = &elem2->tdesc;
858 hres = serialize_param(
859 tinfo2,
860 writeit,
861 debugout,
862 dealloc,
863 tdesc2,
864 (DWORD*)(((LPBYTE)arg)+vdesc->u.oInst),
867 ITypeInfo_ReleaseVarDesc(tinfo2, vdesc);
868 if (hres!=S_OK)
869 return hres;
870 if (debugout && (i<(tattr->cVars-1)))
871 TRACE_(olerelay)(",");
873 if (debugout) TRACE_(olerelay)("}");
874 break;
876 case TKIND_ALIAS:
877 hres = serialize_param(tinfo2,writeit,debugout,dealloc,&tattr->tdescAlias,arg,buf);
878 break;
879 case TKIND_ENUM:
880 hres = S_OK;
881 if (debugout) TRACE_(olerelay)("%x",*arg);
882 if (writeit)
883 hres = xbuf_add(buf,(LPBYTE)arg,sizeof(DWORD));
884 break;
885 default:
886 FIXME("Unhandled typekind %d\n",tattr->typekind);
887 hres = E_FAIL;
888 break;
890 ITypeInfo_ReleaseTypeAttr(tinfo2, tattr);
891 ITypeInfo_Release(tinfo2);
892 return hres;
894 case VT_CARRAY: {
895 ARRAYDESC *adesc = tdesc->u.lpadesc;
896 int i, arrsize = 1;
898 if (debugout) TRACE_(olerelay)("carr");
899 for (i=0;i<adesc->cDims;i++) {
900 if (debugout) TRACE_(olerelay)("[%d]",adesc->rgbounds[i].cElements);
901 arrsize *= adesc->rgbounds[i].cElements;
903 if (debugout) TRACE_(olerelay)("(vt %s)",debugstr_vt(adesc->tdescElem.vt));
904 if (debugout) TRACE_(olerelay)("[");
905 for (i=0;i<arrsize;i++) {
906 LPBYTE base = _passbyref(&adesc->tdescElem, tinfo) ? (LPBYTE) *arg : (LPBYTE) arg;
907 hres = serialize_param(tinfo, writeit, debugout, dealloc, &adesc->tdescElem, (DWORD*)((LPBYTE)base+i*_xsize(&adesc->tdescElem, tinfo)), buf);
908 if (hres)
909 return hres;
910 if (debugout && (i<arrsize-1)) TRACE_(olerelay)(",");
912 if (debugout) TRACE_(olerelay)("]");
913 if (dealloc)
914 HeapFree(GetProcessHeap(), 0, *(void **)arg);
915 return S_OK;
917 case VT_SAFEARRAY: {
918 if (writeit)
920 ULONG flags = MAKELONG(MSHCTX_DIFFERENTMACHINE, NDR_LOCAL_DATA_REPRESENTATION);
921 ULONG size = LPSAFEARRAY_UserSize(&flags, buf->curoff, (LPSAFEARRAY *)arg);
922 xbuf_resize(buf, size);
923 LPSAFEARRAY_UserMarshal(&flags, buf->base + buf->curoff, (LPSAFEARRAY *)arg);
924 buf->curoff = size;
926 if (dealloc)
928 ULONG flags = MAKELONG(MSHCTX_DIFFERENTMACHINE, NDR_LOCAL_DATA_REPRESENTATION);
929 LPSAFEARRAY_UserFree(&flags, (LPSAFEARRAY *)arg);
931 return S_OK;
933 default:
934 ERR("Unhandled marshal type %d.\n",tdesc->vt);
935 return S_OK;
939 static HRESULT
940 deserialize_param(
941 ITypeInfo *tinfo,
942 BOOL readit,
943 BOOL debugout,
944 BOOL alloc,
945 TYPEDESC *tdesc,
946 DWORD *arg,
947 marshal_state *buf)
949 HRESULT hres = S_OK;
950 VARTYPE vartype;
952 TRACE("vt %s at %p\n",debugstr_vt(tdesc->vt),arg);
954 vartype = tdesc->vt;
955 if ((vartype & 0xf000) == VT_ARRAY)
956 vartype = VT_SAFEARRAY;
958 while (1) {
959 switch (vartype) {
960 case VT_VARIANT: {
961 if (readit)
963 ULONG flags = MAKELONG(MSHCTX_DIFFERENTMACHINE, NDR_LOCAL_DATA_REPRESENTATION);
964 unsigned char *buffer;
965 buffer = VARIANT_UserUnmarshal(&flags, buf->base + buf->curoff, (VARIANT *)arg);
966 buf->curoff = buffer - buf->base;
968 return S_OK;
970 case VT_DATE:
971 case VT_I8:
972 case VT_UI8:
973 case VT_R8:
974 case VT_CY:
975 if (readit) {
976 hres = xbuf_get(buf,(LPBYTE)arg,8);
977 if (hres) ERR("Failed to read integer 8 byte\n");
979 if (debugout) TRACE_(olerelay)("%x%x",arg[0],arg[1]);
980 return hres;
981 case VT_ERROR:
982 case VT_I4:
983 case VT_INT:
984 case VT_UINT:
985 case VT_R4:
986 case VT_UI4:
987 if (readit) {
988 hres = xbuf_get(buf,(LPBYTE)arg,sizeof(DWORD));
989 if (hres) ERR("Failed to read integer 4 byte\n");
991 if (debugout) TRACE_(olerelay)("%x",*arg);
992 return hres;
993 case VT_I2:
994 case VT_UI2:
995 case VT_BOOL:
996 if (readit) {
997 DWORD x;
998 hres = xbuf_get(buf,(LPBYTE)&x,sizeof(DWORD));
999 if (hres) ERR("Failed to read integer 4 byte\n");
1000 memcpy(arg,&x,2);
1002 if (debugout) TRACE_(olerelay)("%04x",*arg & 0xffff);
1003 return hres;
1004 case VT_I1:
1005 case VT_UI1:
1006 if (readit) {
1007 DWORD x;
1008 hres = xbuf_get(buf,(LPBYTE)&x,sizeof(DWORD));
1009 if (hres) ERR("Failed to read integer 4 byte\n");
1010 memcpy(arg,&x,1);
1012 if (debugout) TRACE_(olerelay)("%02x",*arg & 0xff);
1013 return hres;
1014 case VT_BSTR: {
1015 if (readit)
1017 ULONG flags = MAKELONG(MSHCTX_DIFFERENTMACHINE, NDR_LOCAL_DATA_REPRESENTATION);
1018 unsigned char *buffer;
1019 buffer = BSTR_UserUnmarshal(&flags, buf->base + buf->curoff, (BSTR *)arg);
1020 buf->curoff = buffer - buf->base;
1021 if (debugout) TRACE_(olerelay)("%s",debugstr_w(*(BSTR *)arg));
1023 return S_OK;
1025 case VT_PTR: {
1026 DWORD cookie;
1027 BOOL derefhere = TRUE;
1029 if (tdesc->u.lptdesc->vt == VT_USERDEFINED) {
1030 ITypeInfo *tinfo2;
1031 TYPEATTR *tattr;
1033 hres = ITypeInfo_GetRefTypeInfo(tinfo,tdesc->u.lptdesc->u.hreftype,&tinfo2);
1034 if (hres) {
1035 ERR("Could not get typeinfo of hreftype %x for VT_USERDEFINED.\n",tdesc->u.lptdesc->u.hreftype);
1036 return hres;
1038 ITypeInfo_GetTypeAttr(tinfo2,&tattr);
1039 switch (tattr->typekind) {
1040 case TKIND_ALIAS:
1041 if (tattr->tdescAlias.vt == VT_USERDEFINED)
1043 DWORD href = tattr->tdescAlias.u.hreftype;
1044 ITypeInfo_ReleaseTypeAttr(tinfo, tattr);
1045 ITypeInfo_Release(tinfo2);
1046 hres = ITypeInfo_GetRefTypeInfo(tinfo,href,&tinfo2);
1047 if (hres) {
1048 ERR("Could not get typeinfo of hreftype %x for VT_USERDEFINED.\n",tdesc->u.lptdesc->u.hreftype);
1049 return hres;
1051 ITypeInfo_GetTypeAttr(tinfo2,&tattr);
1052 derefhere = (tattr->typekind != TKIND_DISPATCH && tattr->typekind != TKIND_INTERFACE);
1054 break;
1055 case TKIND_ENUM: /* confirmed */
1056 case TKIND_RECORD: /* FIXME: mostly untested */
1057 break;
1058 case TKIND_DISPATCH: /* will be done in VT_USERDEFINED case */
1059 case TKIND_INTERFACE: /* will be done in VT_USERDEFINED case */
1060 derefhere=FALSE;
1061 break;
1062 default:
1063 FIXME("unhandled switch cases tattr->typekind %d\n", tattr->typekind);
1064 derefhere=FALSE;
1065 break;
1067 ITypeInfo_ReleaseTypeAttr(tinfo2, tattr);
1068 ITypeInfo_Release(tinfo2);
1070 /* read it in all cases, we need to know if we have
1071 * NULL pointer or not.
1073 hres = xbuf_get(buf,(LPBYTE)&cookie,sizeof(cookie));
1074 if (hres) {
1075 ERR("Failed to load pointer cookie.\n");
1076 return hres;
1078 if (cookie != 0x42424242) {
1079 /* we read a NULL ptr from the remote side */
1080 if (debugout) TRACE_(olerelay)("NULL");
1081 *arg = 0;
1082 return S_OK;
1084 if (debugout) TRACE_(olerelay)("*");
1085 if (alloc) {
1086 /* Allocate space for the referenced struct */
1087 if (derefhere)
1088 *arg=(DWORD)HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,_xsize(tdesc->u.lptdesc, tinfo));
1090 if (derefhere)
1091 return deserialize_param(tinfo, readit, debugout, alloc, tdesc->u.lptdesc, (LPDWORD)*arg, buf);
1092 else
1093 return deserialize_param(tinfo, readit, debugout, alloc, tdesc->u.lptdesc, arg, buf);
1095 case VT_UNKNOWN:
1096 /* FIXME: UNKNOWN is unknown ..., but allocate 4 byte for it */
1097 if (alloc)
1098 *arg=(DWORD)HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,sizeof(DWORD));
1099 hres = S_OK;
1100 if (readit)
1101 hres = _unmarshal_interface(buf,&IID_IUnknown,(LPUNKNOWN*)arg);
1102 if (debugout)
1103 TRACE_(olerelay)("unk(%p)",arg);
1104 return hres;
1105 case VT_DISPATCH:
1106 hres = S_OK;
1107 if (readit)
1108 hres = _unmarshal_interface(buf,&IID_IDispatch,(LPUNKNOWN*)arg);
1109 if (debugout)
1110 TRACE_(olerelay)("idisp(%p)",arg);
1111 return hres;
1112 case VT_VOID:
1113 if (debugout) TRACE_(olerelay)("<void>");
1114 return S_OK;
1115 case VT_USERDEFINED: {
1116 ITypeInfo *tinfo2;
1117 TYPEATTR *tattr;
1119 hres = ITypeInfo_GetRefTypeInfo(tinfo,tdesc->u.hreftype,&tinfo2);
1120 if (hres) {
1121 ERR("Could not get typeinfo of hreftype %x for VT_USERDEFINED.\n",tdesc->u.hreftype);
1122 return hres;
1124 hres = ITypeInfo_GetTypeAttr(tinfo2,&tattr);
1125 if (hres) {
1126 ERR("Could not get typeattr in VT_USERDEFINED.\n");
1127 } else {
1128 switch (tattr->typekind) {
1129 case TKIND_DISPATCH:
1130 case TKIND_INTERFACE:
1131 if (readit)
1132 hres = _unmarshal_interface(buf,&(tattr->guid),(LPUNKNOWN*)arg);
1133 break;
1134 case TKIND_RECORD: {
1135 int i;
1137 if (debugout) TRACE_(olerelay)("{");
1138 for (i=0;i<tattr->cVars;i++) {
1139 VARDESC *vdesc;
1141 hres = ITypeInfo2_GetVarDesc(tinfo2, i, &vdesc);
1142 if (hres) {
1143 ERR("Could not get vardesc of %d\n",i);
1144 ITypeInfo_ReleaseTypeAttr(tinfo2, tattr);
1145 ITypeInfo_Release(tinfo2);
1146 return hres;
1148 hres = deserialize_param(
1149 tinfo2,
1150 readit,
1151 debugout,
1152 alloc,
1153 &vdesc->elemdescVar.tdesc,
1154 (DWORD*)(((LPBYTE)arg)+vdesc->u.oInst),
1157 ITypeInfo2_ReleaseVarDesc(tinfo2, vdesc);
1158 if (debugout && (i<tattr->cVars-1)) TRACE_(olerelay)(",");
1160 if (debugout) TRACE_(olerelay)("}");
1161 break;
1163 case TKIND_ALIAS:
1164 hres = deserialize_param(tinfo2,readit,debugout,alloc,&tattr->tdescAlias,arg,buf);
1165 break;
1166 case TKIND_ENUM:
1167 if (readit) {
1168 hres = xbuf_get(buf,(LPBYTE)arg,sizeof(DWORD));
1169 if (hres) ERR("Failed to read enum (4 byte)\n");
1171 if (debugout) TRACE_(olerelay)("%x",*arg);
1172 break;
1173 default:
1174 ERR("Unhandled typekind %d\n",tattr->typekind);
1175 hres = E_FAIL;
1176 break;
1178 ITypeInfo_ReleaseTypeAttr(tinfo2, tattr);
1180 if (hres)
1181 ERR("failed to stuballoc in TKIND_RECORD.\n");
1182 ITypeInfo_Release(tinfo2);
1183 return hres;
1185 case VT_CARRAY: {
1186 /* arg is pointing to the start of the array. */
1187 LPBYTE base = (LPBYTE) arg;
1188 ARRAYDESC *adesc = tdesc->u.lpadesc;
1189 int arrsize,i;
1190 arrsize = 1;
1191 if (adesc->cDims > 1) FIXME("cDims > 1 in VT_CARRAY. Does it work?\n");
1192 for (i=0;i<adesc->cDims;i++)
1193 arrsize *= adesc->rgbounds[i].cElements;
1194 if (_passbyref(&adesc->tdescElem, tinfo))
1196 base = HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,_xsize(tdesc->u.lptdesc, tinfo) * arrsize);
1197 *arg = (DWORD) base;
1199 for (i=0;i<arrsize;i++)
1200 deserialize_param(
1201 tinfo,
1202 readit,
1203 debugout,
1204 alloc,
1205 &adesc->tdescElem,
1206 (DWORD*)(base + i*_xsize(&adesc->tdescElem, tinfo)),
1209 return S_OK;
1211 case VT_SAFEARRAY: {
1212 if (readit)
1214 ULONG flags = MAKELONG(MSHCTX_DIFFERENTMACHINE, NDR_LOCAL_DATA_REPRESENTATION);
1215 unsigned char *buffer;
1216 buffer = LPSAFEARRAY_UserUnmarshal(&flags, buf->base + buf->curoff, (LPSAFEARRAY *)arg);
1217 buf->curoff = buffer - buf->base;
1219 return S_OK;
1221 default:
1222 ERR("No handler for VT type %d!\n",tdesc->vt);
1223 return S_OK;
1228 /* Retrieves a function's funcdesc, searching back into inherited interfaces. */
1229 static HRESULT get_funcdesc(ITypeInfo *tinfo, int iMethod, ITypeInfo **tactual, const FUNCDESC **fdesc,
1230 BSTR *iname, BSTR *fname, UINT *num)
1232 HRESULT hr;
1233 UINT i, impl_types;
1234 UINT inherited_funcs = 0;
1235 TYPEATTR *attr;
1237 if (fname) *fname = NULL;
1238 if (iname) *iname = NULL;
1239 if (num) *num = 0;
1240 *tactual = NULL;
1242 hr = ITypeInfo_GetTypeAttr(tinfo, &attr);
1243 if (FAILED(hr))
1245 ERR("GetTypeAttr failed with %x\n",hr);
1246 return hr;
1249 if(attr->typekind == TKIND_DISPATCH)
1251 if(attr->wTypeFlags & TYPEFLAG_FDUAL)
1253 HREFTYPE href;
1254 ITypeInfo *tinfo2;
1256 hr = ITypeInfo_GetRefTypeOfImplType(tinfo, -1, &href);
1257 if(FAILED(hr))
1259 ERR("Cannot get interface href from dual dispinterface\n");
1260 ITypeInfo_ReleaseTypeAttr(tinfo, attr);
1261 return hr;
1263 hr = ITypeInfo_GetRefTypeInfo(tinfo, href, &tinfo2);
1264 if(FAILED(hr))
1266 ERR("Cannot get interface from dual dispinterface\n");
1267 ITypeInfo_ReleaseTypeAttr(tinfo, attr);
1268 return hr;
1270 hr = get_funcdesc(tinfo2, iMethod, tactual, fdesc, iname, fname, num);
1271 ITypeInfo_Release(tinfo2);
1272 ITypeInfo_ReleaseTypeAttr(tinfo, attr);
1273 return hr;
1275 ERR("Shouldn't be called with a non-dual dispinterface\n");
1276 return E_FAIL;
1279 impl_types = attr->cImplTypes;
1280 ITypeInfo_ReleaseTypeAttr(tinfo, attr);
1282 for (i = 0; i < impl_types; i++)
1284 HREFTYPE href;
1285 ITypeInfo *pSubTypeInfo;
1286 UINT sub_funcs;
1288 hr = ITypeInfo_GetRefTypeOfImplType(tinfo, i, &href);
1289 if (FAILED(hr)) return hr;
1290 hr = ITypeInfo_GetRefTypeInfo(tinfo, href, &pSubTypeInfo);
1291 if (FAILED(hr)) return hr;
1293 hr = get_funcdesc(pSubTypeInfo, iMethod, tactual, fdesc, iname, fname, &sub_funcs);
1294 inherited_funcs += sub_funcs;
1295 ITypeInfo_Release(pSubTypeInfo);
1296 if(SUCCEEDED(hr)) return hr;
1298 if(iMethod < inherited_funcs)
1300 ERR("shouldn't be here\n");
1301 return E_INVALIDARG;
1304 for(i = inherited_funcs; i <= iMethod; i++)
1306 hr = ITypeInfoImpl_GetInternalFuncDesc(tinfo, i - inherited_funcs, fdesc);
1307 if(FAILED(hr))
1309 if(num) *num = i;
1310 return hr;
1314 /* found it. We don't care about num so zero it */
1315 if(num) *num = 0;
1316 *tactual = tinfo;
1317 ITypeInfo_AddRef(*tactual);
1318 if (fname) ITypeInfo_GetDocumentation(tinfo,(*fdesc)->memid,fname,NULL,NULL,NULL);
1319 if (iname) ITypeInfo_GetDocumentation(tinfo,-1,iname,NULL,NULL,NULL);
1320 return S_OK;
1323 static inline BOOL is_in_elem(const ELEMDESC *elem)
1325 return (elem->u.paramdesc.wParamFlags & PARAMFLAG_FIN || !elem->u.paramdesc.wParamFlags);
1328 static inline BOOL is_out_elem(const ELEMDESC *elem)
1330 return (elem->u.paramdesc.wParamFlags & PARAMFLAG_FOUT || !elem->u.paramdesc.wParamFlags);
1333 static DWORD
1334 xCall(LPVOID retptr, int method, TMProxyImpl *tpinfo /*, args */)
1336 DWORD *args = ((DWORD*)&tpinfo)+1, *xargs;
1337 const FUNCDESC *fdesc;
1338 HRESULT hres;
1339 int i, relaydeb = TRACE_ON(olerelay);
1340 marshal_state buf;
1341 RPCOLEMESSAGE msg;
1342 ULONG status;
1343 BSTR fname,iname;
1344 BSTR names[10];
1345 UINT nrofnames;
1346 DWORD remoteresult = 0;
1347 ITypeInfo *tinfo;
1348 IRpcChannelBuffer *chanbuf;
1350 EnterCriticalSection(&tpinfo->crit);
1352 hres = get_funcdesc(tpinfo->tinfo,method,&tinfo,&fdesc,&iname,&fname,NULL);
1353 if (hres) {
1354 ERR("Did not find typeinfo/funcdesc entry for method %d!\n",method);
1355 LeaveCriticalSection(&tpinfo->crit);
1356 return E_FAIL;
1359 if (!tpinfo->chanbuf)
1361 WARN("Tried to use disconnected proxy\n");
1362 ITypeInfo_Release(tinfo);
1363 LeaveCriticalSection(&tpinfo->crit);
1364 return RPC_E_DISCONNECTED;
1366 chanbuf = tpinfo->chanbuf;
1367 IRpcChannelBuffer_AddRef(chanbuf);
1369 LeaveCriticalSection(&tpinfo->crit);
1371 if (relaydeb) {
1372 TRACE_(olerelay)("->");
1373 if (iname)
1374 TRACE_(olerelay)("%s:",relaystr(iname));
1375 if (fname)
1376 TRACE_(olerelay)("%s(%d)",relaystr(fname),method);
1377 else
1378 TRACE_(olerelay)("%d",method);
1379 TRACE_(olerelay)("(");
1382 SysFreeString(iname);
1383 SysFreeString(fname);
1385 memset(&buf,0,sizeof(buf));
1387 /* normal typelib driven serializing */
1389 /* Need them for hack below */
1390 memset(names,0,sizeof(names));
1391 if (ITypeInfo_GetNames(tinfo,fdesc->memid,names,sizeof(names)/sizeof(names[0]),&nrofnames))
1392 nrofnames = 0;
1393 if (nrofnames > sizeof(names)/sizeof(names[0]))
1394 ERR("Need more names!\n");
1396 xargs = args;
1397 for (i=0;i<fdesc->cParams;i++) {
1398 ELEMDESC *elem = fdesc->lprgelemdescParam+i;
1399 if (relaydeb) {
1400 if (i) TRACE_(olerelay)(",");
1401 if (i+1<nrofnames && names[i+1])
1402 TRACE_(olerelay)("%s=",relaystr(names[i+1]));
1404 /* No need to marshal other data than FIN and any VT_PTR. */
1405 if (!is_in_elem(elem) && (elem->tdesc.vt != VT_PTR)) {
1406 xargs+=_argsize(&elem->tdesc, tinfo);
1407 if (relaydeb) TRACE_(olerelay)("[out]");
1408 continue;
1410 hres = serialize_param(
1411 tinfo,
1412 is_in_elem(elem),
1413 relaydeb,
1414 FALSE,
1415 &elem->tdesc,
1416 xargs,
1417 &buf
1420 if (hres) {
1421 ERR("Failed to serialize param, hres %x\n",hres);
1422 break;
1424 xargs+=_argsize(&elem->tdesc, tinfo);
1426 if (relaydeb) TRACE_(olerelay)(")");
1428 memset(&msg,0,sizeof(msg));
1429 msg.cbBuffer = buf.curoff;
1430 msg.iMethod = method;
1431 hres = IRpcChannelBuffer_GetBuffer(chanbuf,&msg,&(tpinfo->iid));
1432 if (hres) {
1433 ERR("RpcChannelBuffer GetBuffer failed, %x\n",hres);
1434 goto exit;
1436 memcpy(msg.Buffer,buf.base,buf.curoff);
1437 if (relaydeb) TRACE_(olerelay)("\n");
1438 hres = IRpcChannelBuffer_SendReceive(chanbuf,&msg,&status);
1439 if (hres) {
1440 ERR("RpcChannelBuffer SendReceive failed, %x\n",hres);
1441 goto exit;
1444 if (relaydeb) TRACE_(olerelay)(" status = %08x (",status);
1445 if (buf.base)
1446 buf.base = HeapReAlloc(GetProcessHeap(),0,buf.base,msg.cbBuffer);
1447 else
1448 buf.base = HeapAlloc(GetProcessHeap(),0,msg.cbBuffer);
1449 buf.size = msg.cbBuffer;
1450 memcpy(buf.base,msg.Buffer,buf.size);
1451 buf.curoff = 0;
1453 /* generic deserializer using typelib description */
1454 xargs = args;
1455 status = S_OK;
1456 for (i=0;i<fdesc->cParams;i++) {
1457 ELEMDESC *elem = fdesc->lprgelemdescParam+i;
1459 if (relaydeb) {
1460 if (i) TRACE_(olerelay)(",");
1461 if (i+1<nrofnames && names[i+1]) TRACE_(olerelay)("%s=",relaystr(names[i+1]));
1463 /* No need to marshal other data than FOUT and any VT_PTR */
1464 if (!is_out_elem(elem) && (elem->tdesc.vt != VT_PTR)) {
1465 xargs += _argsize(&elem->tdesc, tinfo);
1466 if (relaydeb) TRACE_(olerelay)("[in]");
1467 continue;
1469 hres = deserialize_param(
1470 tinfo,
1471 is_out_elem(elem),
1472 relaydeb,
1473 FALSE,
1474 &(elem->tdesc),
1475 xargs,
1476 &buf
1478 if (hres) {
1479 ERR("Failed to unmarshall param, hres %x\n",hres);
1480 status = hres;
1481 break;
1483 xargs += _argsize(&elem->tdesc, tinfo);
1486 hres = xbuf_get(&buf, (LPBYTE)&remoteresult, sizeof(DWORD));
1487 if (hres != S_OK)
1488 goto exit;
1489 if (relaydeb) TRACE_(olerelay)(") = %08x\n", remoteresult);
1491 hres = remoteresult;
1493 exit:
1494 IRpcChannelBuffer_FreeBuffer(chanbuf,&msg);
1495 for (i = 0; i < nrofnames; i++)
1496 SysFreeString(names[i]);
1497 HeapFree(GetProcessHeap(),0,buf.base);
1498 IRpcChannelBuffer_Release(chanbuf);
1499 ITypeInfo_Release(tinfo);
1500 TRACE("-- 0x%08x\n", hres);
1501 return hres;
1504 static HRESULT WINAPI ProxyIUnknown_QueryInterface(IUnknown *iface, REFIID riid, void **ppv)
1506 TMProxyImpl *proxy = (TMProxyImpl *)iface;
1508 TRACE("(%s, %p)\n", debugstr_guid(riid), ppv);
1510 if (proxy->outerunknown)
1511 return IUnknown_QueryInterface(proxy->outerunknown, riid, ppv);
1513 FIXME("No interface\n");
1514 return E_NOINTERFACE;
1517 static ULONG WINAPI ProxyIUnknown_AddRef(IUnknown *iface)
1519 TMProxyImpl *proxy = (TMProxyImpl *)iface;
1521 TRACE("\n");
1523 if (proxy->outerunknown)
1524 return IUnknown_AddRef(proxy->outerunknown);
1526 return 2; /* FIXME */
1529 static ULONG WINAPI ProxyIUnknown_Release(IUnknown *iface)
1531 TMProxyImpl *proxy = (TMProxyImpl *)iface;
1533 TRACE("\n");
1535 if (proxy->outerunknown)
1536 return IUnknown_Release(proxy->outerunknown);
1538 return 1; /* FIXME */
1541 static HRESULT WINAPI ProxyIDispatch_GetTypeInfoCount(LPDISPATCH iface, UINT * pctinfo)
1543 TMProxyImpl *This = (TMProxyImpl *)iface;
1545 TRACE("(%p)\n", pctinfo);
1547 return IDispatch_GetTypeInfoCount(This->dispatch, pctinfo);
1550 static HRESULT WINAPI ProxyIDispatch_GetTypeInfo(LPDISPATCH iface, UINT iTInfo, LCID lcid, ITypeInfo** ppTInfo)
1552 TMProxyImpl *This = (TMProxyImpl *)iface;
1554 TRACE("(%d, %x, %p)\n", iTInfo, lcid, ppTInfo);
1556 return IDispatch_GetTypeInfo(This->dispatch, iTInfo, lcid, ppTInfo);
1559 static HRESULT WINAPI ProxyIDispatch_GetIDsOfNames(LPDISPATCH iface, REFIID riid, LPOLESTR * rgszNames, UINT cNames, LCID lcid, DISPID * rgDispId)
1561 TMProxyImpl *This = (TMProxyImpl *)iface;
1563 TRACE("(%s, %p, %d, 0x%x, %p)\n", debugstr_guid(riid), rgszNames, cNames, lcid, rgDispId);
1565 return IDispatch_GetIDsOfNames(This->dispatch, riid, rgszNames,
1566 cNames, lcid, rgDispId);
1569 static HRESULT WINAPI ProxyIDispatch_Invoke(LPDISPATCH iface, DISPID dispIdMember, REFIID riid, LCID lcid,
1570 WORD wFlags, DISPPARAMS * pDispParams, VARIANT * pVarResult,
1571 EXCEPINFO * pExcepInfo, UINT * puArgErr)
1573 TMProxyImpl *This = (TMProxyImpl *)iface;
1575 TRACE("(%d, %s, 0x%x, 0x%x, %p, %p, %p, %p)\n", dispIdMember,
1576 debugstr_guid(riid), lcid, wFlags, pDispParams, pVarResult,
1577 pExcepInfo, puArgErr);
1579 return IDispatch_Invoke(This->dispatch, dispIdMember, riid, lcid,
1580 wFlags, pDispParams, pVarResult, pExcepInfo,
1581 puArgErr);
1584 typedef struct
1586 IRpcChannelBuffer IRpcChannelBuffer_iface;
1587 LONG refs;
1588 /* the IDispatch-derived interface we are handling */
1589 IID tmarshal_iid;
1590 IRpcChannelBuffer *pDelegateChannel;
1591 } TMarshalDispatchChannel;
1593 static inline TMarshalDispatchChannel *impl_from_IRpcChannelBuffer(IRpcChannelBuffer *iface)
1595 return CONTAINING_RECORD(iface, TMarshalDispatchChannel, IRpcChannelBuffer_iface);
1598 static HRESULT WINAPI TMarshalDispatchChannel_QueryInterface(LPRPCCHANNELBUFFER iface, REFIID riid, LPVOID *ppv)
1600 *ppv = NULL;
1601 if (IsEqualIID(riid,&IID_IRpcChannelBuffer) || IsEqualIID(riid,&IID_IUnknown))
1603 *ppv = iface;
1604 IUnknown_AddRef(iface);
1605 return S_OK;
1607 return E_NOINTERFACE;
1610 static ULONG WINAPI TMarshalDispatchChannel_AddRef(LPRPCCHANNELBUFFER iface)
1612 TMarshalDispatchChannel *This = impl_from_IRpcChannelBuffer(iface);
1613 return InterlockedIncrement(&This->refs);
1616 static ULONG WINAPI TMarshalDispatchChannel_Release(LPRPCCHANNELBUFFER iface)
1618 TMarshalDispatchChannel *This = impl_from_IRpcChannelBuffer(iface);
1619 ULONG ref;
1621 ref = InterlockedDecrement(&This->refs);
1622 if (ref)
1623 return ref;
1625 IRpcChannelBuffer_Release(This->pDelegateChannel);
1626 HeapFree(GetProcessHeap(), 0, This);
1627 return 0;
1630 static HRESULT WINAPI TMarshalDispatchChannel_GetBuffer(LPRPCCHANNELBUFFER iface, RPCOLEMESSAGE* olemsg, REFIID riid)
1632 TMarshalDispatchChannel *This = impl_from_IRpcChannelBuffer(iface);
1633 TRACE("(%p, %s)\n", olemsg, debugstr_guid(riid));
1634 /* Note: we are pretending to invoke a method on the interface identified
1635 * by tmarshal_iid so that we can re-use the IDispatch proxy/stub code
1636 * without the RPC runtime getting confused by not exporting an IDispatch interface */
1637 return IRpcChannelBuffer_GetBuffer(This->pDelegateChannel, olemsg, &This->tmarshal_iid);
1640 static HRESULT WINAPI TMarshalDispatchChannel_SendReceive(LPRPCCHANNELBUFFER iface, RPCOLEMESSAGE *olemsg, ULONG *pstatus)
1642 TMarshalDispatchChannel *This = impl_from_IRpcChannelBuffer(iface);
1643 TRACE("(%p, %p)\n", olemsg, pstatus);
1644 return IRpcChannelBuffer_SendReceive(This->pDelegateChannel, olemsg, pstatus);
1647 static HRESULT WINAPI TMarshalDispatchChannel_FreeBuffer(LPRPCCHANNELBUFFER iface, RPCOLEMESSAGE* olemsg)
1649 TMarshalDispatchChannel *This = impl_from_IRpcChannelBuffer(iface);
1650 TRACE("(%p)\n", olemsg);
1651 return IRpcChannelBuffer_FreeBuffer(This->pDelegateChannel, olemsg);
1654 static HRESULT WINAPI TMarshalDispatchChannel_GetDestCtx(LPRPCCHANNELBUFFER iface, DWORD* pdwDestContext, void** ppvDestContext)
1656 TMarshalDispatchChannel *This = impl_from_IRpcChannelBuffer(iface);
1657 TRACE("(%p,%p)\n", pdwDestContext, ppvDestContext);
1658 return IRpcChannelBuffer_GetDestCtx(This->pDelegateChannel, pdwDestContext, ppvDestContext);
1661 static HRESULT WINAPI TMarshalDispatchChannel_IsConnected(LPRPCCHANNELBUFFER iface)
1663 TMarshalDispatchChannel *This = impl_from_IRpcChannelBuffer(iface);
1664 TRACE("()\n");
1665 return IRpcChannelBuffer_IsConnected(This->pDelegateChannel);
1668 static const IRpcChannelBufferVtbl TMarshalDispatchChannelVtbl =
1670 TMarshalDispatchChannel_QueryInterface,
1671 TMarshalDispatchChannel_AddRef,
1672 TMarshalDispatchChannel_Release,
1673 TMarshalDispatchChannel_GetBuffer,
1674 TMarshalDispatchChannel_SendReceive,
1675 TMarshalDispatchChannel_FreeBuffer,
1676 TMarshalDispatchChannel_GetDestCtx,
1677 TMarshalDispatchChannel_IsConnected
1680 static HRESULT TMarshalDispatchChannel_Create(
1681 IRpcChannelBuffer *pDelegateChannel, REFIID tmarshal_riid,
1682 IRpcChannelBuffer **ppChannel)
1684 TMarshalDispatchChannel *This = HeapAlloc(GetProcessHeap(), 0, sizeof(*This));
1685 if (!This)
1686 return E_OUTOFMEMORY;
1688 This->IRpcChannelBuffer_iface.lpVtbl = &TMarshalDispatchChannelVtbl;
1689 This->refs = 1;
1690 IRpcChannelBuffer_AddRef(pDelegateChannel);
1691 This->pDelegateChannel = pDelegateChannel;
1692 This->tmarshal_iid = *tmarshal_riid;
1694 *ppChannel = &This->IRpcChannelBuffer_iface;
1695 return S_OK;
1699 static inline HRESULT get_facbuf_for_iid(REFIID riid, IPSFactoryBuffer **facbuf)
1701 HRESULT hr;
1702 CLSID clsid;
1704 if ((hr = CoGetPSClsid(riid, &clsid)))
1705 return hr;
1706 return CoGetClassObject(&clsid, CLSCTX_INPROC_SERVER, NULL,
1707 &IID_IPSFactoryBuffer, (LPVOID*)facbuf);
1710 static HRESULT init_proxy_entry_point(TMProxyImpl *proxy, unsigned int num)
1712 int j;
1713 /* nrofargs without This */
1714 int nrofargs;
1715 ITypeInfo *tinfo2;
1716 TMAsmProxy *xasm = proxy->asmstubs + num;
1717 HRESULT hres;
1718 const FUNCDESC *fdesc;
1720 hres = get_funcdesc(proxy->tinfo, num, &tinfo2, &fdesc, NULL, NULL, NULL);
1721 if (hres) {
1722 ERR("GetFuncDesc %x should not fail here.\n",hres);
1723 return hres;
1725 ITypeInfo_Release(tinfo2);
1726 /* some args take more than 4 byte on the stack */
1727 nrofargs = 0;
1728 for (j=0;j<fdesc->cParams;j++)
1729 nrofargs += _argsize(&fdesc->lprgelemdescParam[j].tdesc, proxy->tinfo);
1731 #ifdef __i386__
1732 if (fdesc->callconv != CC_STDCALL) {
1733 ERR("calling convention is not stdcall????\n");
1734 return E_FAIL;
1736 /* popl %eax - return ptr
1737 * pushl <nr>
1738 * pushl %eax
1739 * call xCall
1740 * lret <nr> (+4)
1743 * arg3 arg2 arg1 <method> <returnptr>
1745 xasm->popleax = 0x58;
1746 xasm->pushlval = 0x68;
1747 xasm->nr = num;
1748 xasm->pushleax = 0x50;
1749 xasm->lcall = 0xe8; /* relative jump */
1750 xasm->xcall = (DWORD)xCall;
1751 xasm->xcall -= (DWORD)&(xasm->lret);
1752 xasm->lret = 0xc2;
1753 xasm->bytestopop = (nrofargs+2)*4; /* pop args, This, iMethod */
1754 xasm->nop = 0x90;
1755 proxy->lpvtbl[fdesc->oVft / sizeof(void *)] = xasm;
1756 #else
1757 FIXME("not implemented on non i386\n");
1758 return E_FAIL;
1759 #endif
1760 return S_OK;
1763 static HRESULT WINAPI
1764 PSFacBuf_CreateProxy(
1765 LPPSFACTORYBUFFER iface, IUnknown* pUnkOuter, REFIID riid,
1766 IRpcProxyBuffer **ppProxy, LPVOID *ppv)
1768 HRESULT hres;
1769 ITypeInfo *tinfo;
1770 unsigned int i, nroffuncs, vtbl_size;
1771 TMProxyImpl *proxy;
1772 TYPEATTR *typeattr;
1773 BOOL defer_to_dispatch = FALSE;
1775 TRACE("(...%s...)\n",debugstr_guid(riid));
1776 hres = _get_typeinfo_for_iid(riid,&tinfo);
1777 if (hres) {
1778 ERR("No typeinfo for %s?\n",debugstr_guid(riid));
1779 return hres;
1782 hres = num_of_funcs(tinfo, &nroffuncs, &vtbl_size);
1783 TRACE("Got %d funcs, vtbl size %d\n", nroffuncs, vtbl_size);
1785 if (FAILED(hres)) {
1786 ERR("Cannot get number of functions for typeinfo %s\n",debugstr_guid(riid));
1787 ITypeInfo_Release(tinfo);
1788 return hres;
1791 proxy = CoTaskMemAlloc(sizeof(TMProxyImpl));
1792 if (!proxy) return E_OUTOFMEMORY;
1794 assert(sizeof(TMAsmProxy) == 16);
1796 proxy->dispatch = NULL;
1797 proxy->dispatch_proxy = NULL;
1798 proxy->outerunknown = pUnkOuter;
1799 proxy->asmstubs = VirtualAlloc(NULL, sizeof(TMAsmProxy) * nroffuncs, MEM_COMMIT, PAGE_EXECUTE_READWRITE);
1800 if (!proxy->asmstubs) {
1801 ERR("Could not commit pages for proxy thunks\n");
1802 CoTaskMemFree(proxy);
1803 return E_OUTOFMEMORY;
1805 proxy->IRpcProxyBuffer_iface.lpVtbl = &tmproxyvtable;
1806 /* one reference for the proxy */
1807 proxy->ref = 1;
1808 proxy->tinfo = tinfo;
1809 proxy->iid = *riid;
1810 proxy->chanbuf = 0;
1812 InitializeCriticalSection(&proxy->crit);
1813 proxy->crit.DebugInfo->Spare[0] = (DWORD_PTR)(__FILE__ ": TMProxyImpl.crit");
1815 proxy->lpvtbl = HeapAlloc(GetProcessHeap(), 0, vtbl_size);
1817 /* if we derive from IDispatch then defer to its proxy for its methods */
1818 hres = ITypeInfo_GetTypeAttr(tinfo, &typeattr);
1819 if (hres == S_OK)
1821 if (typeattr->wTypeFlags & TYPEFLAG_FDISPATCHABLE)
1823 IPSFactoryBuffer *factory_buffer;
1824 hres = get_facbuf_for_iid(&IID_IDispatch, &factory_buffer);
1825 if (hres == S_OK)
1827 hres = IPSFactoryBuffer_CreateProxy(factory_buffer, NULL,
1828 &IID_IDispatch, &proxy->dispatch_proxy,
1829 (void **)&proxy->dispatch);
1830 IPSFactoryBuffer_Release(factory_buffer);
1832 if ((hres == S_OK) && (nroffuncs < 7))
1834 ERR("nroffuncs calculated incorrectly (%d)\n", nroffuncs);
1835 hres = E_UNEXPECTED;
1837 if (hres == S_OK)
1839 defer_to_dispatch = TRUE;
1842 ITypeInfo_ReleaseTypeAttr(tinfo, typeattr);
1845 for (i=0;i<nroffuncs;i++) {
1846 switch (i) {
1847 case 0:
1848 proxy->lpvtbl[i] = ProxyIUnknown_QueryInterface;
1849 break;
1850 case 1:
1851 proxy->lpvtbl[i] = ProxyIUnknown_AddRef;
1852 break;
1853 case 2:
1854 proxy->lpvtbl[i] = ProxyIUnknown_Release;
1855 break;
1856 case 3:
1857 if(!defer_to_dispatch)
1859 hres = init_proxy_entry_point(proxy, i);
1860 if(FAILED(hres)) return hres;
1862 else proxy->lpvtbl[3] = ProxyIDispatch_GetTypeInfoCount;
1863 break;
1864 case 4:
1865 if(!defer_to_dispatch)
1867 hres = init_proxy_entry_point(proxy, i);
1868 if(FAILED(hres)) return hres;
1870 else proxy->lpvtbl[4] = ProxyIDispatch_GetTypeInfo;
1871 break;
1872 case 5:
1873 if(!defer_to_dispatch)
1875 hres = init_proxy_entry_point(proxy, i);
1876 if(FAILED(hres)) return hres;
1878 else proxy->lpvtbl[5] = ProxyIDispatch_GetIDsOfNames;
1879 break;
1880 case 6:
1881 if(!defer_to_dispatch)
1883 hres = init_proxy_entry_point(proxy, i);
1884 if(FAILED(hres)) return hres;
1886 else proxy->lpvtbl[6] = ProxyIDispatch_Invoke;
1887 break;
1888 default:
1889 hres = init_proxy_entry_point(proxy, i);
1890 if(FAILED(hres)) return hres;
1894 if (hres == S_OK)
1896 *ppv = proxy;
1897 *ppProxy = &proxy->IRpcProxyBuffer_iface;
1898 IUnknown_AddRef((IUnknown *)*ppv);
1899 return S_OK;
1901 else
1902 TMProxyImpl_Release(&proxy->IRpcProxyBuffer_iface);
1903 return hres;
1906 typedef struct _TMStubImpl {
1907 IRpcStubBuffer IRpcStubBuffer_iface;
1908 LONG ref;
1910 LPUNKNOWN pUnk;
1911 ITypeInfo *tinfo;
1912 IID iid;
1913 IRpcStubBuffer *dispatch_stub;
1914 BOOL dispatch_derivative;
1915 } TMStubImpl;
1917 static inline TMStubImpl *impl_from_IRpcStubBuffer(IRpcStubBuffer *iface)
1919 return CONTAINING_RECORD(iface, TMStubImpl, IRpcStubBuffer_iface);
1922 static HRESULT WINAPI
1923 TMStubImpl_QueryInterface(LPRPCSTUBBUFFER iface, REFIID riid, LPVOID *ppv)
1925 if (IsEqualIID(riid,&IID_IRpcStubBuffer)||IsEqualIID(riid,&IID_IUnknown)){
1926 *ppv = iface;
1927 IRpcStubBuffer_AddRef(iface);
1928 return S_OK;
1930 FIXME("%s, not supported IID.\n",debugstr_guid(riid));
1931 return E_NOINTERFACE;
1934 static ULONG WINAPI
1935 TMStubImpl_AddRef(LPRPCSTUBBUFFER iface)
1937 TMStubImpl *This = impl_from_IRpcStubBuffer(iface);
1938 ULONG refCount = InterlockedIncrement(&This->ref);
1940 TRACE("(%p)->(ref before=%u)\n", This, refCount - 1);
1942 return refCount;
1945 static ULONG WINAPI
1946 TMStubImpl_Release(LPRPCSTUBBUFFER iface)
1948 TMStubImpl *This = impl_from_IRpcStubBuffer(iface);
1949 ULONG refCount = InterlockedDecrement(&This->ref);
1951 TRACE("(%p)->(ref before=%u)\n", This, refCount + 1);
1953 if (!refCount)
1955 IRpcStubBuffer_Disconnect(iface);
1956 ITypeInfo_Release(This->tinfo);
1957 if (This->dispatch_stub)
1958 IRpcStubBuffer_Release(This->dispatch_stub);
1959 CoTaskMemFree(This);
1961 return refCount;
1964 static HRESULT WINAPI
1965 TMStubImpl_Connect(LPRPCSTUBBUFFER iface, LPUNKNOWN pUnkServer)
1967 TMStubImpl *This = impl_from_IRpcStubBuffer(iface);
1969 TRACE("(%p)->(%p)\n", This, pUnkServer);
1971 IUnknown_AddRef(pUnkServer);
1972 This->pUnk = pUnkServer;
1974 if (This->dispatch_stub)
1975 IRpcStubBuffer_Connect(This->dispatch_stub, pUnkServer);
1977 return S_OK;
1980 static void WINAPI
1981 TMStubImpl_Disconnect(LPRPCSTUBBUFFER iface)
1983 TMStubImpl *This = impl_from_IRpcStubBuffer(iface);
1985 TRACE("(%p)->()\n", This);
1987 if (This->pUnk)
1989 IUnknown_Release(This->pUnk);
1990 This->pUnk = NULL;
1993 if (This->dispatch_stub)
1994 IRpcStubBuffer_Disconnect(This->dispatch_stub);
1997 static HRESULT WINAPI
1998 TMStubImpl_Invoke(
1999 LPRPCSTUBBUFFER iface, RPCOLEMESSAGE* xmsg,IRpcChannelBuffer*rpcchanbuf)
2001 #ifdef __i386__
2002 int i;
2003 const FUNCDESC *fdesc;
2004 TMStubImpl *This = impl_from_IRpcStubBuffer(iface);
2005 HRESULT hres;
2006 DWORD *args = NULL, res, *xargs, nrofargs;
2007 marshal_state buf;
2008 UINT nrofnames = 0;
2009 BSTR names[10];
2010 BSTR iname = NULL;
2011 ITypeInfo *tinfo = NULL;
2013 TRACE("...\n");
2015 if (xmsg->iMethod < 3) {
2016 ERR("IUnknown methods cannot be marshaled by the typelib marshaler\n");
2017 return E_UNEXPECTED;
2020 if (This->dispatch_derivative && xmsg->iMethod < sizeof(IDispatchVtbl)/sizeof(void *))
2022 if (!This->dispatch_stub)
2024 IPSFactoryBuffer *factory_buffer;
2025 hres = get_facbuf_for_iid(&IID_IDispatch, &factory_buffer);
2026 if (hres == S_OK)
2028 hres = IPSFactoryBuffer_CreateStub(factory_buffer, &IID_IDispatch,
2029 This->pUnk, &This->dispatch_stub);
2030 IPSFactoryBuffer_Release(factory_buffer);
2032 if (hres != S_OK)
2033 return hres;
2035 return IRpcStubBuffer_Invoke(This->dispatch_stub, xmsg, rpcchanbuf);
2038 memset(&buf,0,sizeof(buf));
2039 buf.size = xmsg->cbBuffer;
2040 buf.base = HeapAlloc(GetProcessHeap(), 0, xmsg->cbBuffer);
2041 memcpy(buf.base, xmsg->Buffer, xmsg->cbBuffer);
2042 buf.curoff = 0;
2044 hres = get_funcdesc(This->tinfo,xmsg->iMethod,&tinfo,&fdesc,&iname,NULL,NULL);
2045 if (hres) {
2046 ERR("GetFuncDesc on method %d failed with %x\n",xmsg->iMethod,hres);
2047 return hres;
2050 if (iname && !lstrcmpW(iname, IDispatchW))
2052 ERR("IDispatch cannot be marshaled by the typelib marshaler\n");
2053 hres = E_UNEXPECTED;
2054 SysFreeString (iname);
2055 goto exit;
2058 SysFreeString (iname);
2060 /* Need them for hack below */
2061 memset(names,0,sizeof(names));
2062 ITypeInfo_GetNames(tinfo,fdesc->memid,names,sizeof(names)/sizeof(names[0]),&nrofnames);
2063 if (nrofnames > sizeof(names)/sizeof(names[0])) {
2064 ERR("Need more names!\n");
2067 /*dump_FUNCDESC(fdesc);*/
2068 nrofargs = 0;
2069 for (i=0;i<fdesc->cParams;i++)
2070 nrofargs += _argsize(&fdesc->lprgelemdescParam[i].tdesc, tinfo);
2071 args = HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,(nrofargs+1)*sizeof(DWORD));
2072 if (!args)
2074 hres = E_OUTOFMEMORY;
2075 goto exit;
2078 /* Allocate all stuff used by call. */
2079 xargs = args+1;
2080 for (i=0;i<fdesc->cParams;i++) {
2081 ELEMDESC *elem = fdesc->lprgelemdescParam+i;
2083 hres = deserialize_param(
2084 tinfo,
2085 is_in_elem(elem),
2086 FALSE,
2087 TRUE,
2088 &(elem->tdesc),
2089 xargs,
2090 &buf
2092 xargs += _argsize(&elem->tdesc, tinfo);
2093 if (hres) {
2094 ERR("Failed to deserialize param %s, hres %x\n",relaystr(names[i+1]),hres);
2095 break;
2099 args[0] = (DWORD)This->pUnk;
2101 __TRY
2103 res = _invoke(
2104 (*((FARPROC**)args[0]))[fdesc->oVft/4],
2105 fdesc->callconv,
2106 (xargs-args),
2107 args
2110 __EXCEPT_ALL
2112 DWORD dwExceptionCode = GetExceptionCode();
2113 ERR("invoke call failed with exception 0x%08x (%d)\n", dwExceptionCode, dwExceptionCode);
2114 if (FAILED(dwExceptionCode))
2115 hres = dwExceptionCode;
2116 else
2117 hres = HRESULT_FROM_WIN32(dwExceptionCode);
2119 __ENDTRY
2121 if (hres != S_OK)
2122 goto exit;
2124 buf.curoff = 0;
2126 xargs = args+1;
2127 for (i=0;i<fdesc->cParams;i++) {
2128 ELEMDESC *elem = fdesc->lprgelemdescParam+i;
2129 hres = serialize_param(
2130 tinfo,
2131 is_out_elem(elem),
2132 FALSE,
2133 TRUE,
2134 &elem->tdesc,
2135 xargs,
2136 &buf
2138 xargs += _argsize(&elem->tdesc, tinfo);
2139 if (hres) {
2140 ERR("Failed to stuballoc param, hres %x\n",hres);
2141 break;
2145 hres = xbuf_add (&buf, (LPBYTE)&res, sizeof(DWORD));
2147 if (hres != S_OK)
2148 goto exit;
2150 xmsg->cbBuffer = buf.curoff;
2151 hres = IRpcChannelBuffer_GetBuffer(rpcchanbuf, xmsg, &This->iid);
2152 if (hres != S_OK)
2153 ERR("IRpcChannelBuffer_GetBuffer failed with error 0x%08x\n", hres);
2155 if (hres == S_OK)
2156 memcpy(xmsg->Buffer, buf.base, buf.curoff);
2158 exit:
2159 for (i = 0; i < nrofnames; i++)
2160 SysFreeString(names[i]);
2162 ITypeInfo_Release(tinfo);
2163 HeapFree(GetProcessHeap(), 0, args);
2165 HeapFree(GetProcessHeap(), 0, buf.base);
2167 TRACE("returning\n");
2168 return hres;
2169 #else
2170 FIXME( "not implemented on non-i386\n" );
2171 return E_FAIL;
2172 #endif
2175 static LPRPCSTUBBUFFER WINAPI
2176 TMStubImpl_IsIIDSupported(LPRPCSTUBBUFFER iface, REFIID riid) {
2177 FIXME("Huh (%s)?\n",debugstr_guid(riid));
2178 return NULL;
2181 static ULONG WINAPI
2182 TMStubImpl_CountRefs(LPRPCSTUBBUFFER iface) {
2183 TMStubImpl *This = impl_from_IRpcStubBuffer(iface);
2185 FIXME("()\n");
2186 return This->ref; /*FIXME? */
2189 static HRESULT WINAPI
2190 TMStubImpl_DebugServerQueryInterface(LPRPCSTUBBUFFER iface, LPVOID *ppv) {
2191 return E_NOTIMPL;
2194 static void WINAPI
2195 TMStubImpl_DebugServerRelease(LPRPCSTUBBUFFER iface, LPVOID ppv) {
2196 return;
2199 static const IRpcStubBufferVtbl tmstubvtbl = {
2200 TMStubImpl_QueryInterface,
2201 TMStubImpl_AddRef,
2202 TMStubImpl_Release,
2203 TMStubImpl_Connect,
2204 TMStubImpl_Disconnect,
2205 TMStubImpl_Invoke,
2206 TMStubImpl_IsIIDSupported,
2207 TMStubImpl_CountRefs,
2208 TMStubImpl_DebugServerQueryInterface,
2209 TMStubImpl_DebugServerRelease
2212 static HRESULT WINAPI
2213 PSFacBuf_CreateStub(
2214 LPPSFACTORYBUFFER iface, REFIID riid,IUnknown *pUnkServer,
2215 IRpcStubBuffer** ppStub
2217 HRESULT hres;
2218 ITypeInfo *tinfo;
2219 TMStubImpl *stub;
2220 TYPEATTR *typeattr;
2222 TRACE("(%s,%p,%p)\n",debugstr_guid(riid),pUnkServer,ppStub);
2224 hres = _get_typeinfo_for_iid(riid,&tinfo);
2225 if (hres) {
2226 ERR("No typeinfo for %s?\n",debugstr_guid(riid));
2227 return hres;
2230 stub = CoTaskMemAlloc(sizeof(TMStubImpl));
2231 if (!stub)
2232 return E_OUTOFMEMORY;
2233 stub->IRpcStubBuffer_iface.lpVtbl = &tmstubvtbl;
2234 stub->ref = 1;
2235 stub->tinfo = tinfo;
2236 stub->dispatch_stub = NULL;
2237 stub->dispatch_derivative = FALSE;
2238 stub->iid = *riid;
2239 hres = IRpcStubBuffer_Connect(&stub->IRpcStubBuffer_iface,pUnkServer);
2240 *ppStub = &stub->IRpcStubBuffer_iface;
2241 TRACE("IRpcStubBuffer: %p\n", stub);
2242 if (hres)
2243 ERR("Connect to pUnkServer failed?\n");
2245 /* if we derive from IDispatch then defer to its stub for some of its methods */
2246 hres = ITypeInfo_GetTypeAttr(tinfo, &typeattr);
2247 if (hres == S_OK)
2249 if (typeattr->wTypeFlags & TYPEFLAG_FDISPATCHABLE)
2250 stub->dispatch_derivative = TRUE;
2251 ITypeInfo_ReleaseTypeAttr(tinfo, typeattr);
2254 return hres;
2257 static const IPSFactoryBufferVtbl psfacbufvtbl = {
2258 PSFacBuf_QueryInterface,
2259 PSFacBuf_AddRef,
2260 PSFacBuf_Release,
2261 PSFacBuf_CreateProxy,
2262 PSFacBuf_CreateStub
2265 /* This is the whole PSFactoryBuffer object, just the vtableptr */
2266 static const IPSFactoryBufferVtbl *lppsfac = &psfacbufvtbl;
2268 /***********************************************************************
2269 * TMARSHAL_DllGetClassObject
2271 HRESULT TMARSHAL_DllGetClassObject(REFCLSID rclsid, REFIID iid,LPVOID *ppv)
2273 if (IsEqualIID(iid,&IID_IPSFactoryBuffer)) {
2274 *ppv = &lppsfac;
2275 return S_OK;
2277 return E_NOINTERFACE;