2002-10-22 02:41:17 +02:00
|
|
|
/*
|
|
|
|
* NDR data marshalling
|
|
|
|
*
|
|
|
|
* Copyright 2002 Greg Turner
|
2006-05-19 12:03:06 +02:00
|
|
|
* Copyright 2003-2006 CodeWeavers
|
2002-10-22 02:41:17 +02:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2002-10-22 02:41:17 +02:00
|
|
|
*
|
|
|
|
* TODO:
|
2006-05-19 12:03:06 +02:00
|
|
|
* - String structs
|
|
|
|
* - Byte count pointers
|
|
|
|
* - transmit_as/represent as
|
|
|
|
* - Multi-dimensional arrays
|
|
|
|
* - Conversion functions (NdrConvert)
|
2008-04-12 11:07:26 +02:00
|
|
|
* - Checks for integer addition overflow in user marshall functions
|
2002-10-22 02:41:17 +02:00
|
|
|
*/
|
|
|
|
|
2003-09-06 01:08:26 +02:00
|
|
|
#include <stdarg.h>
|
2002-10-22 02:41:17 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
2002-10-25 21:03:43 +02:00
|
|
|
#include <assert.h>
|
2006-03-01 13:21:56 +01:00
|
|
|
#include <limits.h>
|
2002-10-22 02:41:17 +02:00
|
|
|
|
|
|
|
#include "windef.h"
|
|
|
|
#include "winbase.h"
|
|
|
|
#include "winerror.h"
|
|
|
|
|
2002-10-25 21:03:43 +02:00
|
|
|
#include "ndr_misc.h"
|
2002-11-01 00:35:46 +01:00
|
|
|
#include "rpcndr.h"
|
2002-10-25 21:03:43 +02:00
|
|
|
|
2003-02-01 01:44:51 +01:00
|
|
|
#include "wine/unicode.h"
|
2002-10-25 21:03:43 +02:00
|
|
|
#include "wine/rpcfc.h"
|
2002-10-22 02:41:17 +02:00
|
|
|
|
|
|
|
#include "wine/debug.h"
|
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(ole);
|
|
|
|
|
2002-10-28 19:47:41 +01:00
|
|
|
#if defined(__i386__)
|
2005-03-02 13:23:20 +01:00
|
|
|
# define LITTLE_ENDIAN_UINT32_WRITE(pchar, uint32) \
|
2002-11-01 00:35:46 +01:00
|
|
|
(*((UINT32 *)(pchar)) = (uint32))
|
2002-10-28 19:47:41 +01:00
|
|
|
|
2005-03-02 13:23:20 +01:00
|
|
|
# define LITTLE_ENDIAN_UINT32_READ(pchar) \
|
2002-10-28 19:47:41 +01:00
|
|
|
(*((UINT32 *)(pchar)))
|
|
|
|
#else
|
|
|
|
/* these would work for i386 too, but less efficient */
|
2005-03-02 13:23:20 +01:00
|
|
|
# define LITTLE_ENDIAN_UINT32_WRITE(pchar, uint32) \
|
2002-11-01 00:35:46 +01:00
|
|
|
(*(pchar) = LOBYTE(LOWORD(uint32)), \
|
|
|
|
*((pchar)+1) = HIBYTE(LOWORD(uint32)), \
|
|
|
|
*((pchar)+2) = LOBYTE(HIWORD(uint32)), \
|
|
|
|
*((pchar)+3) = HIBYTE(HIWORD(uint32)), \
|
|
|
|
(uint32)) /* allow as r-value */
|
2002-10-28 19:47:41 +01:00
|
|
|
|
2005-03-02 13:23:20 +01:00
|
|
|
# define LITTLE_ENDIAN_UINT32_READ(pchar) \
|
2002-10-28 19:47:41 +01:00
|
|
|
(MAKELONG( \
|
2002-10-30 21:26:51 +01:00
|
|
|
MAKEWORD(*(pchar), *((pchar)+1)), \
|
|
|
|
MAKEWORD(*((pchar)+2), *((pchar)+3))))
|
2002-10-28 19:47:41 +01:00
|
|
|
#endif
|
|
|
|
|
2002-11-01 00:35:46 +01:00
|
|
|
#define BIG_ENDIAN_UINT32_WRITE(pchar, uint32) \
|
|
|
|
(*((pchar)+3) = LOBYTE(LOWORD(uint32)), \
|
|
|
|
*((pchar)+2) = HIBYTE(LOWORD(uint32)), \
|
|
|
|
*((pchar)+1) = LOBYTE(HIWORD(uint32)), \
|
|
|
|
*(pchar) = HIBYTE(HIWORD(uint32)), \
|
|
|
|
(uint32)) /* allow as r-value */
|
|
|
|
|
|
|
|
#define BIG_ENDIAN_UINT32_READ(pchar) \
|
|
|
|
(MAKELONG( \
|
2002-11-01 02:47:04 +01:00
|
|
|
MAKEWORD(*((pchar)+3), *((pchar)+2)), \
|
2002-11-01 00:35:46 +01:00
|
|
|
MAKEWORD(*((pchar)+1), *(pchar))))
|
|
|
|
|
|
|
|
#ifdef NDR_LOCAL_IS_BIG_ENDIAN
|
2005-03-02 13:23:20 +01:00
|
|
|
# define NDR_LOCAL_UINT32_WRITE(pchar, uint32) \
|
2002-11-01 00:35:46 +01:00
|
|
|
BIG_ENDIAN_UINT32_WRITE(pchar, uint32)
|
2005-03-02 13:23:20 +01:00
|
|
|
# define NDR_LOCAL_UINT32_READ(pchar) \
|
2002-11-01 00:35:46 +01:00
|
|
|
BIG_ENDIAN_UINT32_READ(pchar)
|
|
|
|
#else
|
2005-03-02 13:23:20 +01:00
|
|
|
# define NDR_LOCAL_UINT32_WRITE(pchar, uint32) \
|
2002-11-01 00:35:46 +01:00
|
|
|
LITTLE_ENDIAN_UINT32_WRITE(pchar, uint32)
|
2005-03-02 13:23:20 +01:00
|
|
|
# define NDR_LOCAL_UINT32_READ(pchar) \
|
2002-11-01 00:35:46 +01:00
|
|
|
LITTLE_ENDIAN_UINT32_READ(pchar)
|
|
|
|
#endif
|
|
|
|
|
2006-05-10 14:12:07 +02:00
|
|
|
/* _Align must be the desired alignment,
|
|
|
|
* e.g. ALIGN_LENGTH(len, 4) to align on a dword boundary. */
|
|
|
|
#define ALIGNED_LENGTH(_Len, _Align) (((_Len)+(_Align)-1)&~((_Align)-1))
|
2003-02-11 23:20:24 +01:00
|
|
|
#define ALIGNED_POINTER(_Ptr, _Align) ((LPVOID)ALIGNED_LENGTH((ULONG_PTR)(_Ptr), _Align))
|
2003-02-01 01:44:51 +01:00
|
|
|
#define ALIGN_LENGTH(_Len, _Align) _Len = ALIGNED_LENGTH(_Len, _Align)
|
|
|
|
#define ALIGN_POINTER(_Ptr, _Align) _Ptr = ALIGNED_POINTER(_Ptr, _Align)
|
2007-12-14 20:55:04 +01:00
|
|
|
#define ALIGN_POINTER_CLEAR(_Ptr, _Align) \
|
|
|
|
do { \
|
2007-12-19 15:52:57 +01:00
|
|
|
memset((_Ptr), 0, ((_Align) - (ULONG_PTR)(_Ptr)) & ((_Align) - 1)); \
|
2007-12-14 20:55:04 +01:00
|
|
|
ALIGN_POINTER(_Ptr, _Align); \
|
|
|
|
} while(0)
|
2003-02-01 01:44:51 +01:00
|
|
|
|
2003-02-17 02:48:24 +01:00
|
|
|
#define STD_OVERFLOW_CHECK(_Msg) do { \
|
2006-11-09 23:04:48 +01:00
|
|
|
TRACE("buffer=%d/%d\n", _Msg->Buffer - (unsigned char *)_Msg->RpcMsg->Buffer, _Msg->BufferLength); \
|
2005-11-29 10:41:17 +01:00
|
|
|
if (_Msg->Buffer > (unsigned char *)_Msg->RpcMsg->Buffer + _Msg->BufferLength) \
|
|
|
|
ERR("buffer overflow %d bytes\n", _Msg->Buffer - ((unsigned char *)_Msg->RpcMsg->Buffer + _Msg->BufferLength)); \
|
2003-02-17 02:48:24 +01:00
|
|
|
} while (0)
|
|
|
|
|
2008-06-20 11:15:17 +02:00
|
|
|
#define NDR_POINTER_ID_BASE 0x20000
|
|
|
|
#define NDR_POINTER_ID(pStubMsg) (NDR_POINTER_ID_BASE + ((pStubMsg)->UniquePtrCount++) * 4)
|
2003-02-01 01:44:51 +01:00
|
|
|
#define NDR_TABLE_SIZE 128
|
|
|
|
#define NDR_TABLE_MASK 127
|
|
|
|
|
2005-11-28 11:24:21 +01:00
|
|
|
static unsigned char *WINAPI NdrBaseTypeMarshall(PMIDL_STUB_MESSAGE, unsigned char *, PFORMAT_STRING);
|
|
|
|
static unsigned char *WINAPI NdrBaseTypeUnmarshall(PMIDL_STUB_MESSAGE, unsigned char **, PFORMAT_STRING, unsigned char);
|
|
|
|
static void WINAPI NdrBaseTypeBufferSize(PMIDL_STUB_MESSAGE, unsigned char *, PFORMAT_STRING);
|
|
|
|
static void WINAPI NdrBaseTypeFree(PMIDL_STUB_MESSAGE, unsigned char *, PFORMAT_STRING);
|
2006-11-09 23:02:49 +01:00
|
|
|
static ULONG WINAPI NdrBaseTypeMemorySize(PMIDL_STUB_MESSAGE, PFORMAT_STRING);
|
2005-11-28 11:24:21 +01:00
|
|
|
|
2007-06-25 15:29:15 +02:00
|
|
|
static unsigned char *WINAPI NdrContextHandleMarshall(PMIDL_STUB_MESSAGE, unsigned char *, PFORMAT_STRING);
|
|
|
|
static void WINAPI NdrContextHandleBufferSize(PMIDL_STUB_MESSAGE, unsigned char *, PFORMAT_STRING);
|
|
|
|
static unsigned char *WINAPI NdrContextHandleUnmarshall(PMIDL_STUB_MESSAGE, unsigned char **, PFORMAT_STRING, unsigned char);
|
|
|
|
|
2006-04-14 14:38:41 +02:00
|
|
|
const NDR_MARSHALL NdrMarshaller[NDR_TABLE_SIZE] = {
|
2003-02-01 01:44:51 +01:00
|
|
|
0,
|
2005-11-28 11:24:21 +01:00
|
|
|
NdrBaseTypeMarshall, NdrBaseTypeMarshall, NdrBaseTypeMarshall,
|
|
|
|
NdrBaseTypeMarshall, NdrBaseTypeMarshall, NdrBaseTypeMarshall, NdrBaseTypeMarshall,
|
|
|
|
NdrBaseTypeMarshall, NdrBaseTypeMarshall, NdrBaseTypeMarshall, NdrBaseTypeMarshall,
|
|
|
|
NdrBaseTypeMarshall, NdrBaseTypeMarshall, NdrBaseTypeMarshall, NdrBaseTypeMarshall,
|
|
|
|
/* 0x10 */
|
|
|
|
NdrBaseTypeMarshall,
|
2003-02-01 01:44:51 +01:00
|
|
|
/* 0x11 */
|
|
|
|
NdrPointerMarshall, NdrPointerMarshall,
|
|
|
|
NdrPointerMarshall, NdrPointerMarshall,
|
|
|
|
/* 0x15 */
|
|
|
|
NdrSimpleStructMarshall, NdrSimpleStructMarshall,
|
2005-07-18 15:14:05 +02:00
|
|
|
NdrConformantStructMarshall, NdrConformantStructMarshall,
|
|
|
|
NdrConformantVaryingStructMarshall,
|
2003-02-01 01:44:51 +01:00
|
|
|
NdrComplexStructMarshall,
|
|
|
|
/* 0x1b */
|
2005-07-18 15:14:05 +02:00
|
|
|
NdrConformantArrayMarshall,
|
|
|
|
NdrConformantVaryingArrayMarshall,
|
|
|
|
NdrFixedArrayMarshall, NdrFixedArrayMarshall,
|
|
|
|
NdrVaryingArrayMarshall, NdrVaryingArrayMarshall,
|
2003-02-01 01:44:51 +01:00
|
|
|
NdrComplexArrayMarshall,
|
|
|
|
/* 0x22 */
|
|
|
|
NdrConformantStringMarshall, 0, 0,
|
2005-08-03 16:55:57 +02:00
|
|
|
NdrConformantStringMarshall,
|
|
|
|
NdrNonConformantStringMarshall, 0, 0, 0,
|
2003-02-01 01:44:51 +01:00
|
|
|
/* 0x2a */
|
2005-07-18 15:14:05 +02:00
|
|
|
NdrEncapsulatedUnionMarshall,
|
|
|
|
NdrNonEncapsulatedUnionMarshall,
|
2006-05-17 15:45:40 +02:00
|
|
|
NdrByteCountPointerMarshall,
|
2005-07-18 15:14:05 +02:00
|
|
|
NdrXmitOrRepAsMarshall, NdrXmitOrRepAsMarshall,
|
2003-02-01 01:44:51 +01:00
|
|
|
/* 0x2f */
|
|
|
|
NdrInterfacePointerMarshall,
|
2007-06-25 15:28:40 +02:00
|
|
|
/* 0x30 */
|
2007-06-25 15:29:15 +02:00
|
|
|
NdrContextHandleMarshall,
|
2007-06-25 15:28:40 +02:00
|
|
|
/* 0xb1 */
|
|
|
|
0, 0, 0,
|
|
|
|
NdrUserMarshalMarshall,
|
|
|
|
0, 0,
|
|
|
|
/* 0xb7 */
|
|
|
|
NdrRangeMarshall
|
2003-02-01 01:44:51 +01:00
|
|
|
};
|
2006-04-14 14:38:41 +02:00
|
|
|
const NDR_UNMARSHALL NdrUnmarshaller[NDR_TABLE_SIZE] = {
|
2003-02-01 01:44:51 +01:00
|
|
|
0,
|
2005-11-28 11:24:21 +01:00
|
|
|
NdrBaseTypeUnmarshall, NdrBaseTypeUnmarshall, NdrBaseTypeUnmarshall,
|
|
|
|
NdrBaseTypeUnmarshall, NdrBaseTypeUnmarshall, NdrBaseTypeUnmarshall, NdrBaseTypeUnmarshall,
|
|
|
|
NdrBaseTypeUnmarshall, NdrBaseTypeUnmarshall, NdrBaseTypeUnmarshall, NdrBaseTypeUnmarshall,
|
|
|
|
NdrBaseTypeUnmarshall, NdrBaseTypeUnmarshall, NdrBaseTypeUnmarshall, NdrBaseTypeUnmarshall,
|
|
|
|
/* 0x10 */
|
|
|
|
NdrBaseTypeUnmarshall,
|
2003-02-01 01:44:51 +01:00
|
|
|
/* 0x11 */
|
|
|
|
NdrPointerUnmarshall, NdrPointerUnmarshall,
|
|
|
|
NdrPointerUnmarshall, NdrPointerUnmarshall,
|
|
|
|
/* 0x15 */
|
|
|
|
NdrSimpleStructUnmarshall, NdrSimpleStructUnmarshall,
|
2005-07-18 15:14:05 +02:00
|
|
|
NdrConformantStructUnmarshall, NdrConformantStructUnmarshall,
|
|
|
|
NdrConformantVaryingStructUnmarshall,
|
2003-02-01 01:44:51 +01:00
|
|
|
NdrComplexStructUnmarshall,
|
|
|
|
/* 0x1b */
|
2005-07-18 15:14:05 +02:00
|
|
|
NdrConformantArrayUnmarshall,
|
|
|
|
NdrConformantVaryingArrayUnmarshall,
|
|
|
|
NdrFixedArrayUnmarshall, NdrFixedArrayUnmarshall,
|
|
|
|
NdrVaryingArrayUnmarshall, NdrVaryingArrayUnmarshall,
|
2003-02-01 01:44:51 +01:00
|
|
|
NdrComplexArrayUnmarshall,
|
|
|
|
/* 0x22 */
|
|
|
|
NdrConformantStringUnmarshall, 0, 0,
|
2005-08-03 16:55:57 +02:00
|
|
|
NdrConformantStringUnmarshall,
|
|
|
|
NdrNonConformantStringUnmarshall, 0, 0, 0,
|
2003-02-01 01:44:51 +01:00
|
|
|
/* 0x2a */
|
2005-07-18 15:14:05 +02:00
|
|
|
NdrEncapsulatedUnionUnmarshall,
|
|
|
|
NdrNonEncapsulatedUnionUnmarshall,
|
2006-05-17 15:45:40 +02:00
|
|
|
NdrByteCountPointerUnmarshall,
|
2005-07-18 15:14:05 +02:00
|
|
|
NdrXmitOrRepAsUnmarshall, NdrXmitOrRepAsUnmarshall,
|
2003-02-01 01:44:51 +01:00
|
|
|
/* 0x2f */
|
|
|
|
NdrInterfacePointerUnmarshall,
|
2007-06-25 15:28:40 +02:00
|
|
|
/* 0x30 */
|
2007-06-25 15:29:15 +02:00
|
|
|
NdrContextHandleUnmarshall,
|
2007-06-25 15:28:40 +02:00
|
|
|
/* 0xb1 */
|
|
|
|
0, 0, 0,
|
|
|
|
NdrUserMarshalUnmarshall,
|
|
|
|
0, 0,
|
|
|
|
/* 0xb7 */
|
|
|
|
NdrRangeUnmarshall
|
2003-02-01 01:44:51 +01:00
|
|
|
};
|
2006-04-14 14:38:41 +02:00
|
|
|
const NDR_BUFFERSIZE NdrBufferSizer[NDR_TABLE_SIZE] = {
|
2003-02-01 01:44:51 +01:00
|
|
|
0,
|
2005-11-28 11:24:21 +01:00
|
|
|
NdrBaseTypeBufferSize, NdrBaseTypeBufferSize, NdrBaseTypeBufferSize,
|
|
|
|
NdrBaseTypeBufferSize, NdrBaseTypeBufferSize, NdrBaseTypeBufferSize, NdrBaseTypeBufferSize,
|
|
|
|
NdrBaseTypeBufferSize, NdrBaseTypeBufferSize, NdrBaseTypeBufferSize, NdrBaseTypeBufferSize,
|
|
|
|
NdrBaseTypeBufferSize, NdrBaseTypeBufferSize, NdrBaseTypeBufferSize, NdrBaseTypeBufferSize,
|
|
|
|
/* 0x10 */
|
|
|
|
NdrBaseTypeBufferSize,
|
2003-02-01 01:44:51 +01:00
|
|
|
/* 0x11 */
|
|
|
|
NdrPointerBufferSize, NdrPointerBufferSize,
|
|
|
|
NdrPointerBufferSize, NdrPointerBufferSize,
|
|
|
|
/* 0x15 */
|
|
|
|
NdrSimpleStructBufferSize, NdrSimpleStructBufferSize,
|
2005-07-18 15:14:05 +02:00
|
|
|
NdrConformantStructBufferSize, NdrConformantStructBufferSize,
|
|
|
|
NdrConformantVaryingStructBufferSize,
|
2003-02-01 01:44:51 +01:00
|
|
|
NdrComplexStructBufferSize,
|
|
|
|
/* 0x1b */
|
2005-07-18 15:14:05 +02:00
|
|
|
NdrConformantArrayBufferSize,
|
|
|
|
NdrConformantVaryingArrayBufferSize,
|
|
|
|
NdrFixedArrayBufferSize, NdrFixedArrayBufferSize,
|
|
|
|
NdrVaryingArrayBufferSize, NdrVaryingArrayBufferSize,
|
2003-02-01 01:44:51 +01:00
|
|
|
NdrComplexArrayBufferSize,
|
|
|
|
/* 0x22 */
|
|
|
|
NdrConformantStringBufferSize, 0, 0,
|
2005-08-03 16:55:57 +02:00
|
|
|
NdrConformantStringBufferSize,
|
|
|
|
NdrNonConformantStringBufferSize, 0, 0, 0,
|
2003-02-01 01:44:51 +01:00
|
|
|
/* 0x2a */
|
2005-07-18 15:14:05 +02:00
|
|
|
NdrEncapsulatedUnionBufferSize,
|
|
|
|
NdrNonEncapsulatedUnionBufferSize,
|
2006-05-17 15:45:40 +02:00
|
|
|
NdrByteCountPointerBufferSize,
|
2005-07-18 15:14:05 +02:00
|
|
|
NdrXmitOrRepAsBufferSize, NdrXmitOrRepAsBufferSize,
|
2003-02-01 01:44:51 +01:00
|
|
|
/* 0x2f */
|
|
|
|
NdrInterfacePointerBufferSize,
|
2007-06-25 15:28:40 +02:00
|
|
|
/* 0x30 */
|
2007-06-25 15:29:15 +02:00
|
|
|
NdrContextHandleBufferSize,
|
2007-06-25 15:28:40 +02:00
|
|
|
/* 0xb1 */
|
|
|
|
0, 0, 0,
|
|
|
|
NdrUserMarshalBufferSize,
|
|
|
|
0, 0,
|
|
|
|
/* 0xb7 */
|
|
|
|
NdrRangeBufferSize
|
2003-02-01 01:44:51 +01:00
|
|
|
};
|
2006-04-14 14:38:41 +02:00
|
|
|
const NDR_MEMORYSIZE NdrMemorySizer[NDR_TABLE_SIZE] = {
|
2003-02-01 01:44:51 +01:00
|
|
|
0,
|
2005-11-28 11:24:21 +01:00
|
|
|
NdrBaseTypeMemorySize, NdrBaseTypeMemorySize, NdrBaseTypeMemorySize,
|
|
|
|
NdrBaseTypeMemorySize, NdrBaseTypeMemorySize, NdrBaseTypeMemorySize, NdrBaseTypeMemorySize,
|
|
|
|
NdrBaseTypeMemorySize, NdrBaseTypeMemorySize, NdrBaseTypeMemorySize, NdrBaseTypeMemorySize,
|
|
|
|
NdrBaseTypeMemorySize, NdrBaseTypeMemorySize, NdrBaseTypeMemorySize, NdrBaseTypeMemorySize,
|
|
|
|
/* 0x10 */
|
|
|
|
NdrBaseTypeMemorySize,
|
2003-02-01 01:44:51 +01:00
|
|
|
/* 0x11 */
|
|
|
|
NdrPointerMemorySize, NdrPointerMemorySize,
|
|
|
|
NdrPointerMemorySize, NdrPointerMemorySize,
|
|
|
|
/* 0x15 */
|
|
|
|
NdrSimpleStructMemorySize, NdrSimpleStructMemorySize,
|
2006-05-17 15:45:40 +02:00
|
|
|
NdrConformantStructMemorySize, NdrConformantStructMemorySize,
|
|
|
|
NdrConformantVaryingStructMemorySize,
|
2003-02-01 01:44:51 +01:00
|
|
|
NdrComplexStructMemorySize,
|
|
|
|
/* 0x1b */
|
2006-05-17 15:45:40 +02:00
|
|
|
NdrConformantArrayMemorySize,
|
|
|
|
NdrConformantVaryingArrayMemorySize,
|
|
|
|
NdrFixedArrayMemorySize, NdrFixedArrayMemorySize,
|
|
|
|
NdrVaryingArrayMemorySize, NdrVaryingArrayMemorySize,
|
2003-02-01 01:44:51 +01:00
|
|
|
NdrComplexArrayMemorySize,
|
|
|
|
/* 0x22 */
|
|
|
|
NdrConformantStringMemorySize, 0, 0,
|
2005-08-03 16:55:57 +02:00
|
|
|
NdrConformantStringMemorySize,
|
|
|
|
NdrNonConformantStringMemorySize, 0, 0, 0,
|
2003-02-01 01:44:51 +01:00
|
|
|
/* 0x2a */
|
2006-05-17 15:45:40 +02:00
|
|
|
NdrEncapsulatedUnionMemorySize,
|
|
|
|
NdrNonEncapsulatedUnionMemorySize,
|
|
|
|
NdrByteCountPointerMemorySize,
|
|
|
|
NdrXmitOrRepAsMemorySize, NdrXmitOrRepAsMemorySize,
|
2003-02-01 01:44:51 +01:00
|
|
|
/* 0x2f */
|
|
|
|
NdrInterfacePointerMemorySize,
|
2007-06-25 15:28:40 +02:00
|
|
|
/* 0x30 */
|
|
|
|
0,
|
|
|
|
/* 0xb1 */
|
|
|
|
0, 0, 0,
|
|
|
|
NdrUserMarshalMemorySize,
|
|
|
|
0, 0,
|
|
|
|
/* 0xb7 */
|
|
|
|
NdrRangeMemorySize
|
2003-02-01 01:44:51 +01:00
|
|
|
};
|
2006-04-14 14:38:41 +02:00
|
|
|
const NDR_FREE NdrFreer[NDR_TABLE_SIZE] = {
|
2003-02-01 01:44:51 +01:00
|
|
|
0,
|
2005-11-28 11:24:21 +01:00
|
|
|
NdrBaseTypeFree, NdrBaseTypeFree, NdrBaseTypeFree,
|
|
|
|
NdrBaseTypeFree, NdrBaseTypeFree, NdrBaseTypeFree, NdrBaseTypeFree,
|
|
|
|
NdrBaseTypeFree, NdrBaseTypeFree, NdrBaseTypeFree, NdrBaseTypeFree,
|
|
|
|
NdrBaseTypeFree, NdrBaseTypeFree, NdrBaseTypeFree, NdrBaseTypeFree,
|
|
|
|
/* 0x10 */
|
|
|
|
NdrBaseTypeFree,
|
2003-02-01 01:44:51 +01:00
|
|
|
/* 0x11 */
|
|
|
|
NdrPointerFree, NdrPointerFree,
|
|
|
|
NdrPointerFree, NdrPointerFree,
|
|
|
|
/* 0x15 */
|
|
|
|
NdrSimpleStructFree, NdrSimpleStructFree,
|
2005-07-18 15:14:05 +02:00
|
|
|
NdrConformantStructFree, NdrConformantStructFree,
|
|
|
|
NdrConformantVaryingStructFree,
|
2003-02-01 01:44:51 +01:00
|
|
|
NdrComplexStructFree,
|
|
|
|
/* 0x1b */
|
2005-07-18 15:14:05 +02:00
|
|
|
NdrConformantArrayFree,
|
|
|
|
NdrConformantVaryingArrayFree,
|
|
|
|
NdrFixedArrayFree, NdrFixedArrayFree,
|
|
|
|
NdrVaryingArrayFree, NdrVaryingArrayFree,
|
2003-02-01 01:44:51 +01:00
|
|
|
NdrComplexArrayFree,
|
|
|
|
/* 0x22 */
|
2005-07-18 15:14:05 +02:00
|
|
|
0, 0, 0,
|
2003-02-01 01:44:51 +01:00
|
|
|
0, 0, 0, 0, 0,
|
2005-07-18 15:14:05 +02:00
|
|
|
/* 0x2a */
|
|
|
|
NdrEncapsulatedUnionFree,
|
|
|
|
NdrNonEncapsulatedUnionFree,
|
|
|
|
0,
|
|
|
|
NdrXmitOrRepAsFree, NdrXmitOrRepAsFree,
|
2003-02-01 01:44:51 +01:00
|
|
|
/* 0x2f */
|
|
|
|
NdrInterfacePointerFree,
|
2007-06-25 15:28:40 +02:00
|
|
|
/* 0x30 */
|
|
|
|
0,
|
|
|
|
/* 0xb1 */
|
|
|
|
0, 0, 0,
|
|
|
|
NdrUserMarshalFree,
|
|
|
|
0, 0,
|
|
|
|
/* 0xb7 */
|
|
|
|
NdrRangeFree
|
2003-02-01 01:44:51 +01:00
|
|
|
};
|
|
|
|
|
2007-12-12 15:48:41 +01:00
|
|
|
typedef struct _NDR_MEMORY_LIST
|
|
|
|
{
|
|
|
|
ULONG magic;
|
|
|
|
ULONG size;
|
|
|
|
ULONG reserved;
|
|
|
|
struct _NDR_MEMORY_LIST *next;
|
|
|
|
} NDR_MEMORY_LIST;
|
|
|
|
|
|
|
|
#define MEML_MAGIC ('M' << 24 | 'E' << 16 | 'M' << 8 | 'L')
|
|
|
|
|
2007-12-13 17:14:51 +01:00
|
|
|
/***********************************************************************
|
|
|
|
* NdrAllocate [RPCRT4.@]
|
|
|
|
*
|
|
|
|
* Allocates a block of memory using pStubMsg->pfnAllocate.
|
|
|
|
*
|
|
|
|
* PARAMS
|
|
|
|
* pStubMsg [I/O] MIDL_STUB_MESSAGE structure.
|
|
|
|
* len [I] Size of memory block to allocate.
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* The memory block of size len that was allocated.
|
|
|
|
*
|
|
|
|
* NOTES
|
|
|
|
* The memory block is always 8-byte aligned.
|
|
|
|
* If the function is unable to allocate memory an ERROR_OUTOFMEMORY
|
|
|
|
* exception is raised.
|
|
|
|
*/
|
2003-02-01 01:44:51 +01:00
|
|
|
void * WINAPI NdrAllocate(MIDL_STUB_MESSAGE *pStubMsg, size_t len)
|
|
|
|
{
|
2007-12-12 15:48:41 +01:00
|
|
|
size_t aligned_len;
|
|
|
|
size_t adjusted_len;
|
|
|
|
void *p;
|
|
|
|
NDR_MEMORY_LIST *mem_list;
|
|
|
|
|
|
|
|
aligned_len = ALIGNED_LENGTH(len, 8);
|
|
|
|
adjusted_len = aligned_len + sizeof(NDR_MEMORY_LIST);
|
|
|
|
/* check for overflow */
|
|
|
|
if (adjusted_len < len)
|
|
|
|
{
|
|
|
|
ERR("overflow of adjusted_len %d, len %d\n", adjusted_len, len);
|
|
|
|
RpcRaiseException(RPC_X_BAD_STUB_DATA);
|
|
|
|
}
|
|
|
|
|
|
|
|
p = pStubMsg->pfnAllocate(adjusted_len);
|
|
|
|
if (!p) RpcRaiseException(ERROR_OUTOFMEMORY);
|
|
|
|
|
|
|
|
mem_list = (NDR_MEMORY_LIST *)((char *)p + aligned_len);
|
|
|
|
mem_list->magic = MEML_MAGIC;
|
|
|
|
mem_list->size = aligned_len;
|
|
|
|
mem_list->reserved = 0;
|
|
|
|
mem_list->next = pStubMsg->pMemoryList;
|
|
|
|
pStubMsg->pMemoryList = mem_list;
|
|
|
|
|
|
|
|
TRACE("-- %p\n", p);
|
|
|
|
return p;
|
2003-02-01 01:44:51 +01:00
|
|
|
}
|
|
|
|
|
2003-02-17 02:48:24 +01:00
|
|
|
static void WINAPI NdrFree(MIDL_STUB_MESSAGE *pStubMsg, unsigned char *Pointer)
|
|
|
|
{
|
2007-12-12 15:48:41 +01:00
|
|
|
TRACE("(%p, %p)\n", pStubMsg, Pointer);
|
|
|
|
|
2007-12-13 17:13:59 +01:00
|
|
|
pStubMsg->pfnFree(Pointer);
|
2003-02-17 02:48:24 +01:00
|
|
|
}
|
|
|
|
|
2006-01-06 21:07:27 +01:00
|
|
|
static inline BOOL IsConformanceOrVariancePresent(PFORMAT_STRING pFormat)
|
|
|
|
{
|
|
|
|
return (*(const ULONG *)pFormat != -1);
|
|
|
|
}
|
|
|
|
|
2006-05-23 13:06:23 +02:00
|
|
|
static PFORMAT_STRING ReadConformance(MIDL_STUB_MESSAGE *pStubMsg, PFORMAT_STRING pFormat)
|
2003-02-01 01:44:51 +01:00
|
|
|
{
|
2006-05-10 14:13:25 +02:00
|
|
|
ALIGN_POINTER(pStubMsg->Buffer, 4);
|
2007-07-16 16:02:38 +02:00
|
|
|
if (pStubMsg->Buffer + 4 > pStubMsg->BufferEnd)
|
|
|
|
RpcRaiseException(RPC_X_BAD_STUB_DATA);
|
2003-02-01 01:44:51 +01:00
|
|
|
pStubMsg->MaxCount = NDR_LOCAL_UINT32_READ(pStubMsg->Buffer);
|
|
|
|
pStubMsg->Buffer += 4;
|
|
|
|
TRACE("unmarshalled conformance is %ld\n", pStubMsg->MaxCount);
|
2006-01-20 16:15:11 +01:00
|
|
|
if (pStubMsg->fHasNewCorrDesc)
|
|
|
|
return pFormat+6;
|
|
|
|
else
|
|
|
|
return pFormat+4;
|
2003-02-01 01:44:51 +01:00
|
|
|
}
|
|
|
|
|
2006-06-10 13:32:47 +02:00
|
|
|
static inline PFORMAT_STRING ReadVariance(MIDL_STUB_MESSAGE *pStubMsg, PFORMAT_STRING pFormat, ULONG MaxValue)
|
2005-11-28 11:16:44 +01:00
|
|
|
{
|
2006-05-13 17:58:31 +02:00
|
|
|
if (pFormat && !IsConformanceOrVariancePresent(pFormat))
|
2006-01-09 17:21:01 +01:00
|
|
|
{
|
|
|
|
pStubMsg->Offset = 0;
|
|
|
|
pStubMsg->ActualCount = pStubMsg->MaxCount;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2006-05-10 14:13:25 +02:00
|
|
|
ALIGN_POINTER(pStubMsg->Buffer, 4);
|
2007-07-16 16:02:38 +02:00
|
|
|
if (pStubMsg->Buffer + 8 > pStubMsg->BufferEnd)
|
|
|
|
RpcRaiseException(RPC_X_BAD_STUB_DATA);
|
2006-01-09 17:21:01 +01:00
|
|
|
pStubMsg->Offset = NDR_LOCAL_UINT32_READ(pStubMsg->Buffer);
|
|
|
|
pStubMsg->Buffer += 4;
|
2006-11-09 23:04:48 +01:00
|
|
|
TRACE("offset is %d\n", pStubMsg->Offset);
|
2005-11-28 11:16:44 +01:00
|
|
|
pStubMsg->ActualCount = NDR_LOCAL_UINT32_READ(pStubMsg->Buffer);
|
|
|
|
pStubMsg->Buffer += 4;
|
2006-11-09 23:04:48 +01:00
|
|
|
TRACE("variance is %d\n", pStubMsg->ActualCount);
|
2006-01-09 17:21:01 +01:00
|
|
|
|
2006-06-10 13:32:47 +02:00
|
|
|
if ((pStubMsg->ActualCount > MaxValue) ||
|
|
|
|
(pStubMsg->ActualCount + pStubMsg->Offset > MaxValue))
|
|
|
|
{
|
2006-11-09 23:04:48 +01:00
|
|
|
ERR("invalid array bound(s): ActualCount = %d, Offset = %d, MaxValue = %d\n",
|
2006-06-10 13:32:47 +02:00
|
|
|
pStubMsg->ActualCount, pStubMsg->Offset, MaxValue);
|
|
|
|
RpcRaiseException(RPC_S_INVALID_BOUND);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2006-01-09 17:21:01 +01:00
|
|
|
done:
|
2006-01-20 16:15:11 +01:00
|
|
|
if (pStubMsg->fHasNewCorrDesc)
|
|
|
|
return pFormat+6;
|
|
|
|
else
|
|
|
|
return pFormat+4;
|
2005-11-28 11:16:44 +01:00
|
|
|
}
|
|
|
|
|
2006-05-10 14:13:15 +02:00
|
|
|
/* writes the conformance value to the buffer */
|
|
|
|
static inline void WriteConformance(MIDL_STUB_MESSAGE *pStubMsg)
|
|
|
|
{
|
2007-12-14 20:55:04 +01:00
|
|
|
ALIGN_POINTER_CLEAR(pStubMsg->Buffer, 4);
|
2007-11-28 16:02:21 +01:00
|
|
|
if (pStubMsg->Buffer + 4 > (unsigned char *)pStubMsg->RpcMsg->Buffer + pStubMsg->BufferLength)
|
|
|
|
RpcRaiseException(RPC_X_BAD_STUB_DATA);
|
2006-05-10 14:13:15 +02:00
|
|
|
NDR_LOCAL_UINT32_WRITE(pStubMsg->Buffer, pStubMsg->MaxCount);
|
|
|
|
pStubMsg->Buffer += 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* writes the variance values to the buffer */
|
|
|
|
static inline void WriteVariance(MIDL_STUB_MESSAGE *pStubMsg)
|
|
|
|
{
|
2007-12-14 20:55:04 +01:00
|
|
|
ALIGN_POINTER_CLEAR(pStubMsg->Buffer, 4);
|
2007-11-28 16:02:21 +01:00
|
|
|
if (pStubMsg->Buffer + 8 > (unsigned char *)pStubMsg->RpcMsg->Buffer + pStubMsg->BufferLength)
|
|
|
|
RpcRaiseException(RPC_X_BAD_STUB_DATA);
|
2006-05-10 14:13:15 +02:00
|
|
|
NDR_LOCAL_UINT32_WRITE(pStubMsg->Buffer, pStubMsg->Offset);
|
|
|
|
pStubMsg->Buffer += 4;
|
|
|
|
NDR_LOCAL_UINT32_WRITE(pStubMsg->Buffer, pStubMsg->ActualCount);
|
|
|
|
pStubMsg->Buffer += 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* requests buffer space for the conformance value */
|
|
|
|
static inline void SizeConformance(MIDL_STUB_MESSAGE *pStubMsg)
|
|
|
|
{
|
2006-05-10 14:13:25 +02:00
|
|
|
ALIGN_LENGTH(pStubMsg->BufferLength, 4);
|
2007-11-28 16:02:21 +01:00
|
|
|
if (pStubMsg->BufferLength + 4 < pStubMsg->BufferLength)
|
|
|
|
RpcRaiseException(RPC_X_BAD_STUB_DATA);
|
2006-05-10 14:13:15 +02:00
|
|
|
pStubMsg->BufferLength += 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* requests buffer space for the variance values */
|
|
|
|
static inline void SizeVariance(MIDL_STUB_MESSAGE *pStubMsg)
|
|
|
|
{
|
2006-05-10 14:13:25 +02:00
|
|
|
ALIGN_LENGTH(pStubMsg->BufferLength, 4);
|
2007-11-28 16:02:21 +01:00
|
|
|
if (pStubMsg->BufferLength + 8 < pStubMsg->BufferLength)
|
|
|
|
RpcRaiseException(RPC_X_BAD_STUB_DATA);
|
2006-05-10 14:13:15 +02:00
|
|
|
pStubMsg->BufferLength += 8;
|
|
|
|
}
|
|
|
|
|
2005-11-28 11:16:44 +01:00
|
|
|
PFORMAT_STRING ComputeConformanceOrVariance(
|
|
|
|
MIDL_STUB_MESSAGE *pStubMsg, unsigned char *pMemory,
|
2006-11-09 23:02:49 +01:00
|
|
|
PFORMAT_STRING pFormat, ULONG_PTR def, ULONG_PTR *pCount)
|
2003-02-01 01:44:51 +01:00
|
|
|
{
|
|
|
|
BYTE dtype = pFormat[0] & 0xf;
|
2006-09-25 23:20:20 +02:00
|
|
|
short ofs = *(const short *)&pFormat[2];
|
2003-02-01 01:44:51 +01:00
|
|
|
LPVOID ptr = NULL;
|
|
|
|
DWORD data = 0;
|
|
|
|
|
2006-01-06 21:07:27 +01:00
|
|
|
if (!IsConformanceOrVariancePresent(pFormat)) {
|
2003-02-01 01:44:51 +01:00
|
|
|
/* null descriptor */
|
2005-11-28 11:16:44 +01:00
|
|
|
*pCount = def;
|
2003-02-01 01:44:51 +01:00
|
|
|
goto finish_conf;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (pFormat[0] & 0xf0) {
|
|
|
|
case RPC_FC_NORMAL_CONFORMANCE:
|
2005-11-28 10:58:40 +01:00
|
|
|
TRACE("normal conformance, ofs=%d\n", ofs);
|
2006-04-20 12:45:40 +02:00
|
|
|
ptr = pMemory;
|
2003-02-01 01:44:51 +01:00
|
|
|
break;
|
|
|
|
case RPC_FC_POINTER_CONFORMANCE:
|
2005-11-28 10:58:40 +01:00
|
|
|
TRACE("pointer conformance, ofs=%d\n", ofs);
|
2006-04-20 12:45:40 +02:00
|
|
|
ptr = pStubMsg->Memory;
|
2003-02-01 01:44:51 +01:00
|
|
|
break;
|
|
|
|
case RPC_FC_TOP_LEVEL_CONFORMANCE:
|
2005-11-28 10:58:40 +01:00
|
|
|
TRACE("toplevel conformance, ofs=%d\n", ofs);
|
2003-02-01 01:44:51 +01:00
|
|
|
if (pStubMsg->StackTop) {
|
2006-04-20 12:45:40 +02:00
|
|
|
ptr = pStubMsg->StackTop;
|
2003-02-01 01:44:51 +01:00
|
|
|
}
|
|
|
|
else {
|
2005-11-28 11:16:44 +01:00
|
|
|
/* -Os mode, *pCount is already set */
|
2003-02-01 01:44:51 +01:00
|
|
|
goto finish_conf;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case RPC_FC_CONSTANT_CONFORMANCE:
|
|
|
|
data = ofs | ((DWORD)pFormat[1] << 16);
|
2006-11-09 23:04:48 +01:00
|
|
|
TRACE("constant conformance, val=%d\n", data);
|
2005-11-28 11:16:44 +01:00
|
|
|
*pCount = data;
|
2003-02-01 01:44:51 +01:00
|
|
|
goto finish_conf;
|
|
|
|
case RPC_FC_TOP_LEVEL_MULTID_CONFORMANCE:
|
2005-11-28 10:58:40 +01:00
|
|
|
FIXME("toplevel multidimensional conformance, ofs=%d\n", ofs);
|
2003-02-01 01:44:51 +01:00
|
|
|
if (pStubMsg->StackTop) {
|
2006-04-20 12:45:40 +02:00
|
|
|
ptr = pStubMsg->StackTop;
|
2003-02-01 01:44:51 +01:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* ? */
|
|
|
|
goto done_conf_grab;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
FIXME("unknown conformance type %x\n", pFormat[0] & 0xf0);
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (pFormat[1]) {
|
|
|
|
case RPC_FC_DEREFERENCE:
|
2006-04-20 12:45:40 +02:00
|
|
|
ptr = *(LPVOID*)((char *)ptr + ofs);
|
2003-02-01 01:44:51 +01:00
|
|
|
break;
|
|
|
|
case RPC_FC_CALLBACK:
|
2006-01-03 12:07:17 +01:00
|
|
|
{
|
|
|
|
unsigned char *old_stack_top = pStubMsg->StackTop;
|
|
|
|
pStubMsg->StackTop = ptr;
|
|
|
|
|
2003-02-01 01:44:51 +01:00
|
|
|
/* ofs is index into StubDesc->apfnExprEval */
|
2006-01-03 12:07:17 +01:00
|
|
|
TRACE("callback conformance into apfnExprEval[%d]\n", ofs);
|
|
|
|
pStubMsg->StubDesc->apfnExprEval[ofs](pStubMsg);
|
|
|
|
|
|
|
|
pStubMsg->StackTop = old_stack_top;
|
2006-07-14 01:02:44 +02:00
|
|
|
|
|
|
|
/* the callback function always stores the computed value in MaxCount */
|
|
|
|
*pCount = pStubMsg->MaxCount;
|
2003-02-01 01:44:51 +01:00
|
|
|
goto finish_conf;
|
2006-01-03 12:07:17 +01:00
|
|
|
}
|
2003-02-01 01:44:51 +01:00
|
|
|
default:
|
2006-04-20 12:45:40 +02:00
|
|
|
ptr = (char *)ptr + ofs;
|
2003-02-01 01:44:51 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (dtype) {
|
|
|
|
case RPC_FC_LONG:
|
|
|
|
case RPC_FC_ULONG:
|
|
|
|
data = *(DWORD*)ptr;
|
|
|
|
break;
|
|
|
|
case RPC_FC_SHORT:
|
|
|
|
data = *(SHORT*)ptr;
|
|
|
|
break;
|
|
|
|
case RPC_FC_USHORT:
|
|
|
|
data = *(USHORT*)ptr;
|
|
|
|
break;
|
2006-05-15 17:56:45 +02:00
|
|
|
case RPC_FC_CHAR:
|
2003-02-01 01:44:51 +01:00
|
|
|
case RPC_FC_SMALL:
|
|
|
|
data = *(CHAR*)ptr;
|
|
|
|
break;
|
2006-05-15 17:56:45 +02:00
|
|
|
case RPC_FC_BYTE:
|
2003-02-01 01:44:51 +01:00
|
|
|
case RPC_FC_USMALL:
|
|
|
|
data = *(UCHAR*)ptr;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
FIXME("unknown conformance data type %x\n", dtype);
|
|
|
|
goto done_conf_grab;
|
|
|
|
}
|
2006-11-09 23:04:48 +01:00
|
|
|
TRACE("dereferenced data type %x at %p, got %d\n", dtype, ptr, data);
|
2003-02-01 01:44:51 +01:00
|
|
|
|
|
|
|
done_conf_grab:
|
|
|
|
switch (pFormat[1]) {
|
2006-05-26 16:50:49 +02:00
|
|
|
case RPC_FC_DEREFERENCE: /* already handled */
|
2003-02-01 01:44:51 +01:00
|
|
|
case 0: /* no op */
|
2005-11-28 11:16:44 +01:00
|
|
|
*pCount = data;
|
2003-02-01 01:44:51 +01:00
|
|
|
break;
|
2006-05-15 17:56:45 +02:00
|
|
|
case RPC_FC_ADD_1:
|
|
|
|
*pCount = data + 1;
|
|
|
|
break;
|
|
|
|
case RPC_FC_SUB_1:
|
|
|
|
*pCount = data - 1;
|
|
|
|
break;
|
|
|
|
case RPC_FC_MULT_2:
|
|
|
|
*pCount = data * 2;
|
|
|
|
break;
|
|
|
|
case RPC_FC_DIV_2:
|
|
|
|
*pCount = data / 2;
|
|
|
|
break;
|
2003-02-01 01:44:51 +01:00
|
|
|
default:
|
|
|
|
FIXME("unknown conformance op %d\n", pFormat[1]);
|
|
|
|
goto finish_conf;
|
|
|
|
}
|
|
|
|
|
|
|
|
finish_conf:
|
2005-11-28 11:16:44 +01:00
|
|
|
TRACE("resulting conformance is %ld\n", *pCount);
|
2006-01-20 16:15:11 +01:00
|
|
|
if (pStubMsg->fHasNewCorrDesc)
|
|
|
|
return pFormat+6;
|
|
|
|
else
|
|
|
|
return pFormat+4;
|
2003-02-01 01:44:51 +01:00
|
|
|
}
|
|
|
|
|
2006-06-10 13:31:45 +02:00
|
|
|
/* multiply two numbers together, raising an RPC_S_INVALID_BOUND exception if
|
|
|
|
* the result overflows 32-bits */
|
2007-03-22 19:26:46 +01:00
|
|
|
static inline ULONG safe_multiply(ULONG a, ULONG b)
|
2006-06-10 13:31:45 +02:00
|
|
|
{
|
|
|
|
ULONGLONG ret = (ULONGLONG)a * b;
|
|
|
|
if (ret > 0xffffffff)
|
|
|
|
{
|
|
|
|
RpcRaiseException(RPC_S_INVALID_BOUND);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2007-07-16 16:02:38 +02:00
|
|
|
static inline void safe_buffer_increment(MIDL_STUB_MESSAGE *pStubMsg, ULONG size)
|
|
|
|
{
|
|
|
|
if ((pStubMsg->Buffer + size < pStubMsg->Buffer) || /* integer overflow of pStubMsg->Buffer */
|
2007-11-28 16:02:06 +01:00
|
|
|
(pStubMsg->Buffer + size > (unsigned char *)pStubMsg->RpcMsg->Buffer + pStubMsg->BufferLength))
|
2007-07-16 16:02:38 +02:00
|
|
|
RpcRaiseException(RPC_X_BAD_STUB_DATA);
|
|
|
|
pStubMsg->Buffer += size;
|
|
|
|
}
|
|
|
|
|
2007-11-28 16:01:53 +01:00
|
|
|
static inline void safe_buffer_length_increment(MIDL_STUB_MESSAGE *pStubMsg, ULONG size)
|
|
|
|
{
|
|
|
|
if (pStubMsg->BufferLength + size < pStubMsg->BufferLength) /* integer overflow of pStubMsg->BufferSize */
|
|
|
|
{
|
|
|
|
ERR("buffer length overflow - BufferLength = %u, size = %u\n",
|
|
|
|
pStubMsg->BufferLength, size);
|
|
|
|
RpcRaiseException(RPC_X_BAD_STUB_DATA);
|
|
|
|
}
|
|
|
|
pStubMsg->BufferLength += size;
|
|
|
|
}
|
|
|
|
|
2007-07-16 16:02:38 +02:00
|
|
|
/* copies data from the buffer, checking that there is enough data in the buffer
|
|
|
|
* to do so */
|
2007-11-28 16:01:53 +01:00
|
|
|
static inline void safe_copy_from_buffer(MIDL_STUB_MESSAGE *pStubMsg, void *p, ULONG size)
|
2007-07-16 16:02:38 +02:00
|
|
|
{
|
|
|
|
if ((pStubMsg->Buffer + size < pStubMsg->Buffer) || /* integer overflow of pStubMsg->Buffer */
|
|
|
|
(pStubMsg->Buffer + size > pStubMsg->BufferEnd))
|
2007-12-20 19:01:16 +01:00
|
|
|
{
|
|
|
|
ERR("buffer overflow - Buffer = %p, BufferEnd = %p, size = %u\n",
|
|
|
|
pStubMsg->Buffer, pStubMsg->BufferEnd, size);
|
2007-07-16 16:02:38 +02:00
|
|
|
RpcRaiseException(RPC_X_BAD_STUB_DATA);
|
2007-12-20 19:01:16 +01:00
|
|
|
}
|
|
|
|
if (p == pStubMsg->Buffer)
|
|
|
|
ERR("pointer is the same as the buffer\n");
|
2007-07-16 16:02:38 +02:00
|
|
|
memcpy(p, pStubMsg->Buffer, size);
|
|
|
|
pStubMsg->Buffer += size;
|
|
|
|
}
|
2003-02-01 01:44:51 +01:00
|
|
|
|
2007-11-28 16:02:06 +01:00
|
|
|
/* copies data to the buffer, checking that there is enough space to do so */
|
|
|
|
static inline void safe_copy_to_buffer(MIDL_STUB_MESSAGE *pStubMsg, const void *p, ULONG size)
|
|
|
|
{
|
|
|
|
if ((pStubMsg->Buffer + size < pStubMsg->Buffer) || /* integer overflow of pStubMsg->Buffer */
|
|
|
|
(pStubMsg->Buffer + size > (unsigned char *)pStubMsg->RpcMsg->Buffer + pStubMsg->BufferLength))
|
|
|
|
{
|
|
|
|
ERR("buffer overflow - Buffer = %p, BufferEnd = %p, size = %u\n",
|
|
|
|
pStubMsg->Buffer, (unsigned char *)pStubMsg->RpcMsg->Buffer + pStubMsg->BufferLength,
|
|
|
|
size);
|
|
|
|
RpcRaiseException(RPC_X_BAD_STUB_DATA);
|
|
|
|
}
|
|
|
|
memcpy(pStubMsg->Buffer, p, size);
|
|
|
|
pStubMsg->Buffer += size;
|
|
|
|
}
|
|
|
|
|
2008-06-23 13:56:29 +02:00
|
|
|
/* verify that string data sitting in the buffer is valid and safe to
|
|
|
|
* unmarshall */
|
|
|
|
static void validate_string_data(MIDL_STUB_MESSAGE *pStubMsg, ULONG bufsize, ULONG esize)
|
|
|
|
{
|
|
|
|
ULONG i;
|
|
|
|
|
|
|
|
/* verify the buffer is safe to access */
|
|
|
|
if ((pStubMsg->Buffer + bufsize < pStubMsg->Buffer) ||
|
|
|
|
(pStubMsg->Buffer + bufsize > pStubMsg->BufferEnd))
|
|
|
|
{
|
|
|
|
ERR("bufsize 0x%x exceeded buffer end %p of buffer %p\n", bufsize,
|
|
|
|
pStubMsg->BufferEnd, pStubMsg->Buffer);
|
|
|
|
RpcRaiseException(RPC_X_BAD_STUB_DATA);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* strings must always have null terminating bytes */
|
|
|
|
if (bufsize < esize)
|
|
|
|
{
|
|
|
|
ERR("invalid string length of %d\n", bufsize / esize);
|
|
|
|
RpcRaiseException(RPC_S_INVALID_BOUND);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = bufsize - esize; i < bufsize; i++)
|
|
|
|
if (pStubMsg->Buffer[i] != 0)
|
|
|
|
{
|
|
|
|
ERR("string not null-terminated at byte position %d, data is 0x%x\n",
|
|
|
|
i, pStubMsg->Buffer[i]);
|
|
|
|
RpcRaiseException(RPC_S_INVALID_BOUND);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-10-30 00:07:33 +01:00
|
|
|
/*
|
|
|
|
* NdrConformantString:
|
|
|
|
*
|
|
|
|
* What MS calls a ConformantString is, in DCE terminology,
|
2002-10-31 23:45:12 +01:00
|
|
|
* a Varying-Conformant String.
|
2002-10-30 00:07:33 +01:00
|
|
|
* [
|
|
|
|
* maxlen: DWORD (max # of CHARTYPE characters, inclusive of '\0')
|
2002-10-31 23:45:12 +01:00
|
|
|
* offset: DWORD (actual string data begins at (offset) CHARTYPE's
|
|
|
|
* into unmarshalled string)
|
2002-10-30 00:07:33 +01:00
|
|
|
* length: DWORD (# of CHARTYPE characters, inclusive of '\0')
|
|
|
|
* [
|
|
|
|
* data: CHARTYPE[maxlen]
|
|
|
|
* ]
|
|
|
|
* ], where CHARTYPE is the appropriate character type (specified externally)
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2002-10-22 02:41:17 +02:00
|
|
|
/***********************************************************************
|
|
|
|
* NdrConformantStringMarshall [RPCRT4.@]
|
|
|
|
*/
|
2002-11-01 00:35:46 +01:00
|
|
|
unsigned char *WINAPI NdrConformantStringMarshall(MIDL_STUB_MESSAGE *pStubMsg,
|
|
|
|
unsigned char *pszMessage, PFORMAT_STRING pFormat)
|
2002-10-22 02:41:17 +02:00
|
|
|
{
|
2006-06-10 13:31:45 +02:00
|
|
|
ULONG esize, size;
|
2002-10-25 21:03:43 +02:00
|
|
|
|
|
|
|
TRACE("(pStubMsg == ^%p, pszMessage == ^%p, pFormat == ^%p)\n", pStubMsg, pszMessage, pFormat);
|
|
|
|
|
|
|
|
if (*pFormat == RPC_FC_C_CSTRING) {
|
2005-08-30 10:56:35 +02:00
|
|
|
TRACE("string=%s\n", debugstr_a((char*)pszMessage));
|
2006-05-15 17:57:13 +02:00
|
|
|
pStubMsg->ActualCount = strlen((char*)pszMessage)+1;
|
2003-02-01 01:44:51 +01:00
|
|
|
esize = 1;
|
|
|
|
}
|
|
|
|
else if (*pFormat == RPC_FC_C_WSTRING) {
|
|
|
|
TRACE("string=%s\n", debugstr_w((LPWSTR)pszMessage));
|
2006-05-15 17:57:13 +02:00
|
|
|
pStubMsg->ActualCount = strlenW((LPWSTR)pszMessage)+1;
|
2003-02-01 01:44:51 +01:00
|
|
|
esize = 2;
|
|
|
|
}
|
|
|
|
else {
|
2002-10-25 21:03:43 +02:00
|
|
|
ERR("Unhandled string type: %#x\n", *pFormat);
|
2002-10-29 00:53:23 +01:00
|
|
|
/* FIXME: raise an exception. */
|
2002-10-25 21:03:43 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
2003-02-01 01:44:51 +01:00
|
|
|
|
2006-05-15 17:57:13 +02:00
|
|
|
if (pFormat[1] == RPC_FC_STRING_SIZED)
|
|
|
|
pFormat = ComputeConformance(pStubMsg, pszMessage, pFormat + 2, 0);
|
|
|
|
else
|
|
|
|
pStubMsg->MaxCount = pStubMsg->ActualCount;
|
2006-05-10 14:13:15 +02:00
|
|
|
pStubMsg->Offset = 0;
|
|
|
|
WriteConformance(pStubMsg);
|
|
|
|
WriteVariance(pStubMsg);
|
|
|
|
|
2006-06-10 13:31:45 +02:00
|
|
|
size = safe_multiply(esize, pStubMsg->ActualCount);
|
2007-11-28 16:02:06 +01:00
|
|
|
safe_copy_to_buffer(pStubMsg, pszMessage, size); /* the string itself */
|
2003-02-17 02:48:24 +01:00
|
|
|
|
2002-10-25 21:03:43 +02:00
|
|
|
/* success */
|
|
|
|
return NULL; /* is this always right? */
|
2002-10-22 02:41:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrConformantStringBufferSize [RPCRT4.@]
|
|
|
|
*/
|
2002-11-01 00:35:46 +01:00
|
|
|
void WINAPI NdrConformantStringBufferSize(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char* pMemory, PFORMAT_STRING pFormat)
|
2002-10-22 02:41:17 +02:00
|
|
|
{
|
2006-06-10 13:31:45 +02:00
|
|
|
ULONG esize;
|
|
|
|
|
2002-10-25 21:03:43 +02:00
|
|
|
TRACE("(pStubMsg == ^%p, pMemory == ^%p, pFormat == ^%p)\n", pStubMsg, pMemory, pFormat);
|
|
|
|
|
2006-05-10 14:13:15 +02:00
|
|
|
SizeConformance(pStubMsg);
|
|
|
|
SizeVariance(pStubMsg);
|
|
|
|
|
2002-10-25 21:03:43 +02:00
|
|
|
if (*pFormat == RPC_FC_C_CSTRING) {
|
2005-08-30 10:56:35 +02:00
|
|
|
TRACE("string=%s\n", debugstr_a((char*)pMemory));
|
2006-06-10 13:31:45 +02:00
|
|
|
pStubMsg->ActualCount = strlen((char*)pMemory)+1;
|
|
|
|
esize = 1;
|
2003-02-01 01:44:51 +01:00
|
|
|
}
|
|
|
|
else if (*pFormat == RPC_FC_C_WSTRING) {
|
|
|
|
TRACE("string=%s\n", debugstr_w((LPWSTR)pMemory));
|
2006-06-10 13:31:45 +02:00
|
|
|
pStubMsg->ActualCount = strlenW((LPWSTR)pMemory)+1;
|
|
|
|
esize = 2;
|
2003-02-01 01:44:51 +01:00
|
|
|
}
|
|
|
|
else {
|
2002-10-25 21:03:43 +02:00
|
|
|
ERR("Unhandled string type: %#x\n", *pFormat);
|
2002-10-29 00:53:23 +01:00
|
|
|
/* FIXME: raise an exception */
|
2006-06-10 13:31:45 +02:00
|
|
|
return;
|
2002-10-25 21:03:43 +02:00
|
|
|
}
|
2006-06-10 13:31:45 +02:00
|
|
|
|
|
|
|
if (pFormat[1] == RPC_FC_STRING_SIZED)
|
|
|
|
pFormat = ComputeConformance(pStubMsg, pMemory, pFormat + 2, 0);
|
|
|
|
else
|
|
|
|
pStubMsg->MaxCount = pStubMsg->ActualCount;
|
|
|
|
|
2007-11-28 16:01:53 +01:00
|
|
|
safe_buffer_length_increment(pStubMsg, safe_multiply(esize, pStubMsg->ActualCount));
|
2002-10-22 02:41:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/************************************************************************
|
|
|
|
* NdrConformantStringMemorySize [RPCRT4.@]
|
|
|
|
*/
|
2006-11-09 23:01:58 +01:00
|
|
|
ULONG WINAPI NdrConformantStringMemorySize( PMIDL_STUB_MESSAGE pStubMsg,
|
2002-11-01 00:35:46 +01:00
|
|
|
PFORMAT_STRING pFormat )
|
2002-10-22 02:41:17 +02:00
|
|
|
{
|
2008-06-23 13:56:29 +02:00
|
|
|
ULONG bufsize, memsize, esize;
|
2002-10-30 00:07:33 +01:00
|
|
|
|
2007-12-29 13:14:30 +01:00
|
|
|
TRACE("(pStubMsg == ^%p, pFormat == ^%p)\n", pStubMsg, pFormat);
|
2006-11-09 23:01:58 +01:00
|
|
|
|
2007-12-29 13:14:30 +01:00
|
|
|
ReadConformance(pStubMsg, NULL);
|
|
|
|
ReadVariance(pStubMsg, NULL, pStubMsg->MaxCount);
|
2002-10-30 00:07:33 +01:00
|
|
|
|
2007-12-29 13:14:30 +01:00
|
|
|
if (pFormat[1] != RPC_FC_STRING_SIZED && (pStubMsg->MaxCount != pStubMsg->ActualCount))
|
|
|
|
{
|
|
|
|
ERR("buffer size %d must equal memory size %ld for non-sized conformant strings\n",
|
|
|
|
pStubMsg->ActualCount, pStubMsg->MaxCount);
|
|
|
|
RpcRaiseException(RPC_S_INVALID_BOUND);
|
2003-02-01 01:44:51 +01:00
|
|
|
}
|
2007-12-29 13:14:30 +01:00
|
|
|
if (pStubMsg->Offset)
|
|
|
|
{
|
|
|
|
ERR("conformant strings can't have Offset (%d)\n", pStubMsg->Offset);
|
|
|
|
RpcRaiseException(RPC_S_INVALID_BOUND);
|
2003-02-01 01:44:51 +01:00
|
|
|
}
|
2007-12-29 13:14:30 +01:00
|
|
|
|
|
|
|
if (*pFormat == RPC_FC_C_CSTRING) esize = 1;
|
|
|
|
else if (*pFormat == RPC_FC_C_WSTRING) esize = 2;
|
2003-02-01 01:44:51 +01:00
|
|
|
else {
|
2002-10-30 00:07:33 +01:00
|
|
|
ERR("Unhandled string type: %#x\n", *pFormat);
|
|
|
|
/* FIXME: raise an exception */
|
2007-12-29 13:14:30 +01:00
|
|
|
esize = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
memsize = safe_multiply(esize, pStubMsg->MaxCount);
|
|
|
|
bufsize = safe_multiply(esize, pStubMsg->ActualCount);
|
|
|
|
|
2008-06-23 13:56:29 +02:00
|
|
|
validate_string_data(pStubMsg, bufsize, esize);
|
2007-12-29 13:14:30 +01:00
|
|
|
|
|
|
|
safe_buffer_increment(pStubMsg, bufsize);
|
|
|
|
pStubMsg->MemorySize += memsize;
|
|
|
|
|
|
|
|
return pStubMsg->MemorySize;
|
2002-10-22 02:41:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/************************************************************************
|
|
|
|
* NdrConformantStringUnmarshall [RPCRT4.@]
|
|
|
|
*/
|
2002-11-01 00:35:46 +01:00
|
|
|
unsigned char *WINAPI NdrConformantStringUnmarshall( PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char** ppMemory, PFORMAT_STRING pFormat, unsigned char fMustAlloc )
|
2002-10-22 02:41:17 +02:00
|
|
|
{
|
2008-06-23 13:56:29 +02:00
|
|
|
ULONG bufsize, memsize, esize;
|
2002-10-29 00:53:23 +01:00
|
|
|
|
|
|
|
TRACE("(pStubMsg == ^%p, *pMemory == ^%p, pFormat == ^%p, fMustAlloc == %u)\n",
|
2002-10-28 21:07:01 +01:00
|
|
|
pStubMsg, *ppMemory, pFormat, fMustAlloc);
|
2002-10-29 00:53:23 +01:00
|
|
|
|
|
|
|
assert(pFormat && ppMemory && pStubMsg);
|
|
|
|
|
2006-05-13 17:58:31 +02:00
|
|
|
ReadConformance(pStubMsg, NULL);
|
2006-06-10 13:32:47 +02:00
|
|
|
ReadVariance(pStubMsg, NULL, pStubMsg->MaxCount);
|
2003-02-01 01:44:51 +01:00
|
|
|
|
2007-12-15 14:57:21 +01:00
|
|
|
if (pFormat[1] != RPC_FC_STRING_SIZED && (pStubMsg->MaxCount != pStubMsg->ActualCount))
|
|
|
|
{
|
|
|
|
ERR("buffer size %d must equal memory size %ld for non-sized conformant strings\n",
|
|
|
|
pStubMsg->ActualCount, pStubMsg->MaxCount);
|
|
|
|
RpcRaiseException(RPC_S_INVALID_BOUND);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (pStubMsg->Offset)
|
|
|
|
{
|
|
|
|
ERR("conformant strings can't have Offset (%d)\n", pStubMsg->Offset);
|
|
|
|
RpcRaiseException(RPC_S_INVALID_BOUND);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2003-02-01 01:44:51 +01:00
|
|
|
if (*pFormat == RPC_FC_C_CSTRING) esize = 1;
|
|
|
|
else if (*pFormat == RPC_FC_C_WSTRING) esize = 2;
|
|
|
|
else {
|
|
|
|
ERR("Unhandled string type: %#x\n", *pFormat);
|
2002-10-29 00:53:23 +01:00
|
|
|
/* FIXME: raise an exception */
|
2003-02-01 01:44:51 +01:00
|
|
|
esize = 0;
|
2002-10-29 00:53:23 +01:00
|
|
|
}
|
|
|
|
|
2006-07-24 12:45:15 +02:00
|
|
|
memsize = safe_multiply(esize, pStubMsg->MaxCount);
|
|
|
|
bufsize = safe_multiply(esize, pStubMsg->ActualCount);
|
2006-05-13 17:58:31 +02:00
|
|
|
|
2008-06-23 13:56:29 +02:00
|
|
|
validate_string_data(pStubMsg, bufsize, esize);
|
2006-06-10 13:32:01 +02:00
|
|
|
|
2007-12-15 14:57:21 +01:00
|
|
|
if (fMustAlloc)
|
2006-07-24 12:45:15 +02:00
|
|
|
*ppMemory = NdrAllocate(pStubMsg, memsize);
|
2007-12-15 14:57:21 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
if (!pStubMsg->IsClient && !*ppMemory && (pStubMsg->MaxCount == pStubMsg->ActualCount))
|
|
|
|
/* if the data in the RPC buffer is big enough, we just point straight
|
|
|
|
* into it */
|
|
|
|
*ppMemory = pStubMsg->Buffer;
|
|
|
|
else if (!*ppMemory)
|
|
|
|
*ppMemory = NdrAllocate(pStubMsg, memsize);
|
|
|
|
}
|
2003-02-01 01:44:51 +01:00
|
|
|
|
2007-12-20 10:51:47 +01:00
|
|
|
if (*ppMemory == pStubMsg->Buffer)
|
|
|
|
safe_buffer_increment(pStubMsg, bufsize);
|
|
|
|
else
|
2007-12-17 19:20:34 +01:00
|
|
|
safe_copy_from_buffer(pStubMsg, *ppMemory, bufsize);
|
2003-02-01 01:44:51 +01:00
|
|
|
|
2002-10-29 00:53:23 +01:00
|
|
|
if (*pFormat == RPC_FC_C_CSTRING) {
|
2005-11-28 10:39:10 +01:00
|
|
|
TRACE("string=%s\n", debugstr_a((char*)*ppMemory));
|
2003-02-01 01:44:51 +01:00
|
|
|
}
|
|
|
|
else if (*pFormat == RPC_FC_C_WSTRING) {
|
2005-11-28 10:39:10 +01:00
|
|
|
TRACE("string=%s\n", debugstr_w((LPWSTR)*ppMemory));
|
2003-02-01 01:44:51 +01:00
|
|
|
}
|
2002-10-29 00:53:23 +01:00
|
|
|
|
2003-02-01 01:44:51 +01:00
|
|
|
return NULL; /* FIXME: is this always right? */
|
|
|
|
}
|
|
|
|
|
2005-08-03 16:55:57 +02:00
|
|
|
/***********************************************************************
|
|
|
|
* NdrNonConformantStringMarshall [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
unsigned char * WINAPI NdrNonConformantStringMarshall(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char *pMemory,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
2007-12-29 13:16:01 +01:00
|
|
|
ULONG esize, size, maxsize;
|
|
|
|
|
|
|
|
TRACE("(pStubMsg == ^%p, pMemory == ^%p, pFormat == ^%p)\n", pStubMsg, pMemory, pFormat);
|
|
|
|
|
|
|
|
maxsize = *(USHORT *)&pFormat[2];
|
|
|
|
|
|
|
|
if (*pFormat == RPC_FC_CSTRING)
|
|
|
|
{
|
|
|
|
ULONG i;
|
|
|
|
const char *str = (const char *)pMemory;
|
|
|
|
for (i = 0; i < maxsize && *str; i++, str++)
|
|
|
|
;
|
|
|
|
TRACE("string=%s\n", debugstr_an(str, i));
|
|
|
|
pStubMsg->ActualCount = i + 1;
|
|
|
|
esize = 1;
|
|
|
|
}
|
|
|
|
else if (*pFormat == RPC_FC_WSTRING)
|
|
|
|
{
|
|
|
|
ULONG i;
|
|
|
|
const WCHAR *str = (const WCHAR *)pMemory;
|
|
|
|
for (i = 0; i < maxsize && *str; i++, str++)
|
|
|
|
;
|
|
|
|
TRACE("string=%s\n", debugstr_wn(str, i));
|
|
|
|
pStubMsg->ActualCount = i + 1;
|
|
|
|
esize = 2;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ERR("Unhandled string type: %#x\n", *pFormat);
|
|
|
|
RpcRaiseException(RPC_X_BAD_STUB_DATA);
|
|
|
|
}
|
|
|
|
|
|
|
|
pStubMsg->Offset = 0;
|
|
|
|
WriteVariance(pStubMsg);
|
|
|
|
|
|
|
|
size = safe_multiply(esize, pStubMsg->ActualCount);
|
|
|
|
safe_copy_to_buffer(pStubMsg, pMemory, size); /* the string itself */
|
|
|
|
|
|
|
|
return NULL;
|
2005-08-03 16:55:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrNonConformantStringUnmarshall [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
unsigned char * WINAPI NdrNonConformantStringUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char **ppMemory,
|
|
|
|
PFORMAT_STRING pFormat,
|
|
|
|
unsigned char fMustAlloc)
|
|
|
|
{
|
2008-06-23 13:56:29 +02:00
|
|
|
ULONG bufsize, memsize, esize, maxsize;
|
2007-12-29 13:16:01 +01:00
|
|
|
|
|
|
|
TRACE("(pStubMsg == ^%p, *pMemory == ^%p, pFormat == ^%p, fMustAlloc == %u)\n",
|
|
|
|
pStubMsg, *ppMemory, pFormat, fMustAlloc);
|
|
|
|
|
|
|
|
maxsize = *(USHORT *)&pFormat[2];
|
|
|
|
|
|
|
|
ReadVariance(pStubMsg, NULL, maxsize);
|
|
|
|
if (pStubMsg->Offset)
|
|
|
|
{
|
|
|
|
ERR("non-conformant strings can't have Offset (%d)\n", pStubMsg->Offset);
|
|
|
|
RpcRaiseException(RPC_S_INVALID_BOUND);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (*pFormat == RPC_FC_CSTRING) esize = 1;
|
|
|
|
else if (*pFormat == RPC_FC_WSTRING) esize = 2;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ERR("Unhandled string type: %#x\n", *pFormat);
|
|
|
|
RpcRaiseException(RPC_X_BAD_STUB_DATA);
|
|
|
|
}
|
|
|
|
|
|
|
|
memsize = esize * maxsize;
|
|
|
|
bufsize = safe_multiply(esize, pStubMsg->ActualCount);
|
|
|
|
|
2008-06-23 13:56:29 +02:00
|
|
|
validate_string_data(pStubMsg, bufsize, esize);
|
2007-12-29 13:16:01 +01:00
|
|
|
|
|
|
|
if (fMustAlloc || !*ppMemory)
|
|
|
|
*ppMemory = NdrAllocate(pStubMsg, memsize);
|
|
|
|
|
|
|
|
safe_copy_from_buffer(pStubMsg, *ppMemory, bufsize);
|
|
|
|
|
|
|
|
if (*pFormat == RPC_FC_CSTRING) {
|
|
|
|
TRACE("string=%s\n", debugstr_an((char*)*ppMemory, pStubMsg->ActualCount));
|
|
|
|
}
|
|
|
|
else if (*pFormat == RPC_FC_WSTRING) {
|
|
|
|
TRACE("string=%s\n", debugstr_wn((LPWSTR)*ppMemory, pStubMsg->ActualCount));
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
2005-08-03 16:55:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrNonConformantStringBufferSize [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
void WINAPI NdrNonConformantStringBufferSize(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char *pMemory,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
2007-12-29 13:16:01 +01:00
|
|
|
ULONG esize, maxsize;
|
|
|
|
|
|
|
|
TRACE("(pStubMsg == ^%p, pMemory == ^%p, pFormat == ^%p)\n", pStubMsg, pMemory, pFormat);
|
|
|
|
|
|
|
|
maxsize = *(USHORT *)&pFormat[2];
|
|
|
|
|
|
|
|
SizeVariance(pStubMsg);
|
|
|
|
|
|
|
|
if (*pFormat == RPC_FC_CSTRING)
|
|
|
|
{
|
|
|
|
ULONG i;
|
|
|
|
const char *str = (const char *)pMemory;
|
|
|
|
for (i = 0; i < maxsize && *str; i++, str++)
|
|
|
|
;
|
|
|
|
TRACE("string=%s\n", debugstr_an(str, i));
|
|
|
|
pStubMsg->ActualCount = i + 1;
|
|
|
|
esize = 1;
|
|
|
|
}
|
|
|
|
else if (*pFormat == RPC_FC_WSTRING)
|
|
|
|
{
|
|
|
|
ULONG i;
|
|
|
|
const WCHAR *str = (const WCHAR *)pMemory;
|
|
|
|
for (i = 0; i < maxsize && *str; i++, str++)
|
|
|
|
;
|
|
|
|
TRACE("string=%s\n", debugstr_wn(str, i));
|
|
|
|
pStubMsg->ActualCount = i + 1;
|
|
|
|
esize = 2;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ERR("Unhandled string type: %#x\n", *pFormat);
|
|
|
|
RpcRaiseException(RPC_X_BAD_STUB_DATA);
|
|
|
|
}
|
|
|
|
|
|
|
|
safe_buffer_length_increment(pStubMsg, safe_multiply(esize, pStubMsg->ActualCount));
|
2005-08-03 16:55:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrNonConformantStringMemorySize [RPCRT4.@]
|
|
|
|
*/
|
2006-11-09 23:01:58 +01:00
|
|
|
ULONG WINAPI NdrNonConformantStringMemorySize(PMIDL_STUB_MESSAGE pStubMsg,
|
2005-08-03 16:55:57 +02:00
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
2008-06-23 13:56:29 +02:00
|
|
|
ULONG bufsize, memsize, esize, maxsize;
|
2007-12-29 13:16:01 +01:00
|
|
|
|
|
|
|
TRACE("(pStubMsg == ^%p, pFormat == ^%p)\n", pStubMsg, pFormat);
|
|
|
|
|
|
|
|
maxsize = *(USHORT *)&pFormat[2];
|
|
|
|
|
|
|
|
ReadVariance(pStubMsg, NULL, maxsize);
|
|
|
|
|
|
|
|
if (pStubMsg->Offset)
|
|
|
|
{
|
|
|
|
ERR("non-conformant strings can't have Offset (%d)\n", pStubMsg->Offset);
|
|
|
|
RpcRaiseException(RPC_S_INVALID_BOUND);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (*pFormat == RPC_FC_CSTRING) esize = 1;
|
|
|
|
else if (*pFormat == RPC_FC_WSTRING) esize = 2;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ERR("Unhandled string type: %#x\n", *pFormat);
|
|
|
|
RpcRaiseException(RPC_X_BAD_STUB_DATA);
|
|
|
|
}
|
|
|
|
|
|
|
|
memsize = esize * maxsize;
|
|
|
|
bufsize = safe_multiply(esize, pStubMsg->ActualCount);
|
|
|
|
|
2008-06-23 13:56:29 +02:00
|
|
|
validate_string_data(pStubMsg, bufsize, esize);
|
2007-12-29 13:16:01 +01:00
|
|
|
|
|
|
|
safe_buffer_increment(pStubMsg, bufsize);
|
|
|
|
pStubMsg->MemorySize += memsize;
|
|
|
|
|
|
|
|
return pStubMsg->MemorySize;
|
2005-08-03 16:55:57 +02:00
|
|
|
}
|
|
|
|
|
2005-06-01 13:04:03 +02:00
|
|
|
static inline void dump_pointer_attr(unsigned char attr)
|
|
|
|
{
|
|
|
|
if (attr & RPC_FC_P_ALLOCALLNODES)
|
|
|
|
TRACE(" RPC_FC_P_ALLOCALLNODES");
|
|
|
|
if (attr & RPC_FC_P_DONTFREE)
|
|
|
|
TRACE(" RPC_FC_P_DONTFREE");
|
|
|
|
if (attr & RPC_FC_P_ONSTACK)
|
|
|
|
TRACE(" RPC_FC_P_ONSTACK");
|
|
|
|
if (attr & RPC_FC_P_SIMPLEPOINTER)
|
|
|
|
TRACE(" RPC_FC_P_SIMPLEPOINTER");
|
|
|
|
if (attr & RPC_FC_P_DEREF)
|
|
|
|
TRACE(" RPC_FC_P_DEREF");
|
|
|
|
TRACE("\n");
|
|
|
|
}
|
|
|
|
|
2003-02-01 01:44:51 +01:00
|
|
|
/***********************************************************************
|
2006-11-12 20:23:02 +01:00
|
|
|
* PointerMarshall [internal]
|
2003-02-01 01:44:51 +01:00
|
|
|
*/
|
2006-05-19 17:02:41 +02:00
|
|
|
static void PointerMarshall(PMIDL_STUB_MESSAGE pStubMsg,
|
2003-02-01 01:44:51 +01:00
|
|
|
unsigned char *Buffer,
|
|
|
|
unsigned char *Pointer,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
|
|
|
unsigned type = pFormat[0], attr = pFormat[1];
|
|
|
|
PFORMAT_STRING desc;
|
|
|
|
NDR_MARSHALL m;
|
2006-11-09 23:02:49 +01:00
|
|
|
ULONG pointer_id;
|
2006-05-29 17:27:27 +02:00
|
|
|
int pointer_needs_marshaling;
|
2003-02-01 01:44:51 +01:00
|
|
|
|
|
|
|
TRACE("(%p,%p,%p,%p)\n", pStubMsg, Buffer, Pointer, pFormat);
|
2005-06-01 13:04:03 +02:00
|
|
|
TRACE("type=0x%x, attr=", type); dump_pointer_attr(attr);
|
2003-02-01 01:44:51 +01:00
|
|
|
pFormat += 2;
|
|
|
|
if (attr & RPC_FC_P_SIMPLEPOINTER) desc = pFormat;
|
2004-11-30 22:38:57 +01:00
|
|
|
else desc = pFormat + *(const SHORT*)pFormat;
|
2003-02-01 01:44:51 +01:00
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case RPC_FC_RP: /* ref pointer (always non-null) */
|
2005-06-01 13:04:03 +02:00
|
|
|
if (!Pointer)
|
2007-11-20 19:03:18 +01:00
|
|
|
{
|
|
|
|
ERR("NULL ref pointer is not allowed\n");
|
2005-06-01 13:04:03 +02:00
|
|
|
RpcRaiseException(RPC_X_NULL_REF_POINTER);
|
2007-11-20 19:03:18 +01:00
|
|
|
}
|
2006-05-29 17:27:27 +02:00
|
|
|
pointer_needs_marshaling = 1;
|
2005-06-01 13:04:03 +02:00
|
|
|
break;
|
|
|
|
case RPC_FC_UP: /* unique pointer */
|
|
|
|
case RPC_FC_OP: /* object pointer - same as unique here */
|
2006-05-29 17:27:27 +02:00
|
|
|
if (Pointer)
|
|
|
|
pointer_needs_marshaling = 1;
|
|
|
|
else
|
|
|
|
pointer_needs_marshaling = 0;
|
2008-06-20 11:15:17 +02:00
|
|
|
pointer_id = Pointer ? NDR_POINTER_ID(pStubMsg) : 0;
|
2006-11-09 23:04:48 +01:00
|
|
|
TRACE("writing 0x%08x to buffer\n", pointer_id);
|
2006-05-29 17:27:27 +02:00
|
|
|
NDR_LOCAL_UINT32_WRITE(Buffer, pointer_id);
|
2003-02-01 01:44:51 +01:00
|
|
|
break;
|
2005-06-01 13:04:03 +02:00
|
|
|
case RPC_FC_FP:
|
2006-05-29 17:27:27 +02:00
|
|
|
pointer_needs_marshaling = !NdrFullPointerQueryPointer(
|
|
|
|
pStubMsg->FullPtrXlatTables, Pointer, 1, &pointer_id);
|
2006-11-09 23:04:48 +01:00
|
|
|
TRACE("writing 0x%08x to buffer\n", pointer_id);
|
2006-05-29 17:27:27 +02:00
|
|
|
NDR_LOCAL_UINT32_WRITE(Buffer, pointer_id);
|
|
|
|
break;
|
2003-02-01 01:44:51 +01:00
|
|
|
default:
|
|
|
|
FIXME("unhandled ptr type=%02x\n", type);
|
2005-06-01 13:04:03 +02:00
|
|
|
RpcRaiseException(RPC_X_BAD_STUB_DATA);
|
2006-05-29 17:27:27 +02:00
|
|
|
return;
|
2003-02-01 01:44:51 +01:00
|
|
|
}
|
|
|
|
|
2005-06-01 13:04:03 +02:00
|
|
|
TRACE("calling marshaller for type 0x%x\n", (int)*desc);
|
|
|
|
|
2006-05-29 17:27:27 +02:00
|
|
|
if (pointer_needs_marshaling) {
|
2006-05-01 11:37:11 +02:00
|
|
|
if (attr & RPC_FC_P_DEREF) {
|
|
|
|
Pointer = *(unsigned char**)Pointer;
|
|
|
|
TRACE("deref => %p\n", Pointer);
|
|
|
|
}
|
2005-06-01 13:04:03 +02:00
|
|
|
m = NdrMarshaller[*desc & NDR_TABLE_MASK];
|
|
|
|
if (m) m(pStubMsg, Pointer, desc);
|
|
|
|
else FIXME("no marshaller for data type=%02x\n", *desc);
|
|
|
|
}
|
2003-02-17 02:48:24 +01:00
|
|
|
|
|
|
|
STD_OVERFLOW_CHECK(pStubMsg);
|
2003-02-01 01:44:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
2006-11-12 20:23:02 +01:00
|
|
|
* PointerUnmarshall [internal]
|
2003-02-01 01:44:51 +01:00
|
|
|
*/
|
2006-05-19 17:02:41 +02:00
|
|
|
static void PointerUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,
|
2003-02-01 01:44:51 +01:00
|
|
|
unsigned char *Buffer,
|
|
|
|
unsigned char **pPointer,
|
2007-11-29 18:35:34 +01:00
|
|
|
unsigned char *pSrcPointer,
|
2003-02-01 01:44:51 +01:00
|
|
|
PFORMAT_STRING pFormat,
|
|
|
|
unsigned char fMustAlloc)
|
|
|
|
{
|
|
|
|
unsigned type = pFormat[0], attr = pFormat[1];
|
|
|
|
PFORMAT_STRING desc;
|
|
|
|
NDR_UNMARSHALL m;
|
2005-06-01 13:04:03 +02:00
|
|
|
DWORD pointer_id = 0;
|
2006-05-29 17:27:27 +02:00
|
|
|
int pointer_needs_unmarshaling;
|
2003-02-01 01:44:51 +01:00
|
|
|
|
2007-11-29 18:35:34 +01:00
|
|
|
TRACE("(%p,%p,%p,%p,%p,%d)\n", pStubMsg, Buffer, pPointer, pSrcPointer, pFormat, fMustAlloc);
|
2005-06-01 13:04:03 +02:00
|
|
|
TRACE("type=0x%x, attr=", type); dump_pointer_attr(attr);
|
2003-02-01 01:44:51 +01:00
|
|
|
pFormat += 2;
|
|
|
|
if (attr & RPC_FC_P_SIMPLEPOINTER) desc = pFormat;
|
2004-11-30 22:38:57 +01:00
|
|
|
else desc = pFormat + *(const SHORT*)pFormat;
|
2003-02-01 01:44:51 +01:00
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case RPC_FC_RP: /* ref pointer (always non-null) */
|
2006-05-29 17:27:27 +02:00
|
|
|
pointer_needs_unmarshaling = 1;
|
2005-06-01 13:04:03 +02:00
|
|
|
break;
|
|
|
|
case RPC_FC_UP: /* unique pointer */
|
2006-05-10 14:13:45 +02:00
|
|
|
pointer_id = NDR_LOCAL_UINT32_READ(Buffer);
|
2006-11-09 23:04:48 +01:00
|
|
|
TRACE("pointer_id is 0x%08x\n", pointer_id);
|
2006-05-29 17:27:27 +02:00
|
|
|
if (pointer_id)
|
|
|
|
pointer_needs_unmarshaling = 1;
|
2006-05-29 17:28:29 +02:00
|
|
|
else {
|
|
|
|
*pPointer = NULL;
|
2006-05-29 17:27:27 +02:00
|
|
|
pointer_needs_unmarshaling = 0;
|
2006-05-29 17:28:29 +02:00
|
|
|
}
|
2003-02-01 01:44:51 +01:00
|
|
|
break;
|
2005-06-01 13:04:03 +02:00
|
|
|
case RPC_FC_OP: /* object pointer - we must free data before overwriting it */
|
2006-05-10 14:13:45 +02:00
|
|
|
pointer_id = NDR_LOCAL_UINT32_READ(Buffer);
|
2006-11-09 23:04:48 +01:00
|
|
|
TRACE("pointer_id is 0x%08x\n", pointer_id);
|
2007-11-29 18:35:34 +01:00
|
|
|
if (!fMustAlloc && pSrcPointer)
|
2006-06-09 18:29:28 +02:00
|
|
|
{
|
2007-11-29 18:35:34 +01:00
|
|
|
FIXME("free object pointer %p\n", pSrcPointer);
|
2007-12-05 12:56:14 +01:00
|
|
|
fMustAlloc = TRUE;
|
2006-06-09 18:29:28 +02:00
|
|
|
}
|
2006-05-29 17:27:27 +02:00
|
|
|
if (pointer_id)
|
|
|
|
pointer_needs_unmarshaling = 1;
|
|
|
|
else
|
|
|
|
pointer_needs_unmarshaling = 0;
|
2005-09-02 13:19:26 +02:00
|
|
|
break;
|
2005-06-01 13:04:03 +02:00
|
|
|
case RPC_FC_FP:
|
2006-05-29 17:27:27 +02:00
|
|
|
pointer_id = NDR_LOCAL_UINT32_READ(Buffer);
|
2006-11-09 23:04:48 +01:00
|
|
|
TRACE("pointer_id is 0x%08x\n", pointer_id);
|
2006-05-29 17:27:27 +02:00
|
|
|
pointer_needs_unmarshaling = !NdrFullPointerQueryRefId(
|
|
|
|
pStubMsg->FullPtrXlatTables, pointer_id, 1, (void **)pPointer);
|
|
|
|
break;
|
2003-02-01 01:44:51 +01:00
|
|
|
default:
|
|
|
|
FIXME("unhandled ptr type=%02x\n", type);
|
2005-06-01 13:04:03 +02:00
|
|
|
RpcRaiseException(RPC_X_BAD_STUB_DATA);
|
2006-05-29 17:27:27 +02:00
|
|
|
return;
|
2003-02-01 01:44:51 +01:00
|
|
|
}
|
|
|
|
|
2006-05-29 17:27:27 +02:00
|
|
|
if (pointer_needs_unmarshaling) {
|
2007-11-29 18:35:34 +01:00
|
|
|
unsigned char *base_ptr_val = *pPointer;
|
|
|
|
unsigned char **current_ptr = pPointer;
|
|
|
|
if (pStubMsg->IsClient) {
|
|
|
|
TRACE("client\n");
|
|
|
|
/* if we aren't forcing allocation of memory then try to use the existing
|
|
|
|
* (source) pointer to unmarshall the data into so that [in,out]
|
|
|
|
* parameters behave correctly. it doesn't matter if the parameter is
|
|
|
|
* [out] only since in that case the pointer will be NULL. we force
|
|
|
|
* allocation when the source pointer is NULL here instead of in the type
|
|
|
|
* unmarshalling routine for the benefit of the deref code below */
|
|
|
|
if (!fMustAlloc) {
|
|
|
|
if (pSrcPointer) {
|
2007-12-04 14:22:56 +01:00
|
|
|
TRACE("setting *pPointer to %p\n", pSrcPointer);
|
|
|
|
*pPointer = base_ptr_val = pSrcPointer;
|
2007-11-29 18:35:34 +01:00
|
|
|
} else
|
|
|
|
fMustAlloc = TRUE;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
TRACE("server\n");
|
|
|
|
/* the memory in a stub is never initialised, so we have to work out here
|
|
|
|
* whether we have to initialise it so we can use the optimisation of
|
|
|
|
* setting the pointer to the buffer, if possible, or set fMustAlloc to
|
2007-12-04 14:22:56 +01:00
|
|
|
* TRUE. */
|
|
|
|
if (attr & RPC_FC_P_DEREF) {
|
2007-11-29 18:35:34 +01:00
|
|
|
fMustAlloc = TRUE;
|
|
|
|
} else {
|
|
|
|
base_ptr_val = NULL;
|
|
|
|
*current_ptr = NULL;
|
2007-11-02 23:22:47 +01:00
|
|
|
}
|
2007-11-29 18:35:34 +01:00
|
|
|
}
|
|
|
|
|
2007-12-15 14:57:06 +01:00
|
|
|
if (attr & RPC_FC_P_ALLOCALLNODES)
|
|
|
|
FIXME("RPC_FC_P_ALLOCALLNODES not implemented\n");
|
|
|
|
|
2007-11-29 18:35:34 +01:00
|
|
|
if (attr & RPC_FC_P_DEREF) {
|
|
|
|
if (fMustAlloc) {
|
|
|
|
base_ptr_val = NdrAllocate(pStubMsg, sizeof(void *));
|
2007-12-04 14:22:56 +01:00
|
|
|
*pPointer = base_ptr_val;
|
2007-11-29 18:35:34 +01:00
|
|
|
current_ptr = (unsigned char **)base_ptr_val;
|
|
|
|
} else
|
|
|
|
current_ptr = *(unsigned char***)current_ptr;
|
|
|
|
TRACE("deref => %p\n", current_ptr);
|
|
|
|
if (!fMustAlloc && !*current_ptr) fMustAlloc = TRUE;
|
2006-05-01 11:37:11 +02:00
|
|
|
}
|
2005-06-01 13:04:03 +02:00
|
|
|
m = NdrUnmarshaller[*desc & NDR_TABLE_MASK];
|
2007-11-29 18:35:34 +01:00
|
|
|
if (m) m(pStubMsg, current_ptr, desc, fMustAlloc);
|
2005-06-01 13:04:03 +02:00
|
|
|
else FIXME("no unmarshaller for data type=%02x\n", *desc);
|
2006-05-29 17:27:27 +02:00
|
|
|
|
|
|
|
if (type == RPC_FC_FP)
|
|
|
|
NdrFullPointerInsertRefId(pStubMsg->FullPtrXlatTables, pointer_id,
|
2007-11-29 18:35:34 +01:00
|
|
|
base_ptr_val);
|
2005-06-01 13:04:03 +02:00
|
|
|
}
|
|
|
|
|
2003-02-01 01:44:51 +01:00
|
|
|
TRACE("pointer=%p\n", *pPointer);
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
2006-11-12 20:23:02 +01:00
|
|
|
* PointerBufferSize [internal]
|
2003-02-01 01:44:51 +01:00
|
|
|
*/
|
2006-05-19 17:02:41 +02:00
|
|
|
static void PointerBufferSize(PMIDL_STUB_MESSAGE pStubMsg,
|
2003-02-01 01:44:51 +01:00
|
|
|
unsigned char *Pointer,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
|
|
|
unsigned type = pFormat[0], attr = pFormat[1];
|
|
|
|
PFORMAT_STRING desc;
|
|
|
|
NDR_BUFFERSIZE m;
|
2006-05-29 17:27:27 +02:00
|
|
|
int pointer_needs_sizing;
|
2006-11-09 23:02:49 +01:00
|
|
|
ULONG pointer_id;
|
2003-02-01 01:44:51 +01:00
|
|
|
|
|
|
|
TRACE("(%p,%p,%p)\n", pStubMsg, Pointer, pFormat);
|
2006-05-01 11:36:52 +02:00
|
|
|
TRACE("type=0x%x, attr=", type); dump_pointer_attr(attr);
|
2003-02-01 01:44:51 +01:00
|
|
|
pFormat += 2;
|
|
|
|
if (attr & RPC_FC_P_SIMPLEPOINTER) desc = pFormat;
|
2004-11-30 22:38:57 +01:00
|
|
|
else desc = pFormat + *(const SHORT*)pFormat;
|
2002-10-30 00:07:33 +01:00
|
|
|
|
2003-02-01 01:44:51 +01:00
|
|
|
switch (type) {
|
|
|
|
case RPC_FC_RP: /* ref pointer (always non-null) */
|
2007-11-20 19:03:18 +01:00
|
|
|
if (!Pointer)
|
|
|
|
{
|
|
|
|
ERR("NULL ref pointer is not allowed\n");
|
|
|
|
RpcRaiseException(RPC_X_NULL_REF_POINTER);
|
|
|
|
}
|
2003-02-01 01:44:51 +01:00
|
|
|
break;
|
2005-06-01 13:04:03 +02:00
|
|
|
case RPC_FC_OP:
|
|
|
|
case RPC_FC_UP:
|
|
|
|
/* NULL pointer has no further representation */
|
|
|
|
if (!Pointer)
|
|
|
|
return;
|
|
|
|
break;
|
|
|
|
case RPC_FC_FP:
|
2006-05-29 17:27:27 +02:00
|
|
|
pointer_needs_sizing = !NdrFullPointerQueryPointer(
|
|
|
|
pStubMsg->FullPtrXlatTables, Pointer, 0, &pointer_id);
|
|
|
|
if (!pointer_needs_sizing)
|
|
|
|
return;
|
|
|
|
break;
|
2003-02-01 01:44:51 +01:00
|
|
|
default:
|
|
|
|
FIXME("unhandled ptr type=%02x\n", type);
|
2005-06-01 13:04:03 +02:00
|
|
|
RpcRaiseException(RPC_X_BAD_STUB_DATA);
|
2006-05-29 17:27:27 +02:00
|
|
|
return;
|
2003-02-01 01:44:51 +01:00
|
|
|
}
|
|
|
|
|
2006-05-01 11:37:11 +02:00
|
|
|
if (attr & RPC_FC_P_DEREF) {
|
|
|
|
Pointer = *(unsigned char**)Pointer;
|
|
|
|
TRACE("deref => %p\n", Pointer);
|
|
|
|
}
|
|
|
|
|
2003-02-01 01:44:51 +01:00
|
|
|
m = NdrBufferSizer[*desc & NDR_TABLE_MASK];
|
|
|
|
if (m) m(pStubMsg, Pointer, desc);
|
|
|
|
else FIXME("no buffersizer for data type=%02x\n", *desc);
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
2006-11-12 20:23:02 +01:00
|
|
|
* PointerMemorySize [internal]
|
2003-02-01 01:44:51 +01:00
|
|
|
*/
|
2006-05-19 17:02:41 +02:00
|
|
|
static unsigned long PointerMemorySize(PMIDL_STUB_MESSAGE pStubMsg,
|
2003-02-01 01:44:51 +01:00
|
|
|
unsigned char *Buffer,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
|
|
|
unsigned type = pFormat[0], attr = pFormat[1];
|
|
|
|
PFORMAT_STRING desc;
|
|
|
|
NDR_MEMORYSIZE m;
|
2007-12-08 18:46:34 +01:00
|
|
|
DWORD pointer_id = 0;
|
|
|
|
int pointer_needs_sizing;
|
2002-10-29 00:53:23 +01:00
|
|
|
|
2007-12-08 18:46:34 +01:00
|
|
|
TRACE("(%p,%p,%p)\n", pStubMsg, Buffer, pFormat);
|
2006-05-01 11:36:52 +02:00
|
|
|
TRACE("type=0x%x, attr=", type); dump_pointer_attr(attr);
|
2003-02-01 01:44:51 +01:00
|
|
|
pFormat += 2;
|
|
|
|
if (attr & RPC_FC_P_SIMPLEPOINTER) desc = pFormat;
|
2004-11-30 22:38:57 +01:00
|
|
|
else desc = pFormat + *(const SHORT*)pFormat;
|
2003-02-01 01:44:51 +01:00
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case RPC_FC_RP: /* ref pointer (always non-null) */
|
2007-12-08 18:46:34 +01:00
|
|
|
pointer_needs_sizing = 1;
|
|
|
|
break;
|
|
|
|
case RPC_FC_UP: /* unique pointer */
|
|
|
|
case RPC_FC_OP: /* object pointer - we must free data before overwriting it */
|
|
|
|
pointer_id = NDR_LOCAL_UINT32_READ(Buffer);
|
|
|
|
TRACE("pointer_id is 0x%08x\n", pointer_id);
|
|
|
|
if (pointer_id)
|
|
|
|
pointer_needs_sizing = 1;
|
|
|
|
else
|
|
|
|
pointer_needs_sizing = 0;
|
2003-02-01 01:44:51 +01:00
|
|
|
break;
|
2007-12-08 18:46:34 +01:00
|
|
|
case RPC_FC_FP:
|
|
|
|
{
|
|
|
|
void *pointer;
|
|
|
|
pointer_id = NDR_LOCAL_UINT32_READ(Buffer);
|
|
|
|
TRACE("pointer_id is 0x%08x\n", pointer_id);
|
|
|
|
pointer_needs_sizing = !NdrFullPointerQueryRefId(
|
|
|
|
pStubMsg->FullPtrXlatTables, pointer_id, 1, &pointer);
|
|
|
|
break;
|
|
|
|
}
|
2003-02-01 01:44:51 +01:00
|
|
|
default:
|
|
|
|
FIXME("unhandled ptr type=%02x\n", type);
|
2005-06-01 13:04:03 +02:00
|
|
|
RpcRaiseException(RPC_X_BAD_STUB_DATA);
|
2007-12-08 18:46:34 +01:00
|
|
|
return 0;
|
2003-02-01 01:44:51 +01:00
|
|
|
}
|
|
|
|
|
2006-05-01 11:37:11 +02:00
|
|
|
if (attr & RPC_FC_P_DEREF) {
|
|
|
|
TRACE("deref\n");
|
|
|
|
}
|
|
|
|
|
2007-12-08 18:46:34 +01:00
|
|
|
if (pointer_needs_sizing) {
|
|
|
|
m = NdrMemorySizer[*desc & NDR_TABLE_MASK];
|
|
|
|
if (m) m(pStubMsg, desc);
|
|
|
|
else FIXME("no memorysizer for data type=%02x\n", *desc);
|
|
|
|
}
|
2003-02-01 01:44:51 +01:00
|
|
|
|
2007-12-08 18:46:34 +01:00
|
|
|
return pStubMsg->MemorySize;
|
2003-02-01 01:44:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
2006-11-12 20:23:02 +01:00
|
|
|
* PointerFree [internal]
|
2003-02-01 01:44:51 +01:00
|
|
|
*/
|
2006-05-19 17:02:41 +02:00
|
|
|
static void PointerFree(PMIDL_STUB_MESSAGE pStubMsg,
|
2003-02-01 01:44:51 +01:00
|
|
|
unsigned char *Pointer,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
|
|
|
unsigned type = pFormat[0], attr = pFormat[1];
|
|
|
|
PFORMAT_STRING desc;
|
|
|
|
NDR_FREE m;
|
2007-12-13 17:13:20 +01:00
|
|
|
unsigned char *current_pointer = Pointer;
|
2003-02-01 01:44:51 +01:00
|
|
|
|
|
|
|
TRACE("(%p,%p,%p)\n", pStubMsg, Pointer, pFormat);
|
2006-05-01 11:36:52 +02:00
|
|
|
TRACE("type=0x%x, attr=", type); dump_pointer_attr(attr);
|
2003-02-01 01:44:51 +01:00
|
|
|
if (attr & RPC_FC_P_DONTFREE) return;
|
|
|
|
pFormat += 2;
|
|
|
|
if (attr & RPC_FC_P_SIMPLEPOINTER) desc = pFormat;
|
2004-11-30 22:38:57 +01:00
|
|
|
else desc = pFormat + *(const SHORT*)pFormat;
|
2006-05-01 11:37:11 +02:00
|
|
|
|
|
|
|
if (!Pointer) return;
|
|
|
|
|
2006-05-29 17:27:27 +02:00
|
|
|
if (type == RPC_FC_FP) {
|
|
|
|
int pointer_needs_freeing = NdrFullPointerFree(
|
|
|
|
pStubMsg->FullPtrXlatTables, Pointer);
|
|
|
|
if (!pointer_needs_freeing)
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2003-05-20 04:17:49 +02:00
|
|
|
if (attr & RPC_FC_P_DEREF) {
|
2007-12-13 17:13:20 +01:00
|
|
|
current_pointer = *(unsigned char**)Pointer;
|
|
|
|
TRACE("deref => %p\n", current_pointer);
|
2003-05-20 04:17:49 +02:00
|
|
|
}
|
2003-02-01 01:44:51 +01:00
|
|
|
|
|
|
|
m = NdrFreer[*desc & NDR_TABLE_MASK];
|
2007-12-13 17:13:20 +01:00
|
|
|
if (m) m(pStubMsg, current_pointer, desc);
|
2003-02-01 01:44:51 +01:00
|
|
|
|
2007-12-13 17:11:58 +01:00
|
|
|
/* this check stops us from trying to free buffer memory. we don't have to
|
|
|
|
* worry about clients, since they won't call this function.
|
|
|
|
* we don't have to check for the buffer being reallocated because
|
|
|
|
* BufferStart and BufferEnd won't be reset when allocating memory for
|
|
|
|
* sending the response. we don't have to check for the new buffer here as
|
|
|
|
* it won't be used a type memory, only for buffer memory */
|
2008-01-16 22:57:31 +01:00
|
|
|
if (Pointer >= pStubMsg->BufferStart && Pointer < pStubMsg->BufferEnd)
|
2007-12-13 17:11:28 +01:00
|
|
|
goto notfree;
|
|
|
|
|
2003-02-01 01:44:51 +01:00
|
|
|
if (attr & RPC_FC_P_ONSTACK) {
|
|
|
|
TRACE("not freeing stack ptr %p\n", Pointer);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
TRACE("freeing %p\n", Pointer);
|
2003-02-17 02:48:24 +01:00
|
|
|
NdrFree(pStubMsg, Pointer);
|
2003-02-01 01:44:51 +01:00
|
|
|
return;
|
2007-12-13 17:11:28 +01:00
|
|
|
notfree:
|
|
|
|
TRACE("not freeing %p\n", Pointer);
|
2003-02-01 01:44:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* EmbeddedPointerMarshall
|
|
|
|
*/
|
2006-05-19 17:02:41 +02:00
|
|
|
static unsigned char * EmbeddedPointerMarshall(PMIDL_STUB_MESSAGE pStubMsg,
|
2003-02-01 01:44:51 +01:00
|
|
|
unsigned char *pMemory,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
|
|
|
unsigned char *Mark = pStubMsg->BufferMark;
|
2007-10-11 00:29:54 +02:00
|
|
|
unsigned rep, count, stride;
|
2006-05-15 14:34:47 +02:00
|
|
|
unsigned i;
|
2007-06-25 15:28:01 +02:00
|
|
|
unsigned char *saved_buffer = NULL;
|
2003-02-01 01:44:51 +01:00
|
|
|
|
|
|
|
TRACE("(%p,%p,%p)\n", pStubMsg, pMemory, pFormat);
|
|
|
|
|
|
|
|
if (*pFormat != RPC_FC_PP) return NULL;
|
|
|
|
pFormat += 2;
|
|
|
|
|
2007-06-25 15:28:01 +02:00
|
|
|
if (pStubMsg->PointerBufferMark)
|
|
|
|
{
|
|
|
|
saved_buffer = pStubMsg->Buffer;
|
|
|
|
pStubMsg->Buffer = pStubMsg->PointerBufferMark;
|
|
|
|
pStubMsg->PointerBufferMark = NULL;
|
|
|
|
}
|
|
|
|
|
2003-02-01 01:44:51 +01:00
|
|
|
while (pFormat[0] != RPC_FC_END) {
|
|
|
|
switch (pFormat[0]) {
|
|
|
|
default:
|
|
|
|
FIXME("unknown repeat type %d\n", pFormat[0]);
|
|
|
|
case RPC_FC_NO_REPEAT:
|
|
|
|
rep = 1;
|
|
|
|
stride = 0;
|
|
|
|
count = 1;
|
|
|
|
pFormat += 2;
|
|
|
|
break;
|
|
|
|
case RPC_FC_FIXED_REPEAT:
|
2004-11-30 22:38:57 +01:00
|
|
|
rep = *(const WORD*)&pFormat[2];
|
|
|
|
stride = *(const WORD*)&pFormat[4];
|
|
|
|
count = *(const WORD*)&pFormat[8];
|
2003-02-01 01:44:51 +01:00
|
|
|
pFormat += 10;
|
|
|
|
break;
|
|
|
|
case RPC_FC_VARIABLE_REPEAT:
|
2006-06-02 21:25:44 +02:00
|
|
|
rep = (pFormat[1] == RPC_FC_VARIABLE_OFFSET) ? pStubMsg->ActualCount : pStubMsg->MaxCount;
|
2004-11-30 22:38:57 +01:00
|
|
|
stride = *(const WORD*)&pFormat[2];
|
|
|
|
count = *(const WORD*)&pFormat[6];
|
2003-02-01 01:44:51 +01:00
|
|
|
pFormat += 8;
|
|
|
|
break;
|
|
|
|
}
|
2006-05-15 14:34:47 +02:00
|
|
|
for (i = 0; i < rep; i++) {
|
2003-02-01 01:44:51 +01:00
|
|
|
PFORMAT_STRING info = pFormat;
|
2007-10-11 00:29:54 +02:00
|
|
|
unsigned char *membase = pMemory + (i * stride);
|
|
|
|
unsigned char *bufbase = Mark + (i * stride);
|
2003-02-01 01:44:51 +01:00
|
|
|
unsigned u;
|
2007-06-19 13:12:00 +02:00
|
|
|
|
2003-02-01 01:44:51 +01:00
|
|
|
for (u=0; u<count; u++,info+=8) {
|
2004-11-30 22:38:57 +01:00
|
|
|
unsigned char *memptr = membase + *(const SHORT*)&info[0];
|
2006-05-15 14:34:47 +02:00
|
|
|
unsigned char *bufptr = bufbase + *(const SHORT*)&info[2];
|
2006-05-25 00:04:35 +02:00
|
|
|
unsigned char *saved_memory = pStubMsg->Memory;
|
|
|
|
|
|
|
|
pStubMsg->Memory = pMemory;
|
2003-02-01 01:44:51 +01:00
|
|
|
PointerMarshall(pStubMsg, bufptr, *(unsigned char**)memptr, info+4);
|
2006-05-25 00:04:35 +02:00
|
|
|
pStubMsg->Memory = saved_memory;
|
2003-02-01 01:44:51 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
pFormat += 8 * count;
|
|
|
|
}
|
|
|
|
|
2007-06-25 15:28:01 +02:00
|
|
|
if (saved_buffer)
|
|
|
|
{
|
|
|
|
pStubMsg->PointerBufferMark = pStubMsg->Buffer;
|
|
|
|
pStubMsg->Buffer = saved_buffer;
|
|
|
|
}
|
|
|
|
|
2003-02-17 02:48:24 +01:00
|
|
|
STD_OVERFLOW_CHECK(pStubMsg);
|
|
|
|
|
2003-02-01 01:44:51 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* EmbeddedPointerUnmarshall
|
|
|
|
*/
|
2006-05-19 17:02:41 +02:00
|
|
|
static unsigned char * EmbeddedPointerUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,
|
2008-06-23 13:56:49 +02:00
|
|
|
unsigned char *pDstBuffer,
|
2007-11-29 18:35:34 +01:00
|
|
|
unsigned char *pSrcMemoryPtrs,
|
2003-02-01 01:44:51 +01:00
|
|
|
PFORMAT_STRING pFormat,
|
|
|
|
unsigned char fMustAlloc)
|
|
|
|
{
|
|
|
|
unsigned char *Mark = pStubMsg->BufferMark;
|
2007-10-11 00:29:54 +02:00
|
|
|
unsigned rep, count, stride;
|
2006-05-15 14:34:47 +02:00
|
|
|
unsigned i;
|
2007-06-25 15:28:01 +02:00
|
|
|
unsigned char *saved_buffer = NULL;
|
2003-02-01 01:44:51 +01:00
|
|
|
|
2008-06-23 13:56:49 +02:00
|
|
|
TRACE("(%p,%p,%p,%p,%d)\n", pStubMsg, pDstBuffer, pSrcMemoryPtrs, pFormat, fMustAlloc);
|
2003-02-01 01:44:51 +01:00
|
|
|
|
|
|
|
if (*pFormat != RPC_FC_PP) return NULL;
|
|
|
|
pFormat += 2;
|
|
|
|
|
2007-06-25 15:28:01 +02:00
|
|
|
if (pStubMsg->PointerBufferMark)
|
|
|
|
{
|
|
|
|
saved_buffer = pStubMsg->Buffer;
|
|
|
|
pStubMsg->Buffer = pStubMsg->PointerBufferMark;
|
|
|
|
pStubMsg->PointerBufferMark = NULL;
|
|
|
|
}
|
|
|
|
|
2003-02-01 01:44:51 +01:00
|
|
|
while (pFormat[0] != RPC_FC_END) {
|
2006-05-15 14:34:47 +02:00
|
|
|
TRACE("pFormat[0] = 0x%x\n", pFormat[0]);
|
2003-02-01 01:44:51 +01:00
|
|
|
switch (pFormat[0]) {
|
|
|
|
default:
|
|
|
|
FIXME("unknown repeat type %d\n", pFormat[0]);
|
|
|
|
case RPC_FC_NO_REPEAT:
|
|
|
|
rep = 1;
|
|
|
|
stride = 0;
|
|
|
|
count = 1;
|
|
|
|
pFormat += 2;
|
|
|
|
break;
|
|
|
|
case RPC_FC_FIXED_REPEAT:
|
2004-11-30 22:38:57 +01:00
|
|
|
rep = *(const WORD*)&pFormat[2];
|
|
|
|
stride = *(const WORD*)&pFormat[4];
|
|
|
|
count = *(const WORD*)&pFormat[8];
|
2003-02-01 01:44:51 +01:00
|
|
|
pFormat += 10;
|
|
|
|
break;
|
|
|
|
case RPC_FC_VARIABLE_REPEAT:
|
2006-06-02 21:25:44 +02:00
|
|
|
rep = (pFormat[1] == RPC_FC_VARIABLE_OFFSET) ? pStubMsg->ActualCount : pStubMsg->MaxCount;
|
2004-11-30 22:38:57 +01:00
|
|
|
stride = *(const WORD*)&pFormat[2];
|
|
|
|
count = *(const WORD*)&pFormat[6];
|
2003-02-01 01:44:51 +01:00
|
|
|
pFormat += 8;
|
|
|
|
break;
|
|
|
|
}
|
2006-05-15 14:34:47 +02:00
|
|
|
for (i = 0; i < rep; i++) {
|
2003-02-01 01:44:51 +01:00
|
|
|
PFORMAT_STRING info = pFormat;
|
2008-06-23 13:56:49 +02:00
|
|
|
unsigned char *bufdstbase = pDstBuffer + (i * stride);
|
2007-11-29 18:35:34 +01:00
|
|
|
unsigned char *memsrcbase = pSrcMemoryPtrs + (i * stride);
|
2007-10-11 00:29:54 +02:00
|
|
|
unsigned char *bufbase = Mark + (i * stride);
|
2003-02-01 01:44:51 +01:00
|
|
|
unsigned u;
|
2007-06-19 13:12:00 +02:00
|
|
|
|
2003-02-01 01:44:51 +01:00
|
|
|
for (u=0; u<count; u++,info+=8) {
|
2008-06-23 13:56:49 +02:00
|
|
|
unsigned char **bufdstptr = (unsigned char **)(bufdstbase + *(const SHORT*)&info[2]);
|
2007-11-29 18:35:34 +01:00
|
|
|
unsigned char **memsrcptr = (unsigned char **)(memsrcbase + *(const SHORT*)&info[0]);
|
2006-05-15 14:34:47 +02:00
|
|
|
unsigned char *bufptr = bufbase + *(const SHORT*)&info[2];
|
2008-06-23 13:56:49 +02:00
|
|
|
PointerUnmarshall(pStubMsg, bufptr, bufdstptr, *memsrcptr, info+4, fMustAlloc);
|
2003-02-01 01:44:51 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
pFormat += 8 * count;
|
|
|
|
}
|
|
|
|
|
2007-06-25 15:28:01 +02:00
|
|
|
if (saved_buffer)
|
|
|
|
{
|
|
|
|
pStubMsg->PointerBufferMark = pStubMsg->Buffer;
|
|
|
|
pStubMsg->Buffer = saved_buffer;
|
|
|
|
}
|
|
|
|
|
2003-02-01 01:44:51 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* EmbeddedPointerBufferSize
|
|
|
|
*/
|
2006-05-19 17:02:41 +02:00
|
|
|
static void EmbeddedPointerBufferSize(PMIDL_STUB_MESSAGE pStubMsg,
|
2003-02-01 01:44:51 +01:00
|
|
|
unsigned char *pMemory,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
2007-10-11 00:29:54 +02:00
|
|
|
unsigned rep, count, stride;
|
2006-05-15 14:34:47 +02:00
|
|
|
unsigned i;
|
2007-06-25 15:28:01 +02:00
|
|
|
ULONG saved_buffer_length = 0;
|
2003-02-01 01:44:51 +01:00
|
|
|
|
|
|
|
TRACE("(%p,%p,%p)\n", pStubMsg, pMemory, pFormat);
|
2006-05-15 14:34:47 +02:00
|
|
|
|
|
|
|
if (pStubMsg->IgnoreEmbeddedPointers) return;
|
|
|
|
|
2003-02-01 01:44:51 +01:00
|
|
|
if (*pFormat != RPC_FC_PP) return;
|
|
|
|
pFormat += 2;
|
|
|
|
|
2007-06-25 15:28:01 +02:00
|
|
|
if (pStubMsg->PointerLength)
|
|
|
|
{
|
|
|
|
saved_buffer_length = pStubMsg->BufferLength;
|
|
|
|
pStubMsg->BufferLength = pStubMsg->PointerLength;
|
|
|
|
pStubMsg->PointerLength = 0;
|
|
|
|
}
|
|
|
|
|
2003-02-01 01:44:51 +01:00
|
|
|
while (pFormat[0] != RPC_FC_END) {
|
|
|
|
switch (pFormat[0]) {
|
|
|
|
default:
|
|
|
|
FIXME("unknown repeat type %d\n", pFormat[0]);
|
|
|
|
case RPC_FC_NO_REPEAT:
|
|
|
|
rep = 1;
|
|
|
|
stride = 0;
|
|
|
|
count = 1;
|
|
|
|
pFormat += 2;
|
|
|
|
break;
|
|
|
|
case RPC_FC_FIXED_REPEAT:
|
2004-11-30 22:38:57 +01:00
|
|
|
rep = *(const WORD*)&pFormat[2];
|
|
|
|
stride = *(const WORD*)&pFormat[4];
|
|
|
|
count = *(const WORD*)&pFormat[8];
|
2003-02-01 01:44:51 +01:00
|
|
|
pFormat += 10;
|
|
|
|
break;
|
|
|
|
case RPC_FC_VARIABLE_REPEAT:
|
2006-06-02 21:25:44 +02:00
|
|
|
rep = (pFormat[1] == RPC_FC_VARIABLE_OFFSET) ? pStubMsg->ActualCount : pStubMsg->MaxCount;
|
2004-11-30 22:38:57 +01:00
|
|
|
stride = *(const WORD*)&pFormat[2];
|
|
|
|
count = *(const WORD*)&pFormat[6];
|
2003-02-01 01:44:51 +01:00
|
|
|
pFormat += 8;
|
|
|
|
break;
|
|
|
|
}
|
2006-05-15 14:34:47 +02:00
|
|
|
for (i = 0; i < rep; i++) {
|
2003-02-01 01:44:51 +01:00
|
|
|
PFORMAT_STRING info = pFormat;
|
2007-10-11 00:29:54 +02:00
|
|
|
unsigned char *membase = pMemory + (i * stride);
|
2003-02-01 01:44:51 +01:00
|
|
|
unsigned u;
|
2007-06-19 13:12:00 +02:00
|
|
|
|
2003-02-01 01:44:51 +01:00
|
|
|
for (u=0; u<count; u++,info+=8) {
|
2004-11-30 22:38:57 +01:00
|
|
|
unsigned char *memptr = membase + *(const SHORT*)&info[0];
|
2006-05-25 00:04:35 +02:00
|
|
|
unsigned char *saved_memory = pStubMsg->Memory;
|
|
|
|
|
|
|
|
pStubMsg->Memory = pMemory;
|
2003-02-01 01:44:51 +01:00
|
|
|
PointerBufferSize(pStubMsg, *(unsigned char**)memptr, info+4);
|
2006-05-25 00:04:35 +02:00
|
|
|
pStubMsg->Memory = saved_memory;
|
2003-02-01 01:44:51 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
pFormat += 8 * count;
|
|
|
|
}
|
2007-06-25 15:28:01 +02:00
|
|
|
|
|
|
|
if (saved_buffer_length)
|
|
|
|
{
|
|
|
|
pStubMsg->PointerLength = pStubMsg->BufferLength;
|
|
|
|
pStubMsg->BufferLength = saved_buffer_length;
|
|
|
|
}
|
2003-02-01 01:44:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
2006-11-12 20:23:02 +01:00
|
|
|
* EmbeddedPointerMemorySize [internal]
|
2003-02-01 01:44:51 +01:00
|
|
|
*/
|
2006-05-19 17:02:41 +02:00
|
|
|
static unsigned long EmbeddedPointerMemorySize(PMIDL_STUB_MESSAGE pStubMsg,
|
2003-02-01 01:44:51 +01:00
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
|
|
|
unsigned char *Mark = pStubMsg->BufferMark;
|
2007-10-11 00:29:54 +02:00
|
|
|
unsigned rep, count, stride;
|
2006-05-15 14:34:47 +02:00
|
|
|
unsigned i;
|
2007-12-08 18:46:57 +01:00
|
|
|
unsigned char *saved_buffer = NULL;
|
2003-02-01 01:44:51 +01:00
|
|
|
|
2007-06-25 15:28:01 +02:00
|
|
|
TRACE("(%p,%p)\n", pStubMsg, pFormat);
|
|
|
|
|
|
|
|
if (pStubMsg->IgnoreEmbeddedPointers) return 0;
|
|
|
|
|
2007-12-08 18:46:57 +01:00
|
|
|
if (pStubMsg->PointerBufferMark)
|
|
|
|
{
|
|
|
|
saved_buffer = pStubMsg->Buffer;
|
|
|
|
pStubMsg->Buffer = pStubMsg->PointerBufferMark;
|
|
|
|
pStubMsg->PointerBufferMark = NULL;
|
|
|
|
}
|
2006-05-15 14:34:47 +02:00
|
|
|
|
2003-02-01 01:44:51 +01:00
|
|
|
if (*pFormat != RPC_FC_PP) return 0;
|
|
|
|
pFormat += 2;
|
|
|
|
|
|
|
|
while (pFormat[0] != RPC_FC_END) {
|
|
|
|
switch (pFormat[0]) {
|
|
|
|
default:
|
|
|
|
FIXME("unknown repeat type %d\n", pFormat[0]);
|
|
|
|
case RPC_FC_NO_REPEAT:
|
|
|
|
rep = 1;
|
|
|
|
stride = 0;
|
|
|
|
count = 1;
|
|
|
|
pFormat += 2;
|
|
|
|
break;
|
|
|
|
case RPC_FC_FIXED_REPEAT:
|
2004-11-30 22:38:57 +01:00
|
|
|
rep = *(const WORD*)&pFormat[2];
|
|
|
|
stride = *(const WORD*)&pFormat[4];
|
|
|
|
count = *(const WORD*)&pFormat[8];
|
2003-02-01 01:44:51 +01:00
|
|
|
pFormat += 10;
|
|
|
|
break;
|
|
|
|
case RPC_FC_VARIABLE_REPEAT:
|
2006-06-02 21:25:44 +02:00
|
|
|
rep = (pFormat[1] == RPC_FC_VARIABLE_OFFSET) ? pStubMsg->ActualCount : pStubMsg->MaxCount;
|
2004-11-30 22:38:57 +01:00
|
|
|
stride = *(const WORD*)&pFormat[2];
|
|
|
|
count = *(const WORD*)&pFormat[6];
|
2003-02-01 01:44:51 +01:00
|
|
|
pFormat += 8;
|
|
|
|
break;
|
|
|
|
}
|
2006-05-15 14:34:47 +02:00
|
|
|
for (i = 0; i < rep; i++) {
|
2003-02-01 01:44:51 +01:00
|
|
|
PFORMAT_STRING info = pFormat;
|
2007-10-11 00:29:54 +02:00
|
|
|
unsigned char *bufbase = Mark + (i * stride);
|
2003-02-01 01:44:51 +01:00
|
|
|
unsigned u;
|
|
|
|
for (u=0; u<count; u++,info+=8) {
|
2006-05-15 14:34:47 +02:00
|
|
|
unsigned char *bufptr = bufbase + *(const SHORT*)&info[2];
|
2003-02-01 01:44:51 +01:00
|
|
|
PointerMemorySize(pStubMsg, bufptr, info+4);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
pFormat += 8 * count;
|
|
|
|
}
|
|
|
|
|
2007-12-08 18:46:57 +01:00
|
|
|
if (saved_buffer)
|
|
|
|
{
|
|
|
|
pStubMsg->PointerBufferMark = pStubMsg->Buffer;
|
|
|
|
pStubMsg->Buffer = saved_buffer;
|
|
|
|
}
|
|
|
|
|
2003-02-01 01:44:51 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
2006-11-12 20:23:02 +01:00
|
|
|
* EmbeddedPointerFree [internal]
|
2003-02-01 01:44:51 +01:00
|
|
|
*/
|
2006-05-19 17:02:41 +02:00
|
|
|
static void EmbeddedPointerFree(PMIDL_STUB_MESSAGE pStubMsg,
|
2003-02-01 01:44:51 +01:00
|
|
|
unsigned char *pMemory,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
2007-10-11 00:29:54 +02:00
|
|
|
unsigned rep, count, stride;
|
2006-05-15 14:34:47 +02:00
|
|
|
unsigned i;
|
2003-02-01 01:44:51 +01:00
|
|
|
|
|
|
|
TRACE("(%p,%p,%p)\n", pStubMsg, pMemory, pFormat);
|
|
|
|
if (*pFormat != RPC_FC_PP) return;
|
|
|
|
pFormat += 2;
|
|
|
|
|
|
|
|
while (pFormat[0] != RPC_FC_END) {
|
|
|
|
switch (pFormat[0]) {
|
|
|
|
default:
|
|
|
|
FIXME("unknown repeat type %d\n", pFormat[0]);
|
|
|
|
case RPC_FC_NO_REPEAT:
|
|
|
|
rep = 1;
|
|
|
|
stride = 0;
|
|
|
|
count = 1;
|
|
|
|
pFormat += 2;
|
|
|
|
break;
|
|
|
|
case RPC_FC_FIXED_REPEAT:
|
2004-11-30 22:38:57 +01:00
|
|
|
rep = *(const WORD*)&pFormat[2];
|
|
|
|
stride = *(const WORD*)&pFormat[4];
|
|
|
|
count = *(const WORD*)&pFormat[8];
|
2003-02-01 01:44:51 +01:00
|
|
|
pFormat += 10;
|
|
|
|
break;
|
|
|
|
case RPC_FC_VARIABLE_REPEAT:
|
2006-06-02 21:25:44 +02:00
|
|
|
rep = (pFormat[1] == RPC_FC_VARIABLE_OFFSET) ? pStubMsg->ActualCount : pStubMsg->MaxCount;
|
2004-11-30 22:38:57 +01:00
|
|
|
stride = *(const WORD*)&pFormat[2];
|
|
|
|
count = *(const WORD*)&pFormat[6];
|
2003-02-01 01:44:51 +01:00
|
|
|
pFormat += 8;
|
|
|
|
break;
|
|
|
|
}
|
2006-05-15 14:34:47 +02:00
|
|
|
for (i = 0; i < rep; i++) {
|
2003-02-01 01:44:51 +01:00
|
|
|
PFORMAT_STRING info = pFormat;
|
2006-05-15 14:34:47 +02:00
|
|
|
unsigned char *membase = pMemory + (i * stride);
|
2003-02-01 01:44:51 +01:00
|
|
|
unsigned u;
|
2007-06-19 13:12:00 +02:00
|
|
|
|
2003-02-01 01:44:51 +01:00
|
|
|
for (u=0; u<count; u++,info+=8) {
|
2004-11-30 22:38:57 +01:00
|
|
|
unsigned char *memptr = membase + *(const SHORT*)&info[0];
|
2006-05-25 00:04:35 +02:00
|
|
|
unsigned char *saved_memory = pStubMsg->Memory;
|
|
|
|
|
|
|
|
pStubMsg->Memory = pMemory;
|
2003-02-01 01:44:51 +01:00
|
|
|
PointerFree(pStubMsg, *(unsigned char**)memptr, info+4);
|
2006-05-25 00:04:35 +02:00
|
|
|
pStubMsg->Memory = saved_memory;
|
2003-02-01 01:44:51 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
pFormat += 8 * count;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrPointerMarshall [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
unsigned char * WINAPI NdrPointerMarshall(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char *pMemory,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
2006-05-10 14:13:45 +02:00
|
|
|
unsigned char *Buffer;
|
|
|
|
|
2003-02-01 01:44:51 +01:00
|
|
|
TRACE("(%p,%p,%p)\n", pStubMsg, pMemory, pFormat);
|
|
|
|
|
2008-04-11 04:17:14 +02:00
|
|
|
/* Increment the buffer here instead of in PointerMarshall,
|
2006-05-10 14:13:45 +02:00
|
|
|
* as that is used by embedded pointers which already handle the incrementing
|
|
|
|
* the buffer, and shouldn't write any additional pointer data to the wire */
|
|
|
|
if (*pFormat != RPC_FC_RP)
|
|
|
|
{
|
2007-12-14 20:55:04 +01:00
|
|
|
ALIGN_POINTER_CLEAR(pStubMsg->Buffer, 4);
|
2006-05-10 14:13:45 +02:00
|
|
|
Buffer = pStubMsg->Buffer;
|
2007-11-28 16:02:06 +01:00
|
|
|
safe_buffer_increment(pStubMsg, 4);
|
2006-05-10 14:13:45 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
Buffer = pStubMsg->Buffer;
|
|
|
|
|
2006-05-13 18:00:00 +02:00
|
|
|
PointerMarshall(pStubMsg, Buffer, pMemory, pFormat);
|
2003-02-17 02:48:24 +01:00
|
|
|
|
2003-02-01 01:44:51 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrPointerUnmarshall [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
unsigned char * WINAPI NdrPointerUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char **ppMemory,
|
|
|
|
PFORMAT_STRING pFormat,
|
|
|
|
unsigned char fMustAlloc)
|
|
|
|
{
|
2006-05-10 14:13:45 +02:00
|
|
|
unsigned char *Buffer;
|
|
|
|
|
2003-02-01 01:44:51 +01:00
|
|
|
TRACE("(%p,%p,%p,%d)\n", pStubMsg, ppMemory, pFormat, fMustAlloc);
|
|
|
|
|
2008-04-21 07:17:27 +02:00
|
|
|
/* Increment the buffer here instead of in PointerUnmarshall,
|
2006-05-10 14:13:45 +02:00
|
|
|
* as that is used by embedded pointers which already handle the incrementing
|
|
|
|
* the buffer, and shouldn't read any additional pointer data from the
|
|
|
|
* buffer */
|
|
|
|
if (*pFormat != RPC_FC_RP)
|
|
|
|
{
|
|
|
|
ALIGN_POINTER(pStubMsg->Buffer, 4);
|
|
|
|
Buffer = pStubMsg->Buffer;
|
2007-07-16 16:02:38 +02:00
|
|
|
safe_buffer_increment(pStubMsg, 4);
|
2006-05-10 14:13:45 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
Buffer = pStubMsg->Buffer;
|
|
|
|
|
2007-11-29 18:35:34 +01:00
|
|
|
PointerUnmarshall(pStubMsg, Buffer, ppMemory, *ppMemory, pFormat, fMustAlloc);
|
2003-02-01 01:44:51 +01:00
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrPointerBufferSize [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
void WINAPI NdrPointerBufferSize(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char *pMemory,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
|
|
|
TRACE("(%p,%p,%p)\n", pStubMsg, pMemory, pFormat);
|
2006-05-10 14:13:45 +02:00
|
|
|
|
2008-04-21 07:17:27 +02:00
|
|
|
/* Increment the buffer length here instead of in PointerBufferSize,
|
2006-05-10 14:13:45 +02:00
|
|
|
* as that is used by embedded pointers which already handle the buffer
|
|
|
|
* length, and shouldn't write anything more to the wire */
|
|
|
|
if (*pFormat != RPC_FC_RP)
|
|
|
|
{
|
|
|
|
ALIGN_LENGTH(pStubMsg->BufferLength, 4);
|
2007-11-28 16:01:53 +01:00
|
|
|
safe_buffer_length_increment(pStubMsg, 4);
|
2006-05-10 14:13:45 +02:00
|
|
|
}
|
|
|
|
|
2003-02-17 02:48:24 +01:00
|
|
|
PointerBufferSize(pStubMsg, pMemory, pFormat);
|
2003-02-01 01:44:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrPointerMemorySize [RPCRT4.@]
|
|
|
|
*/
|
2006-11-09 23:01:58 +01:00
|
|
|
ULONG WINAPI NdrPointerMemorySize(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
PFORMAT_STRING pFormat)
|
2003-02-01 01:44:51 +01:00
|
|
|
{
|
|
|
|
/* unsigned size = *(LPWORD)(pFormat+2); */
|
|
|
|
FIXME("(%p,%p): stub\n", pStubMsg, pFormat);
|
|
|
|
PointerMemorySize(pStubMsg, pStubMsg->Buffer, pFormat);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrPointerFree [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
void WINAPI NdrPointerFree(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char *pMemory,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
|
|
|
TRACE("(%p,%p,%p)\n", pStubMsg, pMemory, pFormat);
|
2003-02-17 02:48:24 +01:00
|
|
|
PointerFree(pStubMsg, pMemory, pFormat);
|
2003-02-01 01:44:51 +01:00
|
|
|
}
|
|
|
|
|
2006-05-23 12:54:17 +02:00
|
|
|
/***********************************************************************
|
|
|
|
* NdrSimpleTypeMarshall [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
void WINAPI NdrSimpleTypeMarshall( PMIDL_STUB_MESSAGE pStubMsg, unsigned char* pMemory,
|
|
|
|
unsigned char FormatChar )
|
|
|
|
{
|
2007-01-23 12:50:06 +01:00
|
|
|
NdrBaseTypeMarshall(pStubMsg, pMemory, &FormatChar);
|
2006-05-23 12:54:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrSimpleTypeUnmarshall [RPCRT4.@]
|
2008-04-12 11:07:26 +02:00
|
|
|
*
|
|
|
|
* Unmarshall a base type.
|
|
|
|
*
|
|
|
|
* NOTES
|
|
|
|
* Doesn't check that the buffer is long enough before copying, so the caller
|
|
|
|
* should do this.
|
2006-05-23 12:54:17 +02:00
|
|
|
*/
|
|
|
|
void WINAPI NdrSimpleTypeUnmarshall( PMIDL_STUB_MESSAGE pStubMsg, unsigned char* pMemory,
|
|
|
|
unsigned char FormatChar )
|
|
|
|
{
|
2008-04-12 11:07:26 +02:00
|
|
|
#define BASE_TYPE_UNMARSHALL(type) \
|
|
|
|
ALIGN_POINTER(pStubMsg->Buffer, sizeof(type)); \
|
|
|
|
TRACE("pMemory: %p\n", pMemory); \
|
|
|
|
*(type *)pMemory = *(type *)pStubMsg->Buffer; \
|
|
|
|
pStubMsg->Buffer += sizeof(type);
|
|
|
|
|
|
|
|
switch(FormatChar)
|
|
|
|
{
|
|
|
|
case RPC_FC_BYTE:
|
|
|
|
case RPC_FC_CHAR:
|
|
|
|
case RPC_FC_SMALL:
|
|
|
|
case RPC_FC_USMALL:
|
|
|
|
BASE_TYPE_UNMARSHALL(UCHAR);
|
|
|
|
TRACE("value: 0x%02x\n", *pMemory);
|
|
|
|
break;
|
|
|
|
case RPC_FC_WCHAR:
|
|
|
|
case RPC_FC_SHORT:
|
|
|
|
case RPC_FC_USHORT:
|
|
|
|
BASE_TYPE_UNMARSHALL(USHORT);
|
|
|
|
TRACE("value: 0x%04x\n", *(USHORT *)pMemory);
|
|
|
|
break;
|
|
|
|
case RPC_FC_LONG:
|
|
|
|
case RPC_FC_ULONG:
|
|
|
|
case RPC_FC_ERROR_STATUS_T:
|
|
|
|
case RPC_FC_ENUM32:
|
|
|
|
BASE_TYPE_UNMARSHALL(ULONG);
|
|
|
|
TRACE("value: 0x%08x\n", *(ULONG *)pMemory);
|
|
|
|
break;
|
|
|
|
case RPC_FC_FLOAT:
|
|
|
|
BASE_TYPE_UNMARSHALL(float);
|
|
|
|
TRACE("value: %f\n", *(float *)pMemory);
|
|
|
|
break;
|
|
|
|
case RPC_FC_DOUBLE:
|
|
|
|
BASE_TYPE_UNMARSHALL(double);
|
|
|
|
TRACE("value: %f\n", *(double *)pMemory);
|
|
|
|
break;
|
|
|
|
case RPC_FC_HYPER:
|
|
|
|
BASE_TYPE_UNMARSHALL(ULONGLONG);
|
|
|
|
TRACE("value: %s\n", wine_dbgstr_longlong(*(ULONGLONG *)pMemory));
|
|
|
|
break;
|
|
|
|
case RPC_FC_ENUM16:
|
|
|
|
ALIGN_POINTER(pStubMsg->Buffer, sizeof(USHORT));
|
|
|
|
TRACE("pMemory: %p\n", pMemory);
|
|
|
|
/* 16-bits on the wire, but int in memory */
|
|
|
|
*(UINT *)pMemory = *(USHORT *)pStubMsg->Buffer;
|
|
|
|
pStubMsg->Buffer += sizeof(USHORT);
|
|
|
|
TRACE("value: 0x%08x\n", *(UINT *)pMemory);
|
|
|
|
break;
|
|
|
|
case RPC_FC_IGNORE:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
FIXME("Unhandled base type: 0x%02x\n", FormatChar);
|
|
|
|
}
|
|
|
|
#undef BASE_TYPE_UNMARSHALL
|
2006-05-23 12:54:17 +02:00
|
|
|
}
|
|
|
|
|
2003-02-01 01:44:51 +01:00
|
|
|
/***********************************************************************
|
|
|
|
* NdrSimpleStructMarshall [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
unsigned char * WINAPI NdrSimpleStructMarshall(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char *pMemory,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
2004-11-30 22:38:57 +01:00
|
|
|
unsigned size = *(const WORD*)(pFormat+2);
|
2003-02-01 01:44:51 +01:00
|
|
|
TRACE("(%p,%p,%p)\n", pStubMsg, pMemory, pFormat);
|
|
|
|
|
2007-12-14 20:55:04 +01:00
|
|
|
ALIGN_POINTER_CLEAR(pStubMsg->Buffer, pFormat[1] + 1);
|
2006-05-10 14:12:30 +02:00
|
|
|
|
2003-02-01 01:44:51 +01:00
|
|
|
pStubMsg->BufferMark = pStubMsg->Buffer;
|
2007-11-28 16:02:06 +01:00
|
|
|
safe_copy_to_buffer(pStubMsg, pMemory, size);
|
2003-02-01 01:44:51 +01:00
|
|
|
|
|
|
|
if (pFormat[0] != RPC_FC_STRUCT)
|
|
|
|
EmbeddedPointerMarshall(pStubMsg, pMemory, pFormat+4);
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrSimpleStructUnmarshall [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
unsigned char * WINAPI NdrSimpleStructUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char **ppMemory,
|
|
|
|
PFORMAT_STRING pFormat,
|
|
|
|
unsigned char fMustAlloc)
|
|
|
|
{
|
2004-11-30 22:38:57 +01:00
|
|
|
unsigned size = *(const WORD*)(pFormat+2);
|
2007-11-29 18:35:40 +01:00
|
|
|
unsigned char *saved_buffer;
|
2003-02-01 01:44:51 +01:00
|
|
|
TRACE("(%p,%p,%p,%d)\n", pStubMsg, ppMemory, pFormat, fMustAlloc);
|
|
|
|
|
2006-05-10 14:12:30 +02:00
|
|
|
ALIGN_POINTER(pStubMsg->Buffer, pFormat[1] + 1);
|
|
|
|
|
2007-11-29 18:35:40 +01:00
|
|
|
if (fMustAlloc)
|
2003-02-01 01:44:51 +01:00
|
|
|
*ppMemory = NdrAllocate(pStubMsg, size);
|
2007-11-29 18:35:40 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
if (!pStubMsg->IsClient && !*ppMemory)
|
2006-05-19 12:47:20 +02:00
|
|
|
/* for servers, we just point straight into the RPC buffer */
|
2003-02-01 01:44:51 +01:00
|
|
|
*ppMemory = pStubMsg->Buffer;
|
|
|
|
}
|
|
|
|
|
2007-11-29 18:35:40 +01:00
|
|
|
saved_buffer = pStubMsg->BufferMark = pStubMsg->Buffer;
|
|
|
|
safe_buffer_increment(pStubMsg, size);
|
|
|
|
if (pFormat[0] == RPC_FC_PSTRUCT)
|
|
|
|
EmbeddedPointerUnmarshall(pStubMsg, saved_buffer, *ppMemory, pFormat+4, fMustAlloc);
|
|
|
|
|
|
|
|
TRACE("copying %p to %p\n", saved_buffer, *ppMemory);
|
|
|
|
if (*ppMemory != saved_buffer)
|
|
|
|
memcpy(*ppMemory, saved_buffer, size);
|
2003-02-01 01:44:51 +01:00
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrSimpleStructBufferSize [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
void WINAPI NdrSimpleStructBufferSize(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char *pMemory,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
2004-11-30 22:38:57 +01:00
|
|
|
unsigned size = *(const WORD*)(pFormat+2);
|
2003-02-01 01:44:51 +01:00
|
|
|
TRACE("(%p,%p,%p)\n", pStubMsg, pMemory, pFormat);
|
2006-05-10 14:12:30 +02:00
|
|
|
|
|
|
|
ALIGN_LENGTH(pStubMsg->BufferLength, pFormat[1] + 1);
|
|
|
|
|
2007-11-28 16:01:53 +01:00
|
|
|
safe_buffer_length_increment(pStubMsg, size);
|
2003-02-01 01:44:51 +01:00
|
|
|
if (pFormat[0] != RPC_FC_STRUCT)
|
|
|
|
EmbeddedPointerBufferSize(pStubMsg, pMemory, pFormat+4);
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrSimpleStructMemorySize [RPCRT4.@]
|
|
|
|
*/
|
2006-11-09 23:01:58 +01:00
|
|
|
ULONG WINAPI NdrSimpleStructMemorySize(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
PFORMAT_STRING pFormat)
|
2003-02-01 01:44:51 +01:00
|
|
|
{
|
2006-09-25 23:20:20 +02:00
|
|
|
unsigned short size = *(const WORD *)(pFormat+2);
|
2006-05-15 14:34:58 +02:00
|
|
|
|
|
|
|
TRACE("(%p,%p)\n", pStubMsg, pFormat);
|
|
|
|
|
|
|
|
ALIGN_POINTER(pStubMsg->Buffer, pFormat[1] + 1);
|
|
|
|
pStubMsg->MemorySize += size;
|
2007-11-28 16:02:21 +01:00
|
|
|
safe_buffer_increment(pStubMsg, size);
|
2006-05-15 14:34:58 +02:00
|
|
|
|
2003-02-01 01:44:51 +01:00
|
|
|
if (pFormat[0] != RPC_FC_STRUCT)
|
|
|
|
EmbeddedPointerMemorySize(pStubMsg, pFormat+4);
|
2007-12-08 18:46:48 +01:00
|
|
|
return pStubMsg->MemorySize;
|
2003-02-01 01:44:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrSimpleStructFree [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
void WINAPI NdrSimpleStructFree(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char *pMemory,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
|
|
|
TRACE("(%p,%p,%p)\n", pStubMsg, pMemory, pFormat);
|
|
|
|
if (pFormat[0] != RPC_FC_STRUCT)
|
|
|
|
EmbeddedPointerFree(pStubMsg, pMemory, pFormat+4);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-07-04 00:26:43 +02:00
|
|
|
#include "pshpack1.h"
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
unsigned char type;
|
|
|
|
unsigned char flags_type; /* flags in upper nibble, type in lower nibble */
|
|
|
|
ULONG low_value;
|
|
|
|
ULONG high_value;
|
|
|
|
} NDR_RANGE;
|
|
|
|
#include "poppack.h"
|
|
|
|
|
|
|
|
static unsigned long EmbeddedComplexSize(MIDL_STUB_MESSAGE *pStubMsg,
|
2003-02-17 02:48:24 +01:00
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
|
|
|
switch (*pFormat) {
|
|
|
|
case RPC_FC_STRUCT:
|
|
|
|
case RPC_FC_PSTRUCT:
|
|
|
|
case RPC_FC_CSTRUCT:
|
|
|
|
case RPC_FC_BOGUS_STRUCT:
|
2006-07-24 12:45:55 +02:00
|
|
|
case RPC_FC_SMFARRAY:
|
2006-07-14 18:05:39 +02:00
|
|
|
case RPC_FC_SMVARRAY:
|
2008-01-13 21:52:54 +01:00
|
|
|
case RPC_FC_CSTRING:
|
2004-11-30 22:38:57 +01:00
|
|
|
return *(const WORD*)&pFormat[2];
|
2003-02-17 02:48:24 +01:00
|
|
|
case RPC_FC_USER_MARSHAL:
|
2004-11-30 22:38:57 +01:00
|
|
|
return *(const WORD*)&pFormat[4];
|
2008-07-04 00:26:43 +02:00
|
|
|
case RPC_FC_RANGE: {
|
|
|
|
switch (((const NDR_RANGE *)pFormat)->flags_type & 0xf) {
|
|
|
|
case RPC_FC_BYTE:
|
|
|
|
case RPC_FC_CHAR:
|
|
|
|
case RPC_FC_SMALL:
|
|
|
|
case RPC_FC_USMALL:
|
|
|
|
return sizeof(UCHAR);
|
|
|
|
case RPC_FC_WCHAR:
|
|
|
|
case RPC_FC_SHORT:
|
|
|
|
case RPC_FC_USHORT:
|
|
|
|
return sizeof(USHORT);
|
|
|
|
case RPC_FC_LONG:
|
|
|
|
case RPC_FC_ULONG:
|
|
|
|
case RPC_FC_ENUM32:
|
|
|
|
return sizeof(ULONG);
|
|
|
|
case RPC_FC_FLOAT:
|
|
|
|
return sizeof(float);
|
|
|
|
case RPC_FC_DOUBLE:
|
|
|
|
return sizeof(double);
|
|
|
|
case RPC_FC_HYPER:
|
|
|
|
return sizeof(ULONGLONG);
|
|
|
|
case RPC_FC_ERROR_STATUS_T:
|
|
|
|
return sizeof(error_status_t);
|
|
|
|
case RPC_FC_ENUM16:
|
|
|
|
return sizeof(UINT);
|
|
|
|
default:
|
|
|
|
ERR("unknown type 0x%x\n", ((const NDR_RANGE *)pFormat)->flags_type & 0xf);
|
|
|
|
RpcRaiseException(RPC_X_BAD_STUB_DATA);
|
|
|
|
}
|
|
|
|
}
|
2006-04-28 15:28:24 +02:00
|
|
|
case RPC_FC_NON_ENCAPSULATED_UNION:
|
2006-05-15 14:35:07 +02:00
|
|
|
pFormat += 2;
|
|
|
|
if (pStubMsg->fHasNewCorrDesc)
|
|
|
|
pFormat += 6;
|
|
|
|
else
|
|
|
|
pFormat += 4;
|
|
|
|
|
|
|
|
pFormat += *(const SHORT*)pFormat;
|
|
|
|
return *(const SHORT*)pFormat;
|
2006-05-18 04:40:06 +02:00
|
|
|
case RPC_FC_IP:
|
|
|
|
return sizeof(void *);
|
2008-01-13 21:52:54 +01:00
|
|
|
case RPC_FC_WSTRING:
|
|
|
|
return *(const WORD*)&pFormat[2] * 2;
|
2003-02-17 02:48:24 +01:00
|
|
|
default:
|
|
|
|
FIXME("unhandled embedded type %02x\n", *pFormat);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-05-17 15:45:30 +02:00
|
|
|
static unsigned long EmbeddedComplexMemorySize(PMIDL_STUB_MESSAGE pStubMsg,
|
2006-05-15 14:35:07 +02:00
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
|
|
|
NDR_MEMORYSIZE m = NdrMemorySizer[*pFormat & NDR_TABLE_MASK];
|
|
|
|
|
|
|
|
if (!m)
|
|
|
|
{
|
|
|
|
FIXME("no memorysizer for data type=%02x\n", *pFormat);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return m(pStubMsg, pFormat);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-05-17 15:45:30 +02:00
|
|
|
static unsigned char * ComplexMarshall(PMIDL_STUB_MESSAGE pStubMsg,
|
2003-02-01 01:44:51 +01:00
|
|
|
unsigned char *pMemory,
|
|
|
|
PFORMAT_STRING pFormat,
|
|
|
|
PFORMAT_STRING pPointer)
|
|
|
|
{
|
|
|
|
PFORMAT_STRING desc;
|
|
|
|
NDR_MARSHALL m;
|
2003-02-17 02:48:24 +01:00
|
|
|
unsigned long size;
|
2003-02-01 01:44:51 +01:00
|
|
|
|
|
|
|
while (*pFormat != RPC_FC_END) {
|
|
|
|
switch (*pFormat) {
|
2006-06-09 18:24:49 +02:00
|
|
|
case RPC_FC_BYTE:
|
|
|
|
case RPC_FC_CHAR:
|
|
|
|
case RPC_FC_SMALL:
|
|
|
|
case RPC_FC_USMALL:
|
|
|
|
TRACE("byte=%d <= %p\n", *(WORD*)pMemory, pMemory);
|
2007-11-28 16:02:06 +01:00
|
|
|
safe_copy_to_buffer(pStubMsg, pMemory, 1);
|
2006-06-09 18:24:49 +02:00
|
|
|
pMemory += 1;
|
|
|
|
break;
|
|
|
|
case RPC_FC_WCHAR:
|
2003-02-01 01:44:51 +01:00
|
|
|
case RPC_FC_SHORT:
|
|
|
|
case RPC_FC_USHORT:
|
2003-02-17 02:48:24 +01:00
|
|
|
TRACE("short=%d <= %p\n", *(WORD*)pMemory, pMemory);
|
2007-11-28 16:02:06 +01:00
|
|
|
safe_copy_to_buffer(pStubMsg, pMemory, 2);
|
2003-02-01 01:44:51 +01:00
|
|
|
pMemory += 2;
|
|
|
|
break;
|
2008-03-21 00:05:46 +01:00
|
|
|
case RPC_FC_ENUM16:
|
|
|
|
TRACE("enum16=%d <= %p\n", *(DWORD*)pMemory, pMemory);
|
|
|
|
if (32767 < *(DWORD*)pMemory)
|
|
|
|
RpcRaiseException(RPC_X_ENUM_VALUE_OUT_OF_RANGE);
|
|
|
|
safe_copy_to_buffer(pStubMsg, pMemory, 2);
|
|
|
|
pMemory += 4;
|
|
|
|
break;
|
2003-02-01 01:44:51 +01:00
|
|
|
case RPC_FC_LONG:
|
|
|
|
case RPC_FC_ULONG:
|
2005-10-31 22:05:00 +01:00
|
|
|
case RPC_FC_ENUM32:
|
2006-11-09 23:04:48 +01:00
|
|
|
TRACE("long=%d <= %p\n", *(DWORD*)pMemory, pMemory);
|
2007-11-28 16:02:06 +01:00
|
|
|
safe_copy_to_buffer(pStubMsg, pMemory, 4);
|
2003-02-01 01:44:51 +01:00
|
|
|
pMemory += 4;
|
|
|
|
break;
|
2006-07-24 12:45:24 +02:00
|
|
|
case RPC_FC_HYPER:
|
|
|
|
TRACE("longlong=%s <= %p\n", wine_dbgstr_longlong(*(ULONGLONG*)pMemory), pMemory);
|
2007-11-28 16:02:06 +01:00
|
|
|
safe_copy_to_buffer(pStubMsg, pMemory, 8);
|
2006-07-24 12:45:24 +02:00
|
|
|
pMemory += 8;
|
|
|
|
break;
|
2003-02-01 01:44:51 +01:00
|
|
|
case RPC_FC_POINTER:
|
2007-06-25 15:28:01 +02:00
|
|
|
{
|
|
|
|
unsigned char *saved_buffer;
|
|
|
|
int pointer_buffer_mark_set = 0;
|
2003-02-17 02:48:24 +01:00
|
|
|
TRACE("pointer=%p <= %p\n", *(unsigned char**)pMemory, pMemory);
|
2008-07-04 00:28:02 +02:00
|
|
|
TRACE("pStubMsg->Buffer before %p\n", pStubMsg->Buffer);
|
|
|
|
if (*pPointer != RPC_FC_RP)
|
|
|
|
ALIGN_POINTER_CLEAR(pStubMsg->Buffer, 4);
|
2007-06-25 15:28:01 +02:00
|
|
|
saved_buffer = pStubMsg->Buffer;
|
|
|
|
if (pStubMsg->PointerBufferMark)
|
|
|
|
{
|
|
|
|
pStubMsg->Buffer = pStubMsg->PointerBufferMark;
|
|
|
|
pStubMsg->PointerBufferMark = NULL;
|
|
|
|
pointer_buffer_mark_set = 1;
|
|
|
|
}
|
2008-07-04 00:28:02 +02:00
|
|
|
else if (*pPointer != RPC_FC_RP)
|
2007-11-28 16:02:21 +01:00
|
|
|
safe_buffer_increment(pStubMsg, 4); /* for pointer ID */
|
2007-06-25 15:28:01 +02:00
|
|
|
PointerMarshall(pStubMsg, saved_buffer, *(unsigned char**)pMemory, pPointer);
|
|
|
|
if (pointer_buffer_mark_set)
|
|
|
|
{
|
|
|
|
STD_OVERFLOW_CHECK(pStubMsg);
|
|
|
|
pStubMsg->PointerBufferMark = pStubMsg->Buffer;
|
2008-07-04 00:28:02 +02:00
|
|
|
pStubMsg->Buffer = saved_buffer;
|
|
|
|
if (*pPointer != RPC_FC_RP)
|
|
|
|
safe_buffer_increment(pStubMsg, 4); /* for pointer ID */
|
2007-06-25 15:28:01 +02:00
|
|
|
}
|
2008-07-04 00:28:02 +02:00
|
|
|
TRACE("pStubMsg->Buffer after %p\n", pStubMsg->Buffer);
|
2003-02-01 01:44:51 +01:00
|
|
|
pPointer += 4;
|
|
|
|
pMemory += 4;
|
|
|
|
break;
|
2007-06-25 15:28:01 +02:00
|
|
|
}
|
2003-02-01 01:44:51 +01:00
|
|
|
case RPC_FC_ALIGNM4:
|
2007-12-19 15:53:12 +01:00
|
|
|
ALIGN_POINTER(pMemory, 4);
|
2003-02-01 01:44:51 +01:00
|
|
|
break;
|
|
|
|
case RPC_FC_ALIGNM8:
|
2007-12-19 15:53:12 +01:00
|
|
|
ALIGN_POINTER(pMemory, 8);
|
2003-02-01 01:44:51 +01:00
|
|
|
break;
|
2006-07-17 21:19:14 +02:00
|
|
|
case RPC_FC_STRUCTPAD1:
|
2005-11-28 11:28:45 +01:00
|
|
|
case RPC_FC_STRUCTPAD2:
|
2006-07-17 21:19:14 +02:00
|
|
|
case RPC_FC_STRUCTPAD3:
|
|
|
|
case RPC_FC_STRUCTPAD4:
|
|
|
|
case RPC_FC_STRUCTPAD5:
|
|
|
|
case RPC_FC_STRUCTPAD6:
|
|
|
|
case RPC_FC_STRUCTPAD7:
|
|
|
|
pMemory += *pFormat - RPC_FC_STRUCTPAD1 + 1;
|
2005-11-28 11:28:45 +01:00
|
|
|
break;
|
2003-02-01 01:44:51 +01:00
|
|
|
case RPC_FC_EMBEDDED_COMPLEX:
|
|
|
|
pMemory += pFormat[1];
|
|
|
|
pFormat += 2;
|
2004-11-30 22:38:57 +01:00
|
|
|
desc = pFormat + *(const SHORT*)pFormat;
|
2003-02-17 02:48:24 +01:00
|
|
|
size = EmbeddedComplexSize(pStubMsg, desc);
|
|
|
|
TRACE("embedded complex (size=%ld) <= %p\n", size, pMemory);
|
2003-02-01 01:44:51 +01:00
|
|
|
m = NdrMarshaller[*desc & NDR_TABLE_MASK];
|
2007-06-25 15:29:52 +02:00
|
|
|
if (m)
|
|
|
|
{
|
|
|
|
/* for some reason interface pointers aren't generated as
|
|
|
|
* RPC_FC_POINTER, but instead as RPC_FC_EMBEDDED_COMPLEX, yet
|
|
|
|
* they still need the derefencing treatment that pointers are
|
|
|
|
* given */
|
|
|
|
if (*desc == RPC_FC_IP)
|
|
|
|
m(pStubMsg, *(unsigned char **)pMemory, desc);
|
|
|
|
else
|
|
|
|
m(pStubMsg, pMemory, desc);
|
|
|
|
}
|
2003-02-01 01:44:51 +01:00
|
|
|
else FIXME("no marshaller for embedded type %02x\n", *desc);
|
2003-02-17 02:48:24 +01:00
|
|
|
pMemory += size;
|
2003-02-01 01:44:51 +01:00
|
|
|
pFormat += 2;
|
|
|
|
continue;
|
|
|
|
case RPC_FC_PAD:
|
|
|
|
break;
|
|
|
|
default:
|
2006-07-24 12:45:24 +02:00
|
|
|
FIXME("unhandled format 0x%02x\n", *pFormat);
|
2003-02-01 01:44:51 +01:00
|
|
|
}
|
|
|
|
pFormat++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return pMemory;
|
|
|
|
}
|
|
|
|
|
2006-05-17 15:45:30 +02:00
|
|
|
static unsigned char * ComplexUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,
|
2003-02-01 01:44:51 +01:00
|
|
|
unsigned char *pMemory,
|
|
|
|
PFORMAT_STRING pFormat,
|
2008-06-26 09:50:53 +02:00
|
|
|
PFORMAT_STRING pPointer,
|
|
|
|
unsigned char fMustAlloc)
|
2003-02-01 01:44:51 +01:00
|
|
|
{
|
|
|
|
PFORMAT_STRING desc;
|
|
|
|
NDR_UNMARSHALL m;
|
2003-02-17 02:48:24 +01:00
|
|
|
unsigned long size;
|
2003-02-01 01:44:51 +01:00
|
|
|
|
|
|
|
while (*pFormat != RPC_FC_END) {
|
|
|
|
switch (*pFormat) {
|
2006-06-09 18:24:49 +02:00
|
|
|
case RPC_FC_BYTE:
|
|
|
|
case RPC_FC_CHAR:
|
|
|
|
case RPC_FC_SMALL:
|
|
|
|
case RPC_FC_USMALL:
|
2007-11-28 16:01:53 +01:00
|
|
|
safe_copy_from_buffer(pStubMsg, pMemory, 1);
|
2006-06-09 18:24:49 +02:00
|
|
|
TRACE("byte=%d => %p\n", *(WORD*)pMemory, pMemory);
|
|
|
|
pMemory += 1;
|
|
|
|
break;
|
|
|
|
case RPC_FC_WCHAR:
|
2003-02-01 01:44:51 +01:00
|
|
|
case RPC_FC_SHORT:
|
|
|
|
case RPC_FC_USHORT:
|
2007-11-28 16:01:53 +01:00
|
|
|
safe_copy_from_buffer(pStubMsg, pMemory, 2);
|
2003-02-17 02:48:24 +01:00
|
|
|
TRACE("short=%d => %p\n", *(WORD*)pMemory, pMemory);
|
2003-02-01 01:44:51 +01:00
|
|
|
pMemory += 2;
|
|
|
|
break;
|
2008-03-21 00:05:46 +01:00
|
|
|
case RPC_FC_ENUM16:
|
|
|
|
safe_copy_from_buffer(pStubMsg, pMemory, 2);
|
|
|
|
*(DWORD*)pMemory &= 0xffff;
|
|
|
|
TRACE("enum16=%d => %p\n", *(DWORD*)pMemory, pMemory);
|
|
|
|
if (32767 < *(DWORD*)pMemory)
|
|
|
|
RpcRaiseException(RPC_X_ENUM_VALUE_OUT_OF_RANGE);
|
|
|
|
pMemory += 4;
|
|
|
|
break;
|
2003-02-01 01:44:51 +01:00
|
|
|
case RPC_FC_LONG:
|
|
|
|
case RPC_FC_ULONG:
|
2005-10-31 22:05:00 +01:00
|
|
|
case RPC_FC_ENUM32:
|
2007-11-28 16:01:53 +01:00
|
|
|
safe_copy_from_buffer(pStubMsg, pMemory, 4);
|
2006-11-09 23:04:48 +01:00
|
|
|
TRACE("long=%d => %p\n", *(DWORD*)pMemory, pMemory);
|
2003-02-01 01:44:51 +01:00
|
|
|
pMemory += 4;
|
|
|
|
break;
|
2006-07-24 12:45:24 +02:00
|
|
|
case RPC_FC_HYPER:
|
2007-11-28 16:01:53 +01:00
|
|
|
safe_copy_from_buffer(pStubMsg, pMemory, 8);
|
2006-07-24 12:45:24 +02:00
|
|
|
TRACE("longlong=%s => %p\n", wine_dbgstr_longlong(*(ULONGLONG*)pMemory), pMemory);
|
|
|
|
pMemory += 8;
|
|
|
|
break;
|
2003-02-01 01:44:51 +01:00
|
|
|
case RPC_FC_POINTER:
|
2007-06-25 15:28:01 +02:00
|
|
|
{
|
|
|
|
unsigned char *saved_buffer;
|
|
|
|
int pointer_buffer_mark_set = 0;
|
2003-02-17 02:48:24 +01:00
|
|
|
TRACE("pointer => %p\n", pMemory);
|
2008-07-04 00:28:02 +02:00
|
|
|
if (*pPointer != RPC_FC_RP)
|
|
|
|
ALIGN_POINTER(pStubMsg->Buffer, 4);
|
2007-06-25 15:28:01 +02:00
|
|
|
saved_buffer = pStubMsg->Buffer;
|
|
|
|
if (pStubMsg->PointerBufferMark)
|
|
|
|
{
|
|
|
|
pStubMsg->Buffer = pStubMsg->PointerBufferMark;
|
|
|
|
pStubMsg->PointerBufferMark = NULL;
|
|
|
|
pointer_buffer_mark_set = 1;
|
|
|
|
}
|
2008-07-04 00:28:02 +02:00
|
|
|
else if (*pPointer != RPC_FC_RP)
|
2007-11-28 16:02:21 +01:00
|
|
|
safe_buffer_increment(pStubMsg, 4); /* for pointer ID */
|
2007-06-25 15:28:01 +02:00
|
|
|
|
2008-06-26 09:50:53 +02:00
|
|
|
PointerUnmarshall(pStubMsg, saved_buffer, (unsigned char**)pMemory, *(unsigned char**)pMemory, pPointer, fMustAlloc);
|
2007-06-25 15:28:01 +02:00
|
|
|
if (pointer_buffer_mark_set)
|
|
|
|
{
|
|
|
|
STD_OVERFLOW_CHECK(pStubMsg);
|
|
|
|
pStubMsg->PointerBufferMark = pStubMsg->Buffer;
|
2008-07-04 00:28:02 +02:00
|
|
|
pStubMsg->Buffer = saved_buffer;
|
|
|
|
if (*pPointer != RPC_FC_RP)
|
|
|
|
safe_buffer_increment(pStubMsg, 4); /* for pointer ID */
|
2007-06-25 15:28:01 +02:00
|
|
|
}
|
2003-02-01 01:44:51 +01:00
|
|
|
pPointer += 4;
|
|
|
|
pMemory += 4;
|
|
|
|
break;
|
2007-06-25 15:28:01 +02:00
|
|
|
}
|
2003-02-01 01:44:51 +01:00
|
|
|
case RPC_FC_ALIGNM4:
|
2007-12-19 15:53:12 +01:00
|
|
|
ALIGN_POINTER_CLEAR(pMemory, 4);
|
2003-02-01 01:44:51 +01:00
|
|
|
break;
|
|
|
|
case RPC_FC_ALIGNM8:
|
2007-12-19 15:53:12 +01:00
|
|
|
ALIGN_POINTER_CLEAR(pMemory, 8);
|
2003-02-01 01:44:51 +01:00
|
|
|
break;
|
2006-07-17 21:19:14 +02:00
|
|
|
case RPC_FC_STRUCTPAD1:
|
2005-11-28 11:28:45 +01:00
|
|
|
case RPC_FC_STRUCTPAD2:
|
2006-07-17 21:19:14 +02:00
|
|
|
case RPC_FC_STRUCTPAD3:
|
|
|
|
case RPC_FC_STRUCTPAD4:
|
|
|
|
case RPC_FC_STRUCTPAD5:
|
|
|
|
case RPC_FC_STRUCTPAD6:
|
|
|
|
case RPC_FC_STRUCTPAD7:
|
2007-12-19 15:53:12 +01:00
|
|
|
memset(pMemory, 0, *pFormat - RPC_FC_STRUCTPAD1 + 1);
|
2006-07-17 21:19:14 +02:00
|
|
|
pMemory += *pFormat - RPC_FC_STRUCTPAD1 + 1;
|
2005-11-28 11:28:45 +01:00
|
|
|
break;
|
2003-02-01 01:44:51 +01:00
|
|
|
case RPC_FC_EMBEDDED_COMPLEX:
|
|
|
|
pMemory += pFormat[1];
|
|
|
|
pFormat += 2;
|
2004-11-30 22:38:57 +01:00
|
|
|
desc = pFormat + *(const SHORT*)pFormat;
|
2003-02-17 02:48:24 +01:00
|
|
|
size = EmbeddedComplexSize(pStubMsg, desc);
|
|
|
|
TRACE("embedded complex (size=%ld) => %p\n", size, pMemory);
|
2003-02-01 01:44:51 +01:00
|
|
|
m = NdrUnmarshaller[*desc & NDR_TABLE_MASK];
|
2007-06-25 15:29:52 +02:00
|
|
|
if (m)
|
|
|
|
{
|
|
|
|
/* for some reason interface pointers aren't generated as
|
|
|
|
* RPC_FC_POINTER, but instead as RPC_FC_EMBEDDED_COMPLEX, yet
|
|
|
|
* they still need the derefencing treatment that pointers are
|
|
|
|
* given */
|
|
|
|
if (*desc == RPC_FC_IP)
|
|
|
|
m(pStubMsg, (unsigned char **)pMemory, desc, FALSE);
|
|
|
|
else
|
|
|
|
m(pStubMsg, &pMemory, desc, FALSE);
|
|
|
|
}
|
2003-02-01 01:44:51 +01:00
|
|
|
else FIXME("no unmarshaller for embedded type %02x\n", *desc);
|
2003-02-17 02:48:24 +01:00
|
|
|
pMemory += size;
|
2003-02-01 01:44:51 +01:00
|
|
|
pFormat += 2;
|
|
|
|
continue;
|
|
|
|
case RPC_FC_PAD:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
FIXME("unhandled format %d\n", *pFormat);
|
|
|
|
}
|
|
|
|
pFormat++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return pMemory;
|
|
|
|
}
|
|
|
|
|
2006-05-17 15:45:30 +02:00
|
|
|
static unsigned char * ComplexBufferSize(PMIDL_STUB_MESSAGE pStubMsg,
|
2003-02-01 01:44:51 +01:00
|
|
|
unsigned char *pMemory,
|
|
|
|
PFORMAT_STRING pFormat,
|
|
|
|
PFORMAT_STRING pPointer)
|
|
|
|
{
|
|
|
|
PFORMAT_STRING desc;
|
|
|
|
NDR_BUFFERSIZE m;
|
2003-02-17 02:48:24 +01:00
|
|
|
unsigned long size;
|
2003-02-01 01:44:51 +01:00
|
|
|
|
|
|
|
while (*pFormat != RPC_FC_END) {
|
|
|
|
switch (*pFormat) {
|
2006-06-09 18:24:49 +02:00
|
|
|
case RPC_FC_BYTE:
|
|
|
|
case RPC_FC_CHAR:
|
|
|
|
case RPC_FC_SMALL:
|
|
|
|
case RPC_FC_USMALL:
|
2007-11-28 16:01:53 +01:00
|
|
|
safe_buffer_length_increment(pStubMsg, 1);
|
2006-06-09 18:24:49 +02:00
|
|
|
pMemory += 1;
|
|
|
|
break;
|
|
|
|
case RPC_FC_WCHAR:
|
2003-02-01 01:44:51 +01:00
|
|
|
case RPC_FC_SHORT:
|
|
|
|
case RPC_FC_USHORT:
|
2007-11-28 16:01:53 +01:00
|
|
|
safe_buffer_length_increment(pStubMsg, 2);
|
2003-02-01 01:44:51 +01:00
|
|
|
pMemory += 2;
|
|
|
|
break;
|
2008-03-21 00:05:46 +01:00
|
|
|
case RPC_FC_ENUM16:
|
|
|
|
safe_buffer_length_increment(pStubMsg, 2);
|
|
|
|
pMemory += 4;
|
|
|
|
break;
|
2003-02-01 01:44:51 +01:00
|
|
|
case RPC_FC_LONG:
|
|
|
|
case RPC_FC_ULONG:
|
2005-10-31 22:05:00 +01:00
|
|
|
case RPC_FC_ENUM32:
|
2007-11-28 16:01:53 +01:00
|
|
|
safe_buffer_length_increment(pStubMsg, 4);
|
2003-02-01 01:44:51 +01:00
|
|
|
pMemory += 4;
|
|
|
|
break;
|
2006-07-24 12:45:24 +02:00
|
|
|
case RPC_FC_HYPER:
|
2007-11-28 16:01:53 +01:00
|
|
|
safe_buffer_length_increment(pStubMsg, 8);
|
2006-07-24 12:45:24 +02:00
|
|
|
pMemory += 8;
|
|
|
|
break;
|
2003-02-01 01:44:51 +01:00
|
|
|
case RPC_FC_POINTER:
|
2007-06-25 15:28:01 +02:00
|
|
|
if (!pStubMsg->IgnoreEmbeddedPointers)
|
|
|
|
{
|
|
|
|
int saved_buffer_length = pStubMsg->BufferLength;
|
|
|
|
pStubMsg->BufferLength = pStubMsg->PointerLength;
|
|
|
|
pStubMsg->PointerLength = 0;
|
|
|
|
if(!pStubMsg->BufferLength)
|
|
|
|
ERR("BufferLength == 0??\n");
|
|
|
|
PointerBufferSize(pStubMsg, *(unsigned char**)pMemory, pPointer);
|
|
|
|
pStubMsg->PointerLength = pStubMsg->BufferLength;
|
|
|
|
pStubMsg->BufferLength = saved_buffer_length;
|
|
|
|
}
|
2008-07-04 00:28:02 +02:00
|
|
|
if (*pPointer != RPC_FC_RP)
|
|
|
|
{
|
|
|
|
ALIGN_LENGTH(pStubMsg->BufferLength, 4);
|
|
|
|
safe_buffer_length_increment(pStubMsg, 4);
|
|
|
|
}
|
2003-02-01 01:44:51 +01:00
|
|
|
pPointer += 4;
|
|
|
|
pMemory += 4;
|
|
|
|
break;
|
|
|
|
case RPC_FC_ALIGNM4:
|
2006-05-10 14:12:07 +02:00
|
|
|
ALIGN_POINTER(pMemory, 4);
|
2003-02-01 01:44:51 +01:00
|
|
|
break;
|
|
|
|
case RPC_FC_ALIGNM8:
|
2006-05-10 14:12:07 +02:00
|
|
|
ALIGN_POINTER(pMemory, 8);
|
2003-02-01 01:44:51 +01:00
|
|
|
break;
|
2006-07-17 21:19:14 +02:00
|
|
|
case RPC_FC_STRUCTPAD1:
|
2005-11-28 11:28:45 +01:00
|
|
|
case RPC_FC_STRUCTPAD2:
|
2006-07-17 21:19:14 +02:00
|
|
|
case RPC_FC_STRUCTPAD3:
|
|
|
|
case RPC_FC_STRUCTPAD4:
|
|
|
|
case RPC_FC_STRUCTPAD5:
|
|
|
|
case RPC_FC_STRUCTPAD6:
|
|
|
|
case RPC_FC_STRUCTPAD7:
|
|
|
|
pMemory += *pFormat - RPC_FC_STRUCTPAD1 + 1;
|
2005-11-28 11:28:45 +01:00
|
|
|
break;
|
2003-02-01 01:44:51 +01:00
|
|
|
case RPC_FC_EMBEDDED_COMPLEX:
|
|
|
|
pMemory += pFormat[1];
|
|
|
|
pFormat += 2;
|
2004-11-30 22:38:57 +01:00
|
|
|
desc = pFormat + *(const SHORT*)pFormat;
|
2003-02-17 02:48:24 +01:00
|
|
|
size = EmbeddedComplexSize(pStubMsg, desc);
|
2003-02-01 01:44:51 +01:00
|
|
|
m = NdrBufferSizer[*desc & NDR_TABLE_MASK];
|
2007-06-25 15:29:52 +02:00
|
|
|
if (m)
|
|
|
|
{
|
|
|
|
/* for some reason interface pointers aren't generated as
|
|
|
|
* RPC_FC_POINTER, but instead as RPC_FC_EMBEDDED_COMPLEX, yet
|
|
|
|
* they still need the derefencing treatment that pointers are
|
|
|
|
* given */
|
|
|
|
if (*desc == RPC_FC_IP)
|
|
|
|
m(pStubMsg, *(unsigned char **)pMemory, desc);
|
|
|
|
else
|
|
|
|
m(pStubMsg, pMemory, desc);
|
|
|
|
}
|
2003-02-01 01:44:51 +01:00
|
|
|
else FIXME("no buffersizer for embedded type %02x\n", *desc);
|
2003-02-17 02:48:24 +01:00
|
|
|
pMemory += size;
|
2003-02-01 01:44:51 +01:00
|
|
|
pFormat += 2;
|
|
|
|
continue;
|
|
|
|
case RPC_FC_PAD:
|
|
|
|
break;
|
|
|
|
default:
|
2006-07-24 12:45:24 +02:00
|
|
|
FIXME("unhandled format 0x%02x\n", *pFormat);
|
2003-02-01 01:44:51 +01:00
|
|
|
}
|
|
|
|
pFormat++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return pMemory;
|
|
|
|
}
|
|
|
|
|
2006-05-17 15:45:30 +02:00
|
|
|
static unsigned char * ComplexFree(PMIDL_STUB_MESSAGE pStubMsg,
|
2003-02-01 01:44:51 +01:00
|
|
|
unsigned char *pMemory,
|
|
|
|
PFORMAT_STRING pFormat,
|
|
|
|
PFORMAT_STRING pPointer)
|
|
|
|
{
|
|
|
|
PFORMAT_STRING desc;
|
|
|
|
NDR_FREE m;
|
2003-02-17 02:48:24 +01:00
|
|
|
unsigned long size;
|
2003-02-01 01:44:51 +01:00
|
|
|
|
|
|
|
while (*pFormat != RPC_FC_END) {
|
|
|
|
switch (*pFormat) {
|
2006-06-09 18:24:49 +02:00
|
|
|
case RPC_FC_BYTE:
|
|
|
|
case RPC_FC_CHAR:
|
|
|
|
case RPC_FC_SMALL:
|
|
|
|
case RPC_FC_USMALL:
|
|
|
|
pMemory += 1;
|
|
|
|
break;
|
|
|
|
case RPC_FC_WCHAR:
|
2003-02-01 01:44:51 +01:00
|
|
|
case RPC_FC_SHORT:
|
|
|
|
case RPC_FC_USHORT:
|
|
|
|
pMemory += 2;
|
|
|
|
break;
|
|
|
|
case RPC_FC_LONG:
|
|
|
|
case RPC_FC_ULONG:
|
2008-03-21 00:05:46 +01:00
|
|
|
case RPC_FC_ENUM16:
|
2005-10-31 22:05:00 +01:00
|
|
|
case RPC_FC_ENUM32:
|
2003-02-01 01:44:51 +01:00
|
|
|
pMemory += 4;
|
|
|
|
break;
|
2006-07-24 12:45:24 +02:00
|
|
|
case RPC_FC_HYPER:
|
|
|
|
pMemory += 8;
|
|
|
|
break;
|
2003-02-01 01:44:51 +01:00
|
|
|
case RPC_FC_POINTER:
|
2003-02-17 02:48:24 +01:00
|
|
|
NdrPointerFree(pStubMsg, *(unsigned char**)pMemory, pPointer);
|
2003-02-01 01:44:51 +01:00
|
|
|
pPointer += 4;
|
|
|
|
pMemory += 4;
|
|
|
|
break;
|
|
|
|
case RPC_FC_ALIGNM4:
|
2006-05-10 14:12:07 +02:00
|
|
|
ALIGN_POINTER(pMemory, 4);
|
2003-02-01 01:44:51 +01:00
|
|
|
break;
|
|
|
|
case RPC_FC_ALIGNM8:
|
2006-05-10 14:12:07 +02:00
|
|
|
ALIGN_POINTER(pMemory, 8);
|
2003-02-01 01:44:51 +01:00
|
|
|
break;
|
2006-07-17 21:19:14 +02:00
|
|
|
case RPC_FC_STRUCTPAD1:
|
2005-11-28 11:28:45 +01:00
|
|
|
case RPC_FC_STRUCTPAD2:
|
2006-07-17 21:19:14 +02:00
|
|
|
case RPC_FC_STRUCTPAD3:
|
|
|
|
case RPC_FC_STRUCTPAD4:
|
|
|
|
case RPC_FC_STRUCTPAD5:
|
|
|
|
case RPC_FC_STRUCTPAD6:
|
|
|
|
case RPC_FC_STRUCTPAD7:
|
|
|
|
pMemory += *pFormat - RPC_FC_STRUCTPAD1 + 1;
|
2005-11-28 11:28:45 +01:00
|
|
|
break;
|
2003-02-01 01:44:51 +01:00
|
|
|
case RPC_FC_EMBEDDED_COMPLEX:
|
|
|
|
pMemory += pFormat[1];
|
|
|
|
pFormat += 2;
|
2004-11-30 22:38:57 +01:00
|
|
|
desc = pFormat + *(const SHORT*)pFormat;
|
2003-02-17 02:48:24 +01:00
|
|
|
size = EmbeddedComplexSize(pStubMsg, desc);
|
2003-02-01 01:44:51 +01:00
|
|
|
m = NdrFreer[*desc & NDR_TABLE_MASK];
|
2007-06-25 15:29:52 +02:00
|
|
|
if (m)
|
|
|
|
{
|
|
|
|
/* for some reason interface pointers aren't generated as
|
|
|
|
* RPC_FC_POINTER, but instead as RPC_FC_EMBEDDED_COMPLEX, yet
|
|
|
|
* they still need the derefencing treatment that pointers are
|
|
|
|
* given */
|
|
|
|
if (*desc == RPC_FC_IP)
|
|
|
|
m(pStubMsg, *(unsigned char **)pMemory, desc);
|
|
|
|
else
|
|
|
|
m(pStubMsg, pMemory, desc);
|
|
|
|
}
|
2003-02-17 02:48:24 +01:00
|
|
|
pMemory += size;
|
2003-02-01 01:44:51 +01:00
|
|
|
pFormat += 2;
|
|
|
|
continue;
|
|
|
|
case RPC_FC_PAD:
|
|
|
|
break;
|
|
|
|
default:
|
2006-07-24 12:45:24 +02:00
|
|
|
FIXME("unhandled format 0x%02x\n", *pFormat);
|
2003-02-01 01:44:51 +01:00
|
|
|
}
|
|
|
|
pFormat++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return pMemory;
|
|
|
|
}
|
|
|
|
|
2006-05-17 15:45:30 +02:00
|
|
|
static unsigned long ComplexStructMemorySize(PMIDL_STUB_MESSAGE pStubMsg,
|
2008-07-04 00:27:14 +02:00
|
|
|
PFORMAT_STRING pFormat,
|
|
|
|
PFORMAT_STRING pPointer)
|
2003-02-01 01:44:51 +01:00
|
|
|
{
|
|
|
|
PFORMAT_STRING desc;
|
|
|
|
unsigned long size = 0;
|
|
|
|
|
|
|
|
while (*pFormat != RPC_FC_END) {
|
|
|
|
switch (*pFormat) {
|
2006-06-09 18:24:49 +02:00
|
|
|
case RPC_FC_BYTE:
|
|
|
|
case RPC_FC_CHAR:
|
|
|
|
case RPC_FC_SMALL:
|
|
|
|
case RPC_FC_USMALL:
|
|
|
|
size += 1;
|
2007-11-28 16:02:21 +01:00
|
|
|
safe_buffer_increment(pStubMsg, 1);
|
2006-06-09 18:24:49 +02:00
|
|
|
break;
|
|
|
|
case RPC_FC_WCHAR:
|
2003-02-01 01:44:51 +01:00
|
|
|
case RPC_FC_SHORT:
|
|
|
|
case RPC_FC_USHORT:
|
|
|
|
size += 2;
|
2007-11-28 16:02:21 +01:00
|
|
|
safe_buffer_increment(pStubMsg, 2);
|
2003-02-01 01:44:51 +01:00
|
|
|
break;
|
2008-03-21 00:05:46 +01:00
|
|
|
case RPC_FC_ENUM16:
|
|
|
|
size += 4;
|
|
|
|
safe_buffer_increment(pStubMsg, 2);
|
|
|
|
break;
|
2003-02-01 01:44:51 +01:00
|
|
|
case RPC_FC_LONG:
|
|
|
|
case RPC_FC_ULONG:
|
2006-05-31 13:44:13 +02:00
|
|
|
case RPC_FC_ENUM32:
|
2003-02-01 01:44:51 +01:00
|
|
|
size += 4;
|
2007-11-28 16:02:21 +01:00
|
|
|
safe_buffer_increment(pStubMsg, 4);
|
2003-02-01 01:44:51 +01:00
|
|
|
break;
|
2006-07-24 12:45:24 +02:00
|
|
|
case RPC_FC_HYPER:
|
|
|
|
size += 8;
|
2007-11-28 16:02:21 +01:00
|
|
|
safe_buffer_increment(pStubMsg, 8);
|
2006-07-24 12:45:24 +02:00
|
|
|
break;
|
2003-02-01 01:44:51 +01:00
|
|
|
case RPC_FC_POINTER:
|
2008-07-04 00:27:14 +02:00
|
|
|
{
|
|
|
|
unsigned char *saved_buffer;
|
|
|
|
int pointer_buffer_mark_set = 0;
|
2008-07-04 00:28:02 +02:00
|
|
|
if (*pPointer != RPC_FC_RP)
|
|
|
|
ALIGN_POINTER(pStubMsg->Buffer, 4);
|
2008-07-04 00:27:14 +02:00
|
|
|
saved_buffer = pStubMsg->Buffer;
|
|
|
|
if (pStubMsg->PointerBufferMark)
|
|
|
|
{
|
|
|
|
pStubMsg->Buffer = pStubMsg->PointerBufferMark;
|
|
|
|
pStubMsg->PointerBufferMark = NULL;
|
|
|
|
pointer_buffer_mark_set = 1;
|
|
|
|
}
|
2008-07-04 00:28:02 +02:00
|
|
|
else if (*pPointer != RPC_FC_RP)
|
2008-07-04 00:27:14 +02:00
|
|
|
safe_buffer_increment(pStubMsg, 4); /* for pointer ID */
|
|
|
|
|
2007-06-25 15:28:01 +02:00
|
|
|
if (!pStubMsg->IgnoreEmbeddedPointers)
|
2008-07-04 00:27:14 +02:00
|
|
|
PointerMemorySize(pStubMsg, saved_buffer, pPointer);
|
|
|
|
if (pointer_buffer_mark_set)
|
|
|
|
{
|
|
|
|
STD_OVERFLOW_CHECK(pStubMsg);
|
|
|
|
pStubMsg->PointerBufferMark = pStubMsg->Buffer;
|
2008-07-04 00:28:02 +02:00
|
|
|
pStubMsg->Buffer = saved_buffer;
|
|
|
|
if (*pPointer != RPC_FC_RP)
|
|
|
|
safe_buffer_increment(pStubMsg, 4); /* for pointer ID */
|
2008-07-04 00:27:14 +02:00
|
|
|
}
|
|
|
|
pPointer += 4;
|
|
|
|
size += 4;
|
2003-02-01 01:44:51 +01:00
|
|
|
break;
|
2008-07-04 00:27:14 +02:00
|
|
|
}
|
2003-02-01 01:44:51 +01:00
|
|
|
case RPC_FC_ALIGNM4:
|
2006-05-10 14:12:07 +02:00
|
|
|
ALIGN_LENGTH(size, 4);
|
2006-05-13 18:00:09 +02:00
|
|
|
ALIGN_POINTER(pStubMsg->Buffer, 4);
|
2003-02-01 01:44:51 +01:00
|
|
|
break;
|
|
|
|
case RPC_FC_ALIGNM8:
|
2006-05-10 14:12:07 +02:00
|
|
|
ALIGN_LENGTH(size, 8);
|
2006-05-13 18:00:09 +02:00
|
|
|
ALIGN_POINTER(pStubMsg->Buffer, 8);
|
2003-02-01 01:44:51 +01:00
|
|
|
break;
|
2006-07-17 21:19:14 +02:00
|
|
|
case RPC_FC_STRUCTPAD1:
|
2005-11-28 11:28:45 +01:00
|
|
|
case RPC_FC_STRUCTPAD2:
|
2006-07-17 21:19:14 +02:00
|
|
|
case RPC_FC_STRUCTPAD3:
|
|
|
|
case RPC_FC_STRUCTPAD4:
|
|
|
|
case RPC_FC_STRUCTPAD5:
|
|
|
|
case RPC_FC_STRUCTPAD6:
|
|
|
|
case RPC_FC_STRUCTPAD7:
|
|
|
|
size += *pFormat - RPC_FC_STRUCTPAD1 + 1;
|
2005-11-28 11:28:45 +01:00
|
|
|
break;
|
2003-02-01 01:44:51 +01:00
|
|
|
case RPC_FC_EMBEDDED_COMPLEX:
|
|
|
|
size += pFormat[1];
|
|
|
|
pFormat += 2;
|
2004-11-30 22:38:57 +01:00
|
|
|
desc = pFormat + *(const SHORT*)pFormat;
|
2006-05-15 14:35:07 +02:00
|
|
|
size += EmbeddedComplexMemorySize(pStubMsg, desc);
|
2003-02-01 01:44:51 +01:00
|
|
|
pFormat += 2;
|
|
|
|
continue;
|
|
|
|
case RPC_FC_PAD:
|
|
|
|
break;
|
|
|
|
default:
|
2006-07-24 12:45:24 +02:00
|
|
|
FIXME("unhandled format 0x%02x\n", *pFormat);
|
2003-02-01 01:44:51 +01:00
|
|
|
}
|
|
|
|
pFormat++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
2008-01-14 12:54:32 +01:00
|
|
|
unsigned long ComplexStructSize(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
PFORMAT_STRING pFormat)
|
2008-01-14 12:54:12 +01:00
|
|
|
{
|
|
|
|
PFORMAT_STRING desc;
|
|
|
|
unsigned long size = 0;
|
|
|
|
|
|
|
|
while (*pFormat != RPC_FC_END) {
|
|
|
|
switch (*pFormat) {
|
|
|
|
case RPC_FC_BYTE:
|
|
|
|
case RPC_FC_CHAR:
|
|
|
|
case RPC_FC_SMALL:
|
|
|
|
case RPC_FC_USMALL:
|
|
|
|
size += 1;
|
|
|
|
break;
|
|
|
|
case RPC_FC_WCHAR:
|
|
|
|
case RPC_FC_SHORT:
|
|
|
|
case RPC_FC_USHORT:
|
|
|
|
size += 2;
|
|
|
|
break;
|
|
|
|
case RPC_FC_LONG:
|
|
|
|
case RPC_FC_ULONG:
|
2008-03-21 00:05:46 +01:00
|
|
|
case RPC_FC_ENUM16:
|
2008-01-14 12:54:12 +01:00
|
|
|
case RPC_FC_ENUM32:
|
|
|
|
size += 4;
|
|
|
|
break;
|
|
|
|
case RPC_FC_HYPER:
|
|
|
|
size += 8;
|
|
|
|
break;
|
|
|
|
case RPC_FC_POINTER:
|
|
|
|
size += sizeof(void *);
|
|
|
|
break;
|
|
|
|
case RPC_FC_ALIGNM4:
|
|
|
|
ALIGN_LENGTH(size, 4);
|
|
|
|
break;
|
|
|
|
case RPC_FC_ALIGNM8:
|
|
|
|
ALIGN_LENGTH(size, 8);
|
|
|
|
break;
|
|
|
|
case RPC_FC_STRUCTPAD1:
|
|
|
|
case RPC_FC_STRUCTPAD2:
|
|
|
|
case RPC_FC_STRUCTPAD3:
|
|
|
|
case RPC_FC_STRUCTPAD4:
|
|
|
|
case RPC_FC_STRUCTPAD5:
|
|
|
|
case RPC_FC_STRUCTPAD6:
|
|
|
|
case RPC_FC_STRUCTPAD7:
|
|
|
|
size += *pFormat - RPC_FC_STRUCTPAD1 + 1;
|
|
|
|
break;
|
|
|
|
case RPC_FC_EMBEDDED_COMPLEX:
|
|
|
|
size += pFormat[1];
|
|
|
|
pFormat += 2;
|
|
|
|
desc = pFormat + *(const SHORT*)pFormat;
|
|
|
|
size += EmbeddedComplexSize(pStubMsg, desc);
|
|
|
|
pFormat += 2;
|
|
|
|
continue;
|
|
|
|
case RPC_FC_PAD:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
FIXME("unhandled format 0x%02x\n", *pFormat);
|
|
|
|
}
|
|
|
|
pFormat++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
2003-02-01 01:44:51 +01:00
|
|
|
/***********************************************************************
|
|
|
|
* NdrComplexStructMarshall [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
unsigned char * WINAPI NdrComplexStructMarshall(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char *pMemory,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
|
|
|
PFORMAT_STRING conf_array = NULL;
|
|
|
|
PFORMAT_STRING pointer_desc = NULL;
|
|
|
|
unsigned char *OldMemory = pStubMsg->Memory;
|
2007-06-25 15:28:01 +02:00
|
|
|
int pointer_buffer_mark_set = 0;
|
2003-02-01 01:44:51 +01:00
|
|
|
|
|
|
|
TRACE("(%p,%p,%p)\n", pStubMsg, pMemory, pFormat);
|
|
|
|
|
2007-06-25 15:28:01 +02:00
|
|
|
if (!pStubMsg->PointerBufferMark)
|
|
|
|
{
|
|
|
|
int saved_ignore_embedded = pStubMsg->IgnoreEmbeddedPointers;
|
|
|
|
/* save buffer length */
|
|
|
|
unsigned long saved_buffer_length = pStubMsg->BufferLength;
|
|
|
|
|
|
|
|
/* get the buffer pointer after complex array data, but before
|
|
|
|
* pointer data */
|
|
|
|
pStubMsg->BufferLength = pStubMsg->Buffer - pStubMsg->BufferStart;
|
|
|
|
pStubMsg->IgnoreEmbeddedPointers = 1;
|
|
|
|
NdrComplexStructBufferSize(pStubMsg, pMemory, pFormat);
|
|
|
|
pStubMsg->IgnoreEmbeddedPointers = saved_ignore_embedded;
|
|
|
|
|
|
|
|
/* save it for use by embedded pointer code later */
|
|
|
|
pStubMsg->PointerBufferMark = pStubMsg->BufferStart + pStubMsg->BufferLength;
|
|
|
|
TRACE("difference = 0x%x\n", pStubMsg->PointerBufferMark - pStubMsg->Buffer);
|
|
|
|
pointer_buffer_mark_set = 1;
|
|
|
|
|
|
|
|
/* restore the original buffer length */
|
|
|
|
pStubMsg->BufferLength = saved_buffer_length;
|
|
|
|
}
|
|
|
|
|
2007-12-14 20:55:04 +01:00
|
|
|
ALIGN_POINTER_CLEAR(pStubMsg->Buffer, pFormat[1] + 1);
|
2006-05-10 14:12:30 +02:00
|
|
|
|
2003-02-01 01:44:51 +01:00
|
|
|
pFormat += 4;
|
2008-07-04 00:27:00 +02:00
|
|
|
if (*(const SHORT*)pFormat) conf_array = pFormat + *(const SHORT*)pFormat;
|
2003-02-01 01:44:51 +01:00
|
|
|
pFormat += 2;
|
2004-11-30 22:38:57 +01:00
|
|
|
if (*(const WORD*)pFormat) pointer_desc = pFormat + *(const WORD*)pFormat;
|
2003-02-01 01:44:51 +01:00
|
|
|
pFormat += 2;
|
|
|
|
|
|
|
|
pStubMsg->Memory = pMemory;
|
|
|
|
|
|
|
|
ComplexMarshall(pStubMsg, pMemory, pFormat, pointer_desc);
|
|
|
|
|
|
|
|
if (conf_array)
|
|
|
|
NdrConformantArrayMarshall(pStubMsg, pMemory, conf_array);
|
|
|
|
|
|
|
|
pStubMsg->Memory = OldMemory;
|
|
|
|
|
2007-06-25 15:28:01 +02:00
|
|
|
if (pointer_buffer_mark_set)
|
|
|
|
{
|
|
|
|
pStubMsg->Buffer = pStubMsg->PointerBufferMark;
|
|
|
|
pStubMsg->PointerBufferMark = NULL;
|
|
|
|
}
|
|
|
|
|
2003-02-17 02:48:24 +01:00
|
|
|
STD_OVERFLOW_CHECK(pStubMsg);
|
|
|
|
|
2003-02-01 01:44:51 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrComplexStructUnmarshall [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
unsigned char * WINAPI NdrComplexStructUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char **ppMemory,
|
|
|
|
PFORMAT_STRING pFormat,
|
|
|
|
unsigned char fMustAlloc)
|
|
|
|
{
|
2004-11-30 22:38:57 +01:00
|
|
|
unsigned size = *(const WORD*)(pFormat+2);
|
2003-02-01 01:44:51 +01:00
|
|
|
PFORMAT_STRING conf_array = NULL;
|
|
|
|
PFORMAT_STRING pointer_desc = NULL;
|
|
|
|
unsigned char *pMemory;
|
2007-06-25 15:28:01 +02:00
|
|
|
int pointer_buffer_mark_set = 0;
|
2003-02-01 01:44:51 +01:00
|
|
|
|
|
|
|
TRACE("(%p,%p,%p,%d)\n", pStubMsg, ppMemory, pFormat, fMustAlloc);
|
|
|
|
|
2007-06-25 15:28:01 +02:00
|
|
|
if (!pStubMsg->PointerBufferMark)
|
|
|
|
{
|
|
|
|
int saved_ignore_embedded = pStubMsg->IgnoreEmbeddedPointers;
|
|
|
|
/* save buffer pointer */
|
|
|
|
unsigned char *saved_buffer = pStubMsg->Buffer;
|
|
|
|
|
|
|
|
/* get the buffer pointer after complex array data, but before
|
|
|
|
* pointer data */
|
|
|
|
pStubMsg->IgnoreEmbeddedPointers = 1;
|
|
|
|
NdrComplexStructMemorySize(pStubMsg, pFormat);
|
|
|
|
pStubMsg->IgnoreEmbeddedPointers = saved_ignore_embedded;
|
|
|
|
|
|
|
|
/* save it for use by embedded pointer code later */
|
|
|
|
pStubMsg->PointerBufferMark = pStubMsg->Buffer;
|
|
|
|
TRACE("difference = 0x%lx\n", (unsigned long)(pStubMsg->PointerBufferMark - saved_buffer));
|
|
|
|
pointer_buffer_mark_set = 1;
|
|
|
|
|
|
|
|
/* restore the original buffer */
|
|
|
|
pStubMsg->Buffer = saved_buffer;
|
|
|
|
}
|
|
|
|
|
2006-05-10 14:12:30 +02:00
|
|
|
ALIGN_POINTER(pStubMsg->Buffer, pFormat[1] + 1);
|
|
|
|
|
2003-02-01 01:44:51 +01:00
|
|
|
if (fMustAlloc || !*ppMemory)
|
|
|
|
*ppMemory = NdrAllocate(pStubMsg, size);
|
|
|
|
|
|
|
|
pFormat += 4;
|
2008-07-04 00:27:00 +02:00
|
|
|
if (*(const SHORT*)pFormat) conf_array = pFormat + *(const SHORT*)pFormat;
|
2003-02-01 01:44:51 +01:00
|
|
|
pFormat += 2;
|
2004-11-30 22:38:57 +01:00
|
|
|
if (*(const WORD*)pFormat) pointer_desc = pFormat + *(const WORD*)pFormat;
|
2003-02-01 01:44:51 +01:00
|
|
|
pFormat += 2;
|
|
|
|
|
2008-06-26 09:50:53 +02:00
|
|
|
pMemory = ComplexUnmarshall(pStubMsg, *ppMemory, pFormat, pointer_desc, fMustAlloc);
|
2003-02-01 01:44:51 +01:00
|
|
|
|
|
|
|
if (conf_array)
|
|
|
|
NdrConformantArrayUnmarshall(pStubMsg, &pMemory, conf_array, fMustAlloc);
|
|
|
|
|
2007-06-25 15:28:01 +02:00
|
|
|
if (pointer_buffer_mark_set)
|
|
|
|
{
|
|
|
|
pStubMsg->Buffer = pStubMsg->PointerBufferMark;
|
|
|
|
pStubMsg->PointerBufferMark = NULL;
|
|
|
|
}
|
|
|
|
|
2003-02-01 01:44:51 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrComplexStructBufferSize [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
void WINAPI NdrComplexStructBufferSize(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char *pMemory,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
|
|
|
PFORMAT_STRING conf_array = NULL;
|
|
|
|
PFORMAT_STRING pointer_desc = NULL;
|
|
|
|
unsigned char *OldMemory = pStubMsg->Memory;
|
2007-06-25 15:28:01 +02:00
|
|
|
int pointer_length_set = 0;
|
2003-02-01 01:44:51 +01:00
|
|
|
|
|
|
|
TRACE("(%p,%p,%p)\n", pStubMsg, pMemory, pFormat);
|
|
|
|
|
2006-05-10 14:12:30 +02:00
|
|
|
ALIGN_LENGTH(pStubMsg->BufferLength, pFormat[1] + 1);
|
|
|
|
|
2007-06-25 15:28:01 +02:00
|
|
|
if(!pStubMsg->IgnoreEmbeddedPointers && !pStubMsg->PointerLength)
|
|
|
|
{
|
|
|
|
int saved_ignore_embedded = pStubMsg->IgnoreEmbeddedPointers;
|
|
|
|
unsigned long saved_buffer_length = pStubMsg->BufferLength;
|
|
|
|
|
|
|
|
/* get the buffer length after complex struct data, but before
|
|
|
|
* pointer data */
|
|
|
|
pStubMsg->IgnoreEmbeddedPointers = 1;
|
|
|
|
NdrComplexStructBufferSize(pStubMsg, pMemory, pFormat);
|
|
|
|
pStubMsg->IgnoreEmbeddedPointers = saved_ignore_embedded;
|
|
|
|
|
|
|
|
/* save it for use by embedded pointer code later */
|
|
|
|
pStubMsg->PointerLength = pStubMsg->BufferLength;
|
|
|
|
pointer_length_set = 1;
|
|
|
|
TRACE("difference = 0x%lx\n", pStubMsg->PointerLength - saved_buffer_length);
|
|
|
|
|
|
|
|
/* restore the original buffer length */
|
|
|
|
pStubMsg->BufferLength = saved_buffer_length;
|
|
|
|
}
|
|
|
|
|
2003-02-01 01:44:51 +01:00
|
|
|
pFormat += 4;
|
2008-07-04 00:27:00 +02:00
|
|
|
if (*(const SHORT*)pFormat) conf_array = pFormat + *(const SHORT*)pFormat;
|
2003-02-01 01:44:51 +01:00
|
|
|
pFormat += 2;
|
2004-11-30 22:38:57 +01:00
|
|
|
if (*(const WORD*)pFormat) pointer_desc = pFormat + *(const WORD*)pFormat;
|
2003-02-01 01:44:51 +01:00
|
|
|
pFormat += 2;
|
|
|
|
|
|
|
|
pStubMsg->Memory = pMemory;
|
|
|
|
|
|
|
|
pMemory = ComplexBufferSize(pStubMsg, pMemory, pFormat, pointer_desc);
|
|
|
|
|
|
|
|
if (conf_array)
|
|
|
|
NdrConformantArrayBufferSize(pStubMsg, pMemory, conf_array);
|
|
|
|
|
|
|
|
pStubMsg->Memory = OldMemory;
|
2007-06-25 15:28:01 +02:00
|
|
|
|
|
|
|
if(pointer_length_set)
|
|
|
|
{
|
|
|
|
pStubMsg->BufferLength = pStubMsg->PointerLength;
|
|
|
|
pStubMsg->PointerLength = 0;
|
|
|
|
}
|
|
|
|
|
2003-02-01 01:44:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrComplexStructMemorySize [RPCRT4.@]
|
|
|
|
*/
|
2006-11-09 23:01:58 +01:00
|
|
|
ULONG WINAPI NdrComplexStructMemorySize(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
PFORMAT_STRING pFormat)
|
2003-02-01 01:44:51 +01:00
|
|
|
{
|
2006-05-13 17:59:50 +02:00
|
|
|
unsigned size = *(const WORD*)(pFormat+2);
|
2003-02-01 01:44:51 +01:00
|
|
|
PFORMAT_STRING conf_array = NULL;
|
2008-07-04 00:27:14 +02:00
|
|
|
PFORMAT_STRING pointer_desc = NULL;
|
2003-02-01 01:44:51 +01:00
|
|
|
|
2006-05-13 17:59:50 +02:00
|
|
|
TRACE("(%p,%p)\n", pStubMsg, pFormat);
|
|
|
|
|
|
|
|
ALIGN_POINTER(pStubMsg->Buffer, pFormat[1] + 1);
|
2003-02-01 01:44:51 +01:00
|
|
|
|
|
|
|
pFormat += 4;
|
2008-07-04 00:27:00 +02:00
|
|
|
if (*(const SHORT*)pFormat) conf_array = pFormat + *(const SHORT*)pFormat;
|
2008-07-04 00:27:14 +02:00
|
|
|
pFormat += 2;
|
|
|
|
if (*(const WORD*)pFormat) pointer_desc = pFormat + *(const WORD*)pFormat;
|
|
|
|
pFormat += 2;
|
2003-02-01 01:44:51 +01:00
|
|
|
|
2008-07-04 00:27:14 +02:00
|
|
|
ComplexStructMemorySize(pStubMsg, pFormat, pointer_desc);
|
2006-05-13 17:59:50 +02:00
|
|
|
|
|
|
|
if (conf_array)
|
|
|
|
NdrConformantArrayMemorySize(pStubMsg, conf_array);
|
|
|
|
|
|
|
|
return size;
|
2003-02-01 01:44:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrComplexStructFree [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
void WINAPI NdrComplexStructFree(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char *pMemory,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
|
|
|
PFORMAT_STRING conf_array = NULL;
|
|
|
|
PFORMAT_STRING pointer_desc = NULL;
|
|
|
|
unsigned char *OldMemory = pStubMsg->Memory;
|
|
|
|
|
|
|
|
TRACE("(%p,%p,%p)\n", pStubMsg, pMemory, pFormat);
|
|
|
|
|
|
|
|
pFormat += 4;
|
2008-07-04 00:27:00 +02:00
|
|
|
if (*(const SHORT*)pFormat) conf_array = pFormat + *(const SHORT*)pFormat;
|
2003-02-01 01:44:51 +01:00
|
|
|
pFormat += 2;
|
2004-11-30 22:38:57 +01:00
|
|
|
if (*(const WORD*)pFormat) pointer_desc = pFormat + *(const WORD*)pFormat;
|
2003-02-01 01:44:51 +01:00
|
|
|
pFormat += 2;
|
|
|
|
|
|
|
|
pStubMsg->Memory = pMemory;
|
|
|
|
|
|
|
|
pMemory = ComplexFree(pStubMsg, pMemory, pFormat, pointer_desc);
|
|
|
|
|
|
|
|
if (conf_array)
|
|
|
|
NdrConformantArrayFree(pStubMsg, pMemory, conf_array);
|
|
|
|
|
|
|
|
pStubMsg->Memory = OldMemory;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrConformantArrayMarshall [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
unsigned char * WINAPI NdrConformantArrayMarshall(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char *pMemory,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
2004-11-30 22:38:57 +01:00
|
|
|
DWORD size = 0, esize = *(const WORD*)(pFormat+2);
|
2006-05-10 14:12:52 +02:00
|
|
|
unsigned char alignment = pFormat[1] + 1;
|
|
|
|
|
2003-02-01 01:44:51 +01:00
|
|
|
TRACE("(%p,%p,%p)\n", pStubMsg, pMemory, pFormat);
|
|
|
|
if (pFormat[0] != RPC_FC_CARRAY) FIXME("format=%d\n", pFormat[0]);
|
|
|
|
|
|
|
|
pFormat = ComputeConformance(pStubMsg, pMemory, pFormat+4, 0);
|
|
|
|
|
2006-05-10 14:13:15 +02:00
|
|
|
WriteConformance(pStubMsg);
|
2003-02-01 01:44:51 +01:00
|
|
|
|
2007-12-14 20:55:04 +01:00
|
|
|
ALIGN_POINTER_CLEAR(pStubMsg->Buffer, alignment);
|
2006-05-10 14:12:52 +02:00
|
|
|
|
2006-06-10 13:33:01 +02:00
|
|
|
size = safe_multiply(esize, pStubMsg->MaxCount);
|
2003-02-01 01:44:51 +01:00
|
|
|
pStubMsg->BufferMark = pStubMsg->Buffer;
|
2007-11-28 16:02:06 +01:00
|
|
|
safe_copy_to_buffer(pStubMsg, pMemory, size);
|
2003-02-01 01:44:51 +01:00
|
|
|
|
|
|
|
EmbeddedPointerMarshall(pStubMsg, pMemory, pFormat);
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrConformantArrayUnmarshall [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
unsigned char * WINAPI NdrConformantArrayUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char **ppMemory,
|
|
|
|
PFORMAT_STRING pFormat,
|
|
|
|
unsigned char fMustAlloc)
|
|
|
|
{
|
2006-06-10 13:33:01 +02:00
|
|
|
DWORD size, esize = *(const WORD*)(pFormat+2);
|
2006-05-10 14:12:52 +02:00
|
|
|
unsigned char alignment = pFormat[1] + 1;
|
2007-12-08 18:14:10 +01:00
|
|
|
unsigned char *saved_buffer;
|
2006-05-10 14:12:52 +02:00
|
|
|
|
2003-02-01 01:44:51 +01:00
|
|
|
TRACE("(%p,%p,%p,%d)\n", pStubMsg, ppMemory, pFormat, fMustAlloc);
|
|
|
|
if (pFormat[0] != RPC_FC_CARRAY) FIXME("format=%d\n", pFormat[0]);
|
|
|
|
|
|
|
|
pFormat = ReadConformance(pStubMsg, pFormat+4);
|
2006-06-10 13:33:01 +02:00
|
|
|
|
|
|
|
size = safe_multiply(esize, pStubMsg->MaxCount);
|
2007-12-08 18:14:10 +01:00
|
|
|
ALIGN_POINTER(pStubMsg->Buffer, alignment);
|
2003-02-01 01:44:51 +01:00
|
|
|
|
2007-12-08 18:14:10 +01:00
|
|
|
if (fMustAlloc)
|
2006-06-10 13:33:01 +02:00
|
|
|
*ppMemory = NdrAllocate(pStubMsg, size);
|
2007-12-08 18:14:10 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
if (!pStubMsg->IsClient && !*ppMemory)
|
|
|
|
/* for servers, we just point straight into the RPC buffer */
|
|
|
|
*ppMemory = pStubMsg->Buffer;
|
|
|
|
}
|
2005-09-02 13:19:26 +02:00
|
|
|
|
2007-12-08 18:14:10 +01:00
|
|
|
saved_buffer = pStubMsg->BufferMark = pStubMsg->Buffer;
|
|
|
|
safe_buffer_increment(pStubMsg, size);
|
|
|
|
EmbeddedPointerUnmarshall(pStubMsg, saved_buffer, *ppMemory, pFormat, fMustAlloc);
|
2003-02-01 01:44:51 +01:00
|
|
|
|
2007-12-08 18:14:10 +01:00
|
|
|
TRACE("copying %p to %p\n", saved_buffer, *ppMemory);
|
|
|
|
if (*ppMemory != saved_buffer)
|
|
|
|
memcpy(*ppMemory, saved_buffer, size);
|
2003-02-01 01:44:51 +01:00
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrConformantArrayBufferSize [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
void WINAPI NdrConformantArrayBufferSize(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char *pMemory,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
2006-06-10 13:33:01 +02:00
|
|
|
DWORD size, esize = *(const WORD*)(pFormat+2);
|
2006-05-10 14:12:52 +02:00
|
|
|
unsigned char alignment = pFormat[1] + 1;
|
|
|
|
|
2003-02-01 01:44:51 +01:00
|
|
|
TRACE("(%p,%p,%p)\n", pStubMsg, pMemory, pFormat);
|
|
|
|
if (pFormat[0] != RPC_FC_CARRAY) FIXME("format=%d\n", pFormat[0]);
|
|
|
|
|
|
|
|
pFormat = ComputeConformance(pStubMsg, pMemory, pFormat+4, 0);
|
2006-05-10 14:13:15 +02:00
|
|
|
|
2006-05-15 14:35:41 +02:00
|
|
|
SizeConformance(pStubMsg);
|
2006-05-10 14:12:52 +02:00
|
|
|
|
|
|
|
ALIGN_LENGTH(pStubMsg->BufferLength, alignment);
|
2003-02-01 01:44:51 +01:00
|
|
|
|
2006-06-10 13:33:01 +02:00
|
|
|
size = safe_multiply(esize, pStubMsg->MaxCount);
|
2005-11-28 10:58:40 +01:00
|
|
|
/* conformance value plus array */
|
2007-11-28 16:01:53 +01:00
|
|
|
safe_buffer_length_increment(pStubMsg, size);
|
2003-02-01 01:44:51 +01:00
|
|
|
|
|
|
|
EmbeddedPointerBufferSize(pStubMsg, pMemory, pFormat);
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrConformantArrayMemorySize [RPCRT4.@]
|
|
|
|
*/
|
2006-11-09 23:01:58 +01:00
|
|
|
ULONG WINAPI NdrConformantArrayMemorySize(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
PFORMAT_STRING pFormat)
|
2003-02-01 01:44:51 +01:00
|
|
|
{
|
2005-11-28 10:58:40 +01:00
|
|
|
DWORD size = 0, esize = *(const WORD*)(pFormat+2);
|
2006-05-18 04:39:58 +02:00
|
|
|
unsigned char alignment = pFormat[1] + 1;
|
2005-11-28 10:58:40 +01:00
|
|
|
|
|
|
|
TRACE("(%p,%p)\n", pStubMsg, pFormat);
|
2003-02-01 01:44:51 +01:00
|
|
|
if (pFormat[0] != RPC_FC_CARRAY) FIXME("format=%d\n", pFormat[0]);
|
|
|
|
|
|
|
|
pFormat = ReadConformance(pStubMsg, pFormat+4);
|
2006-06-10 13:33:01 +02:00
|
|
|
size = safe_multiply(esize, pStubMsg->MaxCount);
|
|
|
|
pStubMsg->MemorySize += size;
|
2006-05-18 04:39:58 +02:00
|
|
|
|
|
|
|
ALIGN_POINTER(pStubMsg->Buffer, alignment);
|
|
|
|
pStubMsg->BufferMark = pStubMsg->Buffer;
|
2007-11-28 16:02:21 +01:00
|
|
|
safe_buffer_increment(pStubMsg, size);
|
2006-05-18 04:39:58 +02:00
|
|
|
|
|
|
|
EmbeddedPointerMemorySize(pStubMsg, pFormat);
|
2003-02-01 01:44:51 +01:00
|
|
|
|
2006-05-18 04:39:58 +02:00
|
|
|
return pStubMsg->MemorySize;
|
2003-02-01 01:44:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrConformantArrayFree [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
void WINAPI NdrConformantArrayFree(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char *pMemory,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
|
|
|
TRACE("(%p,%p,%p)\n", pStubMsg, pMemory, pFormat);
|
|
|
|
if (pFormat[0] != RPC_FC_CARRAY) FIXME("format=%d\n", pFormat[0]);
|
|
|
|
|
2006-08-17 16:31:32 +02:00
|
|
|
pFormat = ComputeConformance(pStubMsg, pMemory, pFormat+4, 0);
|
|
|
|
|
2003-02-01 01:44:51 +01:00
|
|
|
EmbeddedPointerFree(pStubMsg, pMemory, pFormat);
|
|
|
|
}
|
|
|
|
|
2003-04-26 04:12:14 +02:00
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrConformantVaryingArrayMarshall [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
unsigned char* WINAPI NdrConformantVaryingArrayMarshall( PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char* pMemory,
|
|
|
|
PFORMAT_STRING pFormat )
|
|
|
|
{
|
2006-06-10 13:32:24 +02:00
|
|
|
ULONG bufsize;
|
2006-05-10 14:12:52 +02:00
|
|
|
unsigned char alignment = pFormat[1] + 1;
|
2005-11-28 11:30:32 +01:00
|
|
|
DWORD esize = *(const WORD*)(pFormat+2);
|
|
|
|
|
|
|
|
TRACE("(%p, %p, %p)\n", pStubMsg, pMemory, pFormat);
|
|
|
|
|
|
|
|
if (pFormat[0] != RPC_FC_CVARRAY)
|
|
|
|
{
|
|
|
|
ERR("invalid format type %x\n", pFormat[0]);
|
|
|
|
RpcRaiseException(RPC_S_INTERNAL_ERROR);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
pFormat = ComputeConformance(pStubMsg, pMemory, pFormat+4, 0);
|
|
|
|
pFormat = ComputeVariance(pStubMsg, pMemory, pFormat, 0);
|
|
|
|
|
2006-05-10 14:13:15 +02:00
|
|
|
WriteConformance(pStubMsg);
|
|
|
|
WriteVariance(pStubMsg);
|
2005-11-28 11:30:32 +01:00
|
|
|
|
2007-12-14 20:55:04 +01:00
|
|
|
ALIGN_POINTER_CLEAR(pStubMsg->Buffer, alignment);
|
2006-05-10 14:12:52 +02:00
|
|
|
|
2006-06-10 13:32:24 +02:00
|
|
|
bufsize = safe_multiply(esize, pStubMsg->ActualCount);
|
|
|
|
|
2005-11-28 11:30:32 +01:00
|
|
|
pStubMsg->BufferMark = pStubMsg->Buffer;
|
2007-11-28 16:02:06 +01:00
|
|
|
safe_copy_to_buffer(pStubMsg, pMemory + pStubMsg->Offset, bufsize);
|
2005-11-28 11:30:32 +01:00
|
|
|
|
|
|
|
EmbeddedPointerMarshall(pStubMsg, pMemory, pFormat);
|
|
|
|
|
2003-04-26 04:12:14 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrConformantVaryingArrayUnmarshall [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
unsigned char* WINAPI NdrConformantVaryingArrayUnmarshall( PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char** ppMemory,
|
|
|
|
PFORMAT_STRING pFormat,
|
|
|
|
unsigned char fMustAlloc )
|
|
|
|
{
|
2006-06-10 13:32:24 +02:00
|
|
|
ULONG bufsize, memsize;
|
2006-05-10 14:12:52 +02:00
|
|
|
unsigned char alignment = pFormat[1] + 1;
|
2005-11-28 11:30:32 +01:00
|
|
|
DWORD esize = *(const WORD*)(pFormat+2);
|
2007-12-24 18:01:27 +01:00
|
|
|
unsigned char *saved_buffer;
|
|
|
|
ULONG offset;
|
2005-11-28 11:30:32 +01:00
|
|
|
|
|
|
|
TRACE("(%p, %p, %p, %d)\n", pStubMsg, ppMemory, pFormat, fMustAlloc);
|
|
|
|
|
|
|
|
if (pFormat[0] != RPC_FC_CVARRAY)
|
|
|
|
{
|
|
|
|
ERR("invalid format type %x\n", pFormat[0]);
|
|
|
|
RpcRaiseException(RPC_S_INTERNAL_ERROR);
|
|
|
|
return NULL;
|
|
|
|
}
|
2006-05-10 14:12:52 +02:00
|
|
|
|
2006-06-02 21:42:44 +02:00
|
|
|
pFormat = ReadConformance(pStubMsg, pFormat+4);
|
2006-06-10 13:32:47 +02:00
|
|
|
pFormat = ReadVariance(pStubMsg, pFormat, pStubMsg->MaxCount);
|
2005-11-28 11:30:32 +01:00
|
|
|
|
2006-05-10 14:12:52 +02:00
|
|
|
ALIGN_POINTER(pStubMsg->Buffer, alignment);
|
|
|
|
|
2006-06-10 13:32:24 +02:00
|
|
|
bufsize = safe_multiply(esize, pStubMsg->ActualCount);
|
|
|
|
memsize = safe_multiply(esize, pStubMsg->MaxCount);
|
2007-12-24 18:01:27 +01:00
|
|
|
offset = pStubMsg->Offset;
|
2006-06-10 13:32:24 +02:00
|
|
|
|
2005-11-28 11:30:32 +01:00
|
|
|
if (!*ppMemory || fMustAlloc)
|
2006-06-10 13:32:24 +02:00
|
|
|
*ppMemory = NdrAllocate(pStubMsg, memsize);
|
2007-12-24 18:01:27 +01:00
|
|
|
saved_buffer = pStubMsg->BufferMark = pStubMsg->Buffer;
|
|
|
|
safe_buffer_increment(pStubMsg, bufsize);
|
|
|
|
|
|
|
|
EmbeddedPointerUnmarshall(pStubMsg, saved_buffer, *ppMemory, pFormat, fMustAlloc);
|
2005-11-28 11:30:32 +01:00
|
|
|
|
2007-12-24 18:01:27 +01:00
|
|
|
memcpy(*ppMemory + offset, saved_buffer, bufsize);
|
2005-11-28 11:30:32 +01:00
|
|
|
|
2003-04-26 04:12:14 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrConformantVaryingArrayFree [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
void WINAPI NdrConformantVaryingArrayFree( PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char* pMemory,
|
|
|
|
PFORMAT_STRING pFormat )
|
|
|
|
{
|
2006-05-01 11:38:02 +02:00
|
|
|
TRACE("(%p,%p,%p)\n", pStubMsg, pMemory, pFormat);
|
|
|
|
|
|
|
|
if (pFormat[0] != RPC_FC_CVARRAY)
|
|
|
|
{
|
|
|
|
ERR("invalid format type %x\n", pFormat[0]);
|
|
|
|
RpcRaiseException(RPC_S_INTERNAL_ERROR);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
pFormat = ComputeConformance(pStubMsg, pMemory, pFormat+4, 0);
|
|
|
|
pFormat = ComputeVariance(pStubMsg, pMemory, pFormat, 0);
|
|
|
|
|
|
|
|
EmbeddedPointerFree(pStubMsg, pMemory, pFormat);
|
2003-04-26 04:12:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrConformantVaryingArrayBufferSize [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
void WINAPI NdrConformantVaryingArrayBufferSize( PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char* pMemory, PFORMAT_STRING pFormat )
|
|
|
|
{
|
2006-05-10 14:12:52 +02:00
|
|
|
unsigned char alignment = pFormat[1] + 1;
|
2005-11-28 11:30:32 +01:00
|
|
|
DWORD esize = *(const WORD*)(pFormat+2);
|
|
|
|
|
|
|
|
TRACE("(%p, %p, %p)\n", pStubMsg, pMemory, pFormat);
|
|
|
|
|
|
|
|
if (pFormat[0] != RPC_FC_CVARRAY)
|
|
|
|
{
|
|
|
|
ERR("invalid format type %x\n", pFormat[0]);
|
|
|
|
RpcRaiseException(RPC_S_INTERNAL_ERROR);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* compute size */
|
|
|
|
pFormat = ComputeConformance(pStubMsg, pMemory, pFormat+4, 0);
|
|
|
|
/* compute length */
|
|
|
|
pFormat = ComputeVariance(pStubMsg, pMemory, pFormat, 0);
|
|
|
|
|
2006-05-10 14:13:15 +02:00
|
|
|
SizeConformance(pStubMsg);
|
|
|
|
SizeVariance(pStubMsg);
|
2006-05-10 14:12:52 +02:00
|
|
|
|
|
|
|
ALIGN_LENGTH(pStubMsg->BufferLength, alignment);
|
|
|
|
|
2007-11-28 16:01:53 +01:00
|
|
|
safe_buffer_length_increment(pStubMsg, safe_multiply(esize, pStubMsg->ActualCount));
|
2005-11-28 11:30:32 +01:00
|
|
|
|
|
|
|
EmbeddedPointerBufferSize(pStubMsg, pMemory, pFormat);
|
2003-04-26 04:12:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrConformantVaryingArrayMemorySize [RPCRT4.@]
|
|
|
|
*/
|
2006-11-09 23:01:58 +01:00
|
|
|
ULONG WINAPI NdrConformantVaryingArrayMemorySize( PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
PFORMAT_STRING pFormat )
|
2003-04-26 04:12:14 +02:00
|
|
|
{
|
2007-12-09 19:22:24 +01:00
|
|
|
ULONG bufsize, memsize;
|
|
|
|
unsigned char alignment = pFormat[1] + 1;
|
|
|
|
DWORD esize = *(const WORD*)(pFormat+2);
|
|
|
|
|
|
|
|
TRACE("(%p, %p)\n", pStubMsg, pFormat);
|
|
|
|
|
|
|
|
if (pFormat[0] != RPC_FC_CVARRAY)
|
|
|
|
{
|
|
|
|
ERR("invalid format type %x\n", pFormat[0]);
|
|
|
|
RpcRaiseException(RPC_S_INTERNAL_ERROR);
|
|
|
|
return pStubMsg->MemorySize;
|
|
|
|
}
|
|
|
|
|
|
|
|
pFormat = ReadConformance(pStubMsg, pFormat+4);
|
|
|
|
pFormat = ReadVariance(pStubMsg, pFormat, pStubMsg->MaxCount);
|
|
|
|
|
|
|
|
ALIGN_POINTER(pStubMsg->Buffer, alignment);
|
|
|
|
|
|
|
|
bufsize = safe_multiply(esize, pStubMsg->ActualCount);
|
|
|
|
memsize = safe_multiply(esize, pStubMsg->MaxCount);
|
|
|
|
|
|
|
|
safe_buffer_increment(pStubMsg, bufsize);
|
|
|
|
pStubMsg->MemorySize += memsize;
|
|
|
|
|
|
|
|
EmbeddedPointerMemorySize(pStubMsg, pFormat);
|
|
|
|
|
|
|
|
return pStubMsg->MemorySize;
|
2003-04-26 04:12:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-02-01 01:44:51 +01:00
|
|
|
/***********************************************************************
|
|
|
|
* NdrComplexArrayMarshall [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
unsigned char * WINAPI NdrComplexArrayMarshall(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char *pMemory,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
2006-05-15 14:35:51 +02:00
|
|
|
ULONG i, count, def;
|
2006-01-06 21:07:27 +01:00
|
|
|
BOOL variance_present;
|
2006-05-10 14:12:52 +02:00
|
|
|
unsigned char alignment;
|
2007-06-25 15:28:01 +02:00
|
|
|
int pointer_buffer_mark_set = 0;
|
2006-01-06 21:07:27 +01:00
|
|
|
|
2003-02-01 01:44:51 +01:00
|
|
|
TRACE("(%p,%p,%p)\n", pStubMsg, pMemory, pFormat);
|
|
|
|
|
2006-01-09 17:20:19 +01:00
|
|
|
if (pFormat[0] != RPC_FC_BOGUS_ARRAY)
|
|
|
|
{
|
|
|
|
ERR("invalid format type %x\n", pFormat[0]);
|
|
|
|
RpcRaiseException(RPC_S_INTERNAL_ERROR);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2006-05-10 14:12:52 +02:00
|
|
|
alignment = pFormat[1] + 1;
|
|
|
|
|
2007-06-25 15:28:01 +02:00
|
|
|
if (!pStubMsg->PointerBufferMark)
|
|
|
|
{
|
|
|
|
/* save buffer fields that may be changed by buffer sizer functions
|
|
|
|
* and that may be needed later on */
|
|
|
|
int saved_ignore_embedded = pStubMsg->IgnoreEmbeddedPointers;
|
|
|
|
unsigned long saved_buffer_length = pStubMsg->BufferLength;
|
|
|
|
unsigned long saved_max_count = pStubMsg->MaxCount;
|
|
|
|
unsigned long saved_offset = pStubMsg->Offset;
|
|
|
|
unsigned long saved_actual_count = pStubMsg->ActualCount;
|
|
|
|
|
|
|
|
/* get the buffer pointer after complex array data, but before
|
|
|
|
* pointer data */
|
|
|
|
pStubMsg->BufferLength = pStubMsg->Buffer - pStubMsg->BufferStart;
|
|
|
|
pStubMsg->IgnoreEmbeddedPointers = 1;
|
|
|
|
NdrComplexArrayBufferSize(pStubMsg, pMemory, pFormat);
|
|
|
|
pStubMsg->IgnoreEmbeddedPointers = saved_ignore_embedded;
|
|
|
|
|
|
|
|
/* save it for use by embedded pointer code later */
|
|
|
|
pStubMsg->PointerBufferMark = pStubMsg->BufferStart + pStubMsg->BufferLength;
|
|
|
|
TRACE("difference = 0x%x\n", pStubMsg->Buffer - pStubMsg->BufferStart);
|
|
|
|
pointer_buffer_mark_set = 1;
|
|
|
|
|
|
|
|
/* restore fields */
|
|
|
|
pStubMsg->ActualCount = saved_actual_count;
|
|
|
|
pStubMsg->Offset = saved_offset;
|
|
|
|
pStubMsg->MaxCount = saved_max_count;
|
|
|
|
pStubMsg->BufferLength = saved_buffer_length;
|
|
|
|
}
|
|
|
|
|
2004-11-30 22:38:57 +01:00
|
|
|
def = *(const WORD*)&pFormat[2];
|
2003-02-01 01:44:51 +01:00
|
|
|
pFormat += 4;
|
|
|
|
|
|
|
|
pFormat = ComputeConformance(pStubMsg, pMemory, pFormat, def);
|
2006-01-06 21:07:27 +01:00
|
|
|
TRACE("conformance = %ld\n", pStubMsg->MaxCount);
|
2003-02-01 01:44:51 +01:00
|
|
|
|
2006-01-06 21:07:27 +01:00
|
|
|
variance_present = IsConformanceOrVariancePresent(pFormat);
|
|
|
|
pFormat = ComputeVariance(pStubMsg, pMemory, pFormat, pStubMsg->MaxCount);
|
2006-11-09 23:04:48 +01:00
|
|
|
TRACE("variance = %d\n", pStubMsg->ActualCount);
|
2003-02-01 01:44:51 +01:00
|
|
|
|
2006-05-10 14:13:15 +02:00
|
|
|
WriteConformance(pStubMsg);
|
2006-01-06 21:07:27 +01:00
|
|
|
if (variance_present)
|
2006-05-10 14:13:15 +02:00
|
|
|
WriteVariance(pStubMsg);
|
2003-02-01 01:44:51 +01:00
|
|
|
|
2007-12-14 20:55:04 +01:00
|
|
|
ALIGN_POINTER_CLEAR(pStubMsg->Buffer, alignment);
|
2006-05-10 14:12:52 +02:00
|
|
|
|
2006-05-15 14:35:51 +02:00
|
|
|
count = pStubMsg->ActualCount;
|
|
|
|
for (i = 0; i < count; i++)
|
2003-02-01 01:44:51 +01:00
|
|
|
pMemory = ComplexMarshall(pStubMsg, pMemory, pFormat, NULL);
|
|
|
|
|
2003-02-17 02:48:24 +01:00
|
|
|
STD_OVERFLOW_CHECK(pStubMsg);
|
|
|
|
|
2007-06-25 15:28:01 +02:00
|
|
|
if (pointer_buffer_mark_set)
|
|
|
|
{
|
|
|
|
pStubMsg->Buffer = pStubMsg->PointerBufferMark;
|
|
|
|
pStubMsg->PointerBufferMark = NULL;
|
|
|
|
}
|
|
|
|
|
2003-02-01 01:44:51 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrComplexArrayUnmarshall [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
unsigned char * WINAPI NdrComplexArrayUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char **ppMemory,
|
|
|
|
PFORMAT_STRING pFormat,
|
|
|
|
unsigned char fMustAlloc)
|
|
|
|
{
|
2007-06-25 15:28:01 +02:00
|
|
|
ULONG i, count, size;
|
2006-05-10 14:12:52 +02:00
|
|
|
unsigned char alignment;
|
2003-02-01 01:44:51 +01:00
|
|
|
unsigned char *pMemory;
|
2007-06-25 15:28:01 +02:00
|
|
|
unsigned char *saved_buffer;
|
|
|
|
int pointer_buffer_mark_set = 0;
|
|
|
|
int saved_ignore_embedded;
|
2006-01-06 21:07:27 +01:00
|
|
|
|
2003-02-01 01:44:51 +01:00
|
|
|
TRACE("(%p,%p,%p,%d)\n", pStubMsg, ppMemory, pFormat, fMustAlloc);
|
|
|
|
|
2006-01-09 17:20:19 +01:00
|
|
|
if (pFormat[0] != RPC_FC_BOGUS_ARRAY)
|
|
|
|
{
|
|
|
|
ERR("invalid format type %x\n", pFormat[0]);
|
|
|
|
RpcRaiseException(RPC_S_INTERNAL_ERROR);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2006-05-10 14:12:52 +02:00
|
|
|
alignment = pFormat[1] + 1;
|
|
|
|
|
2007-06-25 15:28:01 +02:00
|
|
|
saved_ignore_embedded = pStubMsg->IgnoreEmbeddedPointers;
|
|
|
|
/* save buffer pointer */
|
|
|
|
saved_buffer = pStubMsg->Buffer;
|
|
|
|
/* get the buffer pointer after complex array data, but before
|
|
|
|
* pointer data */
|
|
|
|
pStubMsg->IgnoreEmbeddedPointers = 1;
|
|
|
|
pStubMsg->MemorySize = 0;
|
|
|
|
NdrComplexArrayMemorySize(pStubMsg, pFormat);
|
|
|
|
size = pStubMsg->MemorySize;
|
|
|
|
pStubMsg->IgnoreEmbeddedPointers = saved_ignore_embedded;
|
|
|
|
|
|
|
|
TRACE("difference = 0x%lx\n", (unsigned long)(pStubMsg->Buffer - saved_buffer));
|
|
|
|
if (!pStubMsg->PointerBufferMark)
|
|
|
|
{
|
|
|
|
/* save it for use by embedded pointer code later */
|
|
|
|
pStubMsg->PointerBufferMark = pStubMsg->Buffer;
|
|
|
|
pointer_buffer_mark_set = 1;
|
|
|
|
}
|
|
|
|
/* restore the original buffer */
|
|
|
|
pStubMsg->Buffer = saved_buffer;
|
|
|
|
|
2003-02-01 01:44:51 +01:00
|
|
|
pFormat += 4;
|
|
|
|
|
|
|
|
pFormat = ReadConformance(pStubMsg, pFormat);
|
2006-06-10 13:32:47 +02:00
|
|
|
pFormat = ReadVariance(pStubMsg, pFormat, pStubMsg->MaxCount);
|
2003-02-01 01:44:51 +01:00
|
|
|
|
|
|
|
if (fMustAlloc || !*ppMemory)
|
2007-06-25 15:28:01 +02:00
|
|
|
*ppMemory = NdrAllocate(pStubMsg, size);
|
2003-02-01 01:44:51 +01:00
|
|
|
|
2006-05-10 14:12:52 +02:00
|
|
|
ALIGN_POINTER(pStubMsg->Buffer, alignment);
|
|
|
|
|
2003-02-01 01:44:51 +01:00
|
|
|
pMemory = *ppMemory;
|
2006-05-15 14:35:51 +02:00
|
|
|
count = pStubMsg->ActualCount;
|
|
|
|
for (i = 0; i < count; i++)
|
2008-06-26 09:50:53 +02:00
|
|
|
pMemory = ComplexUnmarshall(pStubMsg, pMemory, pFormat, NULL, fMustAlloc);
|
2003-02-01 01:44:51 +01:00
|
|
|
|
2007-06-25 15:28:01 +02:00
|
|
|
if (pointer_buffer_mark_set)
|
|
|
|
{
|
|
|
|
pStubMsg->Buffer = pStubMsg->PointerBufferMark;
|
|
|
|
pStubMsg->PointerBufferMark = NULL;
|
|
|
|
}
|
|
|
|
|
2003-02-01 01:44:51 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrComplexArrayBufferSize [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
void WINAPI NdrComplexArrayBufferSize(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char *pMemory,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
2006-05-15 14:35:51 +02:00
|
|
|
ULONG i, count, def;
|
2006-05-10 14:12:52 +02:00
|
|
|
unsigned char alignment;
|
2006-01-06 21:07:27 +01:00
|
|
|
BOOL variance_present;
|
2007-06-25 15:28:01 +02:00
|
|
|
int pointer_length_set = 0;
|
2006-01-06 21:07:27 +01:00
|
|
|
|
2003-02-01 01:44:51 +01:00
|
|
|
TRACE("(%p,%p,%p)\n", pStubMsg, pMemory, pFormat);
|
|
|
|
|
2006-01-09 17:20:19 +01:00
|
|
|
if (pFormat[0] != RPC_FC_BOGUS_ARRAY)
|
|
|
|
{
|
|
|
|
ERR("invalid format type %x\n", pFormat[0]);
|
|
|
|
RpcRaiseException(RPC_S_INTERNAL_ERROR);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2006-05-10 14:12:52 +02:00
|
|
|
alignment = pFormat[1] + 1;
|
|
|
|
|
2007-06-25 15:28:01 +02:00
|
|
|
if (!pStubMsg->IgnoreEmbeddedPointers && !pStubMsg->PointerLength)
|
|
|
|
{
|
|
|
|
/* save buffer fields that may be changed by buffer sizer functions
|
|
|
|
* and that may be needed later on */
|
|
|
|
int saved_ignore_embedded = pStubMsg->IgnoreEmbeddedPointers;
|
|
|
|
unsigned long saved_buffer_length = pStubMsg->BufferLength;
|
|
|
|
unsigned long saved_max_count = pStubMsg->MaxCount;
|
|
|
|
unsigned long saved_offset = pStubMsg->Offset;
|
|
|
|
unsigned long saved_actual_count = pStubMsg->ActualCount;
|
|
|
|
|
|
|
|
/* get the buffer pointer after complex array data, but before
|
|
|
|
* pointer data */
|
|
|
|
pStubMsg->IgnoreEmbeddedPointers = 1;
|
|
|
|
NdrComplexArrayBufferSize(pStubMsg, pMemory, pFormat);
|
|
|
|
pStubMsg->IgnoreEmbeddedPointers = saved_ignore_embedded;
|
|
|
|
|
|
|
|
/* save it for use by embedded pointer code later */
|
|
|
|
pStubMsg->PointerLength = pStubMsg->BufferLength;
|
|
|
|
pointer_length_set = 1;
|
|
|
|
|
|
|
|
/* restore fields */
|
|
|
|
pStubMsg->ActualCount = saved_actual_count;
|
|
|
|
pStubMsg->Offset = saved_offset;
|
|
|
|
pStubMsg->MaxCount = saved_max_count;
|
|
|
|
pStubMsg->BufferLength = saved_buffer_length;
|
|
|
|
}
|
2004-11-30 22:38:57 +01:00
|
|
|
def = *(const WORD*)&pFormat[2];
|
2003-02-01 01:44:51 +01:00
|
|
|
pFormat += 4;
|
|
|
|
|
|
|
|
pFormat = ComputeConformance(pStubMsg, pMemory, pFormat, def);
|
2006-01-06 21:07:27 +01:00
|
|
|
TRACE("conformance = %ld\n", pStubMsg->MaxCount);
|
2006-05-10 14:13:15 +02:00
|
|
|
SizeConformance(pStubMsg);
|
2003-02-01 01:44:51 +01:00
|
|
|
|
2006-01-06 21:07:27 +01:00
|
|
|
variance_present = IsConformanceOrVariancePresent(pFormat);
|
|
|
|
pFormat = ComputeVariance(pStubMsg, pMemory, pFormat, pStubMsg->MaxCount);
|
2006-11-09 23:04:48 +01:00
|
|
|
TRACE("variance = %d\n", pStubMsg->ActualCount);
|
2006-01-06 21:07:27 +01:00
|
|
|
|
|
|
|
if (variance_present)
|
2006-05-10 14:13:15 +02:00
|
|
|
SizeVariance(pStubMsg);
|
2003-02-01 01:44:51 +01:00
|
|
|
|
2006-05-10 14:12:52 +02:00
|
|
|
ALIGN_LENGTH(pStubMsg->BufferLength, alignment);
|
|
|
|
|
2006-05-15 14:35:51 +02:00
|
|
|
count = pStubMsg->ActualCount;
|
|
|
|
for (i = 0; i < count; i++)
|
2003-02-01 01:44:51 +01:00
|
|
|
pMemory = ComplexBufferSize(pStubMsg, pMemory, pFormat, NULL);
|
2007-06-25 15:28:01 +02:00
|
|
|
|
|
|
|
if(pointer_length_set)
|
|
|
|
{
|
|
|
|
pStubMsg->BufferLength = pStubMsg->PointerLength;
|
|
|
|
pStubMsg->PointerLength = 0;
|
|
|
|
}
|
2003-02-01 01:44:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrComplexArrayMemorySize [RPCRT4.@]
|
|
|
|
*/
|
2006-11-09 23:01:58 +01:00
|
|
|
ULONG WINAPI NdrComplexArrayMemorySize(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
PFORMAT_STRING pFormat)
|
2003-02-01 01:44:51 +01:00
|
|
|
{
|
2006-11-09 23:01:58 +01:00
|
|
|
ULONG i, count, esize, SavedMemorySize, MemorySize;
|
2006-05-13 17:59:20 +02:00
|
|
|
unsigned char alignment;
|
|
|
|
|
|
|
|
TRACE("(%p,%p)\n", pStubMsg, pFormat);
|
2003-02-01 01:44:51 +01:00
|
|
|
|
2006-01-09 17:20:19 +01:00
|
|
|
if (pFormat[0] != RPC_FC_BOGUS_ARRAY)
|
|
|
|
{
|
|
|
|
ERR("invalid format type %x\n", pFormat[0]);
|
|
|
|
RpcRaiseException(RPC_S_INTERNAL_ERROR);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-05-13 17:59:20 +02:00
|
|
|
alignment = pFormat[1] + 1;
|
|
|
|
|
2003-02-01 01:44:51 +01:00
|
|
|
pFormat += 4;
|
|
|
|
|
|
|
|
pFormat = ReadConformance(pStubMsg, pFormat);
|
2006-06-10 13:32:47 +02:00
|
|
|
pFormat = ReadVariance(pStubMsg, pFormat, pStubMsg->MaxCount);
|
2003-02-01 01:44:51 +01:00
|
|
|
|
2006-05-13 17:59:20 +02:00
|
|
|
ALIGN_POINTER(pStubMsg->Buffer, alignment);
|
2003-02-01 01:44:51 +01:00
|
|
|
|
2006-05-13 17:59:20 +02:00
|
|
|
SavedMemorySize = pStubMsg->MemorySize;
|
|
|
|
|
2008-01-14 12:54:12 +01:00
|
|
|
esize = ComplexStructSize(pStubMsg, pFormat);
|
2006-05-13 17:59:20 +02:00
|
|
|
|
2006-06-10 13:32:24 +02:00
|
|
|
MemorySize = safe_multiply(pStubMsg->MaxCount, esize);
|
2006-05-13 17:59:20 +02:00
|
|
|
|
2006-05-15 14:35:51 +02:00
|
|
|
count = pStubMsg->ActualCount;
|
|
|
|
for (i = 0; i < count; i++)
|
2008-07-04 00:27:14 +02:00
|
|
|
ComplexStructMemorySize(pStubMsg, pFormat, NULL);
|
2006-05-13 17:59:20 +02:00
|
|
|
|
|
|
|
pStubMsg->MemorySize = SavedMemorySize;
|
|
|
|
|
|
|
|
pStubMsg->MemorySize += MemorySize;
|
|
|
|
return MemorySize;
|
2003-02-01 01:44:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrComplexArrayFree [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
void WINAPI NdrComplexArrayFree(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char *pMemory,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
2006-05-15 14:35:51 +02:00
|
|
|
ULONG i, count, def;
|
2006-01-06 21:07:27 +01:00
|
|
|
|
2003-02-01 01:44:51 +01:00
|
|
|
TRACE("(%p,%p,%p)\n", pStubMsg, pMemory, pFormat);
|
|
|
|
|
2006-01-09 17:20:19 +01:00
|
|
|
if (pFormat[0] != RPC_FC_BOGUS_ARRAY)
|
|
|
|
{
|
|
|
|
ERR("invalid format type %x\n", pFormat[0]);
|
|
|
|
RpcRaiseException(RPC_S_INTERNAL_ERROR);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2004-11-30 22:38:57 +01:00
|
|
|
def = *(const WORD*)&pFormat[2];
|
2003-02-01 01:44:51 +01:00
|
|
|
pFormat += 4;
|
|
|
|
|
|
|
|
pFormat = ComputeConformance(pStubMsg, pMemory, pFormat, def);
|
2006-01-06 21:07:27 +01:00
|
|
|
TRACE("conformance = %ld\n", pStubMsg->MaxCount);
|
2003-02-01 01:44:51 +01:00
|
|
|
|
2006-01-06 21:07:27 +01:00
|
|
|
pFormat = ComputeVariance(pStubMsg, pMemory, pFormat, pStubMsg->MaxCount);
|
2006-11-09 23:04:48 +01:00
|
|
|
TRACE("variance = %d\n", pStubMsg->ActualCount);
|
2003-02-01 01:44:51 +01:00
|
|
|
|
2006-05-15 14:35:51 +02:00
|
|
|
count = pStubMsg->ActualCount;
|
|
|
|
for (i = 0; i < count; i++)
|
2003-02-01 01:44:51 +01:00
|
|
|
pMemory = ComplexFree(pStubMsg, pMemory, pFormat, NULL);
|
|
|
|
}
|
|
|
|
|
2007-12-09 19:22:57 +01:00
|
|
|
static void UserMarshalCB(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
USER_MARSHAL_CB_TYPE cbtype, PFORMAT_STRING pFormat,
|
|
|
|
USER_MARSHAL_CB *umcb)
|
2003-02-01 01:44:51 +01:00
|
|
|
{
|
2007-12-09 19:22:57 +01:00
|
|
|
umcb->Flags = MAKELONG(pStubMsg->dwDestContext,
|
|
|
|
pStubMsg->RpcMsg->DataRepresentation);
|
|
|
|
umcb->pStubMsg = pStubMsg;
|
|
|
|
umcb->pReserve = NULL;
|
|
|
|
umcb->Signature = USER_MARSHAL_CB_SIGNATURE;
|
|
|
|
umcb->CBType = cbtype;
|
|
|
|
umcb->pFormat = pFormat;
|
|
|
|
umcb->pTypeFormat = NULL /* FIXME */;
|
2003-02-01 01:44:51 +01:00
|
|
|
}
|
|
|
|
|
2006-05-18 04:39:27 +02:00
|
|
|
#define USER_MARSHAL_PTR_PREFIX \
|
|
|
|
( (DWORD)'U' | ( (DWORD)'s' << 8 ) | \
|
|
|
|
( (DWORD)'e' << 16 ) | ( (DWORD)'r' << 24 ) )
|
|
|
|
|
2003-02-01 01:44:51 +01:00
|
|
|
/***********************************************************************
|
|
|
|
* NdrUserMarshalMarshall [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
unsigned char * WINAPI NdrUserMarshalMarshall(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char *pMemory,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
2006-05-18 04:39:27 +02:00
|
|
|
unsigned flags = pFormat[1];
|
2004-11-30 22:38:57 +01:00
|
|
|
unsigned index = *(const WORD*)&pFormat[2];
|
2007-06-25 15:28:01 +02:00
|
|
|
unsigned char *saved_buffer = NULL;
|
2007-12-09 19:22:57 +01:00
|
|
|
USER_MARSHAL_CB umcb;
|
|
|
|
|
2003-02-01 01:44:51 +01:00
|
|
|
TRACE("(%p,%p,%p)\n", pStubMsg, pMemory, pFormat);
|
|
|
|
TRACE("index=%d\n", index);
|
|
|
|
|
2007-12-09 19:22:57 +01:00
|
|
|
UserMarshalCB(pStubMsg, USER_MARSHAL_CB_MARSHALL, pFormat, &umcb);
|
|
|
|
|
2006-05-18 04:39:27 +02:00
|
|
|
if (flags & USER_MARSHAL_POINTER)
|
|
|
|
{
|
2007-12-14 20:55:04 +01:00
|
|
|
ALIGN_POINTER_CLEAR(pStubMsg->Buffer, 4);
|
2006-05-18 04:39:27 +02:00
|
|
|
NDR_LOCAL_UINT32_WRITE(pStubMsg->Buffer, USER_MARSHAL_PTR_PREFIX);
|
|
|
|
pStubMsg->Buffer += 4;
|
2007-06-25 15:28:01 +02:00
|
|
|
if (pStubMsg->PointerBufferMark)
|
|
|
|
{
|
|
|
|
saved_buffer = pStubMsg->Buffer;
|
|
|
|
pStubMsg->Buffer = pStubMsg->PointerBufferMark;
|
|
|
|
pStubMsg->PointerBufferMark = NULL;
|
|
|
|
}
|
2007-12-14 20:55:04 +01:00
|
|
|
ALIGN_POINTER_CLEAR(pStubMsg->Buffer, 8);
|
2006-05-18 04:39:27 +02:00
|
|
|
}
|
|
|
|
else
|
2007-12-14 20:55:04 +01:00
|
|
|
ALIGN_POINTER_CLEAR(pStubMsg->Buffer, (flags & 0xf) + 1);
|
2006-05-18 04:39:27 +02:00
|
|
|
|
2003-02-01 01:44:51 +01:00
|
|
|
pStubMsg->Buffer =
|
|
|
|
pStubMsg->StubDesc->aUserMarshalQuadruple[index].pfnMarshall(
|
2007-12-09 19:22:57 +01:00
|
|
|
&umcb.Flags, pStubMsg->Buffer, pMemory);
|
2003-02-01 01:44:51 +01:00
|
|
|
|
2007-06-25 15:28:01 +02:00
|
|
|
if (saved_buffer)
|
|
|
|
{
|
|
|
|
STD_OVERFLOW_CHECK(pStubMsg);
|
|
|
|
pStubMsg->PointerBufferMark = pStubMsg->Buffer;
|
|
|
|
pStubMsg->Buffer = saved_buffer;
|
|
|
|
}
|
|
|
|
|
2003-02-17 02:48:24 +01:00
|
|
|
STD_OVERFLOW_CHECK(pStubMsg);
|
|
|
|
|
2003-02-01 01:44:51 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrUserMarshalUnmarshall [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
unsigned char * WINAPI NdrUserMarshalUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char **ppMemory,
|
|
|
|
PFORMAT_STRING pFormat,
|
|
|
|
unsigned char fMustAlloc)
|
|
|
|
{
|
2006-05-18 04:39:27 +02:00
|
|
|
unsigned flags = pFormat[1];
|
2004-11-30 22:38:57 +01:00
|
|
|
unsigned index = *(const WORD*)&pFormat[2];
|
|
|
|
DWORD memsize = *(const WORD*)&pFormat[4];
|
2007-06-25 15:28:01 +02:00
|
|
|
unsigned char *saved_buffer = NULL;
|
2007-12-09 19:22:57 +01:00
|
|
|
USER_MARSHAL_CB umcb;
|
|
|
|
|
2003-02-01 01:44:51 +01:00
|
|
|
TRACE("(%p,%p,%p,%d)\n", pStubMsg, ppMemory, pFormat, fMustAlloc);
|
|
|
|
TRACE("index=%d\n", index);
|
|
|
|
|
2007-12-09 19:22:57 +01:00
|
|
|
UserMarshalCB(pStubMsg, USER_MARSHAL_CB_UNMARSHALL, pFormat, &umcb);
|
|
|
|
|
2006-05-18 04:39:27 +02:00
|
|
|
if (flags & USER_MARSHAL_POINTER)
|
|
|
|
{
|
|
|
|
ALIGN_POINTER(pStubMsg->Buffer, 4);
|
|
|
|
/* skip pointer prefix */
|
|
|
|
pStubMsg->Buffer += 4;
|
2007-06-25 15:28:01 +02:00
|
|
|
if (pStubMsg->PointerBufferMark)
|
|
|
|
{
|
|
|
|
saved_buffer = pStubMsg->Buffer;
|
|
|
|
pStubMsg->Buffer = pStubMsg->PointerBufferMark;
|
|
|
|
pStubMsg->PointerBufferMark = NULL;
|
|
|
|
}
|
2006-05-18 04:39:27 +02:00
|
|
|
ALIGN_POINTER(pStubMsg->Buffer, 8);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
ALIGN_POINTER(pStubMsg->Buffer, (flags & 0xf) + 1);
|
|
|
|
|
2003-02-01 01:44:51 +01:00
|
|
|
if (fMustAlloc || !*ppMemory)
|
|
|
|
*ppMemory = NdrAllocate(pStubMsg, memsize);
|
|
|
|
|
|
|
|
pStubMsg->Buffer =
|
|
|
|
pStubMsg->StubDesc->aUserMarshalQuadruple[index].pfnUnmarshall(
|
2007-12-09 19:22:57 +01:00
|
|
|
&umcb.Flags, pStubMsg->Buffer, *ppMemory);
|
2003-02-01 01:44:51 +01:00
|
|
|
|
2007-06-25 15:28:01 +02:00
|
|
|
if (saved_buffer)
|
|
|
|
{
|
|
|
|
STD_OVERFLOW_CHECK(pStubMsg);
|
|
|
|
pStubMsg->PointerBufferMark = pStubMsg->Buffer;
|
|
|
|
pStubMsg->Buffer = saved_buffer;
|
|
|
|
}
|
|
|
|
|
2003-02-01 01:44:51 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrUserMarshalBufferSize [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
void WINAPI NdrUserMarshalBufferSize(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char *pMemory,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
2006-05-18 04:39:27 +02:00
|
|
|
unsigned flags = pFormat[1];
|
2004-11-30 22:38:57 +01:00
|
|
|
unsigned index = *(const WORD*)&pFormat[2];
|
|
|
|
DWORD bufsize = *(const WORD*)&pFormat[6];
|
2007-12-09 19:22:57 +01:00
|
|
|
USER_MARSHAL_CB umcb;
|
2007-06-25 15:28:01 +02:00
|
|
|
unsigned long saved_buffer_length = 0;
|
2007-12-09 19:22:57 +01:00
|
|
|
|
2003-02-01 01:44:51 +01:00
|
|
|
TRACE("(%p,%p,%p)\n", pStubMsg, pMemory, pFormat);
|
|
|
|
TRACE("index=%d\n", index);
|
|
|
|
|
2007-12-09 19:22:57 +01:00
|
|
|
UserMarshalCB(pStubMsg, USER_MARSHAL_CB_BUFFER_SIZE, pFormat, &umcb);
|
|
|
|
|
2006-05-18 04:39:27 +02:00
|
|
|
if (flags & USER_MARSHAL_POINTER)
|
|
|
|
{
|
|
|
|
ALIGN_LENGTH(pStubMsg->BufferLength, 4);
|
|
|
|
/* skip pointer prefix */
|
2007-11-28 16:01:53 +01:00
|
|
|
safe_buffer_length_increment(pStubMsg, 4);
|
2007-06-25 15:28:01 +02:00
|
|
|
if (pStubMsg->IgnoreEmbeddedPointers)
|
|
|
|
return;
|
|
|
|
if (pStubMsg->PointerLength)
|
|
|
|
{
|
|
|
|
saved_buffer_length = pStubMsg->BufferLength;
|
|
|
|
pStubMsg->BufferLength = pStubMsg->PointerLength;
|
|
|
|
pStubMsg->PointerLength = 0;
|
|
|
|
}
|
2006-05-18 04:39:27 +02:00
|
|
|
ALIGN_LENGTH(pStubMsg->BufferLength, 8);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
ALIGN_LENGTH(pStubMsg->BufferLength, (flags & 0xf) + 1);
|
|
|
|
|
2003-02-01 01:44:51 +01:00
|
|
|
if (bufsize) {
|
2006-11-09 23:04:48 +01:00
|
|
|
TRACE("size=%d\n", bufsize);
|
2007-11-28 16:01:53 +01:00
|
|
|
safe_buffer_length_increment(pStubMsg, bufsize);
|
2007-06-25 15:28:01 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
pStubMsg->BufferLength =
|
|
|
|
pStubMsg->StubDesc->aUserMarshalQuadruple[index].pfnBufferSize(
|
2007-12-09 19:22:57 +01:00
|
|
|
&umcb.Flags, pStubMsg->BufferLength, pMemory);
|
2007-06-25 15:28:01 +02:00
|
|
|
|
|
|
|
if (saved_buffer_length)
|
|
|
|
{
|
|
|
|
pStubMsg->PointerLength = pStubMsg->BufferLength;
|
|
|
|
pStubMsg->BufferLength = saved_buffer_length;
|
2003-02-01 01:44:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrUserMarshalMemorySize [RPCRT4.@]
|
|
|
|
*/
|
2006-11-09 23:01:58 +01:00
|
|
|
ULONG WINAPI NdrUserMarshalMemorySize(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
PFORMAT_STRING pFormat)
|
2003-02-01 01:44:51 +01:00
|
|
|
{
|
2006-05-18 04:39:27 +02:00
|
|
|
unsigned flags = pFormat[1];
|
2004-11-30 22:38:57 +01:00
|
|
|
unsigned index = *(const WORD*)&pFormat[2];
|
2006-05-18 04:39:19 +02:00
|
|
|
DWORD memsize = *(const WORD*)&pFormat[4];
|
|
|
|
DWORD bufsize = *(const WORD*)&pFormat[6];
|
|
|
|
|
|
|
|
TRACE("(%p,%p)\n", pStubMsg, pFormat);
|
2003-02-17 02:48:24 +01:00
|
|
|
TRACE("index=%d\n", index);
|
|
|
|
|
2006-05-18 04:39:19 +02:00
|
|
|
pStubMsg->MemorySize += memsize;
|
2006-05-18 04:39:27 +02:00
|
|
|
|
|
|
|
if (flags & USER_MARSHAL_POINTER)
|
|
|
|
{
|
|
|
|
ALIGN_POINTER(pStubMsg->Buffer, 4);
|
|
|
|
/* skip pointer prefix */
|
|
|
|
pStubMsg->Buffer += 4;
|
2007-06-25 15:28:01 +02:00
|
|
|
if (pStubMsg->IgnoreEmbeddedPointers)
|
|
|
|
return pStubMsg->MemorySize;
|
2006-05-18 04:39:27 +02:00
|
|
|
ALIGN_POINTER(pStubMsg->Buffer, 8);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
ALIGN_POINTER(pStubMsg->Buffer, (flags & 0xf) + 1);
|
|
|
|
|
2007-06-25 15:28:01 +02:00
|
|
|
if (!bufsize)
|
|
|
|
FIXME("not implemented for varying buffer size\n");
|
|
|
|
|
2006-05-18 04:39:19 +02:00
|
|
|
pStubMsg->Buffer += bufsize;
|
|
|
|
|
|
|
|
return pStubMsg->MemorySize;
|
2003-02-01 01:44:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrUserMarshalFree [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
void WINAPI NdrUserMarshalFree(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char *pMemory,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
|
|
|
/* unsigned flags = pFormat[1]; */
|
2004-11-30 22:38:57 +01:00
|
|
|
unsigned index = *(const WORD*)&pFormat[2];
|
2007-12-09 19:22:57 +01:00
|
|
|
USER_MARSHAL_CB umcb;
|
|
|
|
|
2003-02-01 01:44:51 +01:00
|
|
|
TRACE("(%p,%p,%p)\n", pStubMsg, pMemory, pFormat);
|
|
|
|
TRACE("index=%d\n", index);
|
|
|
|
|
2007-12-09 19:22:57 +01:00
|
|
|
UserMarshalCB(pStubMsg, USER_MARSHAL_CB_FREE, pFormat, &umcb);
|
|
|
|
|
2003-02-01 01:44:51 +01:00
|
|
|
pStubMsg->StubDesc->aUserMarshalQuadruple[index].pfnFree(
|
2007-12-09 19:22:57 +01:00
|
|
|
&umcb.Flags, pMemory);
|
2002-10-22 02:41:17 +02:00
|
|
|
}
|
2002-10-25 21:03:43 +02:00
|
|
|
|
2003-05-20 04:17:49 +02:00
|
|
|
/***********************************************************************
|
|
|
|
* NdrClearOutParameters [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
void WINAPI NdrClearOutParameters(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
PFORMAT_STRING pFormat,
|
|
|
|
void *ArgAddr)
|
|
|
|
{
|
|
|
|
FIXME("(%p,%p,%p): stub\n", pStubMsg, pFormat, ArgAddr);
|
|
|
|
}
|
|
|
|
|
2002-10-28 21:07:01 +01:00
|
|
|
/***********************************************************************
|
|
|
|
* NdrConvert [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
void WINAPI NdrConvert( PMIDL_STUB_MESSAGE pStubMsg, PFORMAT_STRING pFormat )
|
|
|
|
{
|
|
|
|
FIXME("(pStubMsg == ^%p, pFormat == ^%p): stub.\n", pStubMsg, pFormat);
|
2002-10-28 22:14:16 +01:00
|
|
|
/* FIXME: since this stub doesn't do any converting, the proper behavior
|
|
|
|
is to raise an exception */
|
2002-10-28 21:07:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrConvert2 [RPCRT4.@]
|
|
|
|
*/
|
2006-11-09 23:01:58 +01:00
|
|
|
void WINAPI NdrConvert2( PMIDL_STUB_MESSAGE pStubMsg, PFORMAT_STRING pFormat, LONG NumberParams )
|
2002-10-28 21:07:01 +01:00
|
|
|
{
|
2006-11-09 23:04:48 +01:00
|
|
|
FIXME("(pStubMsg == ^%p, pFormat == ^%p, NumberParams == %d): stub.\n",
|
2002-11-01 00:35:46 +01:00
|
|
|
pStubMsg, pFormat, NumberParams);
|
2002-10-28 22:14:16 +01:00
|
|
|
/* FIXME: since this stub doesn't do any converting, the proper behavior
|
|
|
|
is to raise an exception */
|
2002-10-28 21:07:01 +01:00
|
|
|
}
|
2005-07-18 15:14:05 +02:00
|
|
|
|
2007-02-12 14:29:04 +01:00
|
|
|
#include "pshpack1.h"
|
2005-11-28 11:30:12 +01:00
|
|
|
typedef struct _NDR_CSTRUCT_FORMAT
|
|
|
|
{
|
|
|
|
unsigned char type;
|
|
|
|
unsigned char alignment;
|
|
|
|
unsigned short memory_size;
|
|
|
|
short offset_to_array_description;
|
2006-05-15 17:56:37 +02:00
|
|
|
} NDR_CSTRUCT_FORMAT, NDR_CVSTRUCT_FORMAT;
|
2007-02-12 14:29:04 +01:00
|
|
|
#include "poppack.h"
|
2005-11-28 11:30:12 +01:00
|
|
|
|
2005-07-18 15:14:05 +02:00
|
|
|
/***********************************************************************
|
|
|
|
* NdrConformantStructMarshall [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
unsigned char * WINAPI NdrConformantStructMarshall(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char *pMemory,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
2006-09-25 23:20:20 +02:00
|
|
|
const NDR_CSTRUCT_FORMAT *pCStructFormat = (const NDR_CSTRUCT_FORMAT *)pFormat;
|
2006-05-15 14:35:31 +02:00
|
|
|
PFORMAT_STRING pCArrayFormat;
|
2006-06-10 13:32:24 +02:00
|
|
|
ULONG esize, bufsize;
|
2005-11-28 11:30:12 +01:00
|
|
|
|
|
|
|
TRACE("(%p, %p, %p)\n", pStubMsg, pMemory, pFormat);
|
|
|
|
|
2006-05-15 14:35:31 +02:00
|
|
|
pFormat += sizeof(NDR_CSTRUCT_FORMAT);
|
2005-11-28 11:30:12 +01:00
|
|
|
if ((pCStructFormat->type != RPC_FC_CPSTRUCT) && (pCStructFormat->type != RPC_FC_CSTRUCT))
|
|
|
|
{
|
|
|
|
ERR("invalid format type %x\n", pCStructFormat->type);
|
|
|
|
RpcRaiseException(RPC_S_INTERNAL_ERROR);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2006-09-25 23:20:20 +02:00
|
|
|
pCArrayFormat = (const unsigned char *)&pCStructFormat->offset_to_array_description +
|
2006-05-15 14:35:31 +02:00
|
|
|
pCStructFormat->offset_to_array_description;
|
|
|
|
if (*pCArrayFormat != RPC_FC_CARRAY)
|
|
|
|
{
|
|
|
|
ERR("invalid array format type %x\n", pCStructFormat->type);
|
|
|
|
RpcRaiseException(RPC_S_INTERNAL_ERROR);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
esize = *(const WORD*)(pCArrayFormat+2);
|
|
|
|
|
|
|
|
ComputeConformance(pStubMsg, pMemory + pCStructFormat->memory_size,
|
|
|
|
pCArrayFormat + 4, 0);
|
|
|
|
|
|
|
|
WriteConformance(pStubMsg);
|
|
|
|
|
2007-12-14 20:55:04 +01:00
|
|
|
ALIGN_POINTER_CLEAR(pStubMsg->Buffer, pCStructFormat->alignment + 1);
|
2006-05-10 14:12:30 +02:00
|
|
|
|
2005-11-28 11:30:12 +01:00
|
|
|
TRACE("memory_size = %d\n", pCStructFormat->memory_size);
|
|
|
|
|
2006-06-10 13:32:24 +02:00
|
|
|
bufsize = safe_multiply(esize, pStubMsg->MaxCount);
|
2007-11-28 16:02:39 +01:00
|
|
|
if (pCStructFormat->memory_size + bufsize < pCStructFormat->memory_size) /* integer overflow */
|
|
|
|
{
|
|
|
|
ERR("integer overflow of memory_size %u with bufsize %u\n",
|
|
|
|
pCStructFormat->memory_size, bufsize);
|
|
|
|
RpcRaiseException(RPC_X_BAD_STUB_DATA);
|
|
|
|
}
|
2005-11-28 11:30:12 +01:00
|
|
|
/* copy constant sized part of struct */
|
2006-05-15 14:35:31 +02:00
|
|
|
pStubMsg->BufferMark = pStubMsg->Buffer;
|
2007-11-28 16:02:06 +01:00
|
|
|
safe_copy_to_buffer(pStubMsg, pMemory, pCStructFormat->memory_size + bufsize);
|
2005-11-28 11:30:12 +01:00
|
|
|
|
|
|
|
if (pCStructFormat->type == RPC_FC_CPSTRUCT)
|
|
|
|
EmbeddedPointerMarshall(pStubMsg, pMemory, pFormat);
|
2006-05-15 14:35:31 +02:00
|
|
|
|
2005-07-18 15:14:05 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrConformantStructUnmarshall [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
unsigned char * WINAPI NdrConformantStructUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char **ppMemory,
|
|
|
|
PFORMAT_STRING pFormat,
|
|
|
|
unsigned char fMustAlloc)
|
|
|
|
{
|
2006-09-25 23:20:20 +02:00
|
|
|
const NDR_CSTRUCT_FORMAT *pCStructFormat = (const NDR_CSTRUCT_FORMAT *)pFormat;
|
2006-05-15 14:35:31 +02:00
|
|
|
PFORMAT_STRING pCArrayFormat;
|
2006-06-10 13:32:24 +02:00
|
|
|
ULONG esize, bufsize;
|
2007-12-08 18:14:24 +01:00
|
|
|
unsigned char *saved_buffer;
|
2005-11-28 11:30:12 +01:00
|
|
|
|
|
|
|
TRACE("(%p, %p, %p, %d)\n", pStubMsg, ppMemory, pFormat, fMustAlloc);
|
|
|
|
|
2006-05-15 14:35:31 +02:00
|
|
|
pFormat += sizeof(NDR_CSTRUCT_FORMAT);
|
2005-11-28 11:30:12 +01:00
|
|
|
if ((pCStructFormat->type != RPC_FC_CPSTRUCT) && (pCStructFormat->type != RPC_FC_CSTRUCT))
|
|
|
|
{
|
|
|
|
ERR("invalid format type %x\n", pCStructFormat->type);
|
|
|
|
RpcRaiseException(RPC_S_INTERNAL_ERROR);
|
|
|
|
return NULL;
|
|
|
|
}
|
2006-09-25 23:20:20 +02:00
|
|
|
pCArrayFormat = (const unsigned char *)&pCStructFormat->offset_to_array_description +
|
2006-05-15 14:35:31 +02:00
|
|
|
pCStructFormat->offset_to_array_description;
|
|
|
|
if (*pCArrayFormat != RPC_FC_CARRAY)
|
|
|
|
{
|
|
|
|
ERR("invalid array format type %x\n", pCStructFormat->type);
|
|
|
|
RpcRaiseException(RPC_S_INTERNAL_ERROR);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
esize = *(const WORD*)(pCArrayFormat+2);
|
|
|
|
|
|
|
|
pCArrayFormat = ReadConformance(pStubMsg, pCArrayFormat + 4);
|
2005-11-28 11:30:12 +01:00
|
|
|
|
2006-05-10 14:12:30 +02:00
|
|
|
ALIGN_POINTER(pStubMsg->Buffer, pCStructFormat->alignment + 1);
|
|
|
|
|
2005-11-28 11:30:12 +01:00
|
|
|
TRACE("memory_size = %d\n", pCStructFormat->memory_size);
|
|
|
|
|
2006-06-10 13:32:24 +02:00
|
|
|
bufsize = safe_multiply(esize, pStubMsg->MaxCount);
|
2007-11-28 16:02:39 +01:00
|
|
|
if (pCStructFormat->memory_size + bufsize < pCStructFormat->memory_size) /* integer overflow */
|
|
|
|
{
|
|
|
|
ERR("integer overflow of memory_size %u with bufsize %u\n",
|
|
|
|
pCStructFormat->memory_size, bufsize);
|
|
|
|
RpcRaiseException(RPC_X_BAD_STUB_DATA);
|
|
|
|
}
|
2007-12-08 18:14:24 +01:00
|
|
|
|
|
|
|
if (fMustAlloc)
|
2005-11-28 11:30:12 +01:00
|
|
|
{
|
2006-06-10 13:32:24 +02:00
|
|
|
SIZE_T size = pCStructFormat->memory_size + bufsize;
|
2005-11-28 11:30:12 +01:00
|
|
|
*ppMemory = NdrAllocate(pStubMsg, size);
|
|
|
|
}
|
2007-12-08 18:14:24 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
if (!pStubMsg->IsClient && !*ppMemory)
|
|
|
|
/* for servers, we just point straight into the RPC buffer */
|
|
|
|
*ppMemory = pStubMsg->Buffer;
|
|
|
|
}
|
2005-11-28 11:30:12 +01:00
|
|
|
|
2007-12-08 18:14:24 +01:00
|
|
|
saved_buffer = pStubMsg->BufferMark = pStubMsg->Buffer;
|
|
|
|
safe_buffer_increment(pStubMsg, pCStructFormat->memory_size + bufsize);
|
2005-11-28 11:30:12 +01:00
|
|
|
if (pCStructFormat->type == RPC_FC_CPSTRUCT)
|
2007-12-08 18:14:24 +01:00
|
|
|
EmbeddedPointerUnmarshall(pStubMsg, saved_buffer, *ppMemory, pFormat, fMustAlloc);
|
|
|
|
|
|
|
|
TRACE("copying %p to %p\n", saved_buffer, *ppMemory);
|
|
|
|
if (*ppMemory != saved_buffer)
|
|
|
|
memcpy(*ppMemory, saved_buffer, pCStructFormat->memory_size + bufsize);
|
2006-05-15 14:35:31 +02:00
|
|
|
|
2005-07-18 15:14:05 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrConformantStructBufferSize [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
void WINAPI NdrConformantStructBufferSize(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char *pMemory,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
2006-09-25 23:20:20 +02:00
|
|
|
const NDR_CSTRUCT_FORMAT * pCStructFormat = (const NDR_CSTRUCT_FORMAT *)pFormat;
|
2006-05-15 14:35:31 +02:00
|
|
|
PFORMAT_STRING pCArrayFormat;
|
|
|
|
ULONG esize;
|
|
|
|
|
2005-11-28 11:30:12 +01:00
|
|
|
TRACE("(%p, %p, %p)\n", pStubMsg, pMemory, pFormat);
|
|
|
|
|
2006-05-15 14:35:31 +02:00
|
|
|
pFormat += sizeof(NDR_CSTRUCT_FORMAT);
|
2005-11-28 11:30:12 +01:00
|
|
|
if ((pCStructFormat->type != RPC_FC_CPSTRUCT) && (pCStructFormat->type != RPC_FC_CSTRUCT))
|
|
|
|
{
|
|
|
|
ERR("invalid format type %x\n", pCStructFormat->type);
|
|
|
|
RpcRaiseException(RPC_S_INTERNAL_ERROR);
|
|
|
|
return;
|
|
|
|
}
|
2006-09-25 23:20:20 +02:00
|
|
|
pCArrayFormat = (const unsigned char *)&pCStructFormat->offset_to_array_description +
|
2006-05-15 14:35:31 +02:00
|
|
|
pCStructFormat->offset_to_array_description;
|
|
|
|
if (*pCArrayFormat != RPC_FC_CARRAY)
|
|
|
|
{
|
|
|
|
ERR("invalid array format type %x\n", pCStructFormat->type);
|
|
|
|
RpcRaiseException(RPC_S_INTERNAL_ERROR);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
esize = *(const WORD*)(pCArrayFormat+2);
|
|
|
|
|
|
|
|
pCArrayFormat = ComputeConformance(pStubMsg, pMemory + pCStructFormat->memory_size, pCArrayFormat+4, 0);
|
|
|
|
SizeConformance(pStubMsg);
|
2005-11-28 11:30:12 +01:00
|
|
|
|
2006-05-10 14:12:30 +02:00
|
|
|
ALIGN_LENGTH(pStubMsg->BufferLength, pCStructFormat->alignment + 1);
|
|
|
|
|
2005-11-28 11:30:12 +01:00
|
|
|
TRACE("memory_size = %d\n", pCStructFormat->memory_size);
|
|
|
|
|
2007-11-28 16:01:53 +01:00
|
|
|
safe_buffer_length_increment(pStubMsg, pCStructFormat->memory_size);
|
|
|
|
safe_buffer_length_increment(pStubMsg, safe_multiply(pStubMsg->MaxCount, esize));
|
2005-11-28 11:30:12 +01:00
|
|
|
|
|
|
|
if (pCStructFormat->type == RPC_FC_CPSTRUCT)
|
|
|
|
EmbeddedPointerBufferSize(pStubMsg, pMemory, pFormat);
|
2005-07-18 15:14:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrConformantStructMemorySize [RPCRT4.@]
|
|
|
|
*/
|
2006-11-09 23:01:58 +01:00
|
|
|
ULONG WINAPI NdrConformantStructMemorySize(PMIDL_STUB_MESSAGE pStubMsg,
|
2005-07-18 15:14:05 +02:00
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
|
|
|
FIXME("stub\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrConformantStructFree [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
void WINAPI NdrConformantStructFree(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char *pMemory,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
2007-12-06 15:06:02 +01:00
|
|
|
const NDR_CSTRUCT_FORMAT *pCStructFormat = (const NDR_CSTRUCT_FORMAT *)pFormat;
|
|
|
|
PFORMAT_STRING pCArrayFormat;
|
|
|
|
|
|
|
|
TRACE("(%p, %p, %p)\n", pStubMsg, pMemory, pFormat);
|
|
|
|
|
|
|
|
pFormat += sizeof(NDR_CSTRUCT_FORMAT);
|
|
|
|
if ((pCStructFormat->type != RPC_FC_CPSTRUCT) && (pCStructFormat->type != RPC_FC_CSTRUCT))
|
|
|
|
{
|
|
|
|
ERR("invalid format type %x\n", pCStructFormat->type);
|
|
|
|
RpcRaiseException(RPC_S_INTERNAL_ERROR);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
pCArrayFormat = (const unsigned char *)&pCStructFormat->offset_to_array_description +
|
|
|
|
pCStructFormat->offset_to_array_description;
|
|
|
|
if (*pCArrayFormat != RPC_FC_CARRAY)
|
|
|
|
{
|
|
|
|
ERR("invalid array format type %x\n", pCStructFormat->type);
|
|
|
|
RpcRaiseException(RPC_S_INTERNAL_ERROR);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ComputeConformance(pStubMsg, pMemory + pCStructFormat->memory_size,
|
|
|
|
pCArrayFormat + 4, 0);
|
|
|
|
|
|
|
|
TRACE("memory_size = %d\n", pCStructFormat->memory_size);
|
|
|
|
|
|
|
|
/* copy constant sized part of struct */
|
|
|
|
pStubMsg->BufferMark = pStubMsg->Buffer;
|
|
|
|
|
|
|
|
if (pCStructFormat->type == RPC_FC_CPSTRUCT)
|
|
|
|
EmbeddedPointerFree(pStubMsg, pMemory, pFormat);
|
2005-07-18 15:14:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrConformantVaryingStructMarshall [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
unsigned char * WINAPI NdrConformantVaryingStructMarshall(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char *pMemory,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
2006-09-25 23:20:20 +02:00
|
|
|
const NDR_CVSTRUCT_FORMAT *pCVStructFormat = (const NDR_CVSTRUCT_FORMAT *)pFormat;
|
2006-05-15 17:56:37 +02:00
|
|
|
PFORMAT_STRING pCVArrayFormat;
|
2006-06-10 13:32:24 +02:00
|
|
|
ULONG esize, bufsize;
|
2006-05-15 17:56:37 +02:00
|
|
|
|
|
|
|
TRACE("(%p, %p, %p)\n", pStubMsg, pMemory, pFormat);
|
|
|
|
|
|
|
|
pFormat += sizeof(NDR_CVSTRUCT_FORMAT);
|
|
|
|
if (pCVStructFormat->type != RPC_FC_CVSTRUCT)
|
|
|
|
{
|
|
|
|
ERR("invalid format type %x\n", pCVStructFormat->type);
|
|
|
|
RpcRaiseException(RPC_S_INTERNAL_ERROR);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2006-09-25 23:20:20 +02:00
|
|
|
pCVArrayFormat = (const unsigned char *)&pCVStructFormat->offset_to_array_description +
|
2006-05-15 17:56:37 +02:00
|
|
|
pCVStructFormat->offset_to_array_description;
|
|
|
|
switch (*pCVArrayFormat)
|
|
|
|
{
|
|
|
|
case RPC_FC_CVARRAY:
|
|
|
|
esize = *(const WORD*)(pCVArrayFormat+2);
|
|
|
|
|
|
|
|
pCVArrayFormat = ComputeConformance(pStubMsg, pMemory + pCVStructFormat->memory_size,
|
|
|
|
pCVArrayFormat + 4, 0);
|
|
|
|
pCVArrayFormat = ComputeVariance(pStubMsg, pMemory + pCVStructFormat->memory_size,
|
|
|
|
pCVArrayFormat, 0);
|
|
|
|
break;
|
|
|
|
case RPC_FC_C_CSTRING:
|
|
|
|
TRACE("string=%s\n", debugstr_a((char*)pMemory + pCVStructFormat->memory_size));
|
|
|
|
pStubMsg->ActualCount = strlen((char*)pMemory + pCVStructFormat->memory_size)+1;
|
|
|
|
esize = sizeof(char);
|
|
|
|
if (pCVArrayFormat[1] == RPC_FC_STRING_SIZED)
|
|
|
|
pCVArrayFormat = ComputeConformance(pStubMsg, pMemory + pCVStructFormat->memory_size,
|
|
|
|
pCVArrayFormat + 2, 0);
|
|
|
|
else
|
|
|
|
pStubMsg->MaxCount = pStubMsg->ActualCount;
|
|
|
|
break;
|
|
|
|
case RPC_FC_C_WSTRING:
|
|
|
|
TRACE("string=%s\n", debugstr_w((LPWSTR)pMemory + pCVStructFormat->memory_size));
|
|
|
|
pStubMsg->ActualCount = strlenW((LPWSTR)pMemory + pCVStructFormat->memory_size)+1;
|
|
|
|
esize = sizeof(WCHAR);
|
|
|
|
if (pCVArrayFormat[1] == RPC_FC_STRING_SIZED)
|
|
|
|
pCVArrayFormat = ComputeConformance(pStubMsg, pMemory + pCVStructFormat->memory_size,
|
|
|
|
pCVArrayFormat + 2, 0);
|
|
|
|
else
|
|
|
|
pStubMsg->MaxCount = pStubMsg->ActualCount;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ERR("invalid array format type %x\n", *pCVArrayFormat);
|
|
|
|
RpcRaiseException(RPC_S_INTERNAL_ERROR);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
WriteConformance(pStubMsg);
|
|
|
|
|
2007-12-14 20:55:04 +01:00
|
|
|
ALIGN_POINTER_CLEAR(pStubMsg->Buffer, pCVStructFormat->alignment + 1);
|
2006-05-15 17:56:37 +02:00
|
|
|
|
|
|
|
TRACE("memory_size = %d\n", pCVStructFormat->memory_size);
|
|
|
|
|
2006-05-15 17:56:55 +02:00
|
|
|
/* write constant sized part */
|
2006-05-15 17:56:37 +02:00
|
|
|
pStubMsg->BufferMark = pStubMsg->Buffer;
|
2007-11-28 16:02:06 +01:00
|
|
|
safe_copy_to_buffer(pStubMsg, pMemory, pCVStructFormat->memory_size);
|
2006-05-15 17:56:55 +02:00
|
|
|
|
|
|
|
WriteVariance(pStubMsg);
|
|
|
|
|
2006-06-10 13:32:24 +02:00
|
|
|
bufsize = safe_multiply(esize, pStubMsg->ActualCount);
|
|
|
|
|
2006-05-15 17:56:55 +02:00
|
|
|
/* write array part */
|
2007-11-28 16:02:06 +01:00
|
|
|
safe_copy_to_buffer(pStubMsg, pMemory + pCVStructFormat->memory_size, bufsize);
|
2006-05-15 17:56:37 +02:00
|
|
|
|
|
|
|
EmbeddedPointerMarshall(pStubMsg, pMemory, pFormat);
|
|
|
|
|
2005-07-18 15:14:05 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrConformantVaryingStructUnmarshall [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
unsigned char * WINAPI NdrConformantVaryingStructUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char **ppMemory,
|
|
|
|
PFORMAT_STRING pFormat,
|
|
|
|
unsigned char fMustAlloc)
|
|
|
|
{
|
2006-09-25 23:20:20 +02:00
|
|
|
const NDR_CVSTRUCT_FORMAT *pCVStructFormat = (const NDR_CVSTRUCT_FORMAT *)pFormat;
|
2006-05-15 17:56:37 +02:00
|
|
|
PFORMAT_STRING pCVArrayFormat;
|
2006-06-10 13:32:24 +02:00
|
|
|
ULONG esize, bufsize;
|
2006-05-15 17:56:37 +02:00
|
|
|
unsigned char cvarray_type;
|
2008-06-23 13:56:49 +02:00
|
|
|
unsigned char *saved_buffer, *saved_array_buffer;
|
2006-05-15 17:56:37 +02:00
|
|
|
|
|
|
|
TRACE("(%p, %p, %p, %d)\n", pStubMsg, ppMemory, pFormat, fMustAlloc);
|
|
|
|
|
|
|
|
pFormat += sizeof(NDR_CVSTRUCT_FORMAT);
|
|
|
|
if (pCVStructFormat->type != RPC_FC_CVSTRUCT)
|
|
|
|
{
|
|
|
|
ERR("invalid format type %x\n", pCVStructFormat->type);
|
|
|
|
RpcRaiseException(RPC_S_INTERNAL_ERROR);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2006-09-25 23:20:20 +02:00
|
|
|
pCVArrayFormat = (const unsigned char *)&pCVStructFormat->offset_to_array_description +
|
2006-05-15 17:56:37 +02:00
|
|
|
pCVStructFormat->offset_to_array_description;
|
|
|
|
cvarray_type = *pCVArrayFormat;
|
|
|
|
switch (cvarray_type)
|
|
|
|
{
|
|
|
|
case RPC_FC_CVARRAY:
|
|
|
|
esize = *(const WORD*)(pCVArrayFormat+2);
|
|
|
|
pCVArrayFormat = ReadConformance(pStubMsg, pCVArrayFormat + 4);
|
|
|
|
break;
|
|
|
|
case RPC_FC_C_CSTRING:
|
|
|
|
esize = sizeof(char);
|
|
|
|
if (pCVArrayFormat[1] == RPC_FC_STRING_SIZED)
|
|
|
|
pCVArrayFormat = ReadConformance(pStubMsg, pCVArrayFormat + 2);
|
|
|
|
else
|
|
|
|
pCVArrayFormat = ReadConformance(pStubMsg, NULL);
|
|
|
|
break;
|
|
|
|
case RPC_FC_C_WSTRING:
|
|
|
|
esize = sizeof(WCHAR);
|
|
|
|
if (pCVArrayFormat[1] == RPC_FC_STRING_SIZED)
|
|
|
|
pCVArrayFormat = ReadConformance(pStubMsg, pCVArrayFormat + 2);
|
|
|
|
else
|
|
|
|
pCVArrayFormat = ReadConformance(pStubMsg, NULL);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ERR("invalid array format type %x\n", *pCVArrayFormat);
|
|
|
|
RpcRaiseException(RPC_S_INTERNAL_ERROR);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
ALIGN_POINTER(pStubMsg->Buffer, pCVStructFormat->alignment + 1);
|
|
|
|
|
|
|
|
TRACE("memory_size = %d\n", pCVStructFormat->memory_size);
|
|
|
|
|
|
|
|
/* work out how much memory to allocate if we need to do so */
|
|
|
|
if (!*ppMemory || fMustAlloc)
|
|
|
|
{
|
2006-06-10 13:32:24 +02:00
|
|
|
SIZE_T size = pCVStructFormat->memory_size + safe_multiply(esize, pStubMsg->MaxCount);
|
2006-05-15 17:56:37 +02:00
|
|
|
*ppMemory = NdrAllocate(pStubMsg, size);
|
|
|
|
}
|
|
|
|
|
2008-06-23 13:56:49 +02:00
|
|
|
/* mark the start of the constant data */
|
|
|
|
saved_buffer = pStubMsg->BufferMark = pStubMsg->Buffer;
|
|
|
|
safe_buffer_increment(pStubMsg, pCVStructFormat->memory_size);
|
2006-05-15 17:56:55 +02:00
|
|
|
|
2006-06-10 13:32:47 +02:00
|
|
|
pCVArrayFormat = ReadVariance(pStubMsg, pCVArrayFormat, pStubMsg->MaxCount);
|
2006-05-15 17:56:55 +02:00
|
|
|
|
2006-06-10 13:32:24 +02:00
|
|
|
bufsize = safe_multiply(esize, pStubMsg->ActualCount);
|
2006-06-10 13:32:35 +02:00
|
|
|
|
|
|
|
if ((cvarray_type == RPC_FC_C_CSTRING) ||
|
|
|
|
(cvarray_type == RPC_FC_C_WSTRING))
|
2008-06-23 13:56:29 +02:00
|
|
|
validate_string_data(pStubMsg, bufsize, esize);
|
2006-06-10 13:32:35 +02:00
|
|
|
|
2008-06-23 13:56:49 +02:00
|
|
|
/* mark the start of the array data */
|
|
|
|
saved_array_buffer = pStubMsg->Buffer;
|
|
|
|
safe_buffer_increment(pStubMsg, bufsize);
|
|
|
|
|
|
|
|
EmbeddedPointerUnmarshall(pStubMsg, saved_buffer, *ppMemory, pFormat, fMustAlloc);
|
|
|
|
|
|
|
|
/* copy the constant data */
|
|
|
|
memcpy(*ppMemory, saved_buffer, pCVStructFormat->memory_size);
|
2006-05-15 17:56:55 +02:00
|
|
|
/* copy the array data */
|
2008-06-23 13:56:49 +02:00
|
|
|
TRACE("copying %p to %p\n", saved_array_buffer, *ppMemory + pCVStructFormat->memory_size);
|
|
|
|
memcpy(*ppMemory + pCVStructFormat->memory_size, saved_array_buffer, bufsize);
|
2006-05-15 17:56:37 +02:00
|
|
|
|
|
|
|
if (cvarray_type == RPC_FC_C_CSTRING)
|
|
|
|
TRACE("string=%s\n", debugstr_a((char *)(*ppMemory + pCVStructFormat->memory_size)));
|
|
|
|
else if (cvarray_type == RPC_FC_C_WSTRING)
|
|
|
|
TRACE("string=%s\n", debugstr_w((WCHAR *)(*ppMemory + pCVStructFormat->memory_size)));
|
|
|
|
|
2005-07-18 15:14:05 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrConformantVaryingStructBufferSize [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
void WINAPI NdrConformantVaryingStructBufferSize(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char *pMemory,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
2006-09-25 23:20:20 +02:00
|
|
|
const NDR_CVSTRUCT_FORMAT *pCVStructFormat = (const NDR_CVSTRUCT_FORMAT *)pFormat;
|
2006-05-15 17:56:37 +02:00
|
|
|
PFORMAT_STRING pCVArrayFormat;
|
|
|
|
ULONG esize;
|
|
|
|
|
|
|
|
TRACE("(%p, %p, %p)\n", pStubMsg, pMemory, pFormat);
|
|
|
|
|
|
|
|
pFormat += sizeof(NDR_CVSTRUCT_FORMAT);
|
|
|
|
if (pCVStructFormat->type != RPC_FC_CVSTRUCT)
|
|
|
|
{
|
|
|
|
ERR("invalid format type %x\n", pCVStructFormat->type);
|
|
|
|
RpcRaiseException(RPC_S_INTERNAL_ERROR);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2006-09-25 23:20:20 +02:00
|
|
|
pCVArrayFormat = (const unsigned char *)&pCVStructFormat->offset_to_array_description +
|
2006-05-15 17:56:37 +02:00
|
|
|
pCVStructFormat->offset_to_array_description;
|
|
|
|
switch (*pCVArrayFormat)
|
|
|
|
{
|
|
|
|
case RPC_FC_CVARRAY:
|
|
|
|
esize = *(const WORD*)(pCVArrayFormat+2);
|
|
|
|
|
|
|
|
pCVArrayFormat = ComputeConformance(pStubMsg, pMemory + pCVStructFormat->memory_size,
|
|
|
|
pCVArrayFormat + 4, 0);
|
|
|
|
pCVArrayFormat = ComputeVariance(pStubMsg, pMemory + pCVStructFormat->memory_size,
|
2006-06-02 21:45:40 +02:00
|
|
|
pCVArrayFormat, 0);
|
2006-05-15 17:56:37 +02:00
|
|
|
break;
|
|
|
|
case RPC_FC_C_CSTRING:
|
|
|
|
TRACE("string=%s\n", debugstr_a((char*)pMemory + pCVStructFormat->memory_size));
|
|
|
|
pStubMsg->ActualCount = strlen((char*)pMemory + pCVStructFormat->memory_size)+1;
|
|
|
|
esize = sizeof(char);
|
|
|
|
if (pCVArrayFormat[1] == RPC_FC_STRING_SIZED)
|
|
|
|
pCVArrayFormat = ComputeConformance(pStubMsg, pMemory + pCVStructFormat->memory_size,
|
|
|
|
pCVArrayFormat + 2, 0);
|
|
|
|
else
|
|
|
|
pStubMsg->MaxCount = pStubMsg->ActualCount;
|
|
|
|
break;
|
|
|
|
case RPC_FC_C_WSTRING:
|
|
|
|
TRACE("string=%s\n", debugstr_w((LPWSTR)pMemory + pCVStructFormat->memory_size));
|
|
|
|
pStubMsg->ActualCount = strlenW((LPWSTR)pMemory + pCVStructFormat->memory_size)+1;
|
|
|
|
esize = sizeof(WCHAR);
|
|
|
|
if (pCVArrayFormat[1] == RPC_FC_STRING_SIZED)
|
|
|
|
pCVArrayFormat = ComputeConformance(pStubMsg, pMemory + pCVStructFormat->memory_size,
|
|
|
|
pCVArrayFormat + 2, 0);
|
|
|
|
else
|
|
|
|
pStubMsg->MaxCount = pStubMsg->ActualCount;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ERR("invalid array format type %x\n", *pCVArrayFormat);
|
|
|
|
RpcRaiseException(RPC_S_INTERNAL_ERROR);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
SizeConformance(pStubMsg);
|
|
|
|
|
|
|
|
ALIGN_LENGTH(pStubMsg->BufferLength, pCVStructFormat->alignment + 1);
|
|
|
|
|
|
|
|
TRACE("memory_size = %d\n", pCVStructFormat->memory_size);
|
|
|
|
|
2007-11-28 16:01:53 +01:00
|
|
|
safe_buffer_length_increment(pStubMsg, pCVStructFormat->memory_size);
|
2006-05-15 17:56:55 +02:00
|
|
|
SizeVariance(pStubMsg);
|
2007-11-28 16:01:53 +01:00
|
|
|
safe_buffer_length_increment(pStubMsg, safe_multiply(pStubMsg->MaxCount, esize));
|
2006-05-15 17:56:37 +02:00
|
|
|
|
|
|
|
EmbeddedPointerBufferSize(pStubMsg, pMemory, pFormat);
|
2005-07-18 15:14:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrConformantVaryingStructMemorySize [RPCRT4.@]
|
|
|
|
*/
|
2006-11-09 23:01:58 +01:00
|
|
|
ULONG WINAPI NdrConformantVaryingStructMemorySize(PMIDL_STUB_MESSAGE pStubMsg,
|
2005-07-18 15:14:05 +02:00
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
2006-09-25 23:20:20 +02:00
|
|
|
const NDR_CVSTRUCT_FORMAT *pCVStructFormat = (const NDR_CVSTRUCT_FORMAT *)pFormat;
|
2006-05-15 17:56:37 +02:00
|
|
|
PFORMAT_STRING pCVArrayFormat;
|
|
|
|
ULONG esize;
|
|
|
|
unsigned char cvarray_type;
|
|
|
|
|
|
|
|
TRACE("(%p, %p)\n", pStubMsg, pFormat);
|
|
|
|
|
|
|
|
pFormat += sizeof(NDR_CVSTRUCT_FORMAT);
|
|
|
|
if (pCVStructFormat->type != RPC_FC_CVSTRUCT)
|
|
|
|
{
|
|
|
|
ERR("invalid format type %x\n", pCVStructFormat->type);
|
|
|
|
RpcRaiseException(RPC_S_INTERNAL_ERROR);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-09-25 23:20:20 +02:00
|
|
|
pCVArrayFormat = (const unsigned char *)&pCVStructFormat->offset_to_array_description +
|
2006-05-15 17:56:37 +02:00
|
|
|
pCVStructFormat->offset_to_array_description;
|
|
|
|
cvarray_type = *pCVArrayFormat;
|
|
|
|
switch (cvarray_type)
|
|
|
|
{
|
|
|
|
case RPC_FC_CVARRAY:
|
|
|
|
esize = *(const WORD*)(pCVArrayFormat+2);
|
|
|
|
pCVArrayFormat = ReadConformance(pStubMsg, pCVArrayFormat + 4);
|
|
|
|
break;
|
|
|
|
case RPC_FC_C_CSTRING:
|
|
|
|
esize = sizeof(char);
|
|
|
|
if (pCVArrayFormat[1] == RPC_FC_STRING_SIZED)
|
|
|
|
pCVArrayFormat = ReadConformance(pStubMsg, pCVArrayFormat + 2);
|
|
|
|
else
|
|
|
|
pCVArrayFormat = ReadConformance(pStubMsg, NULL);
|
|
|
|
break;
|
|
|
|
case RPC_FC_C_WSTRING:
|
|
|
|
esize = sizeof(WCHAR);
|
|
|
|
if (pCVArrayFormat[1] == RPC_FC_STRING_SIZED)
|
|
|
|
pCVArrayFormat = ReadConformance(pStubMsg, pCVArrayFormat + 2);
|
|
|
|
else
|
|
|
|
pCVArrayFormat = ReadConformance(pStubMsg, NULL);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ERR("invalid array format type %x\n", *pCVArrayFormat);
|
|
|
|
RpcRaiseException(RPC_S_INTERNAL_ERROR);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
ALIGN_POINTER(pStubMsg->Buffer, pCVStructFormat->alignment + 1);
|
|
|
|
|
|
|
|
TRACE("memory_size = %d\n", pCVStructFormat->memory_size);
|
|
|
|
|
2007-11-28 16:02:21 +01:00
|
|
|
safe_buffer_increment(pStubMsg, pCVStructFormat->memory_size);
|
2006-06-10 13:32:47 +02:00
|
|
|
pCVArrayFormat = ReadVariance(pStubMsg, pCVArrayFormat, pStubMsg->MaxCount);
|
2007-11-28 16:02:21 +01:00
|
|
|
safe_buffer_increment(pStubMsg, safe_multiply(esize, pStubMsg->ActualCount));
|
2006-05-15 17:56:55 +02:00
|
|
|
|
2006-06-10 13:32:24 +02:00
|
|
|
pStubMsg->MemorySize += pCVStructFormat->memory_size + safe_multiply(esize, pStubMsg->MaxCount);
|
2006-05-15 17:56:37 +02:00
|
|
|
|
|
|
|
EmbeddedPointerMemorySize(pStubMsg, pFormat);
|
|
|
|
|
2006-05-15 17:56:55 +02:00
|
|
|
return pCVStructFormat->memory_size + pStubMsg->MaxCount * esize;
|
2005-07-18 15:14:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrConformantVaryingStructFree [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
void WINAPI NdrConformantVaryingStructFree(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char *pMemory,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
2006-09-25 23:20:20 +02:00
|
|
|
const NDR_CVSTRUCT_FORMAT *pCVStructFormat = (const NDR_CVSTRUCT_FORMAT *)pFormat;
|
2006-05-15 17:56:37 +02:00
|
|
|
PFORMAT_STRING pCVArrayFormat;
|
|
|
|
|
|
|
|
TRACE("(%p, %p, %p)\n", pStubMsg, pMemory, pFormat);
|
|
|
|
|
|
|
|
pFormat += sizeof(NDR_CVSTRUCT_FORMAT);
|
|
|
|
if (pCVStructFormat->type != RPC_FC_CVSTRUCT)
|
|
|
|
{
|
|
|
|
ERR("invalid format type %x\n", pCVStructFormat->type);
|
|
|
|
RpcRaiseException(RPC_S_INTERNAL_ERROR);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2006-09-25 23:20:20 +02:00
|
|
|
pCVArrayFormat = (const unsigned char *)&pCVStructFormat->offset_to_array_description +
|
2006-05-15 17:56:37 +02:00
|
|
|
pCVStructFormat->offset_to_array_description;
|
|
|
|
switch (*pCVArrayFormat)
|
|
|
|
{
|
|
|
|
case RPC_FC_CVARRAY:
|
|
|
|
pCVArrayFormat = ComputeConformance(pStubMsg, pMemory + pCVStructFormat->memory_size,
|
|
|
|
pCVArrayFormat + 4, 0);
|
|
|
|
pCVArrayFormat = ComputeVariance(pStubMsg, pMemory + pCVStructFormat->memory_size,
|
|
|
|
pCVArrayFormat, 0);
|
|
|
|
break;
|
|
|
|
case RPC_FC_C_CSTRING:
|
|
|
|
TRACE("string=%s\n", debugstr_a((char*)pMemory + pCVStructFormat->memory_size));
|
|
|
|
pStubMsg->ActualCount = strlen((char*)pMemory + pCVStructFormat->memory_size)+1;
|
|
|
|
if (pCVArrayFormat[1] == RPC_FC_STRING_SIZED)
|
|
|
|
pCVArrayFormat = ComputeConformance(pStubMsg, pMemory + pCVStructFormat->memory_size,
|
|
|
|
pCVArrayFormat + 2, 0);
|
|
|
|
else
|
|
|
|
pStubMsg->MaxCount = pStubMsg->ActualCount;
|
|
|
|
break;
|
|
|
|
case RPC_FC_C_WSTRING:
|
|
|
|
TRACE("string=%s\n", debugstr_w((LPWSTR)pMemory + pCVStructFormat->memory_size));
|
|
|
|
pStubMsg->ActualCount = strlenW((LPWSTR)pMemory + pCVStructFormat->memory_size)+1;
|
|
|
|
if (pCVArrayFormat[1] == RPC_FC_STRING_SIZED)
|
|
|
|
pCVArrayFormat = ComputeConformance(pStubMsg, pMemory + pCVStructFormat->memory_size,
|
|
|
|
pCVArrayFormat + 2, 0);
|
|
|
|
else
|
|
|
|
pStubMsg->MaxCount = pStubMsg->ActualCount;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ERR("invalid array format type %x\n", *pCVArrayFormat);
|
|
|
|
RpcRaiseException(RPC_S_INTERNAL_ERROR);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
TRACE("memory_size = %d\n", pCVStructFormat->memory_size);
|
|
|
|
|
|
|
|
EmbeddedPointerFree(pStubMsg, pMemory, pFormat);
|
2005-07-18 15:14:05 +02:00
|
|
|
}
|
|
|
|
|
2007-02-12 14:29:04 +01:00
|
|
|
#include "pshpack1.h"
|
2006-05-15 17:57:21 +02:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
unsigned char type;
|
|
|
|
unsigned char alignment;
|
|
|
|
unsigned short total_size;
|
|
|
|
} NDR_SMFARRAY_FORMAT;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
unsigned char type;
|
|
|
|
unsigned char alignment;
|
|
|
|
unsigned long total_size;
|
|
|
|
} NDR_LGFARRAY_FORMAT;
|
2007-02-12 14:29:04 +01:00
|
|
|
#include "poppack.h"
|
2006-05-15 17:57:21 +02:00
|
|
|
|
2005-07-18 15:14:05 +02:00
|
|
|
/***********************************************************************
|
|
|
|
* NdrFixedArrayMarshall [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
unsigned char * WINAPI NdrFixedArrayMarshall(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char *pMemory,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
2006-05-15 17:57:21 +02:00
|
|
|
const NDR_SMFARRAY_FORMAT *pSmFArrayFormat = (const NDR_SMFARRAY_FORMAT *)pFormat;
|
|
|
|
unsigned long total_size;
|
|
|
|
|
|
|
|
TRACE("(%p, %p, %p)\n", pStubMsg, pMemory, pFormat);
|
|
|
|
|
|
|
|
if ((pSmFArrayFormat->type != RPC_FC_SMFARRAY) &&
|
|
|
|
(pSmFArrayFormat->type != RPC_FC_LGFARRAY))
|
|
|
|
{
|
|
|
|
ERR("invalid format type %x\n", pSmFArrayFormat->type);
|
|
|
|
RpcRaiseException(RPC_S_INTERNAL_ERROR);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2007-12-14 20:55:04 +01:00
|
|
|
ALIGN_POINTER_CLEAR(pStubMsg->Buffer, pSmFArrayFormat->alignment + 1);
|
2006-05-15 17:57:21 +02:00
|
|
|
|
|
|
|
if (pSmFArrayFormat->type == RPC_FC_SMFARRAY)
|
|
|
|
{
|
|
|
|
total_size = pSmFArrayFormat->total_size;
|
2006-09-25 23:20:20 +02:00
|
|
|
pFormat = (const unsigned char *)(pSmFArrayFormat + 1);
|
2006-05-15 17:57:21 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
const NDR_LGFARRAY_FORMAT *pLgFArrayFormat = (const NDR_LGFARRAY_FORMAT *)pFormat;
|
|
|
|
total_size = pLgFArrayFormat->total_size;
|
2006-09-25 23:20:20 +02:00
|
|
|
pFormat = (const unsigned char *)(pLgFArrayFormat + 1);
|
2006-05-15 17:57:21 +02:00
|
|
|
}
|
2006-07-24 12:46:03 +02:00
|
|
|
|
|
|
|
pStubMsg->BufferMark = pStubMsg->Buffer;
|
2007-11-28 16:02:06 +01:00
|
|
|
safe_copy_to_buffer(pStubMsg, pMemory, total_size);
|
2006-05-15 17:57:21 +02:00
|
|
|
|
|
|
|
pFormat = EmbeddedPointerMarshall(pStubMsg, pMemory, pFormat);
|
|
|
|
|
2005-07-18 15:14:05 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrFixedArrayUnmarshall [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
unsigned char * WINAPI NdrFixedArrayUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char **ppMemory,
|
|
|
|
PFORMAT_STRING pFormat,
|
|
|
|
unsigned char fMustAlloc)
|
|
|
|
{
|
2006-05-15 17:57:21 +02:00
|
|
|
const NDR_SMFARRAY_FORMAT *pSmFArrayFormat = (const NDR_SMFARRAY_FORMAT *)pFormat;
|
|
|
|
unsigned long total_size;
|
2007-12-08 18:14:16 +01:00
|
|
|
unsigned char *saved_buffer;
|
2006-05-15 17:57:21 +02:00
|
|
|
|
|
|
|
TRACE("(%p, %p, %p, %d)\n", pStubMsg, ppMemory, pFormat, fMustAlloc);
|
|
|
|
|
|
|
|
if ((pSmFArrayFormat->type != RPC_FC_SMFARRAY) &&
|
|
|
|
(pSmFArrayFormat->type != RPC_FC_LGFARRAY))
|
|
|
|
{
|
|
|
|
ERR("invalid format type %x\n", pSmFArrayFormat->type);
|
|
|
|
RpcRaiseException(RPC_S_INTERNAL_ERROR);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
ALIGN_POINTER(pStubMsg->Buffer, pSmFArrayFormat->alignment + 1);
|
|
|
|
|
|
|
|
if (pSmFArrayFormat->type == RPC_FC_SMFARRAY)
|
|
|
|
{
|
|
|
|
total_size = pSmFArrayFormat->total_size;
|
2006-09-25 23:20:20 +02:00
|
|
|
pFormat = (const unsigned char *)(pSmFArrayFormat + 1);
|
2006-05-15 17:57:21 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
const NDR_LGFARRAY_FORMAT *pLgFArrayFormat = (const NDR_LGFARRAY_FORMAT *)pFormat;
|
|
|
|
total_size = pLgFArrayFormat->total_size;
|
2006-09-25 23:20:20 +02:00
|
|
|
pFormat = (const unsigned char *)(pLgFArrayFormat + 1);
|
2006-05-15 17:57:21 +02:00
|
|
|
}
|
|
|
|
|
2007-12-08 18:14:16 +01:00
|
|
|
if (fMustAlloc)
|
2006-05-15 17:57:21 +02:00
|
|
|
*ppMemory = NdrAllocate(pStubMsg, total_size);
|
2007-12-08 18:14:16 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
if (!pStubMsg->IsClient && !*ppMemory)
|
|
|
|
/* for servers, we just point straight into the RPC buffer */
|
|
|
|
*ppMemory = pStubMsg->Buffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
saved_buffer = pStubMsg->BufferMark = pStubMsg->Buffer;
|
|
|
|
safe_buffer_increment(pStubMsg, total_size);
|
|
|
|
pFormat = EmbeddedPointerUnmarshall(pStubMsg, saved_buffer, *ppMemory, pFormat, fMustAlloc);
|
2006-05-15 17:57:21 +02:00
|
|
|
|
2007-12-08 18:14:16 +01:00
|
|
|
TRACE("copying %p to %p\n", saved_buffer, *ppMemory);
|
|
|
|
if (*ppMemory != saved_buffer)
|
|
|
|
memcpy(*ppMemory, saved_buffer, total_size);
|
2006-05-15 17:57:21 +02:00
|
|
|
|
2005-07-18 15:14:05 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrFixedArrayBufferSize [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
void WINAPI NdrFixedArrayBufferSize(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char *pMemory,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
2006-05-15 17:57:21 +02:00
|
|
|
const NDR_SMFARRAY_FORMAT *pSmFArrayFormat = (const NDR_SMFARRAY_FORMAT *)pFormat;
|
|
|
|
unsigned long total_size;
|
|
|
|
|
|
|
|
TRACE("(%p, %p, %p)\n", pStubMsg, pMemory, pFormat);
|
|
|
|
|
|
|
|
if ((pSmFArrayFormat->type != RPC_FC_SMFARRAY) &&
|
|
|
|
(pSmFArrayFormat->type != RPC_FC_LGFARRAY))
|
|
|
|
{
|
|
|
|
ERR("invalid format type %x\n", pSmFArrayFormat->type);
|
|
|
|
RpcRaiseException(RPC_S_INTERNAL_ERROR);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ALIGN_LENGTH(pStubMsg->BufferLength, pSmFArrayFormat->alignment + 1);
|
|
|
|
|
|
|
|
if (pSmFArrayFormat->type == RPC_FC_SMFARRAY)
|
|
|
|
{
|
|
|
|
total_size = pSmFArrayFormat->total_size;
|
2006-09-25 23:20:20 +02:00
|
|
|
pFormat = (const unsigned char *)(pSmFArrayFormat + 1);
|
2006-05-15 17:57:21 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
const NDR_LGFARRAY_FORMAT *pLgFArrayFormat = (const NDR_LGFARRAY_FORMAT *)pFormat;
|
|
|
|
total_size = pLgFArrayFormat->total_size;
|
2006-09-25 23:20:20 +02:00
|
|
|
pFormat = (const unsigned char *)(pLgFArrayFormat + 1);
|
2006-05-15 17:57:21 +02:00
|
|
|
}
|
2007-11-28 16:01:53 +01:00
|
|
|
safe_buffer_length_increment(pStubMsg, total_size);
|
2006-05-15 17:57:21 +02:00
|
|
|
|
|
|
|
EmbeddedPointerBufferSize(pStubMsg, pMemory, pFormat);
|
2005-07-18 15:14:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrFixedArrayMemorySize [RPCRT4.@]
|
|
|
|
*/
|
2006-11-09 23:01:58 +01:00
|
|
|
ULONG WINAPI NdrFixedArrayMemorySize(PMIDL_STUB_MESSAGE pStubMsg,
|
2005-07-18 15:14:05 +02:00
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
2006-05-15 17:57:21 +02:00
|
|
|
const NDR_SMFARRAY_FORMAT *pSmFArrayFormat = (const NDR_SMFARRAY_FORMAT *)pFormat;
|
2006-11-09 23:01:58 +01:00
|
|
|
ULONG total_size;
|
2006-05-15 17:57:21 +02:00
|
|
|
|
|
|
|
TRACE("(%p, %p)\n", pStubMsg, pFormat);
|
|
|
|
|
|
|
|
if ((pSmFArrayFormat->type != RPC_FC_SMFARRAY) &&
|
|
|
|
(pSmFArrayFormat->type != RPC_FC_LGFARRAY))
|
|
|
|
{
|
|
|
|
ERR("invalid format type %x\n", pSmFArrayFormat->type);
|
|
|
|
RpcRaiseException(RPC_S_INTERNAL_ERROR);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
ALIGN_POINTER(pStubMsg->Buffer, pSmFArrayFormat->alignment + 1);
|
|
|
|
|
|
|
|
if (pSmFArrayFormat->type == RPC_FC_SMFARRAY)
|
|
|
|
{
|
|
|
|
total_size = pSmFArrayFormat->total_size;
|
2006-09-25 23:20:20 +02:00
|
|
|
pFormat = (const unsigned char *)(pSmFArrayFormat + 1);
|
2006-05-15 17:57:21 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
const NDR_LGFARRAY_FORMAT *pLgFArrayFormat = (const NDR_LGFARRAY_FORMAT *)pFormat;
|
|
|
|
total_size = pLgFArrayFormat->total_size;
|
2006-09-25 23:20:20 +02:00
|
|
|
pFormat = (const unsigned char *)(pLgFArrayFormat + 1);
|
2006-05-15 17:57:21 +02:00
|
|
|
}
|
2006-07-24 12:46:03 +02:00
|
|
|
pStubMsg->BufferMark = pStubMsg->Buffer;
|
2007-11-28 16:02:21 +01:00
|
|
|
safe_buffer_increment(pStubMsg, total_size);
|
2006-05-15 17:57:21 +02:00
|
|
|
pStubMsg->MemorySize += total_size;
|
|
|
|
|
|
|
|
EmbeddedPointerMemorySize(pStubMsg, pFormat);
|
|
|
|
|
|
|
|
return total_size;
|
2005-07-18 15:14:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrFixedArrayFree [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
void WINAPI NdrFixedArrayFree(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char *pMemory,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
2006-05-15 17:57:21 +02:00
|
|
|
const NDR_SMFARRAY_FORMAT *pSmFArrayFormat = (const NDR_SMFARRAY_FORMAT *)pFormat;
|
|
|
|
|
|
|
|
TRACE("(%p, %p, %p)\n", pStubMsg, pMemory, pFormat);
|
|
|
|
|
|
|
|
if ((pSmFArrayFormat->type != RPC_FC_SMFARRAY) &&
|
|
|
|
(pSmFArrayFormat->type != RPC_FC_LGFARRAY))
|
|
|
|
{
|
|
|
|
ERR("invalid format type %x\n", pSmFArrayFormat->type);
|
|
|
|
RpcRaiseException(RPC_S_INTERNAL_ERROR);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pSmFArrayFormat->type == RPC_FC_SMFARRAY)
|
2006-09-25 23:20:20 +02:00
|
|
|
pFormat = (const unsigned char *)(pSmFArrayFormat + 1);
|
2006-05-15 17:57:21 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
const NDR_LGFARRAY_FORMAT *pLgFArrayFormat = (const NDR_LGFARRAY_FORMAT *)pFormat;
|
2006-09-25 23:20:20 +02:00
|
|
|
pFormat = (const unsigned char *)(pLgFArrayFormat + 1);
|
2006-05-15 17:57:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
EmbeddedPointerFree(pStubMsg, pMemory, pFormat);
|
2005-07-18 15:14:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrVaryingArrayMarshall [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
unsigned char * WINAPI NdrVaryingArrayMarshall(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char *pMemory,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
2006-06-05 02:41:30 +02:00
|
|
|
unsigned char alignment;
|
|
|
|
DWORD elements, esize;
|
2006-06-10 13:32:24 +02:00
|
|
|
ULONG bufsize;
|
2006-06-05 02:41:30 +02:00
|
|
|
|
|
|
|
TRACE("(%p, %p, %p)\n", pStubMsg, pMemory, pFormat);
|
|
|
|
|
|
|
|
if ((pFormat[0] != RPC_FC_SMVARRAY) &&
|
|
|
|
(pFormat[0] != RPC_FC_LGVARRAY))
|
|
|
|
{
|
|
|
|
ERR("invalid format type %x\n", pFormat[0]);
|
|
|
|
RpcRaiseException(RPC_S_INTERNAL_ERROR);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
alignment = pFormat[1] + 1;
|
|
|
|
|
|
|
|
if (pFormat[0] == RPC_FC_SMVARRAY)
|
|
|
|
{
|
|
|
|
pFormat += 2;
|
|
|
|
pFormat += sizeof(WORD);
|
|
|
|
elements = *(const WORD*)pFormat;
|
|
|
|
pFormat += sizeof(WORD);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
pFormat += 2;
|
|
|
|
pFormat += sizeof(DWORD);
|
|
|
|
elements = *(const DWORD*)pFormat;
|
|
|
|
pFormat += sizeof(DWORD);
|
|
|
|
}
|
|
|
|
|
|
|
|
esize = *(const WORD*)pFormat;
|
|
|
|
pFormat += sizeof(WORD);
|
|
|
|
|
|
|
|
pFormat = ComputeVariance(pStubMsg, pMemory, pFormat, 0);
|
|
|
|
if ((pStubMsg->ActualCount > elements) ||
|
|
|
|
(pStubMsg->ActualCount + pStubMsg->Offset > elements))
|
|
|
|
{
|
|
|
|
RpcRaiseException(RPC_S_INVALID_BOUND);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
WriteVariance(pStubMsg);
|
|
|
|
|
2007-12-14 20:55:04 +01:00
|
|
|
ALIGN_POINTER_CLEAR(pStubMsg->Buffer, alignment);
|
2006-06-05 02:41:30 +02:00
|
|
|
|
2006-06-10 13:32:24 +02:00
|
|
|
bufsize = safe_multiply(esize, pStubMsg->ActualCount);
|
2006-06-05 02:41:30 +02:00
|
|
|
pStubMsg->BufferMark = pStubMsg->Buffer;
|
2007-11-28 16:02:06 +01:00
|
|
|
safe_copy_to_buffer(pStubMsg, pMemory + pStubMsg->Offset, bufsize);
|
2006-06-05 02:41:30 +02:00
|
|
|
|
|
|
|
EmbeddedPointerMarshall(pStubMsg, pMemory, pFormat);
|
|
|
|
|
2005-07-18 15:14:05 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrVaryingArrayUnmarshall [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
unsigned char * WINAPI NdrVaryingArrayUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char **ppMemory,
|
|
|
|
PFORMAT_STRING pFormat,
|
|
|
|
unsigned char fMustAlloc)
|
|
|
|
{
|
2006-06-05 02:41:30 +02:00
|
|
|
unsigned char alignment;
|
|
|
|
DWORD size, elements, esize;
|
2006-06-10 13:32:24 +02:00
|
|
|
ULONG bufsize;
|
2007-12-24 18:01:40 +01:00
|
|
|
unsigned char *saved_buffer;
|
|
|
|
ULONG offset;
|
2006-06-05 02:41:30 +02:00
|
|
|
|
|
|
|
TRACE("(%p, %p, %p, %d)\n", pStubMsg, ppMemory, pFormat, fMustAlloc);
|
|
|
|
|
|
|
|
if ((pFormat[0] != RPC_FC_SMVARRAY) &&
|
|
|
|
(pFormat[0] != RPC_FC_LGVARRAY))
|
|
|
|
{
|
|
|
|
ERR("invalid format type %x\n", pFormat[0]);
|
|
|
|
RpcRaiseException(RPC_S_INTERNAL_ERROR);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
alignment = pFormat[1] + 1;
|
|
|
|
|
|
|
|
if (pFormat[0] == RPC_FC_SMVARRAY)
|
|
|
|
{
|
|
|
|
pFormat += 2;
|
|
|
|
size = *(const WORD*)pFormat;
|
|
|
|
pFormat += sizeof(WORD);
|
|
|
|
elements = *(const WORD*)pFormat;
|
|
|
|
pFormat += sizeof(WORD);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
pFormat += 2;
|
|
|
|
size = *(const DWORD*)pFormat;
|
|
|
|
pFormat += sizeof(DWORD);
|
|
|
|
elements = *(const DWORD*)pFormat;
|
|
|
|
pFormat += sizeof(DWORD);
|
|
|
|
}
|
|
|
|
|
|
|
|
esize = *(const WORD*)pFormat;
|
|
|
|
pFormat += sizeof(WORD);
|
|
|
|
|
2006-06-10 13:32:47 +02:00
|
|
|
pFormat = ReadVariance(pStubMsg, pFormat, elements);
|
2006-06-05 02:41:30 +02:00
|
|
|
|
|
|
|
ALIGN_POINTER(pStubMsg->Buffer, alignment);
|
|
|
|
|
2006-06-10 13:32:24 +02:00
|
|
|
bufsize = safe_multiply(esize, pStubMsg->ActualCount);
|
2007-12-24 18:01:40 +01:00
|
|
|
offset = pStubMsg->Offset;
|
2006-06-10 13:32:24 +02:00
|
|
|
|
2006-06-05 02:41:30 +02:00
|
|
|
if (!*ppMemory || fMustAlloc)
|
|
|
|
*ppMemory = NdrAllocate(pStubMsg, size);
|
2007-12-24 18:01:40 +01:00
|
|
|
saved_buffer = pStubMsg->BufferMark = pStubMsg->Buffer;
|
|
|
|
safe_buffer_increment(pStubMsg, bufsize);
|
2006-06-05 02:41:30 +02:00
|
|
|
|
2007-12-24 18:01:40 +01:00
|
|
|
EmbeddedPointerUnmarshall(pStubMsg, saved_buffer, *ppMemory, pFormat, fMustAlloc);
|
|
|
|
|
|
|
|
memcpy(*ppMemory + offset, saved_buffer, bufsize);
|
2006-06-05 02:41:30 +02:00
|
|
|
|
2005-07-18 15:14:05 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrVaryingArrayBufferSize [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
void WINAPI NdrVaryingArrayBufferSize(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char *pMemory,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
2006-06-05 02:41:30 +02:00
|
|
|
unsigned char alignment;
|
|
|
|
DWORD elements, esize;
|
|
|
|
|
|
|
|
TRACE("(%p, %p, %p)\n", pStubMsg, pMemory, pFormat);
|
|
|
|
|
|
|
|
if ((pFormat[0] != RPC_FC_SMVARRAY) &&
|
|
|
|
(pFormat[0] != RPC_FC_LGVARRAY))
|
|
|
|
{
|
|
|
|
ERR("invalid format type %x\n", pFormat[0]);
|
|
|
|
RpcRaiseException(RPC_S_INTERNAL_ERROR);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
alignment = pFormat[1] + 1;
|
|
|
|
|
|
|
|
if (pFormat[0] == RPC_FC_SMVARRAY)
|
|
|
|
{
|
|
|
|
pFormat += 2;
|
|
|
|
pFormat += sizeof(WORD);
|
|
|
|
elements = *(const WORD*)pFormat;
|
|
|
|
pFormat += sizeof(WORD);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
pFormat += 2;
|
|
|
|
pFormat += sizeof(DWORD);
|
|
|
|
elements = *(const DWORD*)pFormat;
|
|
|
|
pFormat += sizeof(DWORD);
|
|
|
|
}
|
|
|
|
|
|
|
|
esize = *(const WORD*)pFormat;
|
|
|
|
pFormat += sizeof(WORD);
|
|
|
|
|
|
|
|
pFormat = ComputeVariance(pStubMsg, pMemory, pFormat, 0);
|
|
|
|
if ((pStubMsg->ActualCount > elements) ||
|
|
|
|
(pStubMsg->ActualCount + pStubMsg->Offset > elements))
|
|
|
|
{
|
|
|
|
RpcRaiseException(RPC_S_INVALID_BOUND);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
SizeVariance(pStubMsg);
|
|
|
|
|
|
|
|
ALIGN_LENGTH(pStubMsg->BufferLength, alignment);
|
|
|
|
|
2007-11-28 16:01:53 +01:00
|
|
|
safe_buffer_length_increment(pStubMsg, safe_multiply(esize, pStubMsg->ActualCount));
|
2006-06-05 02:41:30 +02:00
|
|
|
|
|
|
|
EmbeddedPointerBufferSize(pStubMsg, pMemory, pFormat);
|
2005-07-18 15:14:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrVaryingArrayMemorySize [RPCRT4.@]
|
|
|
|
*/
|
2006-11-09 23:01:58 +01:00
|
|
|
ULONG WINAPI NdrVaryingArrayMemorySize(PMIDL_STUB_MESSAGE pStubMsg,
|
2005-07-18 15:14:05 +02:00
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
2006-06-05 02:41:30 +02:00
|
|
|
unsigned char alignment;
|
|
|
|
DWORD size, elements, esize;
|
|
|
|
|
|
|
|
TRACE("(%p, %p)\n", pStubMsg, pFormat);
|
|
|
|
|
|
|
|
if ((pFormat[0] != RPC_FC_SMVARRAY) &&
|
|
|
|
(pFormat[0] != RPC_FC_LGVARRAY))
|
|
|
|
{
|
|
|
|
ERR("invalid format type %x\n", pFormat[0]);
|
|
|
|
RpcRaiseException(RPC_S_INTERNAL_ERROR);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
alignment = pFormat[1] + 1;
|
|
|
|
|
|
|
|
if (pFormat[0] == RPC_FC_SMVARRAY)
|
|
|
|
{
|
|
|
|
pFormat += 2;
|
|
|
|
size = *(const WORD*)pFormat;
|
|
|
|
pFormat += sizeof(WORD);
|
|
|
|
elements = *(const WORD*)pFormat;
|
|
|
|
pFormat += sizeof(WORD);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
pFormat += 2;
|
|
|
|
size = *(const DWORD*)pFormat;
|
|
|
|
pFormat += sizeof(DWORD);
|
|
|
|
elements = *(const DWORD*)pFormat;
|
|
|
|
pFormat += sizeof(DWORD);
|
|
|
|
}
|
|
|
|
|
|
|
|
esize = *(const WORD*)pFormat;
|
|
|
|
pFormat += sizeof(WORD);
|
|
|
|
|
2006-06-10 13:32:47 +02:00
|
|
|
pFormat = ReadVariance(pStubMsg, pFormat, elements);
|
2006-06-05 02:41:30 +02:00
|
|
|
|
|
|
|
ALIGN_POINTER(pStubMsg->Buffer, alignment);
|
|
|
|
|
2007-11-28 16:02:21 +01:00
|
|
|
safe_buffer_increment(pStubMsg, safe_multiply(esize, pStubMsg->ActualCount));
|
2006-06-05 02:41:30 +02:00
|
|
|
pStubMsg->MemorySize += size;
|
|
|
|
|
|
|
|
EmbeddedPointerMemorySize(pStubMsg, pFormat);
|
|
|
|
|
|
|
|
return pStubMsg->MemorySize;
|
2005-07-18 15:14:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrVaryingArrayFree [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
void WINAPI NdrVaryingArrayFree(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char *pMemory,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
2006-06-05 02:41:30 +02:00
|
|
|
DWORD elements;
|
|
|
|
|
|
|
|
TRACE("(%p, %p, %p)\n", pStubMsg, pMemory, pFormat);
|
|
|
|
|
|
|
|
if ((pFormat[0] != RPC_FC_SMVARRAY) &&
|
|
|
|
(pFormat[0] != RPC_FC_LGVARRAY))
|
|
|
|
{
|
|
|
|
ERR("invalid format type %x\n", pFormat[0]);
|
|
|
|
RpcRaiseException(RPC_S_INTERNAL_ERROR);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pFormat[0] == RPC_FC_SMVARRAY)
|
|
|
|
{
|
|
|
|
pFormat += 2;
|
|
|
|
pFormat += sizeof(WORD);
|
|
|
|
elements = *(const WORD*)pFormat;
|
|
|
|
pFormat += sizeof(WORD);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
pFormat += 2;
|
|
|
|
pFormat += sizeof(DWORD);
|
|
|
|
elements = *(const DWORD*)pFormat;
|
|
|
|
pFormat += sizeof(DWORD);
|
|
|
|
}
|
|
|
|
|
|
|
|
pFormat += sizeof(WORD);
|
|
|
|
|
|
|
|
pFormat = ComputeVariance(pStubMsg, pMemory, pFormat, 0);
|
|
|
|
if ((pStubMsg->ActualCount > elements) ||
|
|
|
|
(pStubMsg->ActualCount + pStubMsg->Offset > elements))
|
|
|
|
{
|
|
|
|
RpcRaiseException(RPC_S_INVALID_BOUND);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
EmbeddedPointerFree(pStubMsg, pMemory, pFormat);
|
2005-07-18 15:14:05 +02:00
|
|
|
}
|
|
|
|
|
2007-08-17 23:10:58 +02:00
|
|
|
static ULONG get_discriminant(unsigned char fc, const unsigned char *pMemory)
|
2005-07-18 15:14:05 +02:00
|
|
|
{
|
2007-06-18 12:47:49 +02:00
|
|
|
switch (fc)
|
|
|
|
{
|
|
|
|
case RPC_FC_BYTE:
|
|
|
|
case RPC_FC_CHAR:
|
|
|
|
case RPC_FC_SMALL:
|
|
|
|
case RPC_FC_USMALL:
|
2008-01-16 22:57:31 +01:00
|
|
|
return *pMemory;
|
2007-06-18 12:47:49 +02:00
|
|
|
case RPC_FC_WCHAR:
|
|
|
|
case RPC_FC_SHORT:
|
|
|
|
case RPC_FC_USHORT:
|
2007-06-26 03:26:42 +02:00
|
|
|
case RPC_FC_ENUM16:
|
2007-08-17 23:10:58 +02:00
|
|
|
return *(const USHORT *)pMemory;
|
2007-06-18 12:47:49 +02:00
|
|
|
case RPC_FC_LONG:
|
|
|
|
case RPC_FC_ULONG:
|
2007-06-26 03:26:42 +02:00
|
|
|
case RPC_FC_ENUM32:
|
2007-08-17 23:10:58 +02:00
|
|
|
return *(const ULONG *)pMemory;
|
2007-06-18 12:47:49 +02:00
|
|
|
default:
|
|
|
|
FIXME("Unhandled base type: 0x%02x\n", fc);
|
|
|
|
return 0;
|
|
|
|
}
|
2005-07-18 15:14:05 +02:00
|
|
|
}
|
|
|
|
|
2006-04-28 15:28:24 +02:00
|
|
|
static PFORMAT_STRING get_arm_offset_from_union_arm_selector(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned long discriminant,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
|
|
|
unsigned short num_arms, arm, type;
|
|
|
|
|
|
|
|
num_arms = *(const SHORT*)pFormat & 0x0fff;
|
|
|
|
pFormat += 2;
|
|
|
|
for(arm = 0; arm < num_arms; arm++)
|
|
|
|
{
|
|
|
|
if(discriminant == *(const ULONG*)pFormat)
|
|
|
|
{
|
|
|
|
pFormat += 4;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
pFormat += 6;
|
|
|
|
}
|
|
|
|
|
|
|
|
type = *(const unsigned short*)pFormat;
|
|
|
|
TRACE("type %04x\n", type);
|
|
|
|
if(arm == num_arms) /* default arm extras */
|
|
|
|
{
|
|
|
|
if(type == 0xffff)
|
|
|
|
{
|
2006-05-17 15:45:55 +02:00
|
|
|
ERR("no arm for 0x%lx and no default case\n", discriminant);
|
|
|
|
RpcRaiseException(RPC_S_INVALID_TAG);
|
2006-04-28 15:28:24 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if(type == 0)
|
|
|
|
{
|
2006-05-17 15:45:55 +02:00
|
|
|
TRACE("falling back to empty default case for 0x%lx\n", discriminant);
|
2006-04-28 15:28:24 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return pFormat;
|
|
|
|
}
|
|
|
|
|
2007-06-18 12:47:49 +02:00
|
|
|
static unsigned char *union_arm_marshall(PMIDL_STUB_MESSAGE pStubMsg, unsigned char *pMemory, ULONG discriminant, PFORMAT_STRING pFormat)
|
2005-07-18 15:14:05 +02:00
|
|
|
{
|
2006-04-28 15:28:24 +02:00
|
|
|
unsigned short type;
|
|
|
|
|
2007-06-18 12:47:49 +02:00
|
|
|
pFormat += 2;
|
2006-05-15 17:56:27 +02:00
|
|
|
|
2007-06-18 12:47:49 +02:00
|
|
|
pFormat = get_arm_offset_from_union_arm_selector(pStubMsg, discriminant, pFormat);
|
2006-04-28 15:28:24 +02:00
|
|
|
if(!pFormat)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
type = *(const unsigned short*)pFormat;
|
2006-05-13 18:00:27 +02:00
|
|
|
if((type & 0xff00) == 0x8000)
|
2006-04-28 15:28:24 +02:00
|
|
|
{
|
2006-05-13 18:00:27 +02:00
|
|
|
unsigned char basetype = LOBYTE(type);
|
|
|
|
return NdrBaseTypeMarshall(pStubMsg, pMemory, &basetype);
|
2006-04-28 15:28:24 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
PFORMAT_STRING desc = pFormat + *(const SHORT*)pFormat;
|
|
|
|
NDR_MARSHALL m = NdrMarshaller[*desc & NDR_TABLE_MASK];
|
|
|
|
if (m)
|
|
|
|
{
|
2006-05-15 14:35:17 +02:00
|
|
|
unsigned char *saved_buffer = NULL;
|
2007-06-25 15:28:01 +02:00
|
|
|
int pointer_buffer_mark_set = 0;
|
2006-04-28 15:28:24 +02:00
|
|
|
switch(*desc)
|
|
|
|
{
|
|
|
|
case RPC_FC_RP:
|
|
|
|
case RPC_FC_UP:
|
|
|
|
case RPC_FC_OP:
|
|
|
|
case RPC_FC_FP:
|
2007-12-14 20:55:04 +01:00
|
|
|
ALIGN_POINTER_CLEAR(pStubMsg->Buffer, 4);
|
2006-05-15 14:35:17 +02:00
|
|
|
saved_buffer = pStubMsg->Buffer;
|
2007-06-25 15:28:01 +02:00
|
|
|
if (pStubMsg->PointerBufferMark)
|
|
|
|
{
|
|
|
|
pStubMsg->Buffer = pStubMsg->PointerBufferMark;
|
|
|
|
pStubMsg->PointerBufferMark = NULL;
|
|
|
|
pointer_buffer_mark_set = 1;
|
|
|
|
}
|
|
|
|
else
|
2007-11-28 16:02:21 +01:00
|
|
|
safe_buffer_increment(pStubMsg, 4); /* for pointer ID */
|
2007-06-25 15:28:01 +02:00
|
|
|
|
2006-05-15 14:35:17 +02:00
|
|
|
PointerMarshall(pStubMsg, saved_buffer, *(unsigned char **)pMemory, desc);
|
2007-06-25 15:28:01 +02:00
|
|
|
if (pointer_buffer_mark_set)
|
|
|
|
{
|
|
|
|
STD_OVERFLOW_CHECK(pStubMsg);
|
|
|
|
pStubMsg->PointerBufferMark = pStubMsg->Buffer;
|
2007-11-28 16:02:21 +01:00
|
|
|
if (saved_buffer + 4 > (unsigned char *)pStubMsg->RpcMsg->Buffer + pStubMsg->BufferLength)
|
|
|
|
{
|
|
|
|
ERR("buffer overflow - saved_buffer = %p, BufferEnd = %p\n",
|
|
|
|
saved_buffer, (unsigned char *)pStubMsg->RpcMsg->Buffer + pStubMsg->BufferLength);
|
|
|
|
RpcRaiseException(RPC_X_BAD_STUB_DATA);
|
|
|
|
}
|
2007-06-25 15:28:01 +02:00
|
|
|
pStubMsg->Buffer = saved_buffer + 4;
|
|
|
|
}
|
2006-04-28 15:28:24 +02:00
|
|
|
break;
|
2006-05-15 14:35:17 +02:00
|
|
|
default:
|
|
|
|
m(pStubMsg, pMemory, desc);
|
2006-04-28 15:28:24 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else FIXME("no marshaller for embedded type %02x\n", *desc);
|
|
|
|
}
|
2005-07-18 15:14:05 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2007-06-18 12:47:49 +02:00
|
|
|
static unsigned char *union_arm_unmarshall(PMIDL_STUB_MESSAGE pStubMsg,
|
2005-07-18 15:14:05 +02:00
|
|
|
unsigned char **ppMemory,
|
2007-06-18 12:47:49 +02:00
|
|
|
ULONG discriminant,
|
2005-07-18 15:14:05 +02:00
|
|
|
PFORMAT_STRING pFormat,
|
|
|
|
unsigned char fMustAlloc)
|
|
|
|
{
|
2007-06-18 12:47:49 +02:00
|
|
|
unsigned short type;
|
2006-04-28 15:28:24 +02:00
|
|
|
|
|
|
|
pFormat += 2;
|
|
|
|
|
|
|
|
pFormat = get_arm_offset_from_union_arm_selector(pStubMsg, discriminant, pFormat);
|
|
|
|
if(!pFormat)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
type = *(const unsigned short*)pFormat;
|
2006-05-13 18:00:27 +02:00
|
|
|
if((type & 0xff00) == 0x8000)
|
2006-04-28 15:28:24 +02:00
|
|
|
{
|
2006-05-13 18:00:27 +02:00
|
|
|
unsigned char basetype = LOBYTE(type);
|
2007-07-16 16:03:15 +02:00
|
|
|
return NdrBaseTypeUnmarshall(pStubMsg, ppMemory, &basetype, FALSE);
|
2006-04-28 15:28:24 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
PFORMAT_STRING desc = pFormat + *(const SHORT*)pFormat;
|
|
|
|
NDR_UNMARSHALL m = NdrUnmarshaller[*desc & NDR_TABLE_MASK];
|
|
|
|
if (m)
|
|
|
|
{
|
2006-05-15 14:35:17 +02:00
|
|
|
unsigned char *saved_buffer = NULL;
|
2007-06-25 15:28:01 +02:00
|
|
|
int pointer_buffer_mark_set = 0;
|
2006-04-28 15:28:24 +02:00
|
|
|
switch(*desc)
|
|
|
|
{
|
|
|
|
case RPC_FC_RP:
|
|
|
|
case RPC_FC_UP:
|
|
|
|
case RPC_FC_OP:
|
|
|
|
case RPC_FC_FP:
|
2007-06-25 15:28:01 +02:00
|
|
|
**(void***)ppMemory = NULL;
|
2006-05-15 14:35:17 +02:00
|
|
|
ALIGN_POINTER(pStubMsg->Buffer, 4);
|
|
|
|
saved_buffer = pStubMsg->Buffer;
|
2007-06-25 15:28:01 +02:00
|
|
|
if (pStubMsg->PointerBufferMark)
|
|
|
|
{
|
|
|
|
pStubMsg->Buffer = pStubMsg->PointerBufferMark;
|
|
|
|
pStubMsg->PointerBufferMark = NULL;
|
|
|
|
pointer_buffer_mark_set = 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
pStubMsg->Buffer += 4; /* for pointer ID */
|
|
|
|
|
2007-07-16 16:02:38 +02:00
|
|
|
if (saved_buffer + 4 > pStubMsg->BufferEnd)
|
2007-11-28 16:02:21 +01:00
|
|
|
{
|
|
|
|
ERR("buffer overflow - saved_buffer = %p, BufferEnd = %p\n",
|
|
|
|
saved_buffer, pStubMsg->BufferEnd);
|
2007-07-16 16:02:38 +02:00
|
|
|
RpcRaiseException(RPC_X_BAD_STUB_DATA);
|
2007-11-28 16:02:21 +01:00
|
|
|
}
|
2007-07-16 16:02:38 +02:00
|
|
|
|
2007-11-29 18:35:34 +01:00
|
|
|
PointerUnmarshall(pStubMsg, saved_buffer, *(unsigned char ***)ppMemory, **(unsigned char ***)ppMemory, desc, fMustAlloc);
|
2007-06-25 15:28:01 +02:00
|
|
|
if (pointer_buffer_mark_set)
|
|
|
|
{
|
|
|
|
STD_OVERFLOW_CHECK(pStubMsg);
|
|
|
|
pStubMsg->PointerBufferMark = pStubMsg->Buffer;
|
|
|
|
pStubMsg->Buffer = saved_buffer + 4;
|
|
|
|
}
|
2006-04-28 15:28:24 +02:00
|
|
|
break;
|
2006-05-15 14:35:17 +02:00
|
|
|
default:
|
|
|
|
m(pStubMsg, ppMemory, desc, fMustAlloc);
|
2006-04-28 15:28:24 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else FIXME("no marshaller for embedded type %02x\n", *desc);
|
|
|
|
}
|
2005-07-18 15:14:05 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2007-06-18 12:47:49 +02:00
|
|
|
static void union_arm_buffer_size(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char *pMemory,
|
|
|
|
ULONG discriminant,
|
|
|
|
PFORMAT_STRING pFormat)
|
2005-07-18 15:14:05 +02:00
|
|
|
{
|
2006-04-28 15:28:24 +02:00
|
|
|
unsigned short type;
|
2006-05-15 17:56:27 +02:00
|
|
|
|
2007-06-18 12:47:49 +02:00
|
|
|
pFormat += 2;
|
2006-04-28 15:28:24 +02:00
|
|
|
|
2007-06-18 12:47:49 +02:00
|
|
|
pFormat = get_arm_offset_from_union_arm_selector(pStubMsg, discriminant, pFormat);
|
2006-04-28 15:28:24 +02:00
|
|
|
if(!pFormat)
|
|
|
|
return;
|
|
|
|
|
|
|
|
type = *(const unsigned short*)pFormat;
|
2006-05-13 18:00:27 +02:00
|
|
|
if((type & 0xff00) == 0x8000)
|
2006-04-28 15:28:24 +02:00
|
|
|
{
|
2006-05-13 18:00:27 +02:00
|
|
|
unsigned char basetype = LOBYTE(type);
|
|
|
|
NdrBaseTypeBufferSize(pStubMsg, pMemory, &basetype);
|
2006-04-28 15:28:24 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
PFORMAT_STRING desc = pFormat + *(const SHORT*)pFormat;
|
|
|
|
NDR_BUFFERSIZE m = NdrBufferSizer[*desc & NDR_TABLE_MASK];
|
|
|
|
if (m)
|
|
|
|
{
|
|
|
|
switch(*desc)
|
|
|
|
{
|
|
|
|
case RPC_FC_RP:
|
|
|
|
case RPC_FC_UP:
|
|
|
|
case RPC_FC_OP:
|
|
|
|
case RPC_FC_FP:
|
2006-05-15 14:35:17 +02:00
|
|
|
ALIGN_LENGTH(pStubMsg->BufferLength, 4);
|
2007-11-28 16:01:53 +01:00
|
|
|
safe_buffer_length_increment(pStubMsg, 4); /* for pointer ID */
|
2007-06-25 15:28:01 +02:00
|
|
|
if (!pStubMsg->IgnoreEmbeddedPointers)
|
|
|
|
{
|
|
|
|
int saved_buffer_length = pStubMsg->BufferLength;
|
|
|
|
pStubMsg->BufferLength = pStubMsg->PointerLength;
|
|
|
|
pStubMsg->PointerLength = 0;
|
|
|
|
if(!pStubMsg->BufferLength)
|
|
|
|
ERR("BufferLength == 0??\n");
|
|
|
|
PointerBufferSize(pStubMsg, *(unsigned char **)pMemory, desc);
|
|
|
|
pStubMsg->PointerLength = pStubMsg->BufferLength;
|
|
|
|
pStubMsg->BufferLength = saved_buffer_length;
|
|
|
|
}
|
2006-04-28 15:28:24 +02:00
|
|
|
break;
|
2006-05-15 14:35:17 +02:00
|
|
|
default:
|
|
|
|
m(pStubMsg, pMemory, desc);
|
2006-04-28 15:28:24 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else FIXME("no buffersizer for embedded type %02x\n", *desc);
|
|
|
|
}
|
2005-07-18 15:14:05 +02:00
|
|
|
}
|
|
|
|
|
2007-06-18 12:47:49 +02:00
|
|
|
static ULONG union_arm_memory_size(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
ULONG discriminant,
|
|
|
|
PFORMAT_STRING pFormat)
|
2005-07-18 15:14:05 +02:00
|
|
|
{
|
2006-05-18 04:39:34 +02:00
|
|
|
unsigned short type, size;
|
|
|
|
|
|
|
|
size = *(const unsigned short*)pFormat;
|
2007-06-18 12:47:49 +02:00
|
|
|
pStubMsg->Memory += size;
|
2006-05-10 14:12:20 +02:00
|
|
|
pFormat += 2;
|
2006-05-18 04:39:34 +02:00
|
|
|
|
|
|
|
pFormat = get_arm_offset_from_union_arm_selector(pStubMsg, discriminant, pFormat);
|
|
|
|
if(!pFormat)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
type = *(const unsigned short*)pFormat;
|
|
|
|
if((type & 0xff00) == 0x8000)
|
|
|
|
{
|
|
|
|
return NdrBaseTypeMemorySize(pStubMsg, pFormat);
|
|
|
|
}
|
2006-05-10 14:12:20 +02:00
|
|
|
else
|
2006-05-18 04:39:34 +02:00
|
|
|
{
|
|
|
|
PFORMAT_STRING desc = pFormat + *(const SHORT*)pFormat;
|
|
|
|
NDR_MEMORYSIZE m = NdrMemorySizer[*desc & NDR_TABLE_MASK];
|
|
|
|
unsigned char *saved_buffer;
|
|
|
|
if (m)
|
|
|
|
{
|
|
|
|
switch(*desc)
|
|
|
|
{
|
|
|
|
case RPC_FC_RP:
|
|
|
|
case RPC_FC_UP:
|
|
|
|
case RPC_FC_OP:
|
|
|
|
case RPC_FC_FP:
|
|
|
|
ALIGN_POINTER(pStubMsg->Buffer, 4);
|
|
|
|
saved_buffer = pStubMsg->Buffer;
|
2007-11-28 16:02:21 +01:00
|
|
|
safe_buffer_increment(pStubMsg, 4);
|
2006-05-18 04:39:34 +02:00
|
|
|
ALIGN_LENGTH(pStubMsg->MemorySize, 4);
|
|
|
|
pStubMsg->MemorySize += 4;
|
2007-06-25 15:28:01 +02:00
|
|
|
if (!pStubMsg->IgnoreEmbeddedPointers)
|
|
|
|
PointerMemorySize(pStubMsg, saved_buffer, pFormat);
|
2006-05-18 04:39:34 +02:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return m(pStubMsg, desc);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else FIXME("no marshaller for embedded type %02x\n", *desc);
|
|
|
|
}
|
2006-05-10 14:12:20 +02:00
|
|
|
|
2006-05-18 04:39:34 +02:00
|
|
|
TRACE("size %d\n", size);
|
|
|
|
return size;
|
2005-07-18 15:14:05 +02:00
|
|
|
}
|
|
|
|
|
2007-06-18 12:47:49 +02:00
|
|
|
static void union_arm_free(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char *pMemory,
|
|
|
|
ULONG discriminant,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
|
|
|
unsigned short type;
|
|
|
|
|
|
|
|
pFormat += 2;
|
|
|
|
|
|
|
|
pFormat = get_arm_offset_from_union_arm_selector(pStubMsg, discriminant, pFormat);
|
|
|
|
if(!pFormat)
|
|
|
|
return;
|
|
|
|
|
|
|
|
type = *(const unsigned short*)pFormat;
|
|
|
|
if((type & 0xff00) != 0x8000)
|
|
|
|
{
|
|
|
|
PFORMAT_STRING desc = pFormat + *(const SHORT*)pFormat;
|
|
|
|
NDR_FREE m = NdrFreer[*desc & NDR_TABLE_MASK];
|
|
|
|
if (m)
|
|
|
|
{
|
|
|
|
switch(*desc)
|
|
|
|
{
|
|
|
|
case RPC_FC_RP:
|
|
|
|
case RPC_FC_UP:
|
|
|
|
case RPC_FC_OP:
|
|
|
|
case RPC_FC_FP:
|
|
|
|
PointerFree(pStubMsg, *(unsigned char **)pMemory, desc);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
m(pStubMsg, pMemory, desc);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrEncapsulatedUnionMarshall [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
unsigned char * WINAPI NdrEncapsulatedUnionMarshall(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char *pMemory,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
|
|
|
unsigned char switch_type;
|
|
|
|
unsigned char increment;
|
|
|
|
ULONG switch_value;
|
|
|
|
|
|
|
|
TRACE("(%p, %p, %p)\n", pStubMsg, pMemory, pFormat);
|
|
|
|
pFormat++;
|
|
|
|
|
|
|
|
switch_type = *pFormat & 0xf;
|
2007-06-19 03:40:08 +02:00
|
|
|
increment = (*pFormat & 0xf0) >> 4;
|
2007-06-18 12:47:49 +02:00
|
|
|
pFormat++;
|
|
|
|
|
2007-12-14 20:55:04 +01:00
|
|
|
ALIGN_POINTER_CLEAR(pStubMsg->Buffer, increment);
|
2007-06-18 12:47:49 +02:00
|
|
|
|
|
|
|
switch_value = get_discriminant(switch_type, pMemory);
|
|
|
|
TRACE("got switch value 0x%x\n", switch_value);
|
|
|
|
|
|
|
|
NdrBaseTypeMarshall(pStubMsg, pMemory, &switch_type);
|
|
|
|
pMemory += increment;
|
|
|
|
|
|
|
|
return union_arm_marshall(pStubMsg, pMemory, switch_value, pFormat);
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrEncapsulatedUnionUnmarshall [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
unsigned char * WINAPI NdrEncapsulatedUnionUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char **ppMemory,
|
|
|
|
PFORMAT_STRING pFormat,
|
|
|
|
unsigned char fMustAlloc)
|
|
|
|
{
|
|
|
|
unsigned char switch_type;
|
|
|
|
unsigned char increment;
|
|
|
|
ULONG switch_value;
|
|
|
|
unsigned short size;
|
|
|
|
unsigned char *pMemoryArm;
|
|
|
|
|
|
|
|
TRACE("(%p, %p, %p, %d)\n", pStubMsg, ppMemory, pFormat, fMustAlloc);
|
|
|
|
pFormat++;
|
|
|
|
|
|
|
|
switch_type = *pFormat & 0xf;
|
2007-06-19 03:40:08 +02:00
|
|
|
increment = (*pFormat & 0xf0) >> 4;
|
2007-06-18 12:47:49 +02:00
|
|
|
pFormat++;
|
|
|
|
|
|
|
|
ALIGN_POINTER(pStubMsg->Buffer, increment);
|
|
|
|
switch_value = get_discriminant(switch_type, pStubMsg->Buffer);
|
|
|
|
TRACE("got switch value 0x%x\n", switch_value);
|
|
|
|
|
|
|
|
size = *(const unsigned short*)pFormat + increment;
|
|
|
|
if(!*ppMemory || fMustAlloc)
|
|
|
|
*ppMemory = NdrAllocate(pStubMsg, size);
|
|
|
|
|
|
|
|
NdrBaseTypeUnmarshall(pStubMsg, ppMemory, &switch_type, FALSE);
|
|
|
|
pMemoryArm = *ppMemory + increment;
|
|
|
|
|
|
|
|
return union_arm_unmarshall(pStubMsg, &pMemoryArm, switch_value, pFormat, fMustAlloc);
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrEncapsulatedUnionBufferSize [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
void WINAPI NdrEncapsulatedUnionBufferSize(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char *pMemory,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
|
|
|
unsigned char switch_type;
|
|
|
|
unsigned char increment;
|
|
|
|
ULONG switch_value;
|
|
|
|
|
|
|
|
TRACE("(%p, %p, %p)\n", pStubMsg, pMemory, pFormat);
|
|
|
|
pFormat++;
|
|
|
|
|
|
|
|
switch_type = *pFormat & 0xf;
|
2007-06-19 03:40:08 +02:00
|
|
|
increment = (*pFormat & 0xf0) >> 4;
|
2007-06-18 12:47:49 +02:00
|
|
|
pFormat++;
|
|
|
|
|
|
|
|
ALIGN_LENGTH(pStubMsg->BufferLength, increment);
|
2007-06-19 03:41:04 +02:00
|
|
|
switch_value = get_discriminant(switch_type, pMemory);
|
2007-06-18 12:47:49 +02:00
|
|
|
TRACE("got switch value 0x%x\n", switch_value);
|
|
|
|
|
|
|
|
/* Add discriminant size */
|
|
|
|
NdrBaseTypeBufferSize(pStubMsg, (unsigned char *)&switch_value, &switch_type);
|
|
|
|
pMemory += increment;
|
|
|
|
|
|
|
|
union_arm_buffer_size(pStubMsg, pMemory, switch_value, pFormat);
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrEncapsulatedUnionMemorySize [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
ULONG WINAPI NdrEncapsulatedUnionMemorySize(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
|
|
|
unsigned char switch_type;
|
|
|
|
unsigned char increment;
|
|
|
|
ULONG switch_value;
|
|
|
|
|
|
|
|
switch_type = *pFormat & 0xf;
|
2007-06-19 03:40:08 +02:00
|
|
|
increment = (*pFormat & 0xf0) >> 4;
|
2007-06-18 12:47:49 +02:00
|
|
|
pFormat++;
|
|
|
|
|
|
|
|
ALIGN_POINTER(pStubMsg->Buffer, increment);
|
|
|
|
switch_value = get_discriminant(switch_type, pStubMsg->Buffer);
|
|
|
|
TRACE("got switch value 0x%x\n", switch_value);
|
|
|
|
|
|
|
|
pStubMsg->Memory += increment;
|
|
|
|
|
|
|
|
return increment + union_arm_memory_size(pStubMsg, switch_value, pFormat + *(const SHORT*)pFormat);
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrEncapsulatedUnionFree [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
void WINAPI NdrEncapsulatedUnionFree(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char *pMemory,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
|
|
|
unsigned char switch_type;
|
|
|
|
unsigned char increment;
|
|
|
|
ULONG switch_value;
|
|
|
|
|
|
|
|
TRACE("(%p, %p, %p)\n", pStubMsg, pMemory, pFormat);
|
|
|
|
pFormat++;
|
|
|
|
|
|
|
|
switch_type = *pFormat & 0xf;
|
2007-06-19 03:40:08 +02:00
|
|
|
increment = (*pFormat & 0xf0) >> 4;
|
2007-06-18 12:47:49 +02:00
|
|
|
pFormat++;
|
|
|
|
|
|
|
|
switch_value = get_discriminant(switch_type, pMemory);
|
|
|
|
TRACE("got switch value 0x%x\n", switch_value);
|
|
|
|
|
|
|
|
pMemory += increment;
|
|
|
|
|
2008-03-29 20:10:17 +01:00
|
|
|
union_arm_free(pStubMsg, pMemory, switch_value, pFormat);
|
2007-06-18 12:47:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrNonEncapsulatedUnionMarshall [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
unsigned char * WINAPI NdrNonEncapsulatedUnionMarshall(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char *pMemory,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
|
|
|
unsigned char switch_type;
|
|
|
|
|
|
|
|
TRACE("(%p, %p, %p)\n", pStubMsg, pMemory, pFormat);
|
|
|
|
pFormat++;
|
|
|
|
|
|
|
|
switch_type = *pFormat;
|
|
|
|
pFormat++;
|
|
|
|
|
|
|
|
pFormat = ComputeConformance(pStubMsg, pMemory, pFormat, 0);
|
|
|
|
TRACE("got switch value 0x%lx\n", pStubMsg->MaxCount);
|
|
|
|
/* Marshall discriminant */
|
|
|
|
NdrBaseTypeMarshall(pStubMsg, (unsigned char *)&pStubMsg->MaxCount, &switch_type);
|
|
|
|
|
|
|
|
return union_arm_marshall(pStubMsg, pMemory, pStubMsg->MaxCount, pFormat + *(const SHORT*)pFormat);
|
|
|
|
}
|
|
|
|
|
|
|
|
static long unmarshall_discriminant(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
PFORMAT_STRING *ppFormat)
|
|
|
|
{
|
|
|
|
long discriminant = 0;
|
|
|
|
|
|
|
|
switch(**ppFormat)
|
|
|
|
{
|
|
|
|
case RPC_FC_BYTE:
|
|
|
|
case RPC_FC_CHAR:
|
|
|
|
case RPC_FC_SMALL:
|
|
|
|
case RPC_FC_USMALL:
|
2007-07-16 16:02:38 +02:00
|
|
|
{
|
|
|
|
UCHAR d;
|
2007-11-28 16:01:53 +01:00
|
|
|
safe_copy_from_buffer(pStubMsg, &d, sizeof(d));
|
2007-07-16 16:02:38 +02:00
|
|
|
discriminant = d;
|
2007-06-18 12:47:49 +02:00
|
|
|
break;
|
2007-07-16 16:02:38 +02:00
|
|
|
}
|
2007-06-18 12:47:49 +02:00
|
|
|
case RPC_FC_WCHAR:
|
|
|
|
case RPC_FC_SHORT:
|
|
|
|
case RPC_FC_USHORT:
|
2007-07-16 16:02:38 +02:00
|
|
|
{
|
|
|
|
USHORT d;
|
2007-06-18 12:47:49 +02:00
|
|
|
ALIGN_POINTER(pStubMsg->Buffer, sizeof(USHORT));
|
2007-11-28 16:01:53 +01:00
|
|
|
safe_copy_from_buffer(pStubMsg, &d, sizeof(d));
|
2007-07-16 16:02:38 +02:00
|
|
|
discriminant = d;
|
2007-06-18 12:47:49 +02:00
|
|
|
break;
|
2007-07-16 16:02:38 +02:00
|
|
|
}
|
2007-06-18 12:47:49 +02:00
|
|
|
case RPC_FC_LONG:
|
|
|
|
case RPC_FC_ULONG:
|
2007-07-16 16:02:38 +02:00
|
|
|
{
|
|
|
|
ULONG d;
|
2007-06-18 12:47:49 +02:00
|
|
|
ALIGN_POINTER(pStubMsg->Buffer, sizeof(ULONG));
|
2007-11-28 16:01:53 +01:00
|
|
|
safe_copy_from_buffer(pStubMsg, &d, sizeof(d));
|
2007-07-16 16:02:38 +02:00
|
|
|
discriminant = d;
|
2007-06-18 12:47:49 +02:00
|
|
|
break;
|
2007-07-16 16:02:38 +02:00
|
|
|
}
|
2007-06-18 12:47:49 +02:00
|
|
|
default:
|
|
|
|
FIXME("Unhandled base type: 0x%02x\n", **ppFormat);
|
|
|
|
}
|
|
|
|
(*ppFormat)++;
|
|
|
|
|
|
|
|
if (pStubMsg->fHasNewCorrDesc)
|
|
|
|
*ppFormat += 6;
|
|
|
|
else
|
|
|
|
*ppFormat += 4;
|
|
|
|
return discriminant;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**********************************************************************
|
|
|
|
* NdrNonEncapsulatedUnionUnmarshall [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
unsigned char * WINAPI NdrNonEncapsulatedUnionUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char **ppMemory,
|
|
|
|
PFORMAT_STRING pFormat,
|
|
|
|
unsigned char fMustAlloc)
|
|
|
|
{
|
|
|
|
long discriminant;
|
|
|
|
unsigned short size;
|
|
|
|
|
|
|
|
TRACE("(%p, %p, %p, %d)\n", pStubMsg, ppMemory, pFormat, fMustAlloc);
|
|
|
|
pFormat++;
|
|
|
|
|
|
|
|
/* Unmarshall discriminant */
|
|
|
|
discriminant = unmarshall_discriminant(pStubMsg, &pFormat);
|
|
|
|
TRACE("unmarshalled discriminant %lx\n", discriminant);
|
|
|
|
|
|
|
|
pFormat += *(const SHORT*)pFormat;
|
|
|
|
|
|
|
|
size = *(const unsigned short*)pFormat;
|
|
|
|
|
|
|
|
if(!*ppMemory || fMustAlloc)
|
|
|
|
*ppMemory = NdrAllocate(pStubMsg, size);
|
|
|
|
|
|
|
|
return union_arm_unmarshall(pStubMsg, ppMemory, discriminant, pFormat, fMustAlloc);
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrNonEncapsulatedUnionBufferSize [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
void WINAPI NdrNonEncapsulatedUnionBufferSize(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char *pMemory,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
|
|
|
unsigned char switch_type;
|
|
|
|
|
|
|
|
TRACE("(%p, %p, %p)\n", pStubMsg, pMemory, pFormat);
|
|
|
|
pFormat++;
|
|
|
|
|
|
|
|
switch_type = *pFormat;
|
|
|
|
pFormat++;
|
|
|
|
|
|
|
|
pFormat = ComputeConformance(pStubMsg, pMemory, pFormat, 0);
|
|
|
|
TRACE("got switch value 0x%lx\n", pStubMsg->MaxCount);
|
|
|
|
/* Add discriminant size */
|
|
|
|
NdrBaseTypeBufferSize(pStubMsg, (unsigned char *)&pStubMsg->MaxCount, &switch_type);
|
|
|
|
|
|
|
|
union_arm_buffer_size(pStubMsg, pMemory, pStubMsg->MaxCount, pFormat + *(const SHORT*)pFormat);
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrNonEncapsulatedUnionMemorySize [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
ULONG WINAPI NdrNonEncapsulatedUnionMemorySize(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
|
|
|
ULONG discriminant;
|
|
|
|
|
|
|
|
pFormat++;
|
|
|
|
/* Unmarshall discriminant */
|
|
|
|
discriminant = unmarshall_discriminant(pStubMsg, &pFormat);
|
|
|
|
TRACE("unmarshalled discriminant 0x%x\n", discriminant);
|
|
|
|
|
|
|
|
return union_arm_memory_size(pStubMsg, discriminant, pFormat + *(const SHORT*)pFormat);
|
|
|
|
}
|
|
|
|
|
2005-07-18 15:14:05 +02:00
|
|
|
/***********************************************************************
|
|
|
|
* NdrNonEncapsulatedUnionFree [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
void WINAPI NdrNonEncapsulatedUnionFree(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char *pMemory,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
2007-06-18 12:47:49 +02:00
|
|
|
TRACE("(%p, %p, %p)\n", pStubMsg, pMemory, pFormat);
|
|
|
|
pFormat++;
|
|
|
|
pFormat++;
|
|
|
|
|
|
|
|
pFormat = ComputeConformance(pStubMsg, pMemory, pFormat, 0);
|
|
|
|
TRACE("got switch value 0x%lx\n", pStubMsg->MaxCount);
|
|
|
|
|
2008-03-29 20:10:17 +01:00
|
|
|
union_arm_free(pStubMsg, pMemory, pStubMsg->MaxCount, pFormat + *(const SHORT*)pFormat);
|
2005-07-18 15:14:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrByteCountPointerMarshall [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
unsigned char * WINAPI NdrByteCountPointerMarshall(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char *pMemory,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
|
|
|
FIXME("stub\n");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrByteCountPointerUnmarshall [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
unsigned char * WINAPI NdrByteCountPointerUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char **ppMemory,
|
|
|
|
PFORMAT_STRING pFormat,
|
|
|
|
unsigned char fMustAlloc)
|
|
|
|
{
|
|
|
|
FIXME("stub\n");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrByteCountPointerBufferSize [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
void WINAPI NdrByteCountPointerBufferSize(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char *pMemory,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
|
|
|
FIXME("stub\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrByteCountPointerMemorySize [RPCRT4.@]
|
|
|
|
*/
|
2006-11-09 23:01:58 +01:00
|
|
|
ULONG WINAPI NdrByteCountPointerMemorySize(PMIDL_STUB_MESSAGE pStubMsg,
|
2005-07-18 15:14:05 +02:00
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
|
|
|
FIXME("stub\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrByteCountPointerFree [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
void WINAPI NdrByteCountPointerFree(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char *pMemory,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
|
|
|
FIXME("stub\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrXmitOrRepAsMarshall [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
unsigned char * WINAPI NdrXmitOrRepAsMarshall(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char *pMemory,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
|
|
|
FIXME("stub\n");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrXmitOrRepAsUnmarshall [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
unsigned char * WINAPI NdrXmitOrRepAsUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char **ppMemory,
|
|
|
|
PFORMAT_STRING pFormat,
|
|
|
|
unsigned char fMustAlloc)
|
|
|
|
{
|
|
|
|
FIXME("stub\n");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrXmitOrRepAsBufferSize [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
void WINAPI NdrXmitOrRepAsBufferSize(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char *pMemory,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
|
|
|
FIXME("stub\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrXmitOrRepAsMemorySize [RPCRT4.@]
|
|
|
|
*/
|
2006-11-09 23:01:58 +01:00
|
|
|
ULONG WINAPI NdrXmitOrRepAsMemorySize(PMIDL_STUB_MESSAGE pStubMsg,
|
2005-07-18 15:14:05 +02:00
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
|
|
|
FIXME("stub\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrXmitOrRepAsFree [RPCRT4.@]
|
|
|
|
*/
|
|
|
|
void WINAPI NdrXmitOrRepAsFree(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char *pMemory,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
|
|
|
FIXME("stub\n");
|
|
|
|
}
|
|
|
|
|
2007-06-25 15:28:40 +02:00
|
|
|
/***********************************************************************
|
|
|
|
* NdrRangeMarshall [internal]
|
|
|
|
*/
|
|
|
|
unsigned char *WINAPI NdrRangeMarshall(
|
|
|
|
PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char *pMemory,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
|
|
|
NDR_RANGE *pRange = (NDR_RANGE *)pFormat;
|
|
|
|
unsigned char base_type;
|
|
|
|
|
|
|
|
TRACE("pStubMsg %p, pMemory %p, type 0x%02x\n", pStubMsg, pMemory, *pFormat);
|
|
|
|
|
|
|
|
if (pRange->type != RPC_FC_RANGE)
|
|
|
|
{
|
|
|
|
ERR("invalid format type %x\n", pRange->type);
|
|
|
|
RpcRaiseException(RPC_S_INTERNAL_ERROR);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
base_type = pRange->flags_type & 0xf;
|
|
|
|
|
|
|
|
return NdrBaseTypeMarshall(pStubMsg, pMemory, &base_type);
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrRangeUnmarshall
|
|
|
|
*/
|
|
|
|
unsigned char *WINAPI NdrRangeUnmarshall(
|
|
|
|
PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char **ppMemory,
|
|
|
|
PFORMAT_STRING pFormat,
|
|
|
|
unsigned char fMustAlloc)
|
|
|
|
{
|
|
|
|
NDR_RANGE *pRange = (NDR_RANGE *)pFormat;
|
|
|
|
unsigned char base_type;
|
|
|
|
|
|
|
|
TRACE("pStubMsg: %p, ppMemory: %p, type: 0x%02x, fMustAlloc: %s\n", pStubMsg, ppMemory, *pFormat, fMustAlloc ? "true" : "false");
|
|
|
|
|
|
|
|
if (pRange->type != RPC_FC_RANGE)
|
|
|
|
{
|
|
|
|
ERR("invalid format type %x\n", pRange->type);
|
|
|
|
RpcRaiseException(RPC_S_INTERNAL_ERROR);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
base_type = pRange->flags_type & 0xf;
|
|
|
|
|
|
|
|
TRACE("base_type = 0x%02x, low_value = %d, high_value = %d\n",
|
|
|
|
base_type, pRange->low_value, pRange->high_value);
|
|
|
|
|
|
|
|
#define RANGE_UNMARSHALL(type, format_spec) \
|
|
|
|
do \
|
|
|
|
{ \
|
|
|
|
ALIGN_POINTER(pStubMsg->Buffer, sizeof(type)); \
|
|
|
|
if (fMustAlloc || !*ppMemory) \
|
|
|
|
*ppMemory = NdrAllocate(pStubMsg, sizeof(type)); \
|
2007-11-28 16:02:21 +01:00
|
|
|
if (pStubMsg->Buffer + sizeof(type) > pStubMsg->BufferEnd) \
|
|
|
|
{ \
|
|
|
|
ERR("buffer overflow - Buffer = %p, BufferEnd = %p\n", \
|
|
|
|
pStubMsg->Buffer, (unsigned char *)pStubMsg->RpcMsg->Buffer + pStubMsg->BufferLength); \
|
|
|
|
RpcRaiseException(RPC_X_BAD_STUB_DATA); \
|
|
|
|
} \
|
2007-06-25 15:28:40 +02:00
|
|
|
if ((*(type *)pStubMsg->Buffer < (type)pRange->low_value) || \
|
|
|
|
(*(type *)pStubMsg->Buffer > (type)pRange->high_value)) \
|
|
|
|
{ \
|
|
|
|
ERR("value exceeded bounds: " format_spec ", low: " format_spec ", high: " format_spec "\n", \
|
|
|
|
*(type *)pStubMsg->Buffer, (type)pRange->low_value, \
|
|
|
|
(type)pRange->high_value); \
|
|
|
|
RpcRaiseException(RPC_S_INVALID_BOUND); \
|
|
|
|
return NULL; \
|
|
|
|
} \
|
|
|
|
TRACE("*ppMemory: %p\n", *ppMemory); \
|
|
|
|
**(type **)ppMemory = *(type *)pStubMsg->Buffer; \
|
|
|
|
pStubMsg->Buffer += sizeof(type); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
switch(base_type)
|
|
|
|
{
|
|
|
|
case RPC_FC_CHAR:
|
|
|
|
case RPC_FC_SMALL:
|
|
|
|
RANGE_UNMARSHALL(UCHAR, "%d");
|
2008-01-16 22:57:31 +01:00
|
|
|
TRACE("value: 0x%02x\n", **ppMemory);
|
2007-06-25 15:28:40 +02:00
|
|
|
break;
|
|
|
|
case RPC_FC_BYTE:
|
|
|
|
case RPC_FC_USMALL:
|
|
|
|
RANGE_UNMARSHALL(CHAR, "%u");
|
2008-01-16 22:57:31 +01:00
|
|
|
TRACE("value: 0x%02x\n", **ppMemory);
|
2007-06-25 15:28:40 +02:00
|
|
|
break;
|
|
|
|
case RPC_FC_WCHAR: /* FIXME: valid? */
|
|
|
|
case RPC_FC_USHORT:
|
|
|
|
RANGE_UNMARSHALL(USHORT, "%u");
|
|
|
|
TRACE("value: 0x%04x\n", **(USHORT **)ppMemory);
|
|
|
|
break;
|
|
|
|
case RPC_FC_SHORT:
|
|
|
|
RANGE_UNMARSHALL(SHORT, "%d");
|
|
|
|
TRACE("value: 0x%04x\n", **(USHORT **)ppMemory);
|
|
|
|
break;
|
|
|
|
case RPC_FC_LONG:
|
|
|
|
RANGE_UNMARSHALL(LONG, "%d");
|
|
|
|
TRACE("value: 0x%08x\n", **(ULONG **)ppMemory);
|
|
|
|
break;
|
|
|
|
case RPC_FC_ULONG:
|
|
|
|
RANGE_UNMARSHALL(ULONG, "%u");
|
|
|
|
TRACE("value: 0x%08x\n", **(ULONG **)ppMemory);
|
|
|
|
break;
|
|
|
|
case RPC_FC_ENUM16:
|
|
|
|
case RPC_FC_ENUM32:
|
|
|
|
FIXME("Unhandled enum type\n");
|
|
|
|
break;
|
|
|
|
case RPC_FC_ERROR_STATUS_T: /* FIXME: valid? */
|
|
|
|
case RPC_FC_FLOAT:
|
|
|
|
case RPC_FC_DOUBLE:
|
|
|
|
case RPC_FC_HYPER:
|
|
|
|
default:
|
|
|
|
ERR("invalid range base type: 0x%02x\n", base_type);
|
|
|
|
RpcRaiseException(RPC_S_INTERNAL_ERROR);
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrRangeBufferSize [internal]
|
|
|
|
*/
|
|
|
|
void WINAPI NdrRangeBufferSize(
|
|
|
|
PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char *pMemory,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
|
|
|
NDR_RANGE *pRange = (NDR_RANGE *)pFormat;
|
|
|
|
unsigned char base_type;
|
|
|
|
|
|
|
|
TRACE("pStubMsg %p, pMemory %p, type 0x%02x\n", pStubMsg, pMemory, *pFormat);
|
|
|
|
|
|
|
|
if (pRange->type != RPC_FC_RANGE)
|
|
|
|
{
|
|
|
|
ERR("invalid format type %x\n", pRange->type);
|
|
|
|
RpcRaiseException(RPC_S_INTERNAL_ERROR);
|
|
|
|
}
|
|
|
|
base_type = pRange->flags_type & 0xf;
|
|
|
|
|
|
|
|
NdrBaseTypeBufferSize(pStubMsg, pMemory, &base_type);
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrRangeMemorySize [internal]
|
|
|
|
*/
|
|
|
|
ULONG WINAPI NdrRangeMemorySize(
|
|
|
|
PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
|
|
|
NDR_RANGE *pRange = (NDR_RANGE *)pFormat;
|
|
|
|
unsigned char base_type;
|
|
|
|
|
|
|
|
if (pRange->type != RPC_FC_RANGE)
|
|
|
|
{
|
|
|
|
ERR("invalid format type %x\n", pRange->type);
|
|
|
|
RpcRaiseException(RPC_S_INTERNAL_ERROR);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
base_type = pRange->flags_type & 0xf;
|
|
|
|
|
|
|
|
return NdrBaseTypeMemorySize(pStubMsg, &base_type);
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrRangeFree [internal]
|
|
|
|
*/
|
|
|
|
void WINAPI NdrRangeFree(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char *pMemory,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
|
|
|
TRACE("pStubMsg %p pMemory %p type 0x%02x\n", pStubMsg, pMemory, *pFormat);
|
|
|
|
|
|
|
|
/* nothing to do */
|
|
|
|
}
|
|
|
|
|
2005-11-28 11:24:21 +01:00
|
|
|
/***********************************************************************
|
|
|
|
* NdrBaseTypeMarshall [internal]
|
|
|
|
*/
|
|
|
|
static unsigned char *WINAPI NdrBaseTypeMarshall(
|
|
|
|
PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char *pMemory,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
|
|
|
TRACE("pStubMsg %p, pMemory %p, type 0x%02x\n", pStubMsg, pMemory, *pFormat);
|
|
|
|
|
|
|
|
switch(*pFormat)
|
|
|
|
{
|
|
|
|
case RPC_FC_BYTE:
|
|
|
|
case RPC_FC_CHAR:
|
|
|
|
case RPC_FC_SMALL:
|
|
|
|
case RPC_FC_USMALL:
|
2007-11-28 16:02:06 +01:00
|
|
|
safe_copy_to_buffer(pStubMsg, pMemory, sizeof(UCHAR));
|
2008-01-16 22:57:31 +01:00
|
|
|
TRACE("value: 0x%02x\n", *pMemory);
|
2005-11-28 11:24:21 +01:00
|
|
|
break;
|
|
|
|
case RPC_FC_WCHAR:
|
|
|
|
case RPC_FC_SHORT:
|
|
|
|
case RPC_FC_USHORT:
|
2007-12-14 20:55:04 +01:00
|
|
|
ALIGN_POINTER_CLEAR(pStubMsg->Buffer, sizeof(USHORT));
|
2007-11-28 16:02:06 +01:00
|
|
|
safe_copy_to_buffer(pStubMsg, pMemory, sizeof(USHORT));
|
2005-11-28 11:24:21 +01:00
|
|
|
TRACE("value: 0x%04x\n", *(USHORT *)pMemory);
|
|
|
|
break;
|
|
|
|
case RPC_FC_LONG:
|
|
|
|
case RPC_FC_ULONG:
|
|
|
|
case RPC_FC_ERROR_STATUS_T:
|
2006-03-01 13:21:56 +01:00
|
|
|
case RPC_FC_ENUM32:
|
2007-12-14 20:55:04 +01:00
|
|
|
ALIGN_POINTER_CLEAR(pStubMsg->Buffer, sizeof(ULONG));
|
2007-11-28 16:02:06 +01:00
|
|
|
safe_copy_to_buffer(pStubMsg, pMemory, sizeof(ULONG));
|
2006-11-09 23:04:48 +01:00
|
|
|
TRACE("value: 0x%08x\n", *(ULONG *)pMemory);
|
2005-11-28 11:24:21 +01:00
|
|
|
break;
|
|
|
|
case RPC_FC_FLOAT:
|
2007-12-14 20:55:04 +01:00
|
|
|
ALIGN_POINTER_CLEAR(pStubMsg->Buffer, sizeof(float));
|
2007-11-28 16:02:06 +01:00
|
|
|
safe_copy_to_buffer(pStubMsg, pMemory, sizeof(float));
|
2005-11-28 11:24:21 +01:00
|
|
|
break;
|
|
|
|
case RPC_FC_DOUBLE:
|
2007-12-14 20:55:04 +01:00
|
|
|
ALIGN_POINTER_CLEAR(pStubMsg->Buffer, sizeof(double));
|
2007-11-28 16:02:06 +01:00
|
|
|
safe_copy_to_buffer(pStubMsg, pMemory, sizeof(double));
|
2005-11-28 11:24:21 +01:00
|
|
|
break;
|
|
|
|
case RPC_FC_HYPER:
|
2007-12-14 20:55:04 +01:00
|
|
|
ALIGN_POINTER_CLEAR(pStubMsg->Buffer, sizeof(ULONGLONG));
|
2007-11-28 16:02:06 +01:00
|
|
|
safe_copy_to_buffer(pStubMsg, pMemory, sizeof(ULONGLONG));
|
2005-11-28 11:24:21 +01:00
|
|
|
TRACE("value: %s\n", wine_dbgstr_longlong(*(ULONGLONG*)pMemory));
|
|
|
|
break;
|
|
|
|
case RPC_FC_ENUM16:
|
2006-03-01 13:21:56 +01:00
|
|
|
/* only 16-bits on the wire, so do a sanity check */
|
2007-07-16 16:00:59 +02:00
|
|
|
if (*(UINT *)pMemory > SHRT_MAX)
|
2006-03-01 13:21:56 +01:00
|
|
|
RpcRaiseException(RPC_X_ENUM_VALUE_OUT_OF_RANGE);
|
2007-12-14 20:55:04 +01:00
|
|
|
ALIGN_POINTER_CLEAR(pStubMsg->Buffer, sizeof(USHORT));
|
2007-11-28 16:02:06 +01:00
|
|
|
if (pStubMsg->Buffer + sizeof(USHORT) > (unsigned char *)pStubMsg->RpcMsg->Buffer + pStubMsg->BufferLength)
|
|
|
|
RpcRaiseException(RPC_X_BAD_STUB_DATA);
|
2006-03-01 13:21:56 +01:00
|
|
|
*(USHORT *)pStubMsg->Buffer = *(UINT *)pMemory;
|
|
|
|
pStubMsg->Buffer += sizeof(USHORT);
|
|
|
|
TRACE("value: 0x%04x\n", *(UINT *)pMemory);
|
|
|
|
break;
|
2007-11-05 12:10:07 +01:00
|
|
|
case RPC_FC_IGNORE:
|
|
|
|
break;
|
2005-11-28 11:24:21 +01:00
|
|
|
default:
|
|
|
|
FIXME("Unhandled base type: 0x%02x\n", *pFormat);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* FIXME: what is the correct return value? */
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrBaseTypeUnmarshall [internal]
|
|
|
|
*/
|
|
|
|
static unsigned char *WINAPI NdrBaseTypeUnmarshall(
|
|
|
|
PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char **ppMemory,
|
|
|
|
PFORMAT_STRING pFormat,
|
|
|
|
unsigned char fMustAlloc)
|
|
|
|
{
|
|
|
|
TRACE("pStubMsg: %p, ppMemory: %p, type: 0x%02x, fMustAlloc: %s\n", pStubMsg, ppMemory, *pFormat, fMustAlloc ? "true" : "false");
|
|
|
|
|
2006-05-19 17:02:59 +02:00
|
|
|
#define BASE_TYPE_UNMARSHALL(type) \
|
|
|
|
ALIGN_POINTER(pStubMsg->Buffer, sizeof(type)); \
|
2007-12-05 12:56:32 +01:00
|
|
|
if (!fMustAlloc && !pStubMsg->IsClient && !*ppMemory) \
|
|
|
|
{ \
|
|
|
|
*ppMemory = pStubMsg->Buffer; \
|
|
|
|
TRACE("*ppMemory: %p\n", *ppMemory); \
|
2008-04-28 11:21:33 +02:00
|
|
|
safe_buffer_increment(pStubMsg, sizeof(type)); \
|
2007-12-05 12:56:32 +01:00
|
|
|
} \
|
|
|
|
else \
|
|
|
|
{ \
|
|
|
|
if (fMustAlloc) \
|
|
|
|
*ppMemory = NdrAllocate(pStubMsg, sizeof(type)); \
|
|
|
|
TRACE("*ppMemory: %p\n", *ppMemory); \
|
2008-04-28 11:21:33 +02:00
|
|
|
safe_copy_from_buffer(pStubMsg, *ppMemory, sizeof(type)); \
|
|
|
|
}
|
2006-05-19 17:02:59 +02:00
|
|
|
|
2005-11-28 11:24:21 +01:00
|
|
|
switch(*pFormat)
|
|
|
|
{
|
|
|
|
case RPC_FC_BYTE:
|
|
|
|
case RPC_FC_CHAR:
|
|
|
|
case RPC_FC_SMALL:
|
|
|
|
case RPC_FC_USMALL:
|
2006-05-19 17:02:59 +02:00
|
|
|
BASE_TYPE_UNMARSHALL(UCHAR);
|
2008-01-16 22:57:31 +01:00
|
|
|
TRACE("value: 0x%02x\n", **ppMemory);
|
2005-11-28 11:24:21 +01:00
|
|
|
break;
|
|
|
|
case RPC_FC_WCHAR:
|
|
|
|
case RPC_FC_SHORT:
|
|
|
|
case RPC_FC_USHORT:
|
2006-05-19 17:02:59 +02:00
|
|
|
BASE_TYPE_UNMARSHALL(USHORT);
|
2005-11-28 11:24:21 +01:00
|
|
|
TRACE("value: 0x%04x\n", **(USHORT **)ppMemory);
|
|
|
|
break;
|
|
|
|
case RPC_FC_LONG:
|
|
|
|
case RPC_FC_ULONG:
|
|
|
|
case RPC_FC_ERROR_STATUS_T:
|
2006-03-01 13:21:56 +01:00
|
|
|
case RPC_FC_ENUM32:
|
2006-05-19 17:02:59 +02:00
|
|
|
BASE_TYPE_UNMARSHALL(ULONG);
|
2006-11-09 23:04:48 +01:00
|
|
|
TRACE("value: 0x%08x\n", **(ULONG **)ppMemory);
|
2005-11-28 11:24:21 +01:00
|
|
|
break;
|
|
|
|
case RPC_FC_FLOAT:
|
2006-05-19 17:02:59 +02:00
|
|
|
BASE_TYPE_UNMARSHALL(float);
|
2005-11-28 11:24:21 +01:00
|
|
|
TRACE("value: %f\n", **(float **)ppMemory);
|
|
|
|
break;
|
|
|
|
case RPC_FC_DOUBLE:
|
2006-05-19 17:02:59 +02:00
|
|
|
BASE_TYPE_UNMARSHALL(double);
|
2005-11-28 11:24:21 +01:00
|
|
|
TRACE("value: %f\n", **(double **)ppMemory);
|
|
|
|
break;
|
|
|
|
case RPC_FC_HYPER:
|
2006-05-19 17:02:59 +02:00
|
|
|
BASE_TYPE_UNMARSHALL(ULONGLONG);
|
2005-11-28 11:24:21 +01:00
|
|
|
TRACE("value: %s\n", wine_dbgstr_longlong(**(ULONGLONG **)ppMemory));
|
|
|
|
break;
|
|
|
|
case RPC_FC_ENUM16:
|
2006-05-10 14:12:07 +02:00
|
|
|
ALIGN_POINTER(pStubMsg->Buffer, sizeof(USHORT));
|
2006-06-05 02:41:18 +02:00
|
|
|
if (fMustAlloc || !*ppMemory)
|
|
|
|
*ppMemory = NdrAllocate(pStubMsg, sizeof(UINT));
|
2007-11-28 16:02:21 +01:00
|
|
|
if (pStubMsg->Buffer + sizeof(USHORT) > pStubMsg->BufferEnd)
|
|
|
|
RpcRaiseException(RPC_X_BAD_STUB_DATA);
|
2006-06-05 02:41:18 +02:00
|
|
|
TRACE("*ppMemory: %p\n", *ppMemory);
|
2006-03-01 13:21:56 +01:00
|
|
|
/* 16-bits on the wire, but int in memory */
|
|
|
|
**(UINT **)ppMemory = *(USHORT *)pStubMsg->Buffer;
|
|
|
|
pStubMsg->Buffer += sizeof(USHORT);
|
|
|
|
TRACE("value: 0x%08x\n", **(UINT **)ppMemory);
|
|
|
|
break;
|
2007-11-05 12:10:07 +01:00
|
|
|
case RPC_FC_IGNORE:
|
|
|
|
break;
|
2005-11-28 11:24:21 +01:00
|
|
|
default:
|
|
|
|
FIXME("Unhandled base type: 0x%02x\n", *pFormat);
|
|
|
|
}
|
2006-05-19 17:02:59 +02:00
|
|
|
#undef BASE_TYPE_UNMARSHALL
|
2005-11-28 11:24:21 +01:00
|
|
|
|
|
|
|
/* FIXME: what is the correct return value? */
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrBaseTypeBufferSize [internal]
|
|
|
|
*/
|
|
|
|
static void WINAPI NdrBaseTypeBufferSize(
|
|
|
|
PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char *pMemory,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
|
|
|
TRACE("pStubMsg %p, pMemory %p, type 0x%02x\n", pStubMsg, pMemory, *pFormat);
|
|
|
|
|
|
|
|
switch(*pFormat)
|
|
|
|
{
|
|
|
|
case RPC_FC_BYTE:
|
|
|
|
case RPC_FC_CHAR:
|
|
|
|
case RPC_FC_SMALL:
|
|
|
|
case RPC_FC_USMALL:
|
2007-11-28 16:01:53 +01:00
|
|
|
safe_buffer_length_increment(pStubMsg, sizeof(UCHAR));
|
2005-11-28 11:24:21 +01:00
|
|
|
break;
|
|
|
|
case RPC_FC_WCHAR:
|
|
|
|
case RPC_FC_SHORT:
|
|
|
|
case RPC_FC_USHORT:
|
2006-03-01 13:21:56 +01:00
|
|
|
case RPC_FC_ENUM16:
|
2006-05-10 14:12:07 +02:00
|
|
|
ALIGN_LENGTH(pStubMsg->BufferLength, sizeof(USHORT));
|
2007-11-28 16:01:53 +01:00
|
|
|
safe_buffer_length_increment(pStubMsg, sizeof(USHORT));
|
2005-11-28 11:24:21 +01:00
|
|
|
break;
|
|
|
|
case RPC_FC_LONG:
|
|
|
|
case RPC_FC_ULONG:
|
2006-03-01 13:21:56 +01:00
|
|
|
case RPC_FC_ENUM32:
|
2006-05-10 14:12:07 +02:00
|
|
|
ALIGN_LENGTH(pStubMsg->BufferLength, sizeof(ULONG));
|
2007-11-28 16:01:53 +01:00
|
|
|
safe_buffer_length_increment(pStubMsg, sizeof(ULONG));
|
2005-11-28 11:24:21 +01:00
|
|
|
break;
|
|
|
|
case RPC_FC_FLOAT:
|
2006-05-10 14:12:07 +02:00
|
|
|
ALIGN_LENGTH(pStubMsg->BufferLength, sizeof(float));
|
2007-11-28 16:01:53 +01:00
|
|
|
safe_buffer_length_increment(pStubMsg, sizeof(float));
|
2005-11-28 11:24:21 +01:00
|
|
|
break;
|
|
|
|
case RPC_FC_DOUBLE:
|
2006-05-10 14:12:07 +02:00
|
|
|
ALIGN_LENGTH(pStubMsg->BufferLength, sizeof(double));
|
2007-11-28 16:01:53 +01:00
|
|
|
safe_buffer_length_increment(pStubMsg, sizeof(double));
|
2005-11-28 11:24:21 +01:00
|
|
|
break;
|
|
|
|
case RPC_FC_HYPER:
|
2006-05-10 14:12:07 +02:00
|
|
|
ALIGN_LENGTH(pStubMsg->BufferLength, sizeof(ULONGLONG));
|
2007-11-28 16:01:53 +01:00
|
|
|
safe_buffer_length_increment(pStubMsg, sizeof(ULONGLONG));
|
2005-11-28 11:24:21 +01:00
|
|
|
break;
|
|
|
|
case RPC_FC_ERROR_STATUS_T:
|
2006-05-10 14:12:07 +02:00
|
|
|
ALIGN_LENGTH(pStubMsg->BufferLength, sizeof(error_status_t));
|
2007-11-28 16:01:53 +01:00
|
|
|
safe_buffer_length_increment(pStubMsg, sizeof(error_status_t));
|
2005-11-28 11:24:21 +01:00
|
|
|
break;
|
2007-11-05 12:10:07 +01:00
|
|
|
case RPC_FC_IGNORE:
|
|
|
|
break;
|
2005-11-28 11:24:21 +01:00
|
|
|
default:
|
|
|
|
FIXME("Unhandled base type: 0x%02x\n", *pFormat);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrBaseTypeMemorySize [internal]
|
|
|
|
*/
|
2006-11-09 23:02:49 +01:00
|
|
|
static ULONG WINAPI NdrBaseTypeMemorySize(
|
2005-11-28 11:24:21 +01:00
|
|
|
PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
2007-12-08 18:46:41 +01:00
|
|
|
TRACE("pStubMsg %p, type 0x%02x\n", pStubMsg, *pFormat);
|
|
|
|
|
2005-11-28 11:24:21 +01:00
|
|
|
switch(*pFormat)
|
|
|
|
{
|
|
|
|
case RPC_FC_BYTE:
|
|
|
|
case RPC_FC_CHAR:
|
|
|
|
case RPC_FC_SMALL:
|
|
|
|
case RPC_FC_USMALL:
|
2007-11-28 16:02:21 +01:00
|
|
|
safe_buffer_increment(pStubMsg, sizeof(UCHAR));
|
2006-05-13 17:59:06 +02:00
|
|
|
pStubMsg->MemorySize += sizeof(UCHAR);
|
2005-11-28 11:24:21 +01:00
|
|
|
return sizeof(UCHAR);
|
|
|
|
case RPC_FC_WCHAR:
|
|
|
|
case RPC_FC_SHORT:
|
|
|
|
case RPC_FC_USHORT:
|
2007-11-28 16:02:21 +01:00
|
|
|
safe_buffer_increment(pStubMsg, sizeof(USHORT));
|
2006-05-13 17:59:06 +02:00
|
|
|
pStubMsg->MemorySize += sizeof(USHORT);
|
2005-11-28 11:24:21 +01:00
|
|
|
return sizeof(USHORT);
|
|
|
|
case RPC_FC_LONG:
|
|
|
|
case RPC_FC_ULONG:
|
2007-11-28 16:02:21 +01:00
|
|
|
case RPC_FC_ENUM32:
|
|
|
|
safe_buffer_increment(pStubMsg, sizeof(ULONG));
|
2006-05-13 17:59:06 +02:00
|
|
|
pStubMsg->MemorySize += sizeof(ULONG);
|
2005-11-28 11:24:21 +01:00
|
|
|
return sizeof(ULONG);
|
|
|
|
case RPC_FC_FLOAT:
|
2007-11-28 16:02:21 +01:00
|
|
|
safe_buffer_increment(pStubMsg, sizeof(float));
|
2006-05-13 17:59:06 +02:00
|
|
|
pStubMsg->MemorySize += sizeof(float);
|
2005-11-28 11:24:21 +01:00
|
|
|
return sizeof(float);
|
|
|
|
case RPC_FC_DOUBLE:
|
2007-11-28 16:02:21 +01:00
|
|
|
safe_buffer_increment(pStubMsg, sizeof(double));
|
2006-05-13 17:59:06 +02:00
|
|
|
pStubMsg->MemorySize += sizeof(double);
|
2005-11-28 11:24:21 +01:00
|
|
|
return sizeof(double);
|
|
|
|
case RPC_FC_HYPER:
|
2007-11-28 16:02:21 +01:00
|
|
|
safe_buffer_increment(pStubMsg, sizeof(ULONGLONG));
|
2006-05-13 17:59:06 +02:00
|
|
|
pStubMsg->MemorySize += sizeof(ULONGLONG);
|
2005-11-28 11:24:21 +01:00
|
|
|
return sizeof(ULONGLONG);
|
|
|
|
case RPC_FC_ERROR_STATUS_T:
|
2007-11-28 16:02:21 +01:00
|
|
|
safe_buffer_increment(pStubMsg, sizeof(error_status_t));
|
2006-05-13 17:59:06 +02:00
|
|
|
pStubMsg->MemorySize += sizeof(error_status_t);
|
2005-11-28 11:24:21 +01:00
|
|
|
return sizeof(error_status_t);
|
|
|
|
case RPC_FC_ENUM16:
|
2007-11-28 16:02:21 +01:00
|
|
|
safe_buffer_increment(pStubMsg, sizeof(USHORT));
|
|
|
|
pStubMsg->MemorySize += sizeof(UINT);
|
|
|
|
return sizeof(UINT);
|
2007-11-05 12:10:07 +01:00
|
|
|
case RPC_FC_IGNORE:
|
|
|
|
pStubMsg->MemorySize += sizeof(void *);
|
|
|
|
return sizeof(void *);
|
2005-11-28 11:24:21 +01:00
|
|
|
default:
|
|
|
|
FIXME("Unhandled base type: 0x%02x\n", *pFormat);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrBaseTypeFree [internal]
|
|
|
|
*/
|
|
|
|
static void WINAPI NdrBaseTypeFree(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char *pMemory,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
|
|
|
TRACE("pStubMsg %p pMemory %p type 0x%02x\n", pStubMsg, pMemory, *pFormat);
|
|
|
|
|
|
|
|
/* nothing to do */
|
|
|
|
}
|
|
|
|
|
2007-06-25 15:29:15 +02:00
|
|
|
/***********************************************************************
|
|
|
|
* NdrContextHandleBufferSize [internal]
|
|
|
|
*/
|
|
|
|
static void WINAPI NdrContextHandleBufferSize(
|
|
|
|
PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char *pMemory,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
|
|
|
TRACE("pStubMsg %p, pMemory %p, type 0x%02x\n", pStubMsg, pMemory, *pFormat);
|
|
|
|
|
|
|
|
if (*pFormat != RPC_FC_BIND_CONTEXT)
|
|
|
|
{
|
|
|
|
ERR("invalid format type %x\n", *pFormat);
|
|
|
|
RpcRaiseException(RPC_S_INTERNAL_ERROR);
|
|
|
|
}
|
|
|
|
ALIGN_LENGTH(pStubMsg->BufferLength, 4);
|
2007-11-28 16:01:53 +01:00
|
|
|
safe_buffer_length_increment(pStubMsg, cbNDRContext);
|
2007-06-25 15:29:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrContextHandleMarshall [internal]
|
|
|
|
*/
|
|
|
|
static unsigned char *WINAPI NdrContextHandleMarshall(
|
|
|
|
PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char *pMemory,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
|
|
|
TRACE("pStubMsg %p, pMemory %p, type 0x%02x\n", pStubMsg, pMemory, *pFormat);
|
|
|
|
|
|
|
|
if (*pFormat != RPC_FC_BIND_CONTEXT)
|
|
|
|
{
|
|
|
|
ERR("invalid format type %x\n", *pFormat);
|
|
|
|
RpcRaiseException(RPC_S_INTERNAL_ERROR);
|
|
|
|
}
|
2008-01-17 13:26:42 +01:00
|
|
|
TRACE("flags: 0x%02x\n", pFormat[1]);
|
2007-06-25 15:29:15 +02:00
|
|
|
|
|
|
|
if (pFormat[1] & 0x80)
|
|
|
|
NdrClientContextMarshall(pStubMsg, *(NDR_CCONTEXT **)pMemory, FALSE);
|
|
|
|
else
|
|
|
|
NdrClientContextMarshall(pStubMsg, (NDR_CCONTEXT *)pMemory, FALSE);
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrContextHandleUnmarshall [internal]
|
|
|
|
*/
|
|
|
|
static unsigned char *WINAPI NdrContextHandleUnmarshall(
|
|
|
|
PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char **ppMemory,
|
|
|
|
PFORMAT_STRING pFormat,
|
|
|
|
unsigned char fMustAlloc)
|
|
|
|
{
|
2008-01-17 13:26:42 +01:00
|
|
|
TRACE("pStubMsg %p, ppMemory %p, pFormat %p, fMustAlloc %s\n", pStubMsg,
|
|
|
|
ppMemory, pFormat, fMustAlloc ? "TRUE": "FALSE");
|
|
|
|
|
2007-06-25 15:29:15 +02:00
|
|
|
if (*pFormat != RPC_FC_BIND_CONTEXT)
|
|
|
|
{
|
|
|
|
ERR("invalid format type %x\n", *pFormat);
|
|
|
|
RpcRaiseException(RPC_S_INTERNAL_ERROR);
|
|
|
|
}
|
2008-01-17 13:26:42 +01:00
|
|
|
TRACE("flags: 0x%02x\n", pFormat[1]);
|
2007-06-25 15:29:15 +02:00
|
|
|
|
2008-01-17 13:26:42 +01:00
|
|
|
/* [out]-only or [ret] param */
|
|
|
|
if ((pFormat[1] & 0x60) == 0x20)
|
|
|
|
**(NDR_CCONTEXT **)ppMemory = NULL;
|
|
|
|
NdrClientContextUnmarshall(pStubMsg, *(NDR_CCONTEXT **)ppMemory, pStubMsg->RpcMsg->Handle);
|
2007-06-25 15:29:15 +02:00
|
|
|
|
2008-01-17 13:26:42 +01:00
|
|
|
return NULL;
|
2007-06-25 15:29:15 +02:00
|
|
|
}
|
|
|
|
|
2005-07-18 15:14:05 +02:00
|
|
|
/***********************************************************************
|
2006-11-12 20:23:02 +01:00
|
|
|
* NdrClientContextMarshall [RPCRT4.@]
|
2005-07-18 15:14:05 +02:00
|
|
|
*/
|
2005-08-03 16:55:57 +02:00
|
|
|
void WINAPI NdrClientContextMarshall(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
NDR_CCONTEXT ContextHandle,
|
|
|
|
int fCheck)
|
2005-07-18 15:14:05 +02:00
|
|
|
{
|
2006-06-02 21:44:18 +02:00
|
|
|
TRACE("(%p, %p, %d)\n", pStubMsg, ContextHandle, fCheck);
|
|
|
|
|
2007-12-14 20:55:04 +01:00
|
|
|
ALIGN_POINTER_CLEAR(pStubMsg->Buffer, 4);
|
2006-06-02 21:44:18 +02:00
|
|
|
|
2007-11-28 16:02:21 +01:00
|
|
|
if (pStubMsg->Buffer + cbNDRContext > (unsigned char *)pStubMsg->RpcMsg->Buffer + pStubMsg->BufferLength)
|
|
|
|
{
|
|
|
|
ERR("buffer overflow - Buffer = %p, BufferEnd = %p\n",
|
|
|
|
pStubMsg->Buffer, (unsigned char *)pStubMsg->RpcMsg->Buffer + pStubMsg->BufferLength);
|
|
|
|
RpcRaiseException(RPC_X_BAD_STUB_DATA);
|
|
|
|
}
|
|
|
|
|
2006-05-26 10:56:49 +02:00
|
|
|
/* FIXME: what does fCheck do? */
|
2006-06-02 21:43:22 +02:00
|
|
|
NDRCContextMarshall(ContextHandle,
|
|
|
|
pStubMsg->Buffer);
|
|
|
|
|
|
|
|
pStubMsg->Buffer += cbNDRContext;
|
2005-07-18 15:14:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
2006-11-12 20:23:02 +01:00
|
|
|
* NdrClientContextUnmarshall [RPCRT4.@]
|
2005-07-18 15:14:05 +02:00
|
|
|
*/
|
2005-08-03 16:55:57 +02:00
|
|
|
void WINAPI NdrClientContextUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
NDR_CCONTEXT * pContextHandle,
|
|
|
|
RPC_BINDING_HANDLE BindHandle)
|
2005-07-18 15:14:05 +02:00
|
|
|
{
|
2006-06-02 21:44:18 +02:00
|
|
|
TRACE("(%p, %p, %p)\n", pStubMsg, pContextHandle, BindHandle);
|
|
|
|
|
|
|
|
ALIGN_POINTER(pStubMsg->Buffer, 4);
|
|
|
|
|
2007-07-16 16:02:38 +02:00
|
|
|
if (pStubMsg->Buffer + cbNDRContext > pStubMsg->BufferEnd)
|
|
|
|
RpcRaiseException(RPC_X_BAD_STUB_DATA);
|
|
|
|
|
2006-06-02 21:43:22 +02:00
|
|
|
NDRCContextUnmarshall(pContextHandle,
|
|
|
|
BindHandle,
|
|
|
|
pStubMsg->Buffer,
|
|
|
|
pStubMsg->RpcMsg->DataRepresentation);
|
|
|
|
|
|
|
|
pStubMsg->Buffer += cbNDRContext;
|
2005-08-03 16:55:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void WINAPI NdrServerContextMarshall(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
NDR_SCONTEXT ContextHandle,
|
2005-09-08 13:02:38 +02:00
|
|
|
NDR_RUNDOWN RundownRoutine )
|
2005-08-03 16:55:57 +02:00
|
|
|
{
|
2007-12-25 20:07:49 +01:00
|
|
|
TRACE("(%p, %p, %p)\n", pStubMsg, ContextHandle, RundownRoutine);
|
|
|
|
|
|
|
|
ALIGN_POINTER(pStubMsg->Buffer, 4);
|
|
|
|
|
|
|
|
if (pStubMsg->Buffer + cbNDRContext > (unsigned char *)pStubMsg->RpcMsg->Buffer + pStubMsg->BufferLength)
|
|
|
|
{
|
|
|
|
ERR("buffer overflow - Buffer = %p, BufferEnd = %p\n",
|
|
|
|
pStubMsg->Buffer, (unsigned char *)pStubMsg->RpcMsg->Buffer + pStubMsg->BufferLength);
|
|
|
|
RpcRaiseException(RPC_X_BAD_STUB_DATA);
|
|
|
|
}
|
|
|
|
|
|
|
|
NDRSContextMarshall2(pStubMsg->RpcMsg->Handle, ContextHandle,
|
2008-01-06 22:26:10 +01:00
|
|
|
pStubMsg->Buffer, RundownRoutine, NULL,
|
|
|
|
RPC_CONTEXT_HANDLE_DEFAULT_FLAGS);
|
2007-12-25 20:07:49 +01:00
|
|
|
pStubMsg->Buffer += cbNDRContext;
|
2005-08-03 16:55:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
NDR_SCONTEXT WINAPI NdrServerContextUnmarshall(PMIDL_STUB_MESSAGE pStubMsg)
|
|
|
|
{
|
2007-12-25 20:07:49 +01:00
|
|
|
NDR_SCONTEXT ContextHandle;
|
|
|
|
|
|
|
|
TRACE("(%p)\n", pStubMsg);
|
|
|
|
|
|
|
|
ALIGN_POINTER(pStubMsg->Buffer, 4);
|
|
|
|
|
|
|
|
if (pStubMsg->Buffer + cbNDRContext > (unsigned char *)pStubMsg->RpcMsg->Buffer + pStubMsg->BufferLength)
|
|
|
|
{
|
|
|
|
ERR("buffer overflow - Buffer = %p, BufferEnd = %p\n",
|
|
|
|
pStubMsg->Buffer, (unsigned char *)pStubMsg->RpcMsg->Buffer + pStubMsg->BufferLength);
|
|
|
|
RpcRaiseException(RPC_X_BAD_STUB_DATA);
|
|
|
|
}
|
|
|
|
|
|
|
|
ContextHandle = NDRSContextUnmarshall2(pStubMsg->RpcMsg->Handle,
|
|
|
|
pStubMsg->Buffer,
|
|
|
|
pStubMsg->RpcMsg->DataRepresentation,
|
2008-01-06 22:26:10 +01:00
|
|
|
NULL, RPC_CONTEXT_HANDLE_DEFAULT_FLAGS);
|
2007-12-25 20:07:49 +01:00
|
|
|
pStubMsg->Buffer += cbNDRContext;
|
|
|
|
|
|
|
|
return ContextHandle;
|
2005-08-03 16:55:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void WINAPI NdrContextHandleSize(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
unsigned char* pMemory,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
|
|
|
FIXME("(%p, %p, %p): stub\n", pStubMsg, pMemory, pFormat);
|
|
|
|
}
|
|
|
|
|
|
|
|
NDR_SCONTEXT WINAPI NdrContextHandleInitialize(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
2008-01-06 22:21:21 +01:00
|
|
|
RPC_SYNTAX_IDENTIFIER *if_id = NULL;
|
2008-01-06 22:26:10 +01:00
|
|
|
ULONG flags = RPC_CONTEXT_HANDLE_DEFAULT_FLAGS;
|
2008-01-06 22:21:21 +01:00
|
|
|
|
2007-12-25 20:07:49 +01:00
|
|
|
TRACE("(%p, %p)\n", pStubMsg, pFormat);
|
2008-01-06 22:21:21 +01:00
|
|
|
|
2008-01-06 22:26:10 +01:00
|
|
|
if (pFormat[1] & NDR_CONTEXT_HANDLE_SERIALIZE)
|
|
|
|
flags |= RPC_CONTEXT_HANDLE_SERIALIZE;
|
|
|
|
if (pFormat[1] & NDR_CONTEXT_HANDLE_NO_SERIALIZE)
|
|
|
|
flags |= RPC_CONTEXT_HANDLE_DONT_SERIALIZE;
|
2008-01-06 22:21:21 +01:00
|
|
|
if (pFormat[1] & NDR_STRICT_CONTEXT_HANDLE)
|
|
|
|
{
|
|
|
|
RPC_SERVER_INTERFACE *sif = pStubMsg->StubDesc->RpcInterfaceInformation;
|
|
|
|
if_id = &sif->InterfaceId;
|
|
|
|
}
|
|
|
|
|
2007-12-25 20:07:49 +01:00
|
|
|
return NDRSContextUnmarshall2(pStubMsg->RpcMsg->Handle, NULL,
|
2008-01-06 22:26:10 +01:00
|
|
|
pStubMsg->RpcMsg->DataRepresentation, if_id,
|
|
|
|
flags);
|
2005-08-03 16:55:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void WINAPI NdrServerContextNewMarshall(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
NDR_SCONTEXT ContextHandle,
|
|
|
|
NDR_RUNDOWN RundownRoutine,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
2008-01-06 22:21:21 +01:00
|
|
|
RPC_SYNTAX_IDENTIFIER *if_id = NULL;
|
2008-01-06 22:26:10 +01:00
|
|
|
ULONG flags = RPC_CONTEXT_HANDLE_DEFAULT_FLAGS;
|
2008-01-06 22:21:21 +01:00
|
|
|
|
2007-12-25 20:07:49 +01:00
|
|
|
TRACE("(%p, %p, %p, %p)\n", pStubMsg, ContextHandle, RundownRoutine, pFormat);
|
|
|
|
|
|
|
|
ALIGN_POINTER(pStubMsg->Buffer, 4);
|
|
|
|
|
|
|
|
if (pStubMsg->Buffer + cbNDRContext > (unsigned char *)pStubMsg->RpcMsg->Buffer + pStubMsg->BufferLength)
|
|
|
|
{
|
|
|
|
ERR("buffer overflow - Buffer = %p, BufferEnd = %p\n",
|
|
|
|
pStubMsg->Buffer, (unsigned char *)pStubMsg->RpcMsg->Buffer + pStubMsg->BufferLength);
|
|
|
|
RpcRaiseException(RPC_X_BAD_STUB_DATA);
|
|
|
|
}
|
|
|
|
|
2008-01-06 22:26:10 +01:00
|
|
|
if (pFormat[1] & NDR_CONTEXT_HANDLE_SERIALIZE)
|
|
|
|
flags |= RPC_CONTEXT_HANDLE_SERIALIZE;
|
|
|
|
if (pFormat[1] & NDR_CONTEXT_HANDLE_NO_SERIALIZE)
|
|
|
|
flags |= RPC_CONTEXT_HANDLE_DONT_SERIALIZE;
|
2008-01-06 22:21:21 +01:00
|
|
|
if (pFormat[1] & NDR_STRICT_CONTEXT_HANDLE)
|
|
|
|
{
|
|
|
|
RPC_SERVER_INTERFACE *sif = pStubMsg->StubDesc->RpcInterfaceInformation;
|
|
|
|
if_id = &sif->InterfaceId;
|
|
|
|
}
|
|
|
|
|
2007-12-25 20:07:49 +01:00
|
|
|
NDRSContextMarshall2(pStubMsg->RpcMsg->Handle, ContextHandle,
|
2008-01-06 22:26:10 +01:00
|
|
|
pStubMsg->Buffer, RundownRoutine, if_id, flags);
|
2007-12-25 20:07:49 +01:00
|
|
|
pStubMsg->Buffer += cbNDRContext;
|
2005-08-03 16:55:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
NDR_SCONTEXT WINAPI NdrServerContextNewUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,
|
|
|
|
PFORMAT_STRING pFormat)
|
|
|
|
{
|
2007-12-25 20:07:49 +01:00
|
|
|
NDR_SCONTEXT ContextHandle;
|
2008-01-06 22:21:21 +01:00
|
|
|
RPC_SYNTAX_IDENTIFIER *if_id = NULL;
|
2008-01-06 22:26:10 +01:00
|
|
|
ULONG flags = RPC_CONTEXT_HANDLE_DEFAULT_FLAGS;
|
2007-12-25 20:07:49 +01:00
|
|
|
|
|
|
|
TRACE("(%p, %p)\n", pStubMsg, pFormat);
|
|
|
|
|
|
|
|
ALIGN_POINTER(pStubMsg->Buffer, 4);
|
|
|
|
|
|
|
|
if (pStubMsg->Buffer + cbNDRContext > (unsigned char *)pStubMsg->RpcMsg->Buffer + pStubMsg->BufferLength)
|
|
|
|
{
|
|
|
|
ERR("buffer overflow - Buffer = %p, BufferEnd = %p\n",
|
|
|
|
pStubMsg->Buffer, (unsigned char *)pStubMsg->RpcMsg->Buffer + pStubMsg->BufferLength);
|
|
|
|
RpcRaiseException(RPC_X_BAD_STUB_DATA);
|
|
|
|
}
|
|
|
|
|
2008-01-06 22:26:10 +01:00
|
|
|
if (pFormat[1] & NDR_CONTEXT_HANDLE_SERIALIZE)
|
|
|
|
flags |= RPC_CONTEXT_HANDLE_SERIALIZE;
|
|
|
|
if (pFormat[1] & NDR_CONTEXT_HANDLE_NO_SERIALIZE)
|
|
|
|
flags |= RPC_CONTEXT_HANDLE_DONT_SERIALIZE;
|
2008-01-06 22:21:21 +01:00
|
|
|
if (pFormat[1] & NDR_STRICT_CONTEXT_HANDLE)
|
|
|
|
{
|
|
|
|
RPC_SERVER_INTERFACE *sif = pStubMsg->StubDesc->RpcInterfaceInformation;
|
|
|
|
if_id = &sif->InterfaceId;
|
|
|
|
}
|
|
|
|
|
2007-12-25 20:07:49 +01:00
|
|
|
ContextHandle = NDRSContextUnmarshall2(pStubMsg->RpcMsg->Handle,
|
|
|
|
pStubMsg->Buffer,
|
|
|
|
pStubMsg->RpcMsg->DataRepresentation,
|
2008-01-06 22:26:10 +01:00
|
|
|
if_id, flags);
|
2007-12-25 20:07:49 +01:00
|
|
|
pStubMsg->Buffer += cbNDRContext;
|
|
|
|
|
|
|
|
return ContextHandle;
|
2005-08-03 16:55:57 +02:00
|
|
|
}
|
2008-01-07 16:20:16 +01:00
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrCorrelationInitialize [RPCRT4.@]
|
|
|
|
*
|
|
|
|
* Initializes correlation validity checking.
|
|
|
|
*
|
|
|
|
* PARAMS
|
|
|
|
* pStubMsg [I] MIDL_STUB_MESSAGE used during unmarshalling.
|
|
|
|
* pMemory [I] Pointer to memory to use as a cache.
|
|
|
|
* CacheSize [I] Size of the memory pointed to by pMemory.
|
|
|
|
* Flags [I] Reserved. Set to zero.
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Nothing.
|
|
|
|
*/
|
|
|
|
void WINAPI NdrCorrelationInitialize(PMIDL_STUB_MESSAGE pStubMsg, void *pMemory, ULONG CacheSize, ULONG Flags)
|
|
|
|
{
|
|
|
|
FIXME("(%p, %p, %d, 0x%x): stub\n", pStubMsg, pMemory, CacheSize, Flags);
|
|
|
|
pStubMsg->fHasNewCorrDesc = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrCorrelationPass [RPCRT4.@]
|
|
|
|
*
|
|
|
|
* Performs correlation validity checking.
|
|
|
|
*
|
|
|
|
* PARAMS
|
|
|
|
* pStubMsg [I] MIDL_STUB_MESSAGE used during unmarshalling.
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Nothing.
|
|
|
|
*/
|
|
|
|
void WINAPI NdrCorrelationPass(PMIDL_STUB_MESSAGE pStubMsg)
|
|
|
|
{
|
|
|
|
FIXME("(%p): stub\n", pStubMsg);
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* NdrCorrelationFree [RPCRT4.@]
|
|
|
|
*
|
|
|
|
* Frees any resources used while unmarshalling parameters that need
|
|
|
|
* correlation validity checking.
|
|
|
|
*
|
|
|
|
* PARAMS
|
|
|
|
* pStubMsg [I] MIDL_STUB_MESSAGE used during unmarshalling.
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Nothing.
|
|
|
|
*/
|
|
|
|
void WINAPI NdrCorrelationFree(PMIDL_STUB_MESSAGE pStubMsg)
|
|
|
|
{
|
|
|
|
FIXME("(%p): stub\n", pStubMsg);
|
|
|
|
}
|