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
34 #define NONAMELESSUNION
35 #define NONAMELESSSTRUCT
45 #include "propidl.h" /* for LPSAFEARRAY_User* functions */
48 #include "wine/debug.h"
49 #include "wine/exception.h"
51 static const WCHAR IDispatchW[] = { 'I','D','i','s','p','a','t','c','h',0};
53 WINE_DEFAULT_DEBUG_CHANNEL(ole);
54 WINE_DECLARE_DEBUG_CHANNEL(olerelay);
56 #define ICOM_THIS_MULTI(impl,field,iface) impl* const This=(impl*)((char*)(iface) - offsetof(impl,field))
58 static HRESULT TMarshalDispatchChannel_Create(
59 IRpcChannelBuffer *pDelegateChannel, REFIID tmarshal_riid,
60 IRpcChannelBuffer **ppChannel);
62 typedef struct _marshal_state {
68 /* used in the olerelay code to avoid having the L"" stuff added by debugstr_w */
69 static char *relaystr(WCHAR *in) {
70 char *tmp = (char *)debugstr_w(in);
72 tmp[strlen(tmp)-1] = '\0';
77 xbuf_resize(marshal_state *buf, DWORD newsize)
79 if(buf->size >= newsize)
84 buf->base = HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, buf->base, newsize);
90 buf->base = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, newsize);
99 xbuf_add(marshal_state *buf, const BYTE *stuff, DWORD size)
103 if(buf->size - buf->curoff < size)
105 hr = xbuf_resize(buf, buf->size + size + 100);
106 if(FAILED(hr)) return hr;
108 memcpy(buf->base+buf->curoff,stuff,size);
114 xbuf_get(marshal_state *buf, LPBYTE stuff, DWORD size) {
115 if (buf->size < buf->curoff+size) return E_FAIL;
116 memcpy(stuff,buf->base+buf->curoff,size);
122 xbuf_skip(marshal_state *buf, DWORD size) {
123 if (buf->size < buf->curoff+size) return E_FAIL;
129 _unmarshal_interface(marshal_state *buf, REFIID riid, LPUNKNOWN *pUnk) {
131 ULARGE_INTEGER newpos;
132 LARGE_INTEGER seekto;
137 TRACE("...%s...\n",debugstr_guid(riid));
140 hres = xbuf_get(buf,(LPBYTE)&xsize,sizeof(xsize));
142 ERR("xbuf_get failed\n");
146 if (xsize == 0) return S_OK;
148 hres = CreateStreamOnHGlobal(0,TRUE,&pStm);
150 ERR("Stream create failed %x\n",hres);
154 hres = IStream_Write(pStm,buf->base+buf->curoff,xsize,&res);
156 ERR("stream write %x\n",hres);
160 memset(&seekto,0,sizeof(seekto));
161 hres = IStream_Seek(pStm,seekto,SEEK_SET,&newpos);
163 ERR("Failed Seek %x\n",hres);
167 hres = CoUnmarshalInterface(pStm,riid,(LPVOID*)pUnk);
169 ERR("Unmarshalling interface %s failed with %x\n",debugstr_guid(riid),hres);
173 IStream_Release(pStm);
174 return xbuf_skip(buf,xsize);
178 _marshal_interface(marshal_state *buf, REFIID riid, LPUNKNOWN pUnk) {
179 LPBYTE tempbuf = NULL;
180 IStream *pStm = NULL;
182 ULARGE_INTEGER newpos;
183 LARGE_INTEGER seekto;
189 /* this is valid, if for instance we serialize
190 * a VT_DISPATCH with NULL ptr which apparently
191 * can happen. S_OK to make sure we continue
194 WARN("pUnk is NULL\n");
196 return xbuf_add(buf,(LPBYTE)&xsize,sizeof(xsize));
201 TRACE("...%s...\n",debugstr_guid(riid));
203 hres = CreateStreamOnHGlobal(0,TRUE,&pStm);
205 ERR("Stream create failed %x\n",hres);
209 hres = CoMarshalInterface(pStm,riid,pUnk,0,NULL,0);
211 ERR("Marshalling interface %s failed with %x\n", debugstr_guid(riid), hres);
215 hres = IStream_Stat(pStm,&ststg,0);
217 ERR("Stream stat failed\n");
221 tempbuf = HeapAlloc(GetProcessHeap(), 0, ststg.cbSize.u.LowPart);
222 memset(&seekto,0,sizeof(seekto));
223 hres = IStream_Seek(pStm,seekto,SEEK_SET,&newpos);
225 ERR("Failed Seek %x\n",hres);
229 hres = IStream_Read(pStm,tempbuf,ststg.cbSize.u.LowPart,&res);
231 ERR("Failed Read %x\n",hres);
235 xsize = ststg.cbSize.u.LowPart;
236 xbuf_add(buf,(LPBYTE)&xsize,sizeof(xsize));
237 hres = xbuf_add(buf,tempbuf,ststg.cbSize.u.LowPart);
239 HeapFree(GetProcessHeap(),0,tempbuf);
240 IStream_Release(pStm);
246 xbuf_add(buf,(LPBYTE)&xsize,sizeof(xsize));
247 if (pStm) IUnknown_Release(pStm);
248 HeapFree(GetProcessHeap(), 0, tempbuf);
252 /********************* OLE Proxy/Stub Factory ********************************/
253 static HRESULT WINAPI
254 PSFacBuf_QueryInterface(LPPSFACTORYBUFFER iface, REFIID iid, LPVOID *ppv) {
255 if (IsEqualIID(iid,&IID_IPSFactoryBuffer)||IsEqualIID(iid,&IID_IUnknown)) {
256 *ppv = (LPVOID)iface;
257 /* No ref counting, static class */
260 FIXME("(%s) unknown IID?\n",debugstr_guid(iid));
261 return E_NOINTERFACE;
264 static ULONG WINAPI PSFacBuf_AddRef(LPPSFACTORYBUFFER iface) { return 2; }
265 static ULONG WINAPI PSFacBuf_Release(LPPSFACTORYBUFFER iface) { return 1; }
268 _get_typeinfo_for_iid(REFIID riid, ITypeInfo**ti) {
271 char tlguid[200],typelibkey[300],interfacekey[300],ver[100];
274 DWORD tlguidlen, verlen, type;
278 sprintf( interfacekey, "Interface\\{%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x}\\Typelib",
279 riid->Data1, riid->Data2, riid->Data3,
280 riid->Data4[0], riid->Data4[1], riid->Data4[2], riid->Data4[3],
281 riid->Data4[4], riid->Data4[5], riid->Data4[6], riid->Data4[7]
284 if (RegOpenKeyA(HKEY_CLASSES_ROOT,interfacekey,&ikey)) {
285 ERR("No %s key found.\n",interfacekey);
288 tlguidlen = sizeof(tlguid);
289 if (RegQueryValueExA(ikey,NULL,NULL,&type,(LPBYTE)tlguid,&tlguidlen)) {
290 ERR("Getting typelib guid failed.\n");
294 verlen = sizeof(ver);
295 if (RegQueryValueExA(ikey,"Version",NULL,&type,(LPBYTE)ver,&verlen)) {
296 ERR("Could not get version value?\n");
301 sprintf(typelibkey,"Typelib\\%s\\%s\\0\\win32",tlguid,ver);
302 tlfnlen = sizeof(tlfn);
303 if (RegQueryValueA(HKEY_CLASSES_ROOT,typelibkey,tlfn,&tlfnlen)) {
304 ERR("Could not get typelib fn?\n");
307 MultiByteToWideChar(CP_ACP, 0, tlfn, -1, tlfnW, sizeof(tlfnW) / sizeof(tlfnW[0]));
308 hres = LoadTypeLib(tlfnW,&tl);
310 ERR("Failed to load typelib for %s, but it should be there.\n",debugstr_guid(riid));
313 hres = ITypeLib_GetTypeInfoOfGuid(tl,riid,ti);
315 ERR("typelib does not contain info for %s?\n",debugstr_guid(riid));
316 ITypeLib_Release(tl);
319 ITypeLib_Release(tl);
324 * Determine the number of functions including all inherited functions.
325 * Note for non-dual dispinterfaces we simply return the size of IDispatch.
327 static HRESULT num_of_funcs(ITypeInfo *tinfo, unsigned int *num)
334 hres = ITypeInfo_GetTypeAttr(tinfo, &attr);
336 ERR("GetTypeAttr failed with %x\n",hres);
340 if(attr->typekind == TKIND_DISPATCH && (attr->wTypeFlags & TYPEFLAG_FDUAL))
343 hres = ITypeInfo_GetRefTypeOfImplType(tinfo, -1, &href);
346 ERR("Unable to get interface href from dual dispinterface\n");
349 hres = ITypeInfo_GetRefTypeInfo(tinfo, href, &tinfo2);
352 ERR("Unable to get interface from dual dispinterface\n");
355 hres = num_of_funcs(tinfo2, num);
356 ITypeInfo_Release(tinfo2);
360 *num = attr->cbSizeVft / 4;
364 ITypeInfo_ReleaseTypeAttr(tinfo, attr);
370 #include "pshpack1.h"
372 typedef struct _TMAsmProxy {
386 # warning You need to implement stubless proxies for your architecture
387 typedef struct _TMAsmProxy {
391 typedef struct _TMProxyImpl {
393 const IRpcProxyBufferVtbl *lpvtbl2;
396 TMAsmProxy *asmstubs;
398 IRpcChannelBuffer* chanbuf;
400 CRITICAL_SECTION crit;
401 IUnknown *outerunknown;
403 IRpcProxyBuffer *dispatch_proxy;
406 static HRESULT WINAPI
407 TMProxyImpl_QueryInterface(LPRPCPROXYBUFFER iface, REFIID riid, LPVOID *ppv)
410 if (IsEqualIID(riid,&IID_IUnknown)||IsEqualIID(riid,&IID_IRpcProxyBuffer)) {
411 *ppv = (LPVOID)iface;
412 IRpcProxyBuffer_AddRef(iface);
415 FIXME("no interface for %s\n",debugstr_guid(riid));
416 return E_NOINTERFACE;
420 TMProxyImpl_AddRef(LPRPCPROXYBUFFER iface)
422 ICOM_THIS_MULTI(TMProxyImpl,lpvtbl2,iface);
423 ULONG refCount = InterlockedIncrement(&This->ref);
425 TRACE("(%p)->(ref before=%u)\n",This, refCount - 1);
431 TMProxyImpl_Release(LPRPCPROXYBUFFER iface)
433 ICOM_THIS_MULTI(TMProxyImpl,lpvtbl2,iface);
434 ULONG refCount = InterlockedDecrement(&This->ref);
436 TRACE("(%p)->(ref before=%u)\n",This, refCount + 1);
440 if (This->dispatch_proxy) IRpcProxyBuffer_Release(This->dispatch_proxy);
441 This->crit.DebugInfo->Spare[0] = 0;
442 DeleteCriticalSection(&This->crit);
443 if (This->chanbuf) IRpcChannelBuffer_Release(This->chanbuf);
444 VirtualFree(This->asmstubs, 0, MEM_RELEASE);
445 HeapFree(GetProcessHeap(), 0, This->lpvtbl);
446 ITypeInfo_Release(This->tinfo);
452 static HRESULT WINAPI
454 LPRPCPROXYBUFFER iface,IRpcChannelBuffer* pRpcChannelBuffer)
456 ICOM_THIS_MULTI(TMProxyImpl, lpvtbl2, iface);
458 TRACE("(%p)\n", pRpcChannelBuffer);
460 EnterCriticalSection(&This->crit);
462 IRpcChannelBuffer_AddRef(pRpcChannelBuffer);
463 This->chanbuf = pRpcChannelBuffer;
465 LeaveCriticalSection(&This->crit);
467 if (This->dispatch_proxy)
469 IRpcChannelBuffer *pDelegateChannel;
470 HRESULT hr = TMarshalDispatchChannel_Create(pRpcChannelBuffer, &This->iid, &pDelegateChannel);
473 return IRpcProxyBuffer_Connect(This->dispatch_proxy, pDelegateChannel);
480 TMProxyImpl_Disconnect(LPRPCPROXYBUFFER iface)
482 ICOM_THIS_MULTI(TMProxyImpl, lpvtbl2, iface);
486 EnterCriticalSection(&This->crit);
488 IRpcChannelBuffer_Release(This->chanbuf);
489 This->chanbuf = NULL;
491 LeaveCriticalSection(&This->crit);
493 if (This->dispatch_proxy)
494 IRpcProxyBuffer_Disconnect(This->dispatch_proxy);
498 static const IRpcProxyBufferVtbl tmproxyvtable = {
499 TMProxyImpl_QueryInterface,
503 TMProxyImpl_Disconnect
506 /* how much space do we use on stack in DWORD steps. */
511 return 8/sizeof(DWORD);
513 return sizeof(double)/sizeof(DWORD);
515 return sizeof(CY)/sizeof(DWORD);
517 return sizeof(DATE)/sizeof(DWORD);
519 return (sizeof(VARIANT)+3)/sizeof(DWORD);
526 _xsize(const TYPEDESC *td) {
531 return sizeof(VARIANT)+3;
534 const ARRAYDESC *adesc = td->u.lpadesc;
536 for (i=0;i<adesc->cDims;i++)
537 arrsize *= adesc->rgbounds[i].cElements;
538 return arrsize*_xsize(&adesc->tdescElem);
566 TRACE("(tdesc.vt %s)\n",debugstr_vt(tdesc->vt));
569 case VT_EMPTY: /* nothing. empty variant for instance */
575 if (debugout) TRACE_(olerelay)("%x%x\n",arg[0],arg[1]);
577 hres = xbuf_add(buf,(LPBYTE)arg,8);
587 if (debugout) TRACE_(olerelay)("%x\n",*arg);
589 hres = xbuf_add(buf,(LPBYTE)arg,sizeof(DWORD));
594 if (debugout) TRACE_(olerelay)("%04x\n",*arg & 0xffff);
596 hres = xbuf_add(buf,(LPBYTE)arg,sizeof(DWORD));
601 if (debugout) TRACE_(olerelay)("%02x\n",*arg & 0xff);
603 hres = xbuf_add(buf,(LPBYTE)arg,sizeof(DWORD));
607 if (debugout) TRACE_(olerelay)("&0x%x\n",*arg);
609 hres = xbuf_add(buf,(LPBYTE)(DWORD*)*arg,sizeof(DWORD));
610 /* do not dealloc at this time */
614 VARIANT *vt = (VARIANT*)arg;
615 DWORD vttype = V_VT(vt);
617 if (debugout) TRACE_(olerelay)("Vt(%s%s)(",debugstr_vt(vttype),debugstr_vf(vttype));
620 hres = xbuf_add(buf,(LPBYTE)&vttype,sizeof(vttype));
621 if (hres) return hres;
623 /* need to recurse since we need to free the stuff */
624 hres = serialize_param(tinfo,writeit,debugout,dealloc,&tdesc2,(DWORD*)&(V_I4(vt)),buf);
625 if (debugout) TRACE_(olerelay)(")");
628 case VT_BSTR|VT_BYREF: {
629 if (debugout) TRACE_(olerelay)("[byref]'%s'", *(BSTR*)*arg ? relaystr(*((BSTR*)*arg)) : "<bstr NULL>");
631 /* ptr to ptr to magic widestring, basically */
632 BSTR *bstr = (BSTR *) *arg;
635 /* -1 means "null string" which is equivalent to empty string */
637 hres = xbuf_add(buf, (LPBYTE)&len,sizeof(DWORD));
638 if (hres) return hres;
640 len = *((DWORD*)*bstr-1)/sizeof(WCHAR);
641 hres = xbuf_add(buf,(LPBYTE)&len,sizeof(DWORD));
642 if (hres) return hres;
643 hres = xbuf_add(buf,(LPBYTE)*bstr,len * sizeof(WCHAR));
644 if (hres) return hres;
648 if (dealloc && arg) {
649 BSTR *str = *((BSTR **)arg);
658 TRACE_(olerelay)("%s",relaystr((WCHAR*)*arg));
660 TRACE_(olerelay)("<bstr NULL>");
663 BSTR bstr = (BSTR)*arg;
667 hres = xbuf_add(buf,(LPBYTE)&len,sizeof(DWORD));
668 if (hres) return hres;
670 len = *((DWORD*)bstr-1)/sizeof(WCHAR);
671 hres = xbuf_add(buf,(LPBYTE)&len,sizeof(DWORD));
672 if (hres) return hres;
673 hres = xbuf_add(buf,(LPBYTE)bstr,len * sizeof(WCHAR));
674 if (hres) return hres;
679 SysFreeString((BSTR)*arg);
684 BOOL derefhere = TRUE;
686 if (tdesc->u.lptdesc->vt == VT_USERDEFINED) {
690 hres = ITypeInfo_GetRefTypeInfo(tinfo,tdesc->u.lptdesc->u.hreftype,&tinfo2);
692 ERR("Could not get typeinfo of hreftype %x for VT_USERDEFINED.\n",tdesc->u.lptdesc->u.hreftype);
695 ITypeInfo_GetTypeAttr(tinfo2,&tattr);
696 switch (tattr->typekind) {
697 case TKIND_ENUM: /* confirmed */
698 case TKIND_RECORD: /* FIXME: mostly untested */
701 case TKIND_ALIAS: /* FIXME: untested */
702 case TKIND_DISPATCH: /* will be done in VT_USERDEFINED case */
703 case TKIND_INTERFACE: /* will be done in VT_USERDEFINED case */
707 FIXME("unhandled switch cases tattr->typekind %d\n", tattr->typekind);
711 ITypeInfo_ReleaseTypeAttr(tinfo, tattr);
712 ITypeInfo_Release(tinfo2);
715 if (debugout) TRACE_(olerelay)("*");
716 /* Write always, so the other side knows when it gets a NULL pointer.
718 cookie = *arg ? 0x42424242 : 0;
719 hres = xbuf_add(buf,(LPBYTE)&cookie,sizeof(cookie));
723 if (debugout) TRACE_(olerelay)("NULL");
726 hres = serialize_param(tinfo,writeit,debugout,dealloc,tdesc->u.lptdesc,(DWORD*)*arg,buf);
727 if (derefhere && dealloc) HeapFree(GetProcessHeap(),0,(LPVOID)*arg);
731 if (debugout) TRACE_(olerelay)("unk(0x%x)",*arg);
733 hres = _marshal_interface(buf,&IID_IUnknown,(LPUNKNOWN)*arg);
734 if (dealloc && *(IUnknown **)arg)
735 IUnknown_Release((LPUNKNOWN)*arg);
738 if (debugout) TRACE_(olerelay)("idisp(0x%x)",*arg);
740 hres = _marshal_interface(buf,&IID_IDispatch,(LPUNKNOWN)*arg);
741 if (dealloc && *(IUnknown **)arg)
742 IUnknown_Release((LPUNKNOWN)*arg);
745 if (debugout) TRACE_(olerelay)("<void>");
747 case VT_USERDEFINED: {
751 hres = ITypeInfo_GetRefTypeInfo(tinfo,tdesc->u.hreftype,&tinfo2);
753 ERR("Could not get typeinfo of hreftype %x for VT_USERDEFINED.\n",tdesc->u.hreftype);
756 ITypeInfo_GetTypeAttr(tinfo2,&tattr);
757 switch (tattr->typekind) {
759 case TKIND_INTERFACE:
761 hres=_marshal_interface(buf,&(tattr->guid),(LPUNKNOWN)arg);
763 IUnknown_Release((LPUNKNOWN)arg);
767 if (debugout) TRACE_(olerelay)("{");
768 for (i=0;i<tattr->cVars;i++) {
773 hres = ITypeInfo2_GetVarDesc(tinfo2, i, &vdesc);
775 ERR("Could not get vardesc of %d\n",i);
778 elem2 = &vdesc->elemdescVar;
779 tdesc2 = &elem2->tdesc;
780 hres = serialize_param(
786 (DWORD*)(((LPBYTE)arg)+vdesc->u.oInst),
789 ITypeInfo_ReleaseVarDesc(tinfo2, vdesc);
792 if (debugout && (i<(tattr->cVars-1)))
793 TRACE_(olerelay)(",");
795 if (debugout) TRACE_(olerelay)("}");
799 hres = serialize_param(tinfo2,writeit,debugout,dealloc,&tattr->tdescAlias,arg,buf);
803 if (debugout) TRACE_(olerelay)("%x",*arg);
805 hres = xbuf_add(buf,(LPBYTE)arg,sizeof(DWORD));
808 FIXME("Unhandled typekind %d\n",tattr->typekind);
812 ITypeInfo_ReleaseTypeAttr(tinfo2, tattr);
813 ITypeInfo_Release(tinfo2);
817 ARRAYDESC *adesc = tdesc->u.lpadesc;
820 if (debugout) TRACE_(olerelay)("carr");
821 for (i=0;i<adesc->cDims;i++) {
822 if (debugout) TRACE_(olerelay)("[%d]",adesc->rgbounds[i].cElements);
823 arrsize *= adesc->rgbounds[i].cElements;
825 if (debugout) TRACE_(olerelay)("(vt %s)",debugstr_vt(adesc->tdescElem.vt));
826 if (debugout) TRACE_(olerelay)("[");
827 for (i=0;i<arrsize;i++) {
828 hres = serialize_param(tinfo, writeit, debugout, dealloc, &adesc->tdescElem, (DWORD*)((LPBYTE)arg+i*_xsize(&adesc->tdescElem)), buf);
831 if (debugout && (i<arrsize-1)) TRACE_(olerelay)(",");
833 if (debugout) TRACE_(olerelay)("]");
839 ULONG flags = MAKELONG(MSHCTX_DIFFERENTMACHINE, NDR_LOCAL_DATA_REPRESENTATION);
840 ULONG size = LPSAFEARRAY_UserSize(&flags, buf->curoff, (LPSAFEARRAY *)arg);
841 xbuf_resize(buf, size);
842 LPSAFEARRAY_UserMarshal(&flags, buf->base + buf->curoff, (LPSAFEARRAY *)arg);
848 ERR("Unhandled marshal type %d.\n",tdesc->vt);
865 TRACE("vt %s at %p\n",debugstr_vt(tdesc->vt),arg);
870 if (debugout) TRACE_(olerelay)("<empty>\n");
873 if (debugout) TRACE_(olerelay)("<null>\n");
876 VARIANT *vt = (VARIANT*)arg;
881 hres = xbuf_get(buf,(LPBYTE)&vttype,sizeof(vttype));
883 FIXME("vt type not read?\n");
886 memset(&tdesc2,0,sizeof(tdesc2));
889 if (debugout) TRACE_(olerelay)("Vt(%s%s)(",debugstr_vt(vttype),debugstr_vf(vttype));
890 hres = deserialize_param(tinfo, readit, debugout, alloc, &tdesc2, (DWORD*)&(V_I4(vt)), buf);
891 TRACE_(olerelay)(")");
902 hres = xbuf_get(buf,(LPBYTE)arg,8);
903 if (hres) ERR("Failed to read integer 8 byte\n");
905 if (debugout) TRACE_(olerelay)("%x%x",arg[0],arg[1]);
915 hres = xbuf_get(buf,(LPBYTE)arg,sizeof(DWORD));
916 if (hres) ERR("Failed to read integer 4 byte\n");
918 if (debugout) TRACE_(olerelay)("%x",*arg);
924 hres = xbuf_get(buf,(LPBYTE)&x,sizeof(DWORD));
925 if (hres) ERR("Failed to read integer 4 byte\n");
928 if (debugout) TRACE_(olerelay)("%04x",*arg & 0xffff);
934 hres = xbuf_get(buf,(LPBYTE)&x,sizeof(DWORD));
935 if (hres) ERR("Failed to read integer 4 byte\n");
938 if (debugout) TRACE_(olerelay)("%02x",*arg & 0xff);
943 *arg = (DWORD)HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,sizeof(DWORD));
945 hres = xbuf_get(buf,(LPBYTE)*arg,sizeof(DWORD));
946 if (hres) ERR("Failed to read integer 4 byte\n");
948 if (debugout) TRACE_(olerelay)("&0x%x",*(DWORD*)*arg);
950 case VT_BSTR|VT_BYREF: {
951 BSTR **bstr = (BSTR **)arg;
956 hres = xbuf_get(buf,(LPBYTE)&len,sizeof(DWORD));
958 ERR("failed to read bstr klen\n");
962 *bstr = CoTaskMemAlloc(sizeof(BSTR *));
964 if (debugout) TRACE_(olerelay)("<bstr NULL>");
966 str = HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,(len+1)*sizeof(WCHAR));
967 hres = xbuf_get(buf,(LPBYTE)str,len*sizeof(WCHAR));
969 ERR("Failed to read BSTR.\n");
972 *bstr = CoTaskMemAlloc(sizeof(BSTR *));
973 **bstr = SysAllocStringLen(str,len);
974 if (debugout) TRACE_(olerelay)("%s",relaystr(str));
975 HeapFree(GetProcessHeap(),0,str);
987 hres = xbuf_get(buf,(LPBYTE)&len,sizeof(DWORD));
989 ERR("failed to read bstr klen\n");
994 if (debugout) TRACE_(olerelay)("<bstr NULL>");
996 str = HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,(len+1)*sizeof(WCHAR));
997 hres = xbuf_get(buf,(LPBYTE)str,len*sizeof(WCHAR));
999 ERR("Failed to read BSTR.\n");
1002 *arg = (DWORD)SysAllocStringLen(str,len);
1003 if (debugout) TRACE_(olerelay)("%s",relaystr(str));
1004 HeapFree(GetProcessHeap(),0,str);
1013 BOOL derefhere = TRUE;
1015 if (tdesc->u.lptdesc->vt == VT_USERDEFINED) {
1019 hres = ITypeInfo_GetRefTypeInfo(tinfo,tdesc->u.lptdesc->u.hreftype,&tinfo2);
1021 ERR("Could not get typeinfo of hreftype %x for VT_USERDEFINED.\n",tdesc->u.lptdesc->u.hreftype);
1024 ITypeInfo_GetTypeAttr(tinfo2,&tattr);
1025 switch (tattr->typekind) {
1026 case TKIND_ENUM: /* confirmed */
1027 case TKIND_RECORD: /* FIXME: mostly untested */
1030 case TKIND_ALIAS: /* FIXME: untested */
1031 case TKIND_DISPATCH: /* will be done in VT_USERDEFINED case */
1032 case TKIND_INTERFACE: /* will be done in VT_USERDEFINED case */
1036 FIXME("unhandled switch cases tattr->typekind %d\n", tattr->typekind);
1040 ITypeInfo_ReleaseTypeAttr(tinfo2, tattr);
1041 ITypeInfo_Release(tinfo2);
1043 /* read it in all cases, we need to know if we have
1044 * NULL pointer or not.
1046 hres = xbuf_get(buf,(LPBYTE)&cookie,sizeof(cookie));
1048 ERR("Failed to load pointer cookie.\n");
1051 if (cookie != 0x42424242) {
1052 /* we read a NULL ptr from the remote side */
1053 if (debugout) TRACE_(olerelay)("NULL");
1057 if (debugout) TRACE_(olerelay)("*");
1059 /* Allocate space for the referenced struct */
1061 *arg=(DWORD)HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,_xsize(tdesc->u.lptdesc));
1064 return deserialize_param(tinfo, readit, debugout, alloc, tdesc->u.lptdesc, (LPDWORD)*arg, buf);
1066 return deserialize_param(tinfo, readit, debugout, alloc, tdesc->u.lptdesc, arg, buf);
1069 /* FIXME: UNKNOWN is unknown ..., but allocate 4 byte for it */
1071 *arg=(DWORD)HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,sizeof(DWORD));
1074 hres = _unmarshal_interface(buf,&IID_IUnknown,(LPUNKNOWN*)arg);
1076 TRACE_(olerelay)("unk(%p)",arg);
1081 hres = _unmarshal_interface(buf,&IID_IDispatch,(LPUNKNOWN*)arg);
1083 TRACE_(olerelay)("idisp(%p)",arg);
1086 if (debugout) TRACE_(olerelay)("<void>");
1088 case VT_USERDEFINED: {
1092 hres = ITypeInfo_GetRefTypeInfo(tinfo,tdesc->u.hreftype,&tinfo2);
1094 ERR("Could not get typeinfo of hreftype %x for VT_USERDEFINED.\n",tdesc->u.hreftype);
1097 hres = ITypeInfo_GetTypeAttr(tinfo2,&tattr);
1099 ERR("Could not get typeattr in VT_USERDEFINED.\n");
1101 switch (tattr->typekind) {
1102 case TKIND_DISPATCH:
1103 case TKIND_INTERFACE:
1105 hres = _unmarshal_interface(buf,&(tattr->guid),(LPUNKNOWN*)arg);
1107 case TKIND_RECORD: {
1111 *arg = (DWORD)HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,tattr->cbSizeInstance);
1113 if (debugout) TRACE_(olerelay)("{");
1114 for (i=0;i<tattr->cVars;i++) {
1117 hres = ITypeInfo2_GetVarDesc(tinfo2, i, &vdesc);
1119 ERR("Could not get vardesc of %d\n",i);
1120 ITypeInfo_ReleaseTypeAttr(tinfo2, tattr);
1121 ITypeInfo_Release(tinfo2);
1124 hres = deserialize_param(
1129 &vdesc->elemdescVar.tdesc,
1130 (DWORD*)(((LPBYTE)*arg)+vdesc->u.oInst),
1133 ITypeInfo2_ReleaseVarDesc(tinfo2, vdesc);
1134 if (debugout && (i<tattr->cVars-1)) TRACE_(olerelay)(",");
1136 if (debugout) TRACE_(olerelay)("}");
1140 hres = deserialize_param(tinfo2,readit,debugout,alloc,&tattr->tdescAlias,arg,buf);
1144 hres = xbuf_get(buf,(LPBYTE)arg,sizeof(DWORD));
1145 if (hres) ERR("Failed to read enum (4 byte)\n");
1147 if (debugout) TRACE_(olerelay)("%x",*arg);
1150 ERR("Unhandled typekind %d\n",tattr->typekind);
1154 ITypeInfo_ReleaseTypeAttr(tinfo2, tattr);
1157 ERR("failed to stuballoc in TKIND_RECORD.\n");
1158 ITypeInfo_Release(tinfo2);
1162 /* arg is pointing to the start of the array. */
1163 ARRAYDESC *adesc = tdesc->u.lpadesc;
1166 if (adesc->cDims > 1) FIXME("cDims > 1 in VT_CARRAY. Does it work?\n");
1167 for (i=0;i<adesc->cDims;i++)
1168 arrsize *= adesc->rgbounds[i].cElements;
1169 for (i=0;i<arrsize;i++)
1176 (DWORD*)((LPBYTE)(arg)+i*_xsize(&adesc->tdescElem)),
1181 case VT_SAFEARRAY: {
1184 ULONG flags = MAKELONG(MSHCTX_DIFFERENTMACHINE, NDR_LOCAL_DATA_REPRESENTATION);
1185 unsigned char *buffer;
1186 buffer = LPSAFEARRAY_UserUnmarshal(&flags, buf->base + buf->curoff, (LPSAFEARRAY *)arg);
1187 buf->curoff = buffer - buf->base;
1192 ERR("No handler for VT type %d!\n",tdesc->vt);
1198 /* Retrieves a function's funcdesc, searching back into inherited interfaces. */
1199 static HRESULT get_funcdesc(ITypeInfo *tinfo, int iMethod, ITypeInfo **tactual, const FUNCDESC **fdesc,
1200 BSTR *iname, BSTR *fname, UINT *num)
1204 UINT inherited_funcs = 0;
1207 if (fname) *fname = NULL;
1208 if (iname) *iname = NULL;
1212 hr = ITypeInfo_GetTypeAttr(tinfo, &attr);
1215 ERR("GetTypeAttr failed with %x\n",hr);
1219 if(attr->typekind == TKIND_DISPATCH)
1221 if(attr->wTypeFlags & TYPEFLAG_FDUAL)
1226 hr = ITypeInfo_GetRefTypeOfImplType(tinfo, -1, &href);
1229 ERR("Cannot get interface href from dual dispinterface\n");
1230 ITypeInfo_ReleaseTypeAttr(tinfo, attr);
1233 hr = ITypeInfo_GetRefTypeInfo(tinfo, href, &tinfo2);
1236 ERR("Cannot get interface from dual dispinterface\n");
1237 ITypeInfo_ReleaseTypeAttr(tinfo, attr);
1240 hr = get_funcdesc(tinfo2, iMethod, tactual, fdesc, iname, fname, num);
1241 ITypeInfo_Release(tinfo2);
1242 ITypeInfo_ReleaseTypeAttr(tinfo, attr);
1245 ERR("Shouldn't be called with a non-dual dispinterface\n");
1249 impl_types = attr->cImplTypes;
1250 ITypeInfo_ReleaseTypeAttr(tinfo, attr);
1252 for (i = 0; i < impl_types; i++)
1255 ITypeInfo *pSubTypeInfo;
1258 hr = ITypeInfo_GetRefTypeOfImplType(tinfo, i, &href);
1259 if (FAILED(hr)) return hr;
1260 hr = ITypeInfo_GetRefTypeInfo(tinfo, href, &pSubTypeInfo);
1261 if (FAILED(hr)) return hr;
1263 hr = get_funcdesc(pSubTypeInfo, iMethod, tactual, fdesc, iname, fname, &sub_funcs);
1264 inherited_funcs += sub_funcs;
1265 ITypeInfo_Release(pSubTypeInfo);
1266 if(SUCCEEDED(hr)) return hr;
1268 if(iMethod < inherited_funcs)
1270 ERR("shouldn't be here\n");
1271 return E_INVALIDARG;
1274 for(i = inherited_funcs; i <= iMethod; i++)
1276 hr = ITypeInfoImpl_GetInternalFuncDesc(tinfo, i - inherited_funcs, fdesc);
1284 /* found it. We don't care about num so zero it */
1287 ITypeInfo_AddRef(*tactual);
1288 if (fname) ITypeInfo_GetDocumentation(tinfo,(*fdesc)->memid,fname,NULL,NULL,NULL);
1289 if (iname) ITypeInfo_GetDocumentation(tinfo,-1,iname,NULL,NULL,NULL);
1293 static inline BOOL is_in_elem(const ELEMDESC *elem)
1295 return (elem->u.paramdesc.wParamFlags & PARAMFLAG_FIN || !elem->u.paramdesc.wParamFlags);
1298 static inline BOOL is_out_elem(const ELEMDESC *elem)
1300 return (elem->u.paramdesc.wParamFlags & PARAMFLAG_FOUT || !elem->u.paramdesc.wParamFlags);
1304 xCall(LPVOID retptr, int method, TMProxyImpl *tpinfo /*, args */)
1306 DWORD *args = ((DWORD*)&tpinfo)+1, *xargs;
1307 const FUNCDESC *fdesc;
1309 int i, relaydeb = TRACE_ON(olerelay);
1316 DWORD remoteresult = 0;
1318 IRpcChannelBuffer *chanbuf;
1320 EnterCriticalSection(&tpinfo->crit);
1322 hres = get_funcdesc(tpinfo->tinfo,method,&tinfo,&fdesc,&iname,&fname,NULL);
1324 ERR("Did not find typeinfo/funcdesc entry for method %d!\n",method);
1325 LeaveCriticalSection(&tpinfo->crit);
1329 if (!tpinfo->chanbuf)
1331 WARN("Tried to use disconnected proxy\n");
1332 ITypeInfo_Release(tinfo);
1333 LeaveCriticalSection(&tpinfo->crit);
1334 return RPC_E_DISCONNECTED;
1336 chanbuf = tpinfo->chanbuf;
1337 IRpcChannelBuffer_AddRef(chanbuf);
1339 LeaveCriticalSection(&tpinfo->crit);
1342 TRACE_(olerelay)("->");
1344 TRACE_(olerelay)("%s:",relaystr(iname));
1346 TRACE_(olerelay)("%s(%d)",relaystr(fname),method);
1348 TRACE_(olerelay)("%d",method);
1349 TRACE_(olerelay)("(");
1352 if (iname) SysFreeString(iname);
1353 if (fname) SysFreeString(fname);
1355 memset(&buf,0,sizeof(buf));
1357 /* normal typelib driven serializing */
1359 /* Need them for hack below */
1360 memset(names,0,sizeof(names));
1361 if (ITypeInfo_GetNames(tinfo,fdesc->memid,names,sizeof(names)/sizeof(names[0]),&nrofnames))
1363 if (nrofnames > sizeof(names)/sizeof(names[0]))
1364 ERR("Need more names!\n");
1367 for (i=0;i<fdesc->cParams;i++) {
1368 ELEMDESC *elem = fdesc->lprgelemdescParam+i;
1370 if (i) TRACE_(olerelay)(",");
1371 if (i+1<nrofnames && names[i+1])
1372 TRACE_(olerelay)("%s=",relaystr(names[i+1]));
1374 /* No need to marshal other data than FIN and any VT_PTR. */
1375 if (!is_in_elem(elem) && (elem->tdesc.vt != VT_PTR)) {
1376 xargs+=_argsize(elem->tdesc.vt);
1377 if (relaydeb) TRACE_(olerelay)("[out]");
1380 hres = serialize_param(
1391 ERR("Failed to serialize param, hres %x\n",hres);
1394 xargs+=_argsize(elem->tdesc.vt);
1396 if (relaydeb) TRACE_(olerelay)(")");
1398 memset(&msg,0,sizeof(msg));
1399 msg.cbBuffer = buf.curoff;
1400 msg.iMethod = method;
1401 hres = IRpcChannelBuffer_GetBuffer(chanbuf,&msg,&(tpinfo->iid));
1403 ERR("RpcChannelBuffer GetBuffer failed, %x\n",hres);
1406 memcpy(msg.Buffer,buf.base,buf.curoff);
1407 if (relaydeb) TRACE_(olerelay)("\n");
1408 hres = IRpcChannelBuffer_SendReceive(chanbuf,&msg,&status);
1410 ERR("RpcChannelBuffer SendReceive failed, %x\n",hres);
1414 if (relaydeb) TRACE_(olerelay)(" status = %08x (",status);
1416 buf.base = HeapReAlloc(GetProcessHeap(),0,buf.base,msg.cbBuffer);
1418 buf.base = HeapAlloc(GetProcessHeap(),0,msg.cbBuffer);
1419 buf.size = msg.cbBuffer;
1420 memcpy(buf.base,msg.Buffer,buf.size);
1423 /* generic deserializer using typelib description */
1426 for (i=0;i<fdesc->cParams;i++) {
1427 ELEMDESC *elem = fdesc->lprgelemdescParam+i;
1430 if (i) TRACE_(olerelay)(",");
1431 if (i+1<nrofnames && names[i+1]) TRACE_(olerelay)("%s=",relaystr(names[i+1]));
1433 /* No need to marshal other data than FOUT and any VT_PTR */
1434 if (!is_out_elem(elem) && (elem->tdesc.vt != VT_PTR)) {
1435 xargs += _argsize(elem->tdesc.vt);
1436 if (relaydeb) TRACE_(olerelay)("[in]");
1439 hres = deserialize_param(
1449 ERR("Failed to unmarshall param, hres %x\n",hres);
1453 xargs += _argsize(elem->tdesc.vt);
1456 hres = xbuf_get(&buf, (LPBYTE)&remoteresult, sizeof(DWORD));
1459 if (relaydeb) TRACE_(olerelay)(") = %08x\n", remoteresult);
1461 hres = remoteresult;
1464 for (i = 0; i < nrofnames; i++)
1465 SysFreeString(names[i]);
1466 HeapFree(GetProcessHeap(),0,buf.base);
1467 IRpcChannelBuffer_Release(chanbuf);
1468 ITypeInfo_Release(tinfo);
1469 TRACE("-- 0x%08x\n", hres);
1473 static HRESULT WINAPI ProxyIUnknown_QueryInterface(IUnknown *iface, REFIID riid, void **ppv)
1475 TMProxyImpl *proxy = (TMProxyImpl *)iface;
1477 TRACE("(%s, %p)\n", debugstr_guid(riid), ppv);
1479 if (proxy->outerunknown)
1480 return IUnknown_QueryInterface(proxy->outerunknown, riid, ppv);
1482 FIXME("No interface\n");
1483 return E_NOINTERFACE;
1486 static ULONG WINAPI ProxyIUnknown_AddRef(IUnknown *iface)
1488 TMProxyImpl *proxy = (TMProxyImpl *)iface;
1492 if (proxy->outerunknown)
1493 return IUnknown_AddRef(proxy->outerunknown);
1495 return 2; /* FIXME */
1498 static ULONG WINAPI ProxyIUnknown_Release(IUnknown *iface)
1500 TMProxyImpl *proxy = (TMProxyImpl *)iface;
1504 if (proxy->outerunknown)
1505 return IUnknown_Release(proxy->outerunknown);
1507 return 1; /* FIXME */
1510 static HRESULT WINAPI ProxyIDispatch_GetTypeInfoCount(LPDISPATCH iface, UINT * pctinfo)
1512 TMProxyImpl *This = (TMProxyImpl *)iface;
1514 TRACE("(%p)\n", pctinfo);
1516 return IDispatch_GetTypeInfoCount(This->dispatch, pctinfo);
1519 static HRESULT WINAPI ProxyIDispatch_GetTypeInfo(LPDISPATCH iface, UINT iTInfo, LCID lcid, ITypeInfo** ppTInfo)
1521 TMProxyImpl *This = (TMProxyImpl *)iface;
1523 TRACE("(%d, %x, %p)\n", iTInfo, lcid, ppTInfo);
1525 return IDispatch_GetTypeInfo(This->dispatch, iTInfo, lcid, ppTInfo);
1528 static HRESULT WINAPI ProxyIDispatch_GetIDsOfNames(LPDISPATCH iface, REFIID riid, LPOLESTR * rgszNames, UINT cNames, LCID lcid, DISPID * rgDispId)
1530 TMProxyImpl *This = (TMProxyImpl *)iface;
1532 TRACE("(%s, %p, %d, 0x%x, %p)\n", debugstr_guid(riid), rgszNames, cNames, lcid, rgDispId);
1534 return IDispatch_GetIDsOfNames(This->dispatch, riid, rgszNames,
1535 cNames, lcid, rgDispId);
1538 static HRESULT WINAPI ProxyIDispatch_Invoke(LPDISPATCH iface, DISPID dispIdMember, REFIID riid, LCID lcid,
1539 WORD wFlags, DISPPARAMS * pDispParams, VARIANT * pVarResult,
1540 EXCEPINFO * pExcepInfo, UINT * puArgErr)
1542 TMProxyImpl *This = (TMProxyImpl *)iface;
1544 TRACE("(%d, %s, 0x%x, 0x%x, %p, %p, %p, %p)\n", dispIdMember,
1545 debugstr_guid(riid), lcid, wFlags, pDispParams, pVarResult,
1546 pExcepInfo, puArgErr);
1548 return IDispatch_Invoke(This->dispatch, dispIdMember, riid, lcid,
1549 wFlags, pDispParams, pVarResult, pExcepInfo,
1555 const IRpcChannelBufferVtbl *lpVtbl;
1557 /* the IDispatch-derived interface we are handling */
1559 IRpcChannelBuffer *pDelegateChannel;
1560 } TMarshalDispatchChannel;
1562 static HRESULT WINAPI TMarshalDispatchChannel_QueryInterface(LPRPCCHANNELBUFFER iface, REFIID riid, LPVOID *ppv)
1565 if (IsEqualIID(riid,&IID_IRpcChannelBuffer) || IsEqualIID(riid,&IID_IUnknown))
1567 *ppv = (LPVOID)iface;
1568 IUnknown_AddRef(iface);
1571 return E_NOINTERFACE;
1574 static ULONG WINAPI TMarshalDispatchChannel_AddRef(LPRPCCHANNELBUFFER iface)
1576 TMarshalDispatchChannel *This = (TMarshalDispatchChannel *)iface;
1577 return InterlockedIncrement(&This->refs);
1580 static ULONG WINAPI TMarshalDispatchChannel_Release(LPRPCCHANNELBUFFER iface)
1582 TMarshalDispatchChannel *This = (TMarshalDispatchChannel *)iface;
1585 ref = InterlockedDecrement(&This->refs);
1589 IRpcChannelBuffer_Release(This->pDelegateChannel);
1590 HeapFree(GetProcessHeap(), 0, This);
1594 static HRESULT WINAPI TMarshalDispatchChannel_GetBuffer(LPRPCCHANNELBUFFER iface, RPCOLEMESSAGE* olemsg, REFIID riid)
1596 TMarshalDispatchChannel *This = (TMarshalDispatchChannel *)iface;
1597 TRACE("(%p, %s)\n", olemsg, debugstr_guid(riid));
1598 /* Note: we are pretending to invoke a method on the interface identified
1599 * by tmarshal_iid so that we can re-use the IDispatch proxy/stub code
1600 * without the RPC runtime getting confused by not exporting an IDispatch interface */
1601 return IRpcChannelBuffer_GetBuffer(This->pDelegateChannel, olemsg, &This->tmarshal_iid);
1604 static HRESULT WINAPI TMarshalDispatchChannel_SendReceive(LPRPCCHANNELBUFFER iface, RPCOLEMESSAGE *olemsg, ULONG *pstatus)
1606 TMarshalDispatchChannel *This = (TMarshalDispatchChannel *)iface;
1607 TRACE("(%p, %p)\n", olemsg, pstatus);
1608 return IRpcChannelBuffer_SendReceive(This->pDelegateChannel, olemsg, pstatus);
1611 static HRESULT WINAPI TMarshalDispatchChannel_FreeBuffer(LPRPCCHANNELBUFFER iface, RPCOLEMESSAGE* olemsg)
1613 TMarshalDispatchChannel *This = (TMarshalDispatchChannel *)iface;
1614 TRACE("(%p)\n", olemsg);
1615 return IRpcChannelBuffer_FreeBuffer(This->pDelegateChannel, olemsg);
1618 static HRESULT WINAPI TMarshalDispatchChannel_GetDestCtx(LPRPCCHANNELBUFFER iface, DWORD* pdwDestContext, void** ppvDestContext)
1620 TMarshalDispatchChannel *This = (TMarshalDispatchChannel *)iface;
1621 TRACE("(%p,%p)\n", pdwDestContext, ppvDestContext);
1622 return IRpcChannelBuffer_GetDestCtx(This->pDelegateChannel, pdwDestContext, ppvDestContext);
1625 static HRESULT WINAPI TMarshalDispatchChannel_IsConnected(LPRPCCHANNELBUFFER iface)
1627 TMarshalDispatchChannel *This = (TMarshalDispatchChannel *)iface;
1629 return IRpcChannelBuffer_IsConnected(This->pDelegateChannel);
1632 static const IRpcChannelBufferVtbl TMarshalDispatchChannelVtbl =
1634 TMarshalDispatchChannel_QueryInterface,
1635 TMarshalDispatchChannel_AddRef,
1636 TMarshalDispatchChannel_Release,
1637 TMarshalDispatchChannel_GetBuffer,
1638 TMarshalDispatchChannel_SendReceive,
1639 TMarshalDispatchChannel_FreeBuffer,
1640 TMarshalDispatchChannel_GetDestCtx,
1641 TMarshalDispatchChannel_IsConnected
1644 static HRESULT TMarshalDispatchChannel_Create(
1645 IRpcChannelBuffer *pDelegateChannel, REFIID tmarshal_riid,
1646 IRpcChannelBuffer **ppChannel)
1648 TMarshalDispatchChannel *This = HeapAlloc(GetProcessHeap(), 0, sizeof(*This));
1650 return E_OUTOFMEMORY;
1652 This->lpVtbl = &TMarshalDispatchChannelVtbl;
1654 IRpcChannelBuffer_AddRef(pDelegateChannel);
1655 This->pDelegateChannel = pDelegateChannel;
1656 This->tmarshal_iid = *tmarshal_riid;
1658 *ppChannel = (IRpcChannelBuffer *)&This->lpVtbl;
1663 static inline HRESULT get_facbuf_for_iid(REFIID riid, IPSFactoryBuffer **facbuf)
1668 if ((hr = CoGetPSClsid(riid, &clsid)))
1670 return CoGetClassObject(&clsid, CLSCTX_INPROC_SERVER, NULL,
1671 &IID_IPSFactoryBuffer, (LPVOID*)facbuf);
1674 static HRESULT init_proxy_entry_point(TMProxyImpl *proxy, unsigned int num)
1677 /* nrofargs without This */
1680 TMAsmProxy *xasm = proxy->asmstubs + num;
1682 const FUNCDESC *fdesc;
1684 hres = get_funcdesc(proxy->tinfo, num, &tinfo2, &fdesc, NULL, NULL, NULL);
1686 ERR("GetFuncDesc %x should not fail here.\n",hres);
1689 ITypeInfo_Release(tinfo2);
1690 /* some args take more than 4 byte on the stack */
1692 for (j=0;j<fdesc->cParams;j++)
1693 nrofargs += _argsize(fdesc->lprgelemdescParam[j].tdesc.vt);
1696 if (fdesc->callconv != CC_STDCALL) {
1697 ERR("calling convention is not stdcall????\n");
1700 /* popl %eax - return ptr
1707 * arg3 arg2 arg1 <method> <returnptr>
1709 xasm->popleax = 0x58;
1710 xasm->pushlval = 0x6a;
1712 xasm->pushleax = 0x50;
1713 xasm->lcall = 0xe8; /* relative jump */
1714 xasm->xcall = (DWORD)xCall;
1715 xasm->xcall -= (DWORD)&(xasm->lret);
1717 xasm->bytestopop = (nrofargs+2)*4; /* pop args, This, iMethod */
1718 proxy->lpvtbl[num] = xasm;
1720 FIXME("not implemented on non i386\n");
1726 static HRESULT WINAPI
1727 PSFacBuf_CreateProxy(
1728 LPPSFACTORYBUFFER iface, IUnknown* pUnkOuter, REFIID riid,
1729 IRpcProxyBuffer **ppProxy, LPVOID *ppv)
1733 unsigned int i, nroffuncs;
1736 BOOL defer_to_dispatch = FALSE;
1738 TRACE("(...%s...)\n",debugstr_guid(riid));
1739 hres = _get_typeinfo_for_iid(riid,&tinfo);
1741 ERR("No typeinfo for %s?\n",debugstr_guid(riid));
1745 hres = num_of_funcs(tinfo, &nroffuncs);
1747 ERR("Cannot get number of functions for typeinfo %s\n",debugstr_guid(riid));
1748 ITypeInfo_Release(tinfo);
1752 proxy = CoTaskMemAlloc(sizeof(TMProxyImpl));
1753 if (!proxy) return E_OUTOFMEMORY;
1755 assert(sizeof(TMAsmProxy) == 12);
1757 proxy->dispatch = NULL;
1758 proxy->dispatch_proxy = NULL;
1759 proxy->outerunknown = pUnkOuter;
1760 proxy->asmstubs = VirtualAlloc(NULL, sizeof(TMAsmProxy) * nroffuncs, MEM_COMMIT, PAGE_EXECUTE_READWRITE);
1761 if (!proxy->asmstubs) {
1762 ERR("Could not commit pages for proxy thunks\n");
1763 CoTaskMemFree(proxy);
1764 return E_OUTOFMEMORY;
1766 proxy->lpvtbl2 = &tmproxyvtable;
1767 /* one reference for the proxy */
1769 proxy->tinfo = tinfo;
1770 memcpy(&proxy->iid,riid,sizeof(*riid));
1773 InitializeCriticalSection(&proxy->crit);
1774 proxy->crit.DebugInfo->Spare[0] = (DWORD_PTR)(__FILE__ ": TMProxyImpl.crit");
1776 proxy->lpvtbl = HeapAlloc(GetProcessHeap(),0,sizeof(LPBYTE)*nroffuncs);
1778 /* if we derive from IDispatch then defer to its proxy for its methods */
1779 hres = ITypeInfo_GetTypeAttr(tinfo, &typeattr);
1782 if (typeattr->wTypeFlags & TYPEFLAG_FDISPATCHABLE)
1784 IPSFactoryBuffer *factory_buffer;
1785 hres = get_facbuf_for_iid(&IID_IDispatch, &factory_buffer);
1788 hres = IPSFactoryBuffer_CreateProxy(factory_buffer, NULL,
1789 &IID_IDispatch, &proxy->dispatch_proxy,
1790 (void **)&proxy->dispatch);
1791 IPSFactoryBuffer_Release(factory_buffer);
1793 if ((hres == S_OK) && (nroffuncs < 7))
1795 ERR("nroffuncs calculated incorrectly (%d)\n", nroffuncs);
1796 hres = E_UNEXPECTED;
1800 defer_to_dispatch = TRUE;
1803 ITypeInfo_ReleaseTypeAttr(tinfo, typeattr);
1806 for (i=0;i<nroffuncs;i++) {
1809 proxy->lpvtbl[i] = ProxyIUnknown_QueryInterface;
1812 proxy->lpvtbl[i] = ProxyIUnknown_AddRef;
1815 proxy->lpvtbl[i] = ProxyIUnknown_Release;
1818 if(!defer_to_dispatch)
1820 hres = init_proxy_entry_point(proxy, i);
1821 if(FAILED(hres)) return hres;
1823 else proxy->lpvtbl[3] = ProxyIDispatch_GetTypeInfoCount;
1826 if(!defer_to_dispatch)
1828 hres = init_proxy_entry_point(proxy, i);
1829 if(FAILED(hres)) return hres;
1831 else proxy->lpvtbl[4] = ProxyIDispatch_GetTypeInfo;
1834 if(!defer_to_dispatch)
1836 hres = init_proxy_entry_point(proxy, i);
1837 if(FAILED(hres)) return hres;
1839 else proxy->lpvtbl[5] = ProxyIDispatch_GetIDsOfNames;
1842 if(!defer_to_dispatch)
1844 hres = init_proxy_entry_point(proxy, i);
1845 if(FAILED(hres)) return hres;
1847 else proxy->lpvtbl[6] = ProxyIDispatch_Invoke;
1850 hres = init_proxy_entry_point(proxy, i);
1851 if(FAILED(hres)) return hres;
1857 *ppv = (LPVOID)proxy;
1858 *ppProxy = (IRpcProxyBuffer *)&(proxy->lpvtbl2);
1859 IUnknown_AddRef((IUnknown *)*ppv);
1863 TMProxyImpl_Release((IRpcProxyBuffer *)&proxy->lpvtbl2);
1867 typedef struct _TMStubImpl {
1868 const IRpcStubBufferVtbl *lpvtbl;
1874 IRpcStubBuffer *dispatch_stub;
1875 BOOL dispatch_derivative;
1878 static HRESULT WINAPI
1879 TMStubImpl_QueryInterface(LPRPCSTUBBUFFER iface, REFIID riid, LPVOID *ppv)
1881 if (IsEqualIID(riid,&IID_IRpcStubBuffer)||IsEqualIID(riid,&IID_IUnknown)){
1882 *ppv = (LPVOID)iface;
1883 IRpcStubBuffer_AddRef(iface);
1886 FIXME("%s, not supported IID.\n",debugstr_guid(riid));
1887 return E_NOINTERFACE;
1891 TMStubImpl_AddRef(LPRPCSTUBBUFFER iface)
1893 TMStubImpl *This = (TMStubImpl *)iface;
1894 ULONG refCount = InterlockedIncrement(&This->ref);
1896 TRACE("(%p)->(ref before=%u)\n", This, refCount - 1);
1902 TMStubImpl_Release(LPRPCSTUBBUFFER iface)
1904 TMStubImpl *This = (TMStubImpl *)iface;
1905 ULONG refCount = InterlockedDecrement(&This->ref);
1907 TRACE("(%p)->(ref before=%u)\n", This, refCount + 1);
1911 IRpcStubBuffer_Disconnect(iface);
1912 ITypeInfo_Release(This->tinfo);
1913 if (This->dispatch_stub)
1914 IRpcStubBuffer_Release(This->dispatch_stub);
1915 CoTaskMemFree(This);
1920 static HRESULT WINAPI
1921 TMStubImpl_Connect(LPRPCSTUBBUFFER iface, LPUNKNOWN pUnkServer)
1923 TMStubImpl *This = (TMStubImpl *)iface;
1925 TRACE("(%p)->(%p)\n", This, pUnkServer);
1927 IUnknown_AddRef(pUnkServer);
1928 This->pUnk = pUnkServer;
1930 if (This->dispatch_stub)
1931 IRpcStubBuffer_Connect(This->dispatch_stub, pUnkServer);
1937 TMStubImpl_Disconnect(LPRPCSTUBBUFFER iface)
1939 TMStubImpl *This = (TMStubImpl *)iface;
1941 TRACE("(%p)->()\n", This);
1945 IUnknown_Release(This->pUnk);
1949 if (This->dispatch_stub)
1950 IRpcStubBuffer_Disconnect(This->dispatch_stub);
1953 static HRESULT WINAPI
1955 LPRPCSTUBBUFFER iface, RPCOLEMESSAGE* xmsg,IRpcChannelBuffer*rpcchanbuf)
1958 const FUNCDESC *fdesc;
1959 TMStubImpl *This = (TMStubImpl *)iface;
1961 DWORD *args = NULL, res, *xargs, nrofargs;
1966 ITypeInfo *tinfo = NULL;
1970 if (xmsg->iMethod < 3) {
1971 ERR("IUnknown methods cannot be marshaled by the typelib marshaler\n");
1972 return E_UNEXPECTED;
1975 if (This->dispatch_derivative && xmsg->iMethod < sizeof(IDispatchVtbl)/sizeof(void *))
1977 IPSFactoryBuffer *factory_buffer;
1978 hres = get_facbuf_for_iid(&IID_IDispatch, &factory_buffer);
1981 hres = IPSFactoryBuffer_CreateStub(factory_buffer, &IID_IDispatch,
1982 This->pUnk, &This->dispatch_stub);
1983 IPSFactoryBuffer_Release(factory_buffer);
1987 return IRpcStubBuffer_Invoke(This->dispatch_stub, xmsg, rpcchanbuf);
1990 memset(&buf,0,sizeof(buf));
1991 buf.size = xmsg->cbBuffer;
1992 buf.base = HeapAlloc(GetProcessHeap(), 0, xmsg->cbBuffer);
1993 memcpy(buf.base, xmsg->Buffer, xmsg->cbBuffer);
1996 hres = get_funcdesc(This->tinfo,xmsg->iMethod,&tinfo,&fdesc,&iname,NULL,NULL);
1998 ERR("GetFuncDesc on method %d failed with %x\n",xmsg->iMethod,hres);
2002 if (iname && !lstrcmpW(iname, IDispatchW))
2004 ERR("IDispatch cannot be marshaled by the typelib marshaler\n");
2005 hres = E_UNEXPECTED;
2006 SysFreeString (iname);
2010 if (iname) SysFreeString (iname);
2012 /* Need them for hack below */
2013 memset(names,0,sizeof(names));
2014 ITypeInfo_GetNames(tinfo,fdesc->memid,names,sizeof(names)/sizeof(names[0]),&nrofnames);
2015 if (nrofnames > sizeof(names)/sizeof(names[0])) {
2016 ERR("Need more names!\n");
2019 /*dump_FUNCDESC(fdesc);*/
2021 for (i=0;i<fdesc->cParams;i++)
2022 nrofargs += _argsize(fdesc->lprgelemdescParam[i].tdesc.vt);
2023 args = HeapAlloc(GetProcessHeap(),0,(nrofargs+1)*sizeof(DWORD));
2026 hres = E_OUTOFMEMORY;
2030 /* Allocate all stuff used by call. */
2032 for (i=0;i<fdesc->cParams;i++) {
2033 ELEMDESC *elem = fdesc->lprgelemdescParam+i;
2035 hres = deserialize_param(
2044 xargs += _argsize(elem->tdesc.vt);
2046 ERR("Failed to deserialize param %s, hres %x\n",relaystr(names[i+1]),hres);
2051 args[0] = (DWORD)This->pUnk;
2056 (*((FARPROC**)args[0]))[fdesc->oVft/4],
2064 DWORD dwExceptionCode = GetExceptionCode();
2065 ERR("invoke call failed with exception 0x%08x (%d)\n", dwExceptionCode, dwExceptionCode);
2066 if (FAILED(dwExceptionCode))
2067 hres = dwExceptionCode;
2069 hres = HRESULT_FROM_WIN32(dwExceptionCode);
2079 for (i=0;i<fdesc->cParams;i++) {
2080 ELEMDESC *elem = fdesc->lprgelemdescParam+i;
2081 hres = serialize_param(
2090 xargs += _argsize(elem->tdesc.vt);
2092 ERR("Failed to stuballoc param, hres %x\n",hres);
2097 hres = xbuf_add (&buf, (LPBYTE)&res, sizeof(DWORD));
2102 xmsg->cbBuffer = buf.curoff;
2103 hres = IRpcChannelBuffer_GetBuffer(rpcchanbuf, xmsg, &This->iid);
2105 ERR("IRpcChannelBuffer_GetBuffer failed with error 0x%08x\n", hres);
2108 memcpy(xmsg->Buffer, buf.base, buf.curoff);
2111 for (i = 0; i < nrofnames; i++)
2112 SysFreeString(names[i]);
2114 ITypeInfo_Release(tinfo);
2115 HeapFree(GetProcessHeap(), 0, args);
2117 HeapFree(GetProcessHeap(), 0, buf.base);
2119 TRACE("returning\n");
2123 static LPRPCSTUBBUFFER WINAPI
2124 TMStubImpl_IsIIDSupported(LPRPCSTUBBUFFER iface, REFIID riid) {
2125 FIXME("Huh (%s)?\n",debugstr_guid(riid));
2130 TMStubImpl_CountRefs(LPRPCSTUBBUFFER iface) {
2131 TMStubImpl *This = (TMStubImpl *)iface;
2134 return This->ref; /*FIXME? */
2137 static HRESULT WINAPI
2138 TMStubImpl_DebugServerQueryInterface(LPRPCSTUBBUFFER iface, LPVOID *ppv) {
2143 TMStubImpl_DebugServerRelease(LPRPCSTUBBUFFER iface, LPVOID ppv) {
2147 static const IRpcStubBufferVtbl tmstubvtbl = {
2148 TMStubImpl_QueryInterface,
2152 TMStubImpl_Disconnect,
2154 TMStubImpl_IsIIDSupported,
2155 TMStubImpl_CountRefs,
2156 TMStubImpl_DebugServerQueryInterface,
2157 TMStubImpl_DebugServerRelease
2160 static HRESULT WINAPI
2161 PSFacBuf_CreateStub(
2162 LPPSFACTORYBUFFER iface, REFIID riid,IUnknown *pUnkServer,
2163 IRpcStubBuffer** ppStub
2170 TRACE("(%s,%p,%p)\n",debugstr_guid(riid),pUnkServer,ppStub);
2172 hres = _get_typeinfo_for_iid(riid,&tinfo);
2174 ERR("No typeinfo for %s?\n",debugstr_guid(riid));
2178 stub = CoTaskMemAlloc(sizeof(TMStubImpl));
2180 return E_OUTOFMEMORY;
2181 stub->lpvtbl = &tmstubvtbl;
2183 stub->tinfo = tinfo;
2184 stub->dispatch_stub = NULL;
2185 stub->dispatch_derivative = FALSE;
2186 memcpy(&(stub->iid),riid,sizeof(*riid));
2187 hres = IRpcStubBuffer_Connect((LPRPCSTUBBUFFER)stub,pUnkServer);
2188 *ppStub = (LPRPCSTUBBUFFER)stub;
2189 TRACE("IRpcStubBuffer: %p\n", stub);
2191 ERR("Connect to pUnkServer failed?\n");
2193 /* if we derive from IDispatch then defer to its stub for some of its methods */
2194 hres = ITypeInfo_GetTypeAttr(tinfo, &typeattr);
2197 if (typeattr->wTypeFlags & TYPEFLAG_FDISPATCHABLE)
2198 stub->dispatch_derivative = TRUE;
2199 ITypeInfo_ReleaseTypeAttr(tinfo, typeattr);
2205 static const IPSFactoryBufferVtbl psfacbufvtbl = {
2206 PSFacBuf_QueryInterface,
2209 PSFacBuf_CreateProxy,
2213 /* This is the whole PSFactoryBuffer object, just the vtableptr */
2214 static const IPSFactoryBufferVtbl *lppsfac = &psfacbufvtbl;
2216 /***********************************************************************
2217 * TMARSHAL_DllGetClassObject
2219 HRESULT TMARSHAL_DllGetClassObject(REFCLSID rclsid, REFIID iid,LPVOID *ppv)
2221 if (IsEqualIID(iid,&IID_IPSFactoryBuffer)) {
2225 return E_NOINTERFACE;