2 * OLE32 callouts, COM interface marshalling
4 * Copyright 2001 Ove Kåven, TransGaming Technologies
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 * - fix the wire-protocol to match MS/RPC
22 * - finish RpcStream_Vtbl
30 #define NONAMELESSUNION
31 #define NONAMELESSSTRUCT
42 #include "wine/rpcfc.h"
45 #include "wine/debug.h"
47 WINE_DEFAULT_DEBUG_CHANNEL(ole
);
51 static HRESULT (WINAPI
*COM_GetMarshalSizeMax
)(ULONG
*,REFIID
,LPUNKNOWN
,DWORD
,LPVOID
,DWORD
);
52 static HRESULT (WINAPI
*COM_MarshalInterface
)(LPSTREAM
,REFIID
,LPUNKNOWN
,DWORD
,LPVOID
,DWORD
);
53 static HRESULT (WINAPI
*COM_UnmarshalInterface
)(LPSTREAM
,REFIID
,LPVOID
*);
54 static HRESULT (WINAPI
*COM_ReleaseMarshalData
)(LPSTREAM
);
55 static HRESULT (WINAPI
*COM_GetClassObject
)(REFCLSID
,DWORD
,COSERVERINFO
*,REFIID
,LPVOID
*);
56 static HRESULT (WINAPI
*COM_GetPSClsid
)(REFIID
,CLSID
*);
57 static LPVOID (WINAPI
*COM_MemAlloc
)(ULONG
);
58 static void (WINAPI
*COM_MemFree
)(LPVOID
);
60 static HMODULE
LoadCOM(void)
62 if (hOLE
) return hOLE
;
63 hOLE
= LoadLibraryA("OLE32.DLL");
65 COM_GetMarshalSizeMax
= (LPVOID
)GetProcAddress(hOLE
, "CoGetMarshalSizeMax");
66 COM_MarshalInterface
= (LPVOID
)GetProcAddress(hOLE
, "CoMarshalInterface");
67 COM_UnmarshalInterface
= (LPVOID
)GetProcAddress(hOLE
, "CoUnmarshalInterface");
68 COM_ReleaseMarshalData
= (LPVOID
)GetProcAddress(hOLE
, "CoReleaseMarshalData");
69 COM_GetClassObject
= (LPVOID
)GetProcAddress(hOLE
, "CoGetClassObject");
70 COM_GetPSClsid
= (LPVOID
)GetProcAddress(hOLE
, "CoGetPSClsid");
71 COM_MemAlloc
= (LPVOID
)GetProcAddress(hOLE
, "CoTaskMemAlloc");
72 COM_MemFree
= (LPVOID
)GetProcAddress(hOLE
, "CoTaskMemFree");
76 /* CoMarshalInterface/CoUnmarshalInterface works on streams,
77 * so implement a simple stream on top of the RPC buffer
78 * (which also implements the MInterfacePointer structure) */
79 typedef struct RpcStreamImpl
81 const IStreamVtbl
*lpVtbl
;
83 PMIDL_STUB_MESSAGE pMsg
;
89 static HRESULT WINAPI
RpcStream_QueryInterface(LPSTREAM iface
,
93 RpcStreamImpl
*This
= (RpcStreamImpl
*)iface
;
94 if (IsEqualGUID(&IID_IUnknown
, riid
) ||
95 IsEqualGUID(&IID_ISequentialStream
, riid
) ||
96 IsEqualGUID(&IID_IStream
, riid
)) {
101 return E_NOINTERFACE
;
104 static ULONG WINAPI
RpcStream_AddRef(LPSTREAM iface
)
106 RpcStreamImpl
*This
= (RpcStreamImpl
*)iface
;
107 return ++(This
->RefCount
);
110 static ULONG WINAPI
RpcStream_Release(LPSTREAM iface
)
112 RpcStreamImpl
*This
= (RpcStreamImpl
*)iface
;
113 if (!--(This
->RefCount
)) {
114 TRACE("size=%d\n", *This
->size
);
115 This
->pMsg
->Buffer
= This
->data
+ *This
->size
;
116 HeapFree(GetProcessHeap(),0,This
);
119 return This
->RefCount
;
122 static HRESULT WINAPI
RpcStream_Read(LPSTREAM iface
,
127 RpcStreamImpl
*This
= (RpcStreamImpl
*)iface
;
129 if (This
->pos
+ cb
> *This
->size
)
131 cb
= *This
->size
- This
->pos
;
135 memcpy(pv
, This
->data
+ This
->pos
, cb
);
138 if (pcbRead
) *pcbRead
= cb
;
142 static HRESULT WINAPI
RpcStream_Write(LPSTREAM iface
,
147 RpcStreamImpl
*This
= (RpcStreamImpl
*)iface
;
148 if (This
->data
+ cb
> (unsigned char *)This
->pMsg
->RpcMsg
->Buffer
+ This
->pMsg
->BufferLength
)
149 return STG_E_MEDIUMFULL
;
150 memcpy(This
->data
+ This
->pos
, pv
, cb
);
152 if (This
->pos
> *This
->size
) *This
->size
= This
->pos
;
153 if (pcbWritten
) *pcbWritten
= cb
;
157 static HRESULT WINAPI
RpcStream_Seek(LPSTREAM iface
,
160 ULARGE_INTEGER
*newPos
)
162 RpcStreamImpl
*This
= (RpcStreamImpl
*)iface
;
164 case STREAM_SEEK_SET
:
165 This
->pos
= move
.u
.LowPart
;
167 case STREAM_SEEK_CUR
:
168 This
->pos
= This
->pos
+ move
.u
.LowPart
;
170 case STREAM_SEEK_END
:
171 This
->pos
= *This
->size
+ move
.u
.LowPart
;
174 return STG_E_INVALIDFUNCTION
;
177 newPos
->u
.LowPart
= This
->pos
;
178 newPos
->u
.HighPart
= 0;
183 static HRESULT WINAPI
RpcStream_SetSize(LPSTREAM iface
,
184 ULARGE_INTEGER newSize
)
186 RpcStreamImpl
*This
= (RpcStreamImpl
*)iface
;
187 *This
->size
= newSize
.u
.LowPart
;
191 static const IStreamVtbl RpcStream_Vtbl
=
193 RpcStream_QueryInterface
,
203 NULL
, /* LockRegion */
204 NULL
, /* UnlockRegion */
209 static LPSTREAM
RpcStream_Create(PMIDL_STUB_MESSAGE pStubMsg
, BOOL init
)
212 This
= HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY
,sizeof(RpcStreamImpl
));
213 if (!This
) return NULL
;
214 This
->lpVtbl
= &RpcStream_Vtbl
;
216 This
->pMsg
= pStubMsg
;
217 This
->size
= (LPDWORD
)pStubMsg
->Buffer
;
218 This
->data
= (unsigned char*)(This
->size
+ 1);
220 if (init
) *This
->size
= 0;
221 TRACE("init size=%d\n", *This
->size
);
222 return (LPSTREAM
)This
;
225 static const IID
* get_ip_iid(PMIDL_STUB_MESSAGE pStubMsg
, unsigned char *pMemory
, PFORMAT_STRING pFormat
)
228 if (!pFormat
) return &IID_IUnknown
;
229 TRACE("format=%02x %02x\n", pFormat
[0], pFormat
[1]);
230 if (pFormat
[0] != RPC_FC_IP
) FIXME("format=%d\n", pFormat
[0]);
231 if (pFormat
[1] == RPC_FC_CONSTANT_IID
) {
232 riid
= (const IID
*)&pFormat
[2];
234 ComputeConformance(pStubMsg
, pMemory
, pFormat
+2, 0);
235 riid
= (const IID
*)pStubMsg
->MaxCount
;
237 if (!riid
) riid
= &IID_IUnknown
;
238 TRACE("got %s\n", debugstr_guid(riid
));
242 /***********************************************************************
243 * NdrInterfacePointerMarshall [RPCRT4.@]
245 unsigned char * WINAPI
NdrInterfacePointerMarshall(PMIDL_STUB_MESSAGE pStubMsg
,
246 unsigned char *pMemory
,
247 PFORMAT_STRING pFormat
)
249 const IID
*riid
= get_ip_iid(pStubMsg
, pMemory
, pFormat
);
253 TRACE("(%p,%p,%p)\n", pStubMsg
, pMemory
, pFormat
);
254 pStubMsg
->MaxCount
= 0;
255 if (!LoadCOM()) return NULL
;
256 if (pStubMsg
->Buffer
+ sizeof(DWORD
) <= (unsigned char *)pStubMsg
->RpcMsg
->Buffer
+ pStubMsg
->BufferLength
) {
257 stream
= RpcStream_Create(pStubMsg
, TRUE
);
260 hr
= COM_MarshalInterface(stream
, riid
, (LPUNKNOWN
)pMemory
,
261 pStubMsg
->dwDestContext
, pStubMsg
->pvDestContext
,
266 IStream_Release(stream
);
268 RpcRaiseException(hr
);
274 /***********************************************************************
275 * NdrInterfacePointerUnmarshall [RPCRT4.@]
277 unsigned char * WINAPI
NdrInterfacePointerUnmarshall(PMIDL_STUB_MESSAGE pStubMsg
,
278 unsigned char **ppMemory
,
279 PFORMAT_STRING pFormat
,
280 unsigned char fMustAlloc
)
285 TRACE("(%p,%p,%p,%d)\n", pStubMsg
, ppMemory
, pFormat
, fMustAlloc
);
286 if (!LoadCOM()) return NULL
;
287 *(LPVOID
*)ppMemory
= NULL
;
288 if (pStubMsg
->Buffer
+ sizeof(DWORD
) < (unsigned char *)pStubMsg
->RpcMsg
->Buffer
+ pStubMsg
->BufferLength
) {
289 stream
= RpcStream_Create(pStubMsg
, FALSE
);
290 if (!stream
) RpcRaiseException(E_OUTOFMEMORY
);
291 if (*((RpcStreamImpl
*)stream
)->size
!= 0)
292 hr
= COM_UnmarshalInterface(stream
, &IID_NULL
, (LPVOID
*)ppMemory
);
295 IStream_Release(stream
);
297 RpcRaiseException(hr
);
302 /***********************************************************************
303 * NdrInterfacePointerBufferSize [RPCRT4.@]
305 void WINAPI
NdrInterfacePointerBufferSize(PMIDL_STUB_MESSAGE pStubMsg
,
306 unsigned char *pMemory
,
307 PFORMAT_STRING pFormat
)
309 const IID
*riid
= get_ip_iid(pStubMsg
, pMemory
, pFormat
);
313 TRACE("(%p,%p,%p)\n", pStubMsg
, pMemory
, pFormat
);
314 if (!LoadCOM()) return;
315 hr
= COM_GetMarshalSizeMax(&size
, riid
, (LPUNKNOWN
)pMemory
,
316 pStubMsg
->dwDestContext
, pStubMsg
->pvDestContext
,
318 TRACE("size=%d\n", size
);
319 pStubMsg
->BufferLength
+= sizeof(DWORD
) + size
;
322 /***********************************************************************
323 * NdrInterfacePointerMemorySize [RPCRT4.@]
325 ULONG WINAPI
NdrInterfacePointerMemorySize(PMIDL_STUB_MESSAGE pStubMsg
,
326 PFORMAT_STRING pFormat
)
330 TRACE("(%p,%p)\n", pStubMsg
, pFormat
);
332 size
= *(ULONG
*)pStubMsg
->Buffer
;
333 pStubMsg
->Buffer
+= 4;
334 pStubMsg
->MemorySize
+= 4;
336 pStubMsg
->Buffer
+= size
;
338 return pStubMsg
->MemorySize
;
341 /***********************************************************************
342 * NdrInterfacePointerFree [RPCRT4.@]
344 void WINAPI
NdrInterfacePointerFree(PMIDL_STUB_MESSAGE pStubMsg
,
345 unsigned char *pMemory
,
346 PFORMAT_STRING pFormat
)
348 LPUNKNOWN pUnk
= (LPUNKNOWN
)pMemory
;
349 TRACE("(%p,%p,%p)\n", pStubMsg
, pMemory
, pFormat
);
350 if (pUnk
) IUnknown_Release(pUnk
);
353 /***********************************************************************
354 * NdrOleAllocate [RPCRT4.@]
356 void * WINAPI
NdrOleAllocate(size_t Size
)
358 if (!LoadCOM()) return NULL
;
359 return COM_MemAlloc(Size
);
362 /***********************************************************************
363 * NdrOleFree [RPCRT4.@]
365 void WINAPI
NdrOleFree(void *NodeToFree
)
367 if (!LoadCOM()) return;
368 COM_MemFree(NodeToFree
);
371 /***********************************************************************
372 * Helper function to create a stub.
373 * This probably looks very much like NdrpCreateStub.
375 HRESULT
create_stub(REFIID iid
, IUnknown
*pUnk
, IRpcStubBuffer
**ppstub
)
378 IPSFactoryBuffer
*psfac
;
381 if(!LoadCOM()) return E_FAIL
;
383 r
= COM_GetPSClsid( iid
, &clsid
);
384 if(FAILED(r
)) return r
;
386 r
= COM_GetClassObject( &clsid
, CLSCTX_INPROC_SERVER
, NULL
, &IID_IPSFactoryBuffer
, (void**)&psfac
);
387 if(FAILED(r
)) return r
;
389 r
= IPSFactoryBuffer_CreateStub(psfac
, iid
, pUnk
, ppstub
);
391 IPSFactoryBuffer_Release(psfac
);