rpcrt4: Add tests for the RPC_MESSAGE members set by NdrClientInitializeNew.
[wine] / dlls / rpcrt4 / tests / ndr_marshall.c
1 /*
2  * Unit test suite for ndr marshalling functions
3  *
4  * Copyright 2006 Huw Davies
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19  */
20
21 #include <stdarg.h>
22
23 #define NTDDI_WIN2K   0x05000000
24 #define NTDDI_VERSION NTDDI_WIN2K /* for some MIDL_STUB_MESSAGE fields */
25
26 #include "wine/test.h"
27 #include <windef.h>
28 #include <winbase.h>
29 #include <winnt.h>
30 #include <winerror.h>
31
32 #include "rpc.h"
33 #include "rpcdce.h"
34 #include "rpcproxy.h"
35
36
37 static int my_alloc_called;
38 static int my_free_called;
39 static void * CALLBACK my_alloc(size_t size)
40 {
41     my_alloc_called++;
42     return NdrOleAllocate(size);
43 }
44
45 static void CALLBACK my_free(void *ptr)
46 {
47     my_free_called++;
48     NdrOleFree(ptr);
49 }
50
51 static const MIDL_STUB_DESC Object_StubDesc = 
52     {
53     NULL,
54     my_alloc,
55     my_free,
56     { 0 },
57     0,
58     0,
59     0,
60     0,
61     NULL, /* format string, filled in by tests */
62     1, /* -error bounds_check flag */
63     0x20000, /* Ndr library version */
64     0,
65     0x50100a4, /* MIDL Version 5.1.164 */
66     0,
67     NULL,
68     0,  /* notify & notify_flag routine table */
69     1,  /* Flags */
70     0,  /* Reserved3 */
71     0,  /* Reserved4 */
72     0   /* Reserved5 */
73     };
74
75 static RPC_DISPATCH_FUNCTION IFoo_table[] =
76 {
77     0
78 };
79
80 static RPC_DISPATCH_TABLE IFoo_v0_0_DispatchTable =
81 {
82     0,
83     IFoo_table
84 };
85
86 static const RPC_SERVER_INTERFACE IFoo___RpcServerInterface =
87 {
88     sizeof(RPC_SERVER_INTERFACE),
89     {{0x00000000,0x0000,0x0000,{0x00,0x00,0x00,0x00,0x00,0x00,0x12,0x34}},{0,0}},
90     {{0x8a885d04,0x1ceb,0x11c9,{0x9f,0xe8,0x08,0x00,0x2b,0x10,0x48,0x60}},{2,0}},
91     &IFoo_v0_0_DispatchTable,
92     0,
93     0,
94     0,
95     0,
96     0,
97 };
98
99 static RPC_IF_HANDLE IFoo_v0_0_s_ifspec = (RPC_IF_HANDLE)& IFoo___RpcServerInterface;
100
101 static void test_ndr_simple_type(void)
102 {
103     RPC_MESSAGE RpcMessage;
104     MIDL_STUB_MESSAGE StubMsg;
105     MIDL_STUB_DESC StubDesc;
106     long l, l2 = 0;
107
108     StubDesc = Object_StubDesc;
109     StubDesc.pFormatTypes = NULL;
110
111     NdrClientInitializeNew(
112                            &RpcMessage,
113                            &StubMsg,
114                            &StubDesc,
115                            0);
116
117     StubMsg.BufferLength = 16;
118     StubMsg.RpcMsg->Buffer = StubMsg.BufferStart = StubMsg.Buffer = HeapAlloc(GetProcessHeap(), 0, StubMsg.BufferLength);
119     l = 0xcafebabe;
120     NdrSimpleTypeMarshall(&StubMsg, (unsigned char*)&l, 8 /* FC_LONG */);
121     ok(StubMsg.Buffer == StubMsg.BufferStart + 4, "%p %p\n", StubMsg.Buffer, StubMsg.BufferStart);
122     ok(*(long*)StubMsg.BufferStart == l, "%ld\n", *(long*)StubMsg.BufferStart);
123
124     StubMsg.Buffer = StubMsg.BufferStart + 1;
125     NdrSimpleTypeMarshall(&StubMsg, (unsigned char*)&l, 8 /* FC_LONG */);
126     ok(StubMsg.Buffer == StubMsg.BufferStart + 8, "%p %p\n", StubMsg.Buffer, StubMsg.BufferStart);
127     ok(*(long*)(StubMsg.BufferStart + 4) == l, "%ld\n", *(long*)StubMsg.BufferStart);
128
129     StubMsg.Buffer = StubMsg.BufferStart + 1;
130     NdrSimpleTypeUnmarshall(&StubMsg, (unsigned char*)&l2, 8 /* FC_LONG */);
131     ok(StubMsg.Buffer == StubMsg.BufferStart + 8, "%p %p\n", StubMsg.Buffer, StubMsg.BufferStart);
132     ok(l2 == l, "%ld\n", l2);
133
134     HeapFree(GetProcessHeap(), 0, StubMsg.BufferStart);
135 }
136
137 static void test_pointer_marshal(const unsigned char *formattypes,
138                                  void *memsrc,
139                                  long srcsize,
140                                  const void *wiredata,
141                                  ULONG wiredatalen,
142                                  int(*cmp)(const void*,const void*,size_t),
143                                  long num_additional_allocs,
144                                  const char *msgpfx)
145 {
146     RPC_MESSAGE RpcMessage;
147     MIDL_STUB_MESSAGE StubMsg;
148     MIDL_STUB_DESC StubDesc;
149     DWORD size;
150     void *ptr;
151     unsigned char *mem, *mem_orig;
152
153     my_alloc_called = my_free_called = 0;
154     if(!cmp)
155         cmp = memcmp;
156
157     StubDesc = Object_StubDesc;
158     StubDesc.pFormatTypes = formattypes;
159
160     NdrClientInitializeNew(
161                            &RpcMessage,
162                            &StubMsg,
163                            &StubDesc,
164                            0);
165
166     StubMsg.BufferLength = 0;
167     NdrPointerBufferSize( &StubMsg,
168                           memsrc,
169                           formattypes );
170     ok(StubMsg.BufferLength >= wiredatalen, "%s: length %d\n", msgpfx, StubMsg.BufferLength);
171
172     /*NdrGetBuffer(&_StubMsg, _StubMsg.BufferLength, NULL);*/
173     StubMsg.RpcMsg->Buffer = StubMsg.BufferStart = StubMsg.Buffer = HeapAlloc(GetProcessHeap(), 0, StubMsg.BufferLength);
174     StubMsg.BufferEnd = StubMsg.BufferStart + StubMsg.BufferLength;
175
176     memset(StubMsg.BufferStart, 0x0, StubMsg.BufferLength); /* This is a hack to clear the padding between the ptr and longlong/double */
177
178     ptr = NdrPointerMarshall( &StubMsg,  memsrc, formattypes );
179     ok(ptr == NULL, "%s: ret %p\n", msgpfx, ptr);
180     ok(StubMsg.Buffer - StubMsg.BufferStart == wiredatalen, "%s: Buffer %p Start %p len %d\n", msgpfx, StubMsg.Buffer, StubMsg.BufferStart, wiredatalen);
181     ok(!memcmp(StubMsg.BufferStart, wiredata, wiredatalen), "%s: incorrectly marshaled\n", msgpfx);
182
183     StubMsg.Buffer = StubMsg.BufferStart;
184     StubMsg.MemorySize = 0;
185
186     if (0)
187     {
188     /* NdrPointerMemorySize crashes under Wine */
189     size = NdrPointerMemorySize( &StubMsg, formattypes );
190     ok(size == StubMsg.MemorySize, "%s: mem size %u size %u\n", msgpfx, StubMsg.MemorySize, size);
191     ok(StubMsg.Buffer - StubMsg.BufferStart == wiredatalen, "%s: Buffer %p Start %p len %d\n", msgpfx, StubMsg.Buffer, StubMsg.BufferStart, wiredatalen);
192     if(formattypes[1] & 0x10 /* FC_POINTER_DEREF */)
193         ok(size == srcsize + 4, "%s: mem size %u\n", msgpfx, size);
194     else
195         ok(size == srcsize, "%s: mem size %u\n", msgpfx, size);
196
197     StubMsg.Buffer = StubMsg.BufferStart;
198     StubMsg.MemorySize = 16;
199     size = NdrPointerMemorySize( &StubMsg, formattypes );
200     ok(size == StubMsg.MemorySize, "%s: mem size %u size %u\n", msgpfx, StubMsg.MemorySize, size);
201     ok(StubMsg.Buffer - StubMsg.BufferStart == wiredatalen, "%s: Buffer %p Start %p len %d\n", msgpfx, StubMsg.Buffer, StubMsg.BufferStart, wiredatalen);
202     if(formattypes[1] & 0x10 /* FC_POINTER_DEREF */)
203         ok(size == srcsize + 4 + 16, "%s: mem size %u\n", msgpfx, size);
204     else
205         ok(size == srcsize + 16, "%s: mem size %u\n", msgpfx, size);
206
207     StubMsg.Buffer = StubMsg.BufferStart;
208     StubMsg.MemorySize = 1;
209     size = NdrPointerMemorySize( &StubMsg, formattypes );
210     ok(size == StubMsg.MemorySize, "%s: mem size %u size %u\n", msgpfx, StubMsg.MemorySize, size);
211     ok(StubMsg.Buffer - StubMsg.BufferStart == wiredatalen, "%s: Buffer %p Start %p len %d\n", msgpfx, StubMsg.Buffer, StubMsg.BufferStart, wiredatalen);
212     if(formattypes[1] & 0x10 /* FC_POINTER_DEREF */)
213         ok(size == srcsize + 4 + (srcsize == 8 ? 8 : 4), "%s: mem size %u\n", msgpfx, size);
214     else
215         ok(size == srcsize + (srcsize == 8 ? 8 : 4), "%s: mem size %u\n", msgpfx, size);
216     }
217
218     size = srcsize;
219     if(formattypes[1] & 0x10) size += 4;
220
221     StubMsg.Buffer = StubMsg.BufferStart;
222     StubMsg.MemorySize = 0;
223     mem_orig = mem = HeapAlloc(GetProcessHeap(), 0, size); 
224
225     if(formattypes[1] & 0x10 /* FC_POINTER_DEREF */)
226         *(void**)mem = NULL;
227     ptr = NdrPointerUnmarshall( &StubMsg, &mem, formattypes, 0 );
228     ok(ptr == NULL, "%s: ret %p\n", msgpfx, ptr);
229     ok(mem == mem_orig, "%s: mem has changed %p %p\n", msgpfx, mem, mem_orig);
230     ok(!cmp(mem, memsrc, srcsize), "%s: incorrectly unmarshaled\n", msgpfx);
231     ok(StubMsg.Buffer - StubMsg.BufferStart == wiredatalen, "%s: Buffer %p Start %p len %d\n", msgpfx, StubMsg.Buffer, StubMsg.BufferStart, wiredatalen);
232     ok(StubMsg.MemorySize == 0, "%s: memorysize %d\n", msgpfx, StubMsg.MemorySize);
233     ok(my_alloc_called == num_additional_allocs, "%s: my_alloc got called %d times\n", msgpfx, my_alloc_called); 
234     my_alloc_called = 0;
235
236     /* reset the buffer and call with must alloc */
237     StubMsg.Buffer = StubMsg.BufferStart;
238     if(formattypes[1] & 0x10 /* FC_POINTER_DEREF */)
239         *(void**)mem = NULL;
240     ptr = NdrPointerUnmarshall( &StubMsg, &mem, formattypes, 1 );
241     ok(ptr == NULL, "%s: ret %p\n", msgpfx, ptr);
242     /* doesn't allocate mem in this case */
243 todo_wine {
244     ok(mem == mem_orig, "%s: mem has changed %p %p\n", msgpfx, mem, mem_orig);
245  }
246     ok(!cmp(mem, memsrc, srcsize), "%s: incorrectly unmarshaled\n", msgpfx);
247     ok(StubMsg.Buffer - StubMsg.BufferStart == wiredatalen, "%s: Buffer %p Start %p len %d\n", msgpfx, StubMsg.Buffer, StubMsg.BufferStart, wiredatalen);
248     ok(StubMsg.MemorySize == 0, "%s: memorysize %d\n", msgpfx, StubMsg.MemorySize);
249
250 todo_wine {
251     ok(my_alloc_called == num_additional_allocs, "%s: my_alloc got called %d times\n", msgpfx, my_alloc_called); 
252 }
253     my_alloc_called = 0;
254     if(formattypes[0] != 0x11 /* FC_RP */)
255     {
256         /* now pass the address of a NULL ptr */
257         mem = NULL;
258         StubMsg.Buffer = StubMsg.BufferStart;
259         ptr = NdrPointerUnmarshall( &StubMsg, &mem, formattypes, 0 );
260         ok(ptr == NULL, "%s: ret %p\n", msgpfx, ptr);
261         ok(mem != StubMsg.BufferStart + wiredatalen - srcsize, "%s: mem points to buffer %p %p\n", msgpfx, mem, StubMsg.BufferStart);
262         ok(!cmp(mem, memsrc, size), "%s: incorrectly unmarshaled\n", msgpfx);
263         ok(StubMsg.Buffer - StubMsg.BufferStart == wiredatalen, "%s: Buffer %p Start %p len %d\n", msgpfx, StubMsg.Buffer, StubMsg.BufferStart, wiredatalen);
264         ok(StubMsg.MemorySize == 0, "%s: memorysize %d\n", msgpfx, StubMsg.MemorySize);
265         ok(my_alloc_called == num_additional_allocs + 1, "%s: my_alloc got called %d times\n", msgpfx, my_alloc_called); 
266         my_alloc_called = 0;
267         NdrPointerFree(&StubMsg, mem, formattypes);
268  
269         /* again pass address of NULL ptr, but pretend we're a server */
270         mem = NULL;
271         StubMsg.Buffer = StubMsg.BufferStart;
272         StubMsg.IsClient = 0;
273         ptr = NdrPointerUnmarshall( &StubMsg, &mem, formattypes, 0 );
274         ok(ptr == NULL, "%s: ret %p\n", msgpfx, ptr);
275         if (formattypes[2] == 0xd /* FC_ENUM16 */)
276             ok(mem != StubMsg.BufferStart + wiredatalen - srcsize, "%s: mem points to buffer %p %p\n", msgpfx, mem, StubMsg.BufferStart);
277         else
278             ok(mem == StubMsg.BufferStart + wiredatalen - srcsize, "%s: mem doesn't point to buffer %p %p\n", msgpfx, mem, StubMsg.BufferStart);
279         ok(!cmp(mem, memsrc, size), "%s: incorrecly unmarshaled\n", msgpfx);
280         ok(StubMsg.Buffer - StubMsg.BufferStart == wiredatalen, "%s: Buffer %p Start %p len %d\n", msgpfx, StubMsg.Buffer, StubMsg.BufferStart, wiredatalen);
281         ok(StubMsg.MemorySize == 0, "%s: memorysize %d\n", msgpfx, StubMsg.MemorySize);
282         if (formattypes[2] != 0xd /* FC_ENUM16 */) {
283             ok(my_alloc_called == num_additional_allocs, "%s: my_alloc got called %d times\n", msgpfx, my_alloc_called);
284             my_alloc_called = 0;
285         }
286     }
287     HeapFree(GetProcessHeap(), 0, mem_orig);
288     HeapFree(GetProcessHeap(), 0, StubMsg.BufferStart);
289 }
290
291 static int deref_cmp(const void *s1, const void *s2, size_t num)
292 {
293     return memcmp(*(const void *const *)s1, *(const void *const *)s2, num);
294 }
295
296
297 static void test_simple_types(void)
298 {
299     unsigned char wiredata[16];
300     unsigned char ch;
301     unsigned char *ch_ptr;
302     unsigned short s;
303     unsigned int i;
304     unsigned long l;
305     ULONGLONG ll;
306     float f;
307     double d;
308
309     static const unsigned char fmtstr_up_char[] =
310     {
311         0x12, 0x8,      /* FC_UP [simple_pointer] */
312         0x2,            /* FC_CHAR */
313         0x5c,           /* FC_PAD */
314     };
315     static const unsigned char fmtstr_up_byte[] =
316     {
317         0x12, 0x8,      /* FC_UP [simple_pointer] */
318         0x1,            /* FC_BYTE */
319         0x5c,           /* FC_PAD */
320     };
321     static const unsigned char fmtstr_up_small[] =
322     {
323         0x12, 0x8,      /* FC_UP [simple_pointer] */
324         0x3,            /* FC_SMALL */
325         0x5c,           /* FC_PAD */
326     };
327     static const unsigned char fmtstr_up_usmall[] =
328     {
329         0x12, 0x8,      /* FC_UP [simple_pointer] */
330         0x4,            /* FC_USMALL */
331         0x5c,           /* FC_PAD */
332     };  
333     static const unsigned char fmtstr_rp_char[] =
334     {
335         0x11, 0x8,      /* FC_RP [simple_pointer] */
336         0x2,            /* FC_CHAR */
337         0x5c,           /* FC_PAD */
338     };
339     static const unsigned char fmtstr_rpup_char[] =
340     {
341         0x11, 0x14,     /* FC_RP [alloced_on_stack] */
342         NdrFcShort( 0x2 ),      /* Offset= 2 (4) */
343         0x12, 0x8,      /* FC_UP [simple_pointer] */
344         0x2,            /* FC_CHAR */
345         0x5c,           /* FC_PAD */
346     };
347     static const unsigned char fmtstr_rpup_char2[] =
348     {
349         0x11, 0x04,     /* FC_RP [alloced_on_stack] */
350         NdrFcShort( 0x2 ),      /* Offset= 2 (4) */
351         0x12, 0x8,      /* FC_UP [simple_pointer] */
352         0x2,            /* FC_CHAR */
353         0x5c,           /* FC_PAD */
354     };
355
356     static const unsigned char fmtstr_up_wchar[] =
357     {
358         0x12, 0x8,      /* FC_UP [simple_pointer] */
359         0x5,            /* FC_WCHAR */
360         0x5c,           /* FC_PAD */
361     };
362     static const unsigned char fmtstr_up_short[] =
363     {
364         0x12, 0x8,      /* FC_UP [simple_pointer] */
365         0x6,            /* FC_SHORT */
366         0x5c,           /* FC_PAD */
367     };
368     static const unsigned char fmtstr_up_ushort[] =
369     {
370         0x12, 0x8,      /* FC_UP [simple_pointer] */
371         0x7,            /* FC_USHORT */
372         0x5c,           /* FC_PAD */
373     };
374     static const unsigned char fmtstr_up_enum16[] =
375     {
376         0x12, 0x8,      /* FC_UP [simple_pointer] */
377         0xd,            /* FC_ENUM16 */
378         0x5c,           /* FC_PAD */
379     };
380     static const unsigned char fmtstr_up_long[] =
381     {
382         0x12, 0x8,      /* FC_UP [simple_pointer] */
383         0x8,            /* FC_LONG */
384         0x5c,           /* FC_PAD */
385     };
386     static const unsigned char fmtstr_up_ulong[] =
387     {
388         0x12, 0x8,      /* FC_UP [simple_pointer] */
389         0x9,            /* FC_ULONG */
390         0x5c,           /* FC_PAD */
391     };
392     static const unsigned char fmtstr_up_enum32[] =
393     {
394         0x12, 0x8,      /* FC_UP [simple_pointer] */
395         0xe,            /* FC_ENUM32 */
396         0x5c,           /* FC_PAD */
397     };
398     static const unsigned char fmtstr_up_errorstatus[] =
399     {
400         0x12, 0x8,      /* FC_UP [simple_pointer] */
401         0x10,           /* FC_ERROR_STATUS_T */
402         0x5c,           /* FC_PAD */
403     };
404
405     static const unsigned char fmtstr_up_longlong[] =
406     {
407         0x12, 0x8,      /* FC_UP [simple_pointer] */
408         0xb,            /* FC_HYPER */
409         0x5c,           /* FC_PAD */
410     };
411     static const unsigned char fmtstr_up_float[] =
412     {
413         0x12, 0x8,      /* FC_UP [simple_pointer] */
414         0xa,            /* FC_FLOAT */
415         0x5c,           /* FC_PAD */
416     };
417     static const unsigned char fmtstr_up_double[] =
418     {
419         0x12, 0x8,      /* FC_UP [simple_pointer] */
420         0xc,            /* FC_DOUBLE */
421         0x5c,           /* FC_PAD */
422     };
423
424     ch = 0xa5;
425     ch_ptr = &ch;
426     *(void**)wiredata = ch_ptr;
427     wiredata[sizeof(void*)] = ch;
428  
429     test_pointer_marshal(fmtstr_up_char, ch_ptr, 1, wiredata, 5, NULL, 0, "up_char");
430     test_pointer_marshal(fmtstr_up_byte, ch_ptr, 1, wiredata, 5, NULL, 0, "up_byte");
431     test_pointer_marshal(fmtstr_up_small, ch_ptr, 1, wiredata, 5, NULL, 0,  "up_small");
432     test_pointer_marshal(fmtstr_up_usmall, ch_ptr, 1, wiredata, 5, NULL, 0, "up_usmall");
433
434     test_pointer_marshal(fmtstr_rp_char, ch_ptr, 1, &ch, 1, NULL, 0, "rp_char");
435
436     test_pointer_marshal(fmtstr_rpup_char, &ch_ptr, 1, wiredata, 5, deref_cmp, 1, "rpup_char");
437     test_pointer_marshal(fmtstr_rpup_char2, ch_ptr, 1, wiredata, 5, NULL, 0, "rpup_char2");
438
439     s = 0xa597;
440     *(void**)wiredata = &s;
441     *(unsigned short*)(wiredata + sizeof(void*)) = s;
442
443     test_pointer_marshal(fmtstr_up_wchar, &s, 2, wiredata, 6, NULL, 0, "up_wchar");
444     test_pointer_marshal(fmtstr_up_short, &s, 2, wiredata, 6, NULL, 0, "up_short");
445     test_pointer_marshal(fmtstr_up_ushort, &s, 2, wiredata, 6, NULL, 0, "up_ushort");
446
447     i = 0x7fff;
448     *(void**)wiredata = &i;
449     *(unsigned short*)(wiredata + sizeof(void*)) = i;
450     test_pointer_marshal(fmtstr_up_enum16, &i, 2, wiredata, 6, NULL, 0, "up_enum16");
451
452     l = 0xcafebabe;
453     *(void**)wiredata = &l;
454     *(unsigned long*)(wiredata + sizeof(void*)) = l;
455
456     test_pointer_marshal(fmtstr_up_long, &l, 4, wiredata, 8, NULL, 0, "up_long");
457     test_pointer_marshal(fmtstr_up_ulong, &l, 4, wiredata, 8, NULL, 0,  "up_ulong");
458     test_pointer_marshal(fmtstr_up_enum32, &l, 4, wiredata, 8, NULL, 0,  "up_emun32");
459     test_pointer_marshal(fmtstr_up_errorstatus, &l, 4, wiredata, 8, NULL, 0,  "up_errorstatus");
460
461     ll = ((ULONGLONG)0xcafebabe) << 32 | 0xdeadbeef;
462     *(void**)wiredata = &ll;
463     *(void**)(wiredata + sizeof(void*)) = NULL;
464     *(ULONGLONG*)(wiredata + 2 * sizeof(void*)) = ll;
465     test_pointer_marshal(fmtstr_up_longlong, &ll, 8, wiredata, 16, NULL, 0, "up_longlong");
466
467     f = 3.1415f;
468     *(void**)wiredata = &f;
469     *(float*)(wiredata + sizeof(void*)) = f;
470     test_pointer_marshal(fmtstr_up_float, &f, 4, wiredata, 8, NULL, 0, "up_float");
471
472     d = 3.1415;
473     *(void**)wiredata = &d;
474     *(void**)(wiredata + sizeof(void*)) = NULL;
475     *(double*)(wiredata + 2 * sizeof(void*)) = d;
476     test_pointer_marshal(fmtstr_up_double, &d, 8, wiredata, 16, NULL, 0,  "up_double");
477
478 }
479
480 static void test_simple_struct_marshal(const unsigned char *formattypes,
481                                        void *memsrc,
482                                        long srcsize,
483                                        const void *wiredata,
484                                        ULONG wiredatalen,
485                                        int(*cmp)(const void*,const void*,size_t),
486                                        long num_additional_allocs,
487                                        const char *msgpfx)
488 {
489     RPC_MESSAGE RpcMessage;
490     MIDL_STUB_MESSAGE StubMsg;
491     MIDL_STUB_DESC StubDesc;
492     DWORD size;
493     void *ptr;
494     unsigned char *mem, *mem_orig;
495
496     my_alloc_called = my_free_called = 0;
497     if(!cmp)
498         cmp = memcmp;
499
500     StubDesc = Object_StubDesc;
501     StubDesc.pFormatTypes = formattypes;
502
503     NdrClientInitializeNew(&RpcMessage, &StubMsg, &StubDesc, 0);
504
505     StubMsg.BufferLength = 0;
506     NdrSimpleStructBufferSize( &StubMsg, (unsigned char *)memsrc, formattypes );
507     ok(StubMsg.BufferLength >= wiredatalen, "%s: length %d\n", msgpfx, StubMsg.BufferLength);
508     StubMsg.RpcMsg->Buffer = StubMsg.BufferStart = StubMsg.Buffer = HeapAlloc(GetProcessHeap(), 0, StubMsg.BufferLength);
509     StubMsg.BufferEnd = StubMsg.BufferStart + StubMsg.BufferLength;
510     ptr = NdrSimpleStructMarshall( &StubMsg,  (unsigned char*)memsrc, formattypes );
511     ok(ptr == NULL, "%s: ret %p\n", msgpfx, ptr);
512     ok(StubMsg.Buffer - StubMsg.BufferStart == wiredatalen, "%s: Buffer %p Start %p\n", msgpfx, StubMsg.Buffer, StubMsg.BufferStart);
513     ok(!memcmp(StubMsg.BufferStart, wiredata, wiredatalen), "%s: incorrectly marshaled %08x %08x %08x\n", msgpfx, *(DWORD*)StubMsg.BufferStart,*((DWORD*)StubMsg.BufferStart+1),*((DWORD*)StubMsg.BufferStart+2));
514
515     if (0)
516     {
517     /* FIXME: Causes Wine to crash */
518     StubMsg.Buffer = StubMsg.BufferStart;
519     StubMsg.MemorySize = 0;
520     size = NdrSimpleStructMemorySize( &StubMsg, formattypes );
521     ok(size == StubMsg.MemorySize, "%s: size != MemorySize\n", msgpfx);
522     ok(size == srcsize, "%s: mem size %u\n", msgpfx, size);
523     ok(StubMsg.Buffer - StubMsg.BufferStart == wiredatalen, "%s: Buffer %p Start %p\n", msgpfx, StubMsg.Buffer, StubMsg.BufferStart);
524
525     StubMsg.Buffer = StubMsg.BufferStart;
526     size = NdrSimpleStructMemorySize( &StubMsg, formattypes );
527 todo_wine {
528     ok(size == StubMsg.MemorySize, "%s: size != MemorySize\n", msgpfx);
529 }
530     ok(StubMsg.MemorySize == ((srcsize + 3) & ~3) + srcsize, "%s: mem size %u\n", msgpfx, size);
531     ok(StubMsg.Buffer - StubMsg.BufferStart == wiredatalen, "%s: Buffer %p Start %p\n", msgpfx, StubMsg.Buffer, StubMsg.BufferStart);
532     }
533     size = srcsize;
534     /*** Unmarshalling first with must_alloc false ***/
535
536     StubMsg.Buffer = StubMsg.BufferStart;
537     StubMsg.MemorySize = 0;
538     mem_orig = mem = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, srcsize);
539     ptr = NdrSimpleStructUnmarshall( &StubMsg, &mem, formattypes, 0 );
540     ok(ptr == NULL, "%s: ret %p\n", msgpfx, ptr);
541     ok(StubMsg.Buffer - StubMsg.BufferStart == wiredatalen, "%s: Buffer %p Start %p\n", msgpfx, StubMsg.Buffer, StubMsg.BufferStart);
542     ok(mem == mem_orig, "%s: mem has changed %p %p\n", msgpfx, mem, mem_orig);
543     ok(!cmp(mem, memsrc, srcsize), "%s: incorrectly unmarshaled\n", msgpfx);
544     ok(my_alloc_called == num_additional_allocs, "%s: my_alloc got called %d times\n", msgpfx, my_alloc_called); 
545     my_alloc_called = 0;
546     ok(StubMsg.MemorySize == 0, "%s: memorysize touched in unmarshal\n", msgpfx);
547
548     /* if we're a server we still use the suppiled memory */
549     StubMsg.Buffer = StubMsg.BufferStart;
550     StubMsg.IsClient = 0;
551     ptr = NdrSimpleStructUnmarshall( &StubMsg, &mem, formattypes, 0 );
552     ok(ptr == NULL, "%s: ret %p\n", msgpfx, ptr);
553     ok(mem == mem_orig, "%s: mem has changed %p %p\n", msgpfx, mem, mem_orig);
554     ok(!cmp(mem, memsrc, srcsize), "%s: incorrectly unmarshaled\n", msgpfx); 
555     ok(my_alloc_called == num_additional_allocs, "%s: my_alloc got called %d times\n", msgpfx, my_alloc_called);
556     my_alloc_called = 0;
557     ok(StubMsg.MemorySize == 0, "%s: memorysize touched in unmarshal\n", msgpfx);
558
559     /* ...unless we pass a NULL ptr, then the buffer is used. 
560        Passing a NULL ptr while we're a client && !must_alloc
561        crashes on Windows, so we won't do that. */
562
563     mem = NULL;
564     StubMsg.IsClient = 0;
565     StubMsg.Buffer = StubMsg.BufferStart;
566     ptr = NdrSimpleStructUnmarshall( &StubMsg, &mem, formattypes, 0 );
567     ok(ptr == NULL, "%s: ret %p\n", msgpfx, ptr);
568     ok(mem == StubMsg.BufferStart, "%s: mem not equal buffer\n", msgpfx);
569     ok(!cmp(mem, memsrc, srcsize), "%s: incorrectly unmarshaled\n", msgpfx);
570     ok(my_alloc_called == num_additional_allocs, "%s: my_alloc got called %d times\n", msgpfx, my_alloc_called);
571     my_alloc_called = 0;
572     ok(StubMsg.MemorySize == 0, "%s: memorysize touched in unmarshal\n", msgpfx);
573
574     /*** now must_alloc is true ***/
575
576     /* with must_alloc set we always allocate new memory whether or not we're
577        a server and also when passing NULL */
578     mem = mem_orig;
579     StubMsg.IsClient = 1;
580     StubMsg.Buffer = StubMsg.BufferStart;
581     ptr = NdrSimpleStructUnmarshall( &StubMsg, &mem, formattypes, 1 );
582     ok(ptr == NULL, "ret %p\n", ptr);
583     ok(mem != mem_orig, "mem not changed %p %p\n", mem, mem_orig);
584     ok(!cmp(mem, memsrc, srcsize), "incorrectly unmarshaled\n");
585     ok(my_alloc_called == num_additional_allocs + 1, "%s: my_alloc got called %d times\n", msgpfx, my_alloc_called);
586     my_alloc_called = 0;
587     ok(StubMsg.MemorySize == 0, "memorysize touched in unmarshal\n");
588
589     mem = NULL;
590     StubMsg.Buffer = StubMsg.BufferStart;
591     ptr = NdrSimpleStructUnmarshall( &StubMsg, &mem, formattypes, 1 );
592     ok(ptr == NULL, "ret %p\n", ptr);
593     ok(mem != mem_orig, "mem not changed %p %p\n", mem, mem_orig);
594     ok(!cmp(mem, memsrc, srcsize), "incorrectly unmarshaled\n");
595     ok(my_alloc_called == num_additional_allocs + 1, "%s: my_alloc got called %d times\n", msgpfx, my_alloc_called);
596     my_alloc_called = 0; 
597     ok(StubMsg.MemorySize == 0, "memorysize touched in unmarshal\n");
598
599     mem = mem_orig;
600     StubMsg.Buffer = StubMsg.BufferStart;
601     StubMsg.IsClient = 0;
602     StubMsg.ReuseBuffer = 1;
603     ptr = NdrSimpleStructUnmarshall( &StubMsg, &mem, formattypes, 1 );
604     ok(ptr == NULL, "ret %p\n", ptr);
605     ok(mem != mem_orig, "mem not changed %p %p\n", mem, mem_orig);
606     ok(mem != StubMsg.BufferStart, "mem is buffer mem\n");
607     ok(!cmp(mem, memsrc, srcsize), "incorrectly unmarshaled\n");
608     ok(my_alloc_called == num_additional_allocs + 1, "%s: my_alloc got called %d times\n", msgpfx, my_alloc_called);
609     my_alloc_called = 0;
610     ok(StubMsg.MemorySize == 0, "memorysize touched in unmarshal\n");
611
612     mem = NULL;
613     StubMsg.Buffer = StubMsg.BufferStart;
614     StubMsg.IsClient = 0;
615     StubMsg.ReuseBuffer = 1;
616     ptr = NdrSimpleStructUnmarshall( &StubMsg, &mem, formattypes, 1 );
617     ok(ptr == NULL, "ret %p\n", ptr);
618     ok(mem != StubMsg.BufferStart, "mem is buffer mem\n");
619     ok(!cmp(mem, memsrc, srcsize), "incorrectly unmarshaled\n"); 
620     ok(my_alloc_called == num_additional_allocs + 1, "%s: my_alloc got called %d times\n", msgpfx, my_alloc_called);
621     my_alloc_called = 0;
622     ok(StubMsg.MemorySize == 0, "memorysize touched in unmarshal\n");
623
624     HeapFree(GetProcessHeap(), 0, mem_orig);
625     HeapFree(GetProcessHeap(), 0, StubMsg.BufferStart);
626 }
627
628 typedef struct
629 {
630     long l1;
631     long *pl1;
632     char *pc1;
633 } ps1_t;
634
635 static int ps1_cmp(const void *s1, const void *s2, size_t num)
636 {
637     const ps1_t *p1, *p2;
638
639     p1 = s1;
640     p2 = s2;
641
642     if(p1->l1 != p2->l1)
643         return 1;
644
645     if(p1->pl1 && p2->pl1)
646     {
647         if(*p1->pl1 != *p2->pl1)
648             return 1;
649     }
650     else if(p1->pl1 || p1->pl1)
651         return 1;
652
653     if(p1->pc1 && p2->pc1)
654     {
655         if(*p1->pc1 != *p2->pc1)
656             return 1;
657     }
658     else if(p1->pc1 || p1->pc1)
659         return 1;
660
661     return 0;
662 }
663
664 static void test_simple_struct(void)
665 {
666     unsigned char wiredata[28];
667     unsigned long wiredatalen;
668     long l;
669     char c;
670     ps1_t ps1;
671
672     static const unsigned char fmtstr_simple_struct[] =
673     {
674         0x12, 0x0,      /* FC_UP */
675         NdrFcShort( 0x2 ), /* Offset=2 */
676         0x15, 0x3,      /* FC_STRUCT [align 4] */
677         NdrFcShort( 0x18 ),      /* [size 24] */
678         0x6,            /* FC_SHORT */
679         0x2,            /* FC_CHAR */ 
680         0x38,           /* FC_ALIGNM4 */
681         0x8,            /* FC_LONG */
682         0x8,            /* FC_LONG */
683         0x39,           /* FC_ALIGNM8 */
684         0xb,            /* FC_HYPER */ 
685         0x5b,           /* FC_END */
686     };
687     struct {
688         short s;
689         char c;
690         long l1, l2;
691         LONGLONG ll;
692     } s1;
693
694     static const unsigned char fmtstr_pointer_struct[] =
695     { 
696         0x12, 0x0,      /* FC_UP */
697         NdrFcShort( 0x2 ), /* Offset=2 */
698         0x16, 0x3,      /* FC_PSTRUCT [align 4] */
699         NdrFcShort( 0xc ),      /* [size 12] */
700         0x4b,           /* FC_PP */
701         0x5c,           /* FC_PAD */
702         0x46,           /* FC_NO_REPEAT */
703         0x5c,           /* FC_PAD */
704         NdrFcShort( 0x4 ),      /* 4 */
705         NdrFcShort( 0x4 ),      /* 4 */
706         0x13, 0x8,      /* FC_OP [simple_pointer] */
707         0x8,            /* FC_LONG */
708         0x5c,           /* FC_PAD */
709         0x46,           /* FC_NO_REPEAT */
710         0x5c,           /* FC_PAD */
711         NdrFcShort( 0x8 ),      /* 8 */
712         NdrFcShort( 0x8 ),      /* 8 */
713         0x13, 0x8,      /* FC_OP [simple_pointer] */
714         0x2,            /* FC_CHAR */
715         0x5c,           /* FC_PAD */
716         0x5b,           /* FC_END */
717         0x8,            /* FC_LONG */
718         0x8,            /* FC_LONG */
719         0x8,            /* FC_LONG */
720         0x5c,           /* FC_PAD */
721         0x5b,           /* FC_END */
722
723     };
724
725     /* FC_STRUCT */
726     s1.s = 0x1234;
727     s1.c = 0xa5;
728     s1.l1 = 0xdeadbeef;
729     s1.l2 = 0xcafebabe;
730     s1.ll = ((LONGLONG) 0xbadefeed << 32) | 0x2468ace0;
731
732     wiredatalen = 24;
733     memcpy(wiredata, &s1, wiredatalen); 
734     test_simple_struct_marshal(fmtstr_simple_struct + 4, &s1, 24, wiredata, 24, NULL, 0, "struct");
735
736     *(void**)wiredata = &s1;
737     memcpy(wiredata + 4, &s1, wiredatalen);
738     if (0)
739     {
740     /* one of the unmarshallings crashes Wine */
741     test_pointer_marshal(fmtstr_simple_struct, &s1, 24, wiredata, 28, NULL, 0, "struct");
742     }
743
744     /* FC_PSTRUCT */
745     ps1.l1 = 0xdeadbeef;
746     l = 0xcafebabe;
747     ps1.pl1 = &l;
748     c = 'a';
749     ps1.pc1 = &c;
750     memcpy(wiredata + 4, &ps1, 12);
751     memcpy(wiredata + 16, &l, 4);
752     memcpy(wiredata + 20, &c, 1);
753
754     test_simple_struct_marshal(fmtstr_pointer_struct + 4, &ps1, 17, wiredata + 4, 17, ps1_cmp, 2, "pointer_struct");
755     *(void**)wiredata = &ps1;
756     if (0)
757     {
758     /* one of the unmarshallings crashes Wine */
759     test_pointer_marshal(fmtstr_pointer_struct, &ps1, 17, wiredata, 21, ps1_cmp, 2, "pointer_struct");
760     }
761 }
762
763 static void test_fullpointer_xlat(void)
764 {
765     PFULL_PTR_XLAT_TABLES pXlatTables;
766     ULONG RefId;
767     int ret;
768     void *Pointer;
769
770     pXlatTables = NdrFullPointerXlatInit(2, XLAT_CLIENT);
771
772     /* "marshaling" phase */
773
774     ret = NdrFullPointerQueryPointer(pXlatTables, (void *)0xcafebeef, 1, &RefId);
775     ok(ret == 0, "ret should be 0 instead of 0x%x\n", ret);
776     ok(RefId == 0x1, "RefId should be 0x1 instead of 0x%x\n", RefId);
777
778     ret = NdrFullPointerQueryPointer(pXlatTables, (void *)0xcafebeef, 0, &RefId);
779     ok(ret == 0, "ret should be 0 instead of 0x%x\n", ret);
780     ok(RefId == 0x1, "RefId should be 0x1 instead of 0x%x\n", RefId);
781
782     ret = NdrFullPointerQueryPointer(pXlatTables, (void *)0xcafebabe, 0, &RefId);
783     ok(ret == 0, "ret should be 0 instead of 0x%x\n", ret);
784     ok(RefId == 0x2, "RefId should be 0x2 instead of 0x%x\n", RefId);
785
786     ret = NdrFullPointerQueryPointer(pXlatTables, (void *)0xdeadbeef, 0, &RefId);
787     ok(ret == 0, "ret should be 0 instead of 0x%x\n", ret);
788     ok(RefId == 0x3, "RefId should be 0x3 instead of 0x%x\n", RefId);
789
790     ret = NdrFullPointerQueryPointer(pXlatTables, NULL, 0, &RefId);
791     ok(ret == 1, "ret should be 1 instead of 0x%x\n", ret);
792     ok(RefId == 0, "RefId should be 0 instead of 0x%x\n", RefId);
793
794     /* "unmarshaling" phase */
795
796     ret = NdrFullPointerQueryRefId(pXlatTables, 0x2, 0, &Pointer);
797     ok(ret == 0, "ret should be 0 instead of 0x%x\n", ret);
798     ok(Pointer == (void *)0xcafebabe, "Pointer should be 0xcafebabe instead of %p\n", Pointer);
799
800     ret = NdrFullPointerQueryRefId(pXlatTables, 0x4, 0, &Pointer);
801     ok(ret == 0, "ret should be 0 instead of 0x%x\n", ret);
802     ok(Pointer == NULL, "Pointer should be NULL instead of %p\n", Pointer);
803
804     NdrFullPointerInsertRefId(pXlatTables, 0x4, (void *)0xdeadbabe);
805
806     ret = NdrFullPointerQueryRefId(pXlatTables, 0x4, 1, &Pointer);
807     ok(ret == 0, "ret should be 0 instead of 0x%x\n", ret);
808     ok(Pointer == (void *)0xdeadbabe, "Pointer should be (void *)0xdeadbabe instead of %p\n", Pointer);
809
810     NdrFullPointerXlatFree(pXlatTables);
811
812     pXlatTables = NdrFullPointerXlatInit(2, XLAT_SERVER);
813
814     /* "unmarshaling" phase */
815
816     ret = NdrFullPointerQueryRefId(pXlatTables, 0x2, 1, &Pointer);
817     ok(ret == 0, "ret should be 0 instead of 0x%x\n", ret);
818     ok(Pointer == NULL, "Pointer should be NULL instead of %p\n", Pointer);
819
820     NdrFullPointerInsertRefId(pXlatTables, 0x2, (void *)0xcafebabe);
821
822     ret = NdrFullPointerQueryRefId(pXlatTables, 0x2, 0, &Pointer);
823     ok(ret == 0, "ret should be 0 instead of 0x%x\n", ret);
824     ok(Pointer == (void *)0xcafebabe, "Pointer should be (void *)0xcafebabe instead of %p\n", Pointer);
825
826     ret = NdrFullPointerQueryRefId(pXlatTables, 0x2, 1, &Pointer);
827     ok(ret == 1, "ret should be 1 instead of 0x%x\n", ret);
828     ok(Pointer == (void *)0xcafebabe, "Pointer should be (void *)0xcafebabe instead of %p\n", Pointer);
829
830     /* "marshaling" phase */
831
832     ret = NdrFullPointerQueryPointer(pXlatTables, (void *)0xcafebeef, 1, &RefId);
833     ok(ret == 0, "ret should be 0 instead of 0x%x\n", ret);
834     ok(RefId == 0x3, "RefId should be 0x3 instead of 0x%x\n", RefId);
835
836     ret = NdrFullPointerQueryPointer(pXlatTables, (void *)0xcafebeef, 1, &RefId);
837     ok(ret == 1, "ret should be 1 instead of 0x%x\n", ret);
838     ok(RefId == 0x3, "RefId should be 0x3 instead of 0x%x\n", RefId);
839
840     ret = NdrFullPointerQueryPointer(pXlatTables, (void *)0xcafebeef, 0, &RefId);
841     ok(ret == 0, "ret should be 0 instead of 0x%x\n", ret);
842     ok(RefId == 0x3, "RefId should be 0x3 instead of 0x%x\n", RefId);
843
844     ret = NdrFullPointerQueryPointer(pXlatTables, (void *)0xcafebabe, 0, &RefId);
845     ok(ret == 0, "ret should be 0 instead of 0x%x\n", ret);
846     ok(RefId == 0x2, "RefId should be 0x2 instead of 0x%x\n", RefId);
847
848     ret = NdrFullPointerQueryPointer(pXlatTables, (void *)0xdeadbeef, 0, &RefId);
849     ok(ret == 0, "ret should be 0 instead of 0x%x\n", ret);
850     ok(RefId == 0x4, "RefId should be 0x4 instead of 0x%x\n", RefId);
851
852     /* "freeing" phase */
853
854     ret = NdrFullPointerFree(pXlatTables, (void *)0xcafebeef);
855     ok(ret == 1, "ret should be 1 instead of 0x%x\n", ret);
856
857     ret = NdrFullPointerQueryPointer(pXlatTables, (void *)0xcafebeef, 0x20, &RefId);
858     ok(ret == 1, "ret should be 1 instead of 0x%x\n", ret);
859     ok(RefId == 0x3, "RefId should be 0x3 instead of 0x%x\n", RefId);
860
861     ret = NdrFullPointerQueryPointer(pXlatTables, (void *)0xcafebeef, 1, &RefId);
862     ok(ret == 1, "ret should be 1 instead of 0x%x\n", ret);
863     ok(RefId == 0x3, "RefId should be 0x3 instead of 0x%x\n", RefId);
864
865     ret = NdrFullPointerFree(pXlatTables, (void *)0xcafebabe);
866     ok(ret == 1, "ret should be 1 instead of 0x%x\n", ret);
867
868     ret = NdrFullPointerFree(pXlatTables, (void *)0xdeadbeef);
869     ok(ret == 1, "ret should be 1 instead of 0x%x\n", ret);
870
871     ret = NdrFullPointerQueryPointer(pXlatTables, (void *)0xdeadbeef, 0x20, &RefId);
872     ok(ret == 1, "ret should be 1 instead of 0x%x\n", ret);
873     ok(RefId == 0x4, "RefId should be 0x4 instead of 0x%x\n", RefId);
874
875     ret = NdrFullPointerQueryPointer(pXlatTables, (void *)0xdeadbeef, 1, &RefId);
876     ok(ret == 0, "ret should be 0 instead of 0x%x\n", ret);
877     ok(RefId == 0x4, "RefId should be 0x4 instead of 0x%x\n", RefId);
878
879     ret = NdrFullPointerQueryPointer(pXlatTables, (void *)0xdeadbeef, 1, &RefId);
880     ok(ret == 1, "ret should be 1 instead of 0x%x\n", ret);
881     ok(RefId == 0x4, "RefId should be 0x4 instead of 0x%x\n", RefId);
882
883     ret = NdrFullPointerFree(pXlatTables, (void *)0xdeadbeef);
884     ok(ret == 0, "ret should be 0 instead of 0x%x\n", ret);
885
886     NdrFullPointerXlatFree(pXlatTables);
887 }
888
889 static void test_client_init(void)
890 {
891     MIDL_STUB_MESSAGE stubMsg;
892     RPC_MESSAGE rpcMsg;
893
894     memset(&rpcMsg, 0xcc, sizeof(rpcMsg));
895     memset(&stubMsg, 0xcc, sizeof(stubMsg));
896
897     NdrClientInitializeNew(&rpcMsg, &stubMsg, &Object_StubDesc, 1);
898
899 #define TEST_POINTER_UNSET(field) ok(rpcMsg.field == (void *)0xcccccccc, #field " should have been unset instead of %p\n", rpcMsg.field)
900
901     ok(rpcMsg.Handle == NULL, "rpcMsg.Handle should have been NULL instead of %p\n", rpcMsg.Handle);
902     TEST_POINTER_UNSET(Buffer);
903     ok(rpcMsg.BufferLength == 0xcccccccc, "rpcMsg.BufferLength should have been unset instead of %d\n", rpcMsg.BufferLength);
904     todo_wine
905     ok(rpcMsg.ProcNum == 0x8001, "rpcMsg.ProcNum should have been 0x8001 instead of 0x%x\n", rpcMsg.ProcNum);
906     TEST_POINTER_UNSET(TransferSyntax);
907     ok(rpcMsg.RpcInterfaceInformation == Object_StubDesc.RpcInterfaceInformation,
908         "rpcMsg.RpcInterfaceInformation should have been %p instead of %p\n",
909         Object_StubDesc.RpcInterfaceInformation, rpcMsg.RpcInterfaceInformation);
910     /* Note: ReservedForRuntime not tested */
911     TEST_POINTER_UNSET(ManagerEpv);
912     TEST_POINTER_UNSET(ImportContext);
913     ok(rpcMsg.RpcFlags == 0, "rpcMsg.RpcFlags should have been 0 instead of 0x%lx\n", rpcMsg.RpcFlags);
914 #undef TEST_POINTER_UNSET
915
916 #define TEST_ZERO(field, fmt) ok(stubMsg.field == 0, #field " should have been set to zero instead of " fmt "\n", stubMsg.field)
917 #define TEST_POINTER_UNSET(field) ok(stubMsg.field == (void *)0xcccccccc, #field " should have been unset instead of %p\n", stubMsg.field)
918 #define TEST_ULONG_UNSET(field) ok(stubMsg.field == 0xcccccccc, #field " should have been unset instead of 0x%x\n", stubMsg.field)
919 #define TEST_ULONG_PTR_UNSET(field) ok(stubMsg.field == 0xcccccccc, #field " should have been unset instead of 0x%lx\n", stubMsg.field)
920
921     ok(stubMsg.RpcMsg == &rpcMsg, "stubMsg.RpcMsg should have been %p instead of %p\n", &rpcMsg, stubMsg.RpcMsg);
922     TEST_POINTER_UNSET(Buffer);
923     TEST_ZERO(BufferStart, "%p");
924     TEST_ZERO(BufferEnd, "%p");
925     TEST_POINTER_UNSET(BufferMark);
926     TEST_ZERO(BufferLength, "%d");
927     TEST_ULONG_UNSET(MemorySize);
928     TEST_POINTER_UNSET(Memory);
929     ok(stubMsg.IsClient == 1, "stubMsg.IsClient should have been 1 instead of %u\n", stubMsg.IsClient);
930     TEST_ZERO(ReuseBuffer, "%d");
931     TEST_ZERO(pAllocAllNodesContext, "%p");
932     TEST_ZERO(pPointerQueueState, "%p");
933     TEST_ZERO(IgnoreEmbeddedPointers, "%d");
934     TEST_ZERO(PointerBufferMark, "%p");
935     TEST_ZERO(fBufferValid, "%d");
936     TEST_ZERO(uFlags, "%d");
937     /* FIXME: UniquePtrCount */
938     TEST_ULONG_PTR_UNSET(MaxCount);
939     TEST_ULONG_UNSET(Offset);
940     TEST_ULONG_UNSET(ActualCount);
941     ok(stubMsg.pfnAllocate == my_alloc, "stubMsg.pfnAllocate should have been %p instead of %p\n", my_alloc, stubMsg.pfnAllocate);
942     ok(stubMsg.pfnFree == my_free, "stubMsg.pfnFree should have been %p instead of %p\n", my_free, stubMsg.pfnFree);
943     TEST_ZERO(StackTop, "%p");
944     TEST_POINTER_UNSET(pPresentedType);
945     TEST_POINTER_UNSET(pTransmitType);
946     TEST_POINTER_UNSET(SavedHandle);
947     ok(stubMsg.StubDesc == &Object_StubDesc, "stubMsg.StubDesc should have been %p instead of %p\n", &Object_StubDesc, stubMsg.StubDesc);
948     TEST_POINTER_UNSET(FullPtrXlatTables);
949     TEST_ZERO(FullPtrRefId, "%d");
950     TEST_ZERO(PointerLength, "%d");
951     TEST_ZERO(fInDontFree, "%d");
952     TEST_ZERO(fDontCallFreeInst, "%d");
953     TEST_ZERO(fInOnlyParam, "%d");
954     TEST_ZERO(fHasReturn, "%d");
955     TEST_ZERO(fHasExtensions, "%d");
956     TEST_ZERO(fHasNewCorrDesc, "%d");
957     TEST_ZERO(fUnused, "%d");
958     ok(stubMsg.fUnused2 == 0xffffcccc, "stubMsg.fUnused2 should have been 0xcccc instead of 0x%x\n", stubMsg.fUnused2);
959     ok(stubMsg.dwDestContext == MSHCTX_DIFFERENTMACHINE, "stubMsg.dwDestContext should have been MSHCTX_DIFFERENTMACHINE instead of %d\n", stubMsg.dwDestContext);
960     TEST_ZERO(pvDestContext, "%p");
961     TEST_POINTER_UNSET(SavedContextHandles);
962     TEST_ULONG_UNSET(ParamNumber);
963     TEST_ZERO(pRpcChannelBuffer, "%p");
964     TEST_ZERO(pArrayInfo, "%p");
965     TEST_POINTER_UNSET(SizePtrCountArray);
966     TEST_POINTER_UNSET(SizePtrOffsetArray);
967     TEST_POINTER_UNSET(SizePtrLengthArray);
968     TEST_POINTER_UNSET(pArgQueue);
969     TEST_ZERO(dwStubPhase, "%d");
970     /* FIXME: where does this value come from? */
971     trace("LowStackMark is %p\n", stubMsg.LowStackMark);
972     TEST_ZERO(pAsyncMsg, "%p");
973     TEST_ZERO(pCorrInfo, "%p");
974     TEST_ZERO(pCorrMemory, "%p");
975     TEST_ZERO(pMemoryList, "%p");
976     TEST_POINTER_UNSET(pCSInfo);
977     TEST_POINTER_UNSET(ConformanceMark);
978     TEST_POINTER_UNSET(VarianceMark);
979     ok(stubMsg.Unused == 0xcccccccc, "Unused should have be unset instead of 0x%lx\n", stubMsg.Unused);
980     TEST_POINTER_UNSET(pContext);
981     TEST_POINTER_UNSET(ContextHandleHash);
982     TEST_POINTER_UNSET(pUserMarshalList);
983     TEST_ULONG_PTR_UNSET(Reserved51_3);
984     TEST_ULONG_PTR_UNSET(Reserved51_4);
985     TEST_ULONG_PTR_UNSET(Reserved51_5);
986 #undef TEST_ULONG_UNSET
987 #undef TEST_POINTER_UNSET
988 #undef TEST_ZERO
989
990 }
991
992 static void test_server_init(void)
993 {
994     MIDL_STUB_MESSAGE stubMsg;
995     RPC_MESSAGE rpcMsg;
996     unsigned char *ret;
997     unsigned char buffer[256];
998
999     memset(&rpcMsg, 0, sizeof(rpcMsg));
1000     rpcMsg.Buffer = buffer;
1001     rpcMsg.BufferLength = sizeof(buffer);
1002     rpcMsg.RpcFlags = RPC_BUFFER_COMPLETE;
1003
1004     memset(&stubMsg, 0xcc, sizeof(stubMsg));
1005
1006     ret = NdrServerInitializeNew(&rpcMsg, &stubMsg, &Object_StubDesc);
1007     ok(ret == NULL, "NdrServerInitializeNew should have returned NULL instead of %p\n", ret);
1008
1009 #define TEST_ZERO(field, fmt) ok(stubMsg.field == 0, #field " should have been set to zero instead of " fmt "\n", stubMsg.field)
1010 #define TEST_POINTER_UNSET(field) ok(stubMsg.field == (void *)0xcccccccc, #field " should have been unset instead of %p\n", stubMsg.field)
1011 #define TEST_ULONG_UNSET(field) ok(stubMsg.field == 0xcccccccc, #field " should have been unset instead of 0x%x\n", stubMsg.field)
1012 #define TEST_ULONG_PTR_UNSET(field) ok(stubMsg.field == 0xcccccccc, #field " should have been unset instead of 0x%lx\n", stubMsg.field)
1013
1014     ok(stubMsg.RpcMsg == &rpcMsg, "stubMsg.RpcMsg should have been %p instead of %p\n", &rpcMsg, stubMsg.RpcMsg);
1015     ok(stubMsg.Buffer == buffer, "stubMsg.Buffer should have been %p instead of %p\n", buffer, stubMsg.Buffer);
1016     ok(stubMsg.BufferStart == buffer, "stubMsg.BufferStart should have been %p instead of %p\n", buffer, stubMsg.BufferStart);
1017     ok(stubMsg.BufferEnd == buffer + sizeof(buffer), "stubMsg.BufferEnd should have been %p instead of %p\n", buffer + sizeof(buffer), stubMsg.BufferEnd);
1018     TEST_POINTER_UNSET(BufferMark);
1019 todo_wine
1020     TEST_ZERO(BufferLength, "%d");
1021     TEST_ULONG_UNSET(MemorySize);
1022     TEST_POINTER_UNSET(Memory);
1023     ok(stubMsg.IsClient == 0, "stubMsg.IsClient should have been 0 instead of %u\n", stubMsg.IsClient);
1024     TEST_ZERO(ReuseBuffer, "%d");
1025     TEST_ZERO(pAllocAllNodesContext, "%p");
1026     TEST_ZERO(pPointerQueueState, "%p");
1027     TEST_ZERO(IgnoreEmbeddedPointers, "%d");
1028     TEST_ZERO(PointerBufferMark, "%p");
1029     ok(stubMsg.fBufferValid == 0xcc, "fBufferValid should have been unset instead of 0x%x\n", stubMsg.fBufferValid);
1030     TEST_ZERO(uFlags, "%d");
1031     /* FIXME: UniquePtrCount */
1032     TEST_ULONG_PTR_UNSET(MaxCount);
1033     TEST_ULONG_UNSET(Offset);
1034     TEST_ULONG_UNSET(ActualCount);
1035     ok(stubMsg.pfnAllocate == my_alloc, "stubMsg.pfnAllocate should have been %p instead of %p\n", my_alloc, stubMsg.pfnAllocate);
1036     ok(stubMsg.pfnFree == my_free, "stubMsg.pfnFree should have been %p instead of %p\n", my_free, stubMsg.pfnFree);
1037     TEST_ZERO(StackTop, "%p");
1038     TEST_POINTER_UNSET(pPresentedType);
1039     TEST_POINTER_UNSET(pTransmitType);
1040     TEST_POINTER_UNSET(SavedHandle);
1041     ok(stubMsg.StubDesc == &Object_StubDesc, "stubMsg.StubDesc should have been %p instead of %p\n", &Object_StubDesc, stubMsg.StubDesc);
1042     TEST_ZERO(FullPtrXlatTables, "%p");
1043     TEST_ZERO(FullPtrRefId, "%d");
1044     TEST_ZERO(PointerLength, "%d");
1045     TEST_ZERO(fInDontFree, "%d");
1046     TEST_ZERO(fDontCallFreeInst, "%d");
1047     TEST_ZERO(fInOnlyParam, "%d");
1048     TEST_ZERO(fHasReturn, "%d");
1049     TEST_ZERO(fHasExtensions, "%d");
1050     TEST_ZERO(fHasNewCorrDesc, "%d");
1051     TEST_ZERO(fUnused, "%d");
1052     ok(stubMsg.fUnused2 == 0xffffcccc, "stubMsg.fUnused2 should have been 0xcccc instead of 0x%x\n", stubMsg.fUnused2);
1053     ok(stubMsg.dwDestContext == MSHCTX_DIFFERENTMACHINE, "stubMsg.dwDestContext should have been MSHCTX_DIFFERENTMACHINE instead of %d\n", stubMsg.dwDestContext);
1054     TEST_ZERO(pvDestContext, "%p");
1055     TEST_POINTER_UNSET(SavedContextHandles);
1056     TEST_ULONG_UNSET(ParamNumber);
1057     TEST_ZERO(pRpcChannelBuffer, "%p");
1058     TEST_ZERO(pArrayInfo, "%p");
1059     TEST_POINTER_UNSET(SizePtrCountArray);
1060     TEST_POINTER_UNSET(SizePtrOffsetArray);
1061     TEST_POINTER_UNSET(SizePtrLengthArray);
1062     TEST_POINTER_UNSET(pArgQueue);
1063     TEST_ZERO(dwStubPhase, "%d");
1064     /* FIXME: where does this value come from? */
1065     trace("LowStackMark is %p\n", stubMsg.LowStackMark);
1066     TEST_ZERO(pAsyncMsg, "%p");
1067     TEST_ZERO(pCorrInfo, "%p");
1068     TEST_ZERO(pCorrMemory, "%p");
1069     TEST_ZERO(pMemoryList, "%p");
1070     TEST_POINTER_UNSET(pCSInfo);
1071     TEST_POINTER_UNSET(ConformanceMark);
1072     TEST_POINTER_UNSET(VarianceMark);
1073     ok(stubMsg.Unused == 0xcccccccc, "Unused should have be unset instead of 0x%lx\n", stubMsg.Unused);
1074     TEST_POINTER_UNSET(pContext);
1075     TEST_POINTER_UNSET(ContextHandleHash);
1076     TEST_POINTER_UNSET(pUserMarshalList);
1077     TEST_ULONG_PTR_UNSET(Reserved51_3);
1078     TEST_ULONG_PTR_UNSET(Reserved51_4);
1079     TEST_ULONG_PTR_UNSET(Reserved51_5);
1080 #undef TEST_ULONG_UNSET
1081 #undef TEST_POINTER_UNSET
1082 #undef TEST_ZERO
1083
1084 }
1085
1086 static void test_ndr_allocate(void)
1087 {
1088     RPC_MESSAGE RpcMessage;
1089     MIDL_STUB_MESSAGE StubMsg;
1090     MIDL_STUB_DESC StubDesc;
1091     void *p1, *p2;
1092     struct tag_mem_list_v1_t
1093     {
1094         DWORD magic;
1095         void *ptr;
1096         struct tag_mem_list_v1_t *next;
1097     } *mem_list_v1;
1098     struct tag_mem_list_v2_t
1099     {
1100         DWORD magic;
1101         DWORD size;
1102         DWORD unknown;
1103         struct tag_mem_list_v2_t *next;
1104     } *mem_list_v2;
1105     const DWORD magic_MEML = 'M' << 24 | 'E' << 16 | 'M' << 8 | 'L';
1106
1107     StubDesc = Object_StubDesc;
1108     NdrClientInitializeNew(&RpcMessage, &StubMsg, &StubDesc, 0);
1109
1110     ok(StubMsg.pMemoryList == NULL, "memlist %p\n", StubMsg.pMemoryList);
1111     my_alloc_called = my_free_called = 0;
1112     p1 = NdrAllocate(&StubMsg, 10);
1113     p2 = NdrAllocate(&StubMsg, 24);
1114     ok(my_alloc_called == 2, "alloc called %d\n", my_alloc_called);
1115     ok(StubMsg.pMemoryList != NULL, "StubMsg.pMemoryList NULL\n");
1116     if(StubMsg.pMemoryList)
1117     {
1118         mem_list_v2 = StubMsg.pMemoryList;
1119         if (mem_list_v2->size == 24)
1120         {
1121             trace("v2 mem list format\n");
1122             ok((char *)mem_list_v2 == (char *)p2 + 24, "expected mem_list_v2 pointer %p, but got %p\n", (char *)p2 + 24, mem_list_v2);
1123             ok(mem_list_v2->magic == magic_MEML, "magic %08x\n", mem_list_v2->magic);
1124             ok(mem_list_v2->size == 24, "wrong size for p2 %d\n", mem_list_v2->size);
1125             ok(mem_list_v2->unknown == 0, "wrong unknown for p2 0x%x\n", mem_list_v2->unknown);
1126             ok(mem_list_v2->next != NULL, "next NULL\n");
1127             mem_list_v2 = mem_list_v2->next;
1128             if(mem_list_v2)
1129             {
1130                 ok((char *)mem_list_v2 == (char *)p1 + 16, "expected mem_list_v2 pointer %p, but got %p\n", (char *)p1 + 16, mem_list_v2);
1131                 ok(mem_list_v2->magic == magic_MEML, "magic %08x\n", mem_list_v2->magic);
1132                 ok(mem_list_v2->size == 16, "wrong size for p1 %d\n", mem_list_v2->size);
1133                 ok(mem_list_v2->unknown == 0, "wrong unknown for p1 0x%x\n", mem_list_v2->unknown);
1134                 ok(mem_list_v2->next == NULL, "next %p\n", mem_list_v2->next);
1135             }
1136         }
1137         else
1138         {
1139             trace("v1 mem list format\n");
1140             mem_list_v1 = StubMsg.pMemoryList;
1141             ok(mem_list_v1->magic == magic_MEML, "magic %08x\n", mem_list_v1->magic);
1142             ok(mem_list_v1->ptr == p2, "ptr != p2\n");
1143             ok(mem_list_v1->next != NULL, "next NULL\n");
1144             mem_list_v1 = mem_list_v1->next;
1145             if(mem_list_v1)
1146             {
1147                 ok(mem_list_v1->magic == magic_MEML, "magic %08x\n", mem_list_v1->magic);
1148                 ok(mem_list_v1->ptr == p1, "ptr != p1\n");
1149                 ok(mem_list_v1->next == NULL, "next %p\n", mem_list_v1->next);
1150             }
1151         }
1152     }
1153     /* NdrFree isn't exported so we can't test free'ing */
1154 }
1155
1156 static void test_conformant_array(void)
1157 {
1158     RPC_MESSAGE RpcMessage;
1159     MIDL_STUB_MESSAGE StubMsg;
1160     MIDL_STUB_DESC StubDesc;
1161     void *ptr;
1162     unsigned char *mem, *mem_orig;
1163     unsigned char memsrc[20];
1164
1165     static const unsigned char fmtstr_conf_array[] =
1166     {
1167         0x1b,              /* FC_CARRAY */
1168         0x0,               /* align */
1169         NdrFcShort( 0x1 ), /* elem size */
1170         0x40,              /* Corr desc:  const */
1171         0x0,
1172         NdrFcShort(0x10),  /* const = 0x10 */
1173         0x1,               /* FC_BYTE */
1174         0x5b               /* FC_END */
1175     };
1176
1177     StubDesc = Object_StubDesc;
1178     StubDesc.pFormatTypes = fmtstr_conf_array;
1179
1180     NdrClientInitializeNew(
1181                            &RpcMessage,
1182                            &StubMsg,
1183                            &StubDesc,
1184                            0);
1185
1186     StubMsg.BufferLength = 0;
1187     NdrConformantArrayBufferSize( &StubMsg,
1188                           memsrc,
1189                           fmtstr_conf_array );
1190     ok(StubMsg.BufferLength >= 20, "length %d\n", StubMsg.BufferLength);
1191
1192     /*NdrGetBuffer(&_StubMsg, _StubMsg.BufferLength, NULL);*/
1193     StubMsg.RpcMsg->Buffer = StubMsg.BufferStart = StubMsg.Buffer = HeapAlloc(GetProcessHeap(), 0, StubMsg.BufferLength);
1194     StubMsg.BufferEnd = StubMsg.BufferStart + StubMsg.BufferLength;
1195
1196     ptr = NdrConformantArrayMarshall( &StubMsg,  memsrc, fmtstr_conf_array );
1197     ok(ptr == NULL, "ret %p\n", ptr);
1198     ok(StubMsg.Buffer - StubMsg.BufferStart == 20, "Buffer %p Start %p len %d\n", StubMsg.Buffer, StubMsg.BufferStart, 20);
1199     ok(!memcmp(StubMsg.BufferStart + 4, memsrc, 16), "incorrectly marshaled\n");
1200
1201     StubMsg.Buffer = StubMsg.BufferStart;
1202     StubMsg.MemorySize = 0;
1203     mem = NULL;
1204
1205     /* Client */
1206     my_alloc_called = 0;
1207     /* passing mem == NULL with must_alloc == 0 crashes under Windows */
1208     NdrConformantArrayUnmarshall( &StubMsg, &mem, fmtstr_conf_array, 1);
1209     ok(mem != NULL, "mem not alloced\n");
1210     ok(mem != StubMsg.BufferStart + 4, "mem pointing at buffer\n");
1211     ok(my_alloc_called == 1, "alloc called %d\n", my_alloc_called);
1212
1213     my_alloc_called = 0;
1214     StubMsg.Buffer = StubMsg.BufferStart;
1215     mem_orig = mem;
1216     NdrConformantArrayUnmarshall( &StubMsg, &mem, fmtstr_conf_array, 0);
1217     ok(mem == mem_orig, "mem alloced\n");
1218     ok(mem != StubMsg.BufferStart + 4, "mem pointing at buffer\n");
1219     ok(my_alloc_called == 0, "alloc called %d\n", my_alloc_called);
1220
1221     my_alloc_called = 0;
1222     StubMsg.Buffer = StubMsg.BufferStart;
1223     NdrConformantArrayUnmarshall( &StubMsg, &mem, fmtstr_conf_array, 1);
1224     ok(mem != mem_orig, "mem not alloced\n");
1225     ok(mem != StubMsg.BufferStart + 4, "mem pointing at buffer\n");
1226     ok(my_alloc_called == 1, "alloc called %d\n", my_alloc_called);
1227
1228     my_free_called = 0;
1229     StubMsg.Buffer = StubMsg.BufferStart;
1230     NdrConformantArrayFree( &StubMsg, mem, fmtstr_conf_array );
1231     ok(my_free_called == 0, "free called %d\n", my_free_called);
1232     StubMsg.pfnFree(mem);
1233
1234     /* Server */
1235     my_alloc_called = 0;
1236     StubMsg.IsClient = 0;
1237     mem = NULL;
1238     StubMsg.Buffer = StubMsg.BufferStart;
1239     NdrConformantArrayUnmarshall( &StubMsg, &mem, fmtstr_conf_array, 0);
1240     ok(mem == StubMsg.BufferStart + 4, "mem not pointing at buffer\n");
1241     ok(my_alloc_called == 0, "alloc called %d\n", my_alloc_called);
1242     my_alloc_called = 0;
1243     mem = NULL;
1244     StubMsg.Buffer = StubMsg.BufferStart;
1245     NdrConformantArrayUnmarshall( &StubMsg, &mem, fmtstr_conf_array, 1);
1246     ok(mem != StubMsg.BufferStart + 4, "mem pointing at buffer\n");
1247     ok(my_alloc_called == 1, "alloc called %d\n", my_alloc_called);
1248     StubMsg.pfnFree(mem);
1249
1250     my_alloc_called = 0;
1251     mem = mem_orig;
1252     StubMsg.Buffer = StubMsg.BufferStart;
1253     NdrConformantArrayUnmarshall( &StubMsg, &mem, fmtstr_conf_array, 0);
1254     ok(mem == mem_orig, "mem alloced\n");
1255     ok(my_alloc_called == 0, "alloc called %d\n", my_alloc_called);
1256
1257     my_alloc_called = 0;
1258     mem = mem_orig;
1259     StubMsg.Buffer = StubMsg.BufferStart;
1260     NdrConformantArrayUnmarshall( &StubMsg, &mem, fmtstr_conf_array, 1);
1261     ok(mem != StubMsg.BufferStart + 4, "mem pointing at buffer\n");
1262     ok(my_alloc_called == 1, "alloc called %d\n", my_alloc_called);
1263     StubMsg.pfnFree(mem);
1264     StubMsg.pfnFree(mem_orig);
1265
1266     HeapFree(GetProcessHeap(), 0, StubMsg.RpcMsg->Buffer);
1267 }
1268
1269 static void test_conformant_string(void)
1270 {
1271     RPC_MESSAGE RpcMessage;
1272     MIDL_STUB_MESSAGE StubMsg;
1273     MIDL_STUB_DESC StubDesc;
1274     void *ptr;
1275     unsigned char *mem, *mem_orig;
1276     char memsrc[] = "This is a test string";
1277
1278     static const unsigned char fmtstr_conf_str[] =
1279     {
1280                         0x11, 0x8,      /* FC_RP [simple_pointer] */
1281                         0x22,           /* FC_C_CSTRING */
1282                         0x5c,           /* FC_PAD */
1283     };
1284
1285     StubDesc = Object_StubDesc;
1286     StubDesc.pFormatTypes = fmtstr_conf_str;
1287
1288     NdrClientInitializeNew(
1289                            &RpcMessage,
1290                            &StubMsg,
1291                            &StubDesc,
1292                            0);
1293
1294     StubMsg.BufferLength = 0;
1295     NdrPointerBufferSize( &StubMsg,
1296                           (unsigned char *)memsrc,
1297                           fmtstr_conf_str );
1298     ok(StubMsg.BufferLength >= sizeof(memsrc) + 12, "length %d\n", StubMsg.BufferLength);
1299
1300     /*NdrGetBuffer(&_StubMsg, _StubMsg.BufferLength, NULL);*/
1301     StubMsg.RpcMsg->Buffer = StubMsg.BufferStart = StubMsg.Buffer = HeapAlloc(GetProcessHeap(), 0, StubMsg.BufferLength);
1302     StubMsg.BufferEnd = StubMsg.BufferStart + StubMsg.BufferLength;
1303
1304     ptr = NdrPointerMarshall( &StubMsg, (unsigned char *)memsrc, fmtstr_conf_str );
1305     ok(ptr == NULL, "ret %p\n", ptr);
1306     ok(StubMsg.Buffer - StubMsg.BufferStart == sizeof(memsrc) + 12, "Buffer %p Start %p len %d\n",
1307        StubMsg.Buffer, StubMsg.BufferStart, StubMsg.Buffer - StubMsg.BufferStart);
1308     ok(!memcmp(StubMsg.BufferStart + 12, memsrc, sizeof(memsrc)), "incorrectly marshaled\n");
1309
1310     StubMsg.Buffer = StubMsg.BufferStart;
1311     StubMsg.MemorySize = 0;
1312     mem = NULL;
1313
1314     /* Client */
1315     my_alloc_called = 0;
1316     StubMsg.Buffer = StubMsg.BufferStart;
1317     mem = mem_orig = HeapAlloc(GetProcessHeap(), 0, sizeof(memsrc));
1318     NdrPointerUnmarshall( &StubMsg, &mem, fmtstr_conf_str, 0);
1319     ok(mem == mem_orig, "mem not alloced\n");
1320     ok(my_alloc_called == 0, "alloc called %d\n", my_alloc_called);
1321
1322     my_alloc_called = 0;
1323     StubMsg.Buffer = StubMsg.BufferStart;
1324     NdrPointerUnmarshall( &StubMsg, &mem, fmtstr_conf_str, 1);
1325 todo_wine {
1326     ok(mem == mem_orig, "mem not alloced\n");
1327     ok(my_alloc_called == 0, "alloc called %d\n", my_alloc_called);
1328 }
1329
1330     my_free_called = 0;
1331     StubMsg.Buffer = StubMsg.BufferStart;
1332     NdrPointerFree( &StubMsg, mem, fmtstr_conf_str );
1333     ok(my_free_called == 1, "free called %d\n", my_free_called);
1334
1335     mem = my_alloc(10);
1336     my_free_called = 0;
1337     StubMsg.Buffer = StubMsg.BufferStart;
1338     NdrPointerFree( &StubMsg, mem, fmtstr_conf_str );
1339     ok(my_free_called == 1, "free called %d\n", my_free_called);
1340
1341     /* Server */
1342     my_alloc_called = 0;
1343     StubMsg.IsClient = 0;
1344     mem = NULL;
1345     StubMsg.Buffer = StubMsg.BufferStart;
1346     NdrPointerUnmarshall( &StubMsg, &mem, fmtstr_conf_str, 0);
1347     ok(mem == StubMsg.BufferStart + 12, "mem not pointing at buffer\n");
1348     ok(my_alloc_called == 0, "alloc called %d\n", my_alloc_called);
1349
1350     my_alloc_called = 0;
1351     mem = NULL;
1352     StubMsg.Buffer = StubMsg.BufferStart;
1353     NdrPointerUnmarshall( &StubMsg, &mem, fmtstr_conf_str, 1);
1354 todo_wine {
1355     ok(mem == StubMsg.BufferStart + 12, "mem not pointing at buffer\n");
1356     ok(my_alloc_called == 0, "alloc called %d\n", my_alloc_called);
1357 }
1358
1359     my_alloc_called = 0;
1360     mem = mem_orig;
1361     StubMsg.Buffer = StubMsg.BufferStart;
1362     NdrPointerUnmarshall( &StubMsg, &mem, fmtstr_conf_str, 0);
1363     ok(mem == StubMsg.BufferStart + 12, "mem not pointing at buffer\n");
1364     ok(my_alloc_called == 0, "alloc called %d\n", my_alloc_called);
1365
1366     my_alloc_called = 0;
1367     mem = mem_orig;
1368     StubMsg.Buffer = StubMsg.BufferStart;
1369     NdrPointerUnmarshall( &StubMsg, &mem, fmtstr_conf_str, 1);
1370 todo_wine {
1371     ok(mem == StubMsg.BufferStart + 12, "mem not pointing at buffer\n");
1372     ok(my_alloc_called == 0, "alloc called %d\n", my_alloc_called);
1373 }
1374
1375     mem = my_alloc(10);
1376     my_free_called = 0;
1377     StubMsg.Buffer = StubMsg.BufferStart;
1378     NdrPointerFree( &StubMsg, mem, fmtstr_conf_str );
1379     ok(my_free_called == 1, "free called %d\n", my_free_called);
1380
1381     HeapFree(GetProcessHeap(), 0, mem_orig);
1382     HeapFree(GetProcessHeap(), 0, StubMsg.RpcMsg->Buffer);
1383 }
1384
1385 static void test_nonconformant_string(void)
1386 {
1387     RPC_MESSAGE RpcMessage;
1388     MIDL_STUB_MESSAGE StubMsg;
1389     MIDL_STUB_DESC StubDesc;
1390     void *ptr;
1391     unsigned char *mem, *mem_orig;
1392     unsigned char memsrc[10] = "This is";
1393     unsigned char memsrc2[10] = "This is a";
1394
1395     static const unsigned char fmtstr_nonconf_str[] =
1396     {
1397                         0x26,           /* FC_CSTRING */
1398                         0x5c,           /* FC_PAD */
1399                         NdrFcShort( 0xa ),      /* 10 */
1400     };
1401
1402     StubDesc = Object_StubDesc;
1403     StubDesc.pFormatTypes = fmtstr_nonconf_str;
1404
1405     /* length < size */
1406     NdrClientInitializeNew(
1407                            &RpcMessage,
1408                            &StubMsg,
1409                            &StubDesc,
1410                            0);
1411
1412     StubMsg.BufferLength = 0;
1413
1414     NdrNonConformantStringBufferSize( &StubMsg,
1415                           (unsigned char *)memsrc,
1416                           fmtstr_nonconf_str );
1417     ok(StubMsg.BufferLength >= strlen((char *)memsrc) + 1 + 8, "length %d\n", StubMsg.BufferLength);
1418
1419     /*NdrGetBuffer(&_StubMsg, _StubMsg.BufferLength, NULL);*/
1420     StubMsg.RpcMsg->Buffer = StubMsg.BufferStart = StubMsg.Buffer = HeapAlloc(GetProcessHeap(), 0, StubMsg.BufferLength);
1421     StubMsg.BufferEnd = StubMsg.BufferStart + StubMsg.BufferLength;
1422
1423     ptr = NdrNonConformantStringMarshall( &StubMsg, (unsigned char *)memsrc, fmtstr_nonconf_str );
1424     ok(ptr == NULL, "ret %p\n", ptr);
1425     ok(StubMsg.Buffer - StubMsg.BufferStart == strlen((char *)memsrc) + 1 + 8, "Buffer %p Start %p len %d\n",
1426        StubMsg.Buffer, StubMsg.BufferStart, StubMsg.Buffer - StubMsg.BufferStart);
1427     ok(!memcmp(StubMsg.BufferStart + 8, memsrc, strlen((char *)memsrc) + 1), "incorrectly marshaled\n");
1428
1429     StubMsg.Buffer = StubMsg.BufferStart;
1430     StubMsg.MemorySize = 0;
1431     mem = NULL;
1432
1433     /* Client */
1434     my_alloc_called = 0;
1435     StubMsg.Buffer = StubMsg.BufferStart;
1436     mem = mem_orig = HeapAlloc(GetProcessHeap(), 0, sizeof(memsrc));
1437     NdrNonConformantStringUnmarshall( &StubMsg, &mem, fmtstr_nonconf_str, 0);
1438     ok(mem == mem_orig, "mem alloced\n");
1439     ok(my_alloc_called == 0, "alloc called %d\n", my_alloc_called);
1440
1441     my_alloc_called = 0;
1442     StubMsg.Buffer = StubMsg.BufferStart;
1443     NdrNonConformantStringUnmarshall( &StubMsg, &mem, fmtstr_nonconf_str, 1);
1444     todo_wine
1445     ok(mem == mem_orig, "mem alloced\n");
1446     todo_wine
1447     ok(my_alloc_called == 0, "alloc called %d\n", my_alloc_called);
1448
1449     /* Server */
1450     my_alloc_called = 0;
1451     StubMsg.IsClient = 0;
1452     mem = NULL;
1453     StubMsg.Buffer = StubMsg.BufferStart;
1454     NdrNonConformantStringUnmarshall( &StubMsg, &mem, fmtstr_nonconf_str, 0);
1455     ok(mem != mem_orig, "mem not alloced\n");
1456     ok(mem != StubMsg.BufferStart + 8, "mem pointing at buffer\n");
1457     ok(my_alloc_called == 1, "alloc called %d\n", my_alloc_called);
1458     NdrOleFree(mem);
1459
1460     my_alloc_called = 0;
1461     mem = mem_orig;
1462     StubMsg.Buffer = StubMsg.BufferStart;
1463     NdrNonConformantStringUnmarshall( &StubMsg, &mem, fmtstr_nonconf_str, 0);
1464     ok(mem == mem_orig, "mem alloced\n");
1465     ok(my_alloc_called == 0, "alloc called %d\n", my_alloc_called);
1466
1467     my_alloc_called = 0;
1468     mem = mem_orig;
1469     StubMsg.Buffer = StubMsg.BufferStart;
1470     NdrNonConformantStringUnmarshall( &StubMsg, &mem, fmtstr_nonconf_str, 1);
1471     todo_wine
1472     ok(mem == mem_orig, "mem alloced\n");
1473     todo_wine
1474     ok(my_alloc_called == 0, "alloc called %d\n", my_alloc_called);
1475
1476     HeapFree(GetProcessHeap(), 0, mem_orig);
1477     HeapFree(GetProcessHeap(), 0, StubMsg.RpcMsg->Buffer);
1478
1479     /* length = size */
1480     NdrClientInitializeNew(
1481                            &RpcMessage,
1482                            &StubMsg,
1483                            &StubDesc,
1484                            0);
1485
1486     StubMsg.BufferLength = 0;
1487
1488     NdrNonConformantStringBufferSize( &StubMsg,
1489                           (unsigned char *)memsrc2,
1490                           fmtstr_nonconf_str );
1491     ok(StubMsg.BufferLength >= strlen((char *)memsrc2) + 1 + 8, "length %d\n", StubMsg.BufferLength);
1492
1493     /*NdrGetBuffer(&_StubMsg, _StubMsg.BufferLength, NULL);*/
1494     StubMsg.RpcMsg->Buffer = StubMsg.BufferStart = StubMsg.Buffer = HeapAlloc(GetProcessHeap(), 0, StubMsg.BufferLength);
1495     StubMsg.BufferEnd = StubMsg.BufferStart + StubMsg.BufferLength;
1496
1497     ptr = NdrNonConformantStringMarshall( &StubMsg, (unsigned char *)memsrc2, fmtstr_nonconf_str );
1498     ok(ptr == NULL, "ret %p\n", ptr);
1499     ok(StubMsg.Buffer - StubMsg.BufferStart == strlen((char *)memsrc2) + 1 + 8, "Buffer %p Start %p len %d\n",
1500        StubMsg.Buffer, StubMsg.BufferStart, StubMsg.Buffer - StubMsg.BufferStart);
1501     ok(!memcmp(StubMsg.BufferStart + 8, memsrc2, strlen((char *)memsrc2) + 1), "incorrectly marshaled\n");
1502
1503     StubMsg.Buffer = StubMsg.BufferStart;
1504     StubMsg.MemorySize = 0;
1505     mem = NULL;
1506
1507     /* Client */
1508     my_alloc_called = 0;
1509     StubMsg.Buffer = StubMsg.BufferStart;
1510     mem = mem_orig = HeapAlloc(GetProcessHeap(), 0, sizeof(memsrc));
1511     NdrNonConformantStringUnmarshall( &StubMsg, &mem, fmtstr_nonconf_str, 0);
1512     ok(mem == mem_orig, "mem alloced\n");
1513     ok(my_alloc_called == 0, "alloc called %d\n", my_alloc_called);
1514
1515     my_alloc_called = 0;
1516     StubMsg.Buffer = StubMsg.BufferStart;
1517     NdrNonConformantStringUnmarshall( &StubMsg, &mem, fmtstr_nonconf_str, 1);
1518     todo_wine
1519     ok(mem == mem_orig, "mem alloced\n");
1520     todo_wine
1521     ok(my_alloc_called == 0, "alloc called %d\n", my_alloc_called);
1522
1523     /* Server */
1524     my_alloc_called = 0;
1525     StubMsg.IsClient = 0;
1526     mem = NULL;
1527     StubMsg.Buffer = StubMsg.BufferStart;
1528     NdrNonConformantStringUnmarshall( &StubMsg, &mem, fmtstr_nonconf_str, 0);
1529     ok(mem != mem_orig, "mem not alloced\n");
1530     ok(mem != StubMsg.BufferStart + 8, "mem pointing at buffer\n");
1531     ok(my_alloc_called == 1, "alloc called %d\n", my_alloc_called);
1532     NdrOleFree(mem);
1533
1534     my_alloc_called = 0;
1535     mem = mem_orig;
1536     StubMsg.Buffer = StubMsg.BufferStart;
1537     NdrNonConformantStringUnmarshall( &StubMsg, &mem, fmtstr_nonconf_str, 0);
1538     ok(mem == mem_orig, "mem alloced\n");
1539     ok(my_alloc_called == 0, "alloc called %d\n", my_alloc_called);
1540
1541     my_alloc_called = 0;
1542     mem = mem_orig;
1543     StubMsg.Buffer = StubMsg.BufferStart;
1544     NdrNonConformantStringUnmarshall( &StubMsg, &mem, fmtstr_nonconf_str, 1);
1545     todo_wine
1546     ok(mem == mem_orig, "mem alloced\n");
1547     todo_wine
1548     ok(my_alloc_called == 0, "alloc called %d\n", my_alloc_called);
1549
1550     HeapFree(GetProcessHeap(), 0, mem_orig);
1551     HeapFree(GetProcessHeap(), 0, StubMsg.RpcMsg->Buffer);
1552 }
1553
1554 static void test_ndr_buffer(void)
1555 {
1556     static unsigned char ncalrpc[] = "ncalrpc";
1557     static unsigned char endpoint[] = "winetest:" __FILE__;
1558     RPC_MESSAGE RpcMessage;
1559     MIDL_STUB_MESSAGE StubMsg;
1560     MIDL_STUB_DESC StubDesc = Object_StubDesc;
1561     unsigned char *ret;
1562     unsigned char *binding;
1563     RPC_BINDING_HANDLE Handle;
1564     RPC_STATUS status;
1565
1566     StubDesc.RpcInterfaceInformation = (void *)&IFoo___RpcServerInterface;
1567
1568     ok(RPC_S_OK == RpcServerUseProtseqEp(ncalrpc, 20, endpoint, NULL), "RpcServerUseProtseqEp\n");
1569     ok(RPC_S_OK == RpcServerRegisterIf(IFoo_v0_0_s_ifspec, NULL, NULL), "RpcServerRegisterIf\n");
1570     ok(RPC_S_OK == RpcServerListen(1, 20, TRUE), "RpcServerListen\n");
1571
1572     status = RpcStringBindingCompose(NULL, ncalrpc, NULL, endpoint, NULL, &binding);
1573     ok(status == RPC_S_OK, "RpcStringBindingCompose failed (%lu)\n", status);
1574
1575     status = RpcBindingFromStringBinding(binding, &Handle);
1576     ok(status == RPC_S_OK, "RpcBindingFromStringBinding failed (%lu)\n", status);
1577
1578     NdrClientInitializeNew(&RpcMessage, &StubMsg, &StubDesc, 5);
1579
1580     ret = NdrGetBuffer(&StubMsg, 10, Handle);
1581     ok(ret == StubMsg.Buffer, "NdrGetBuffer should have returned the same value as StubMsg.Buffer instead of %p\n", ret);
1582     ok(RpcMessage.Handle != NULL, "RpcMessage.Handle should not have been NULL\n");
1583     ok(RpcMessage.Buffer != NULL, "RpcMessage.Buffer should not have been NULL\n");
1584     ok(RpcMessage.BufferLength == 10, "RpcMessage.BufferLength should have been 10 instead of %d\n", RpcMessage.BufferLength);
1585     ok(RpcMessage.RpcFlags == 0, "RpcMessage.RpcFlags should have been 0x0 instead of 0x%lx\n", RpcMessage.RpcFlags);
1586     ok(StubMsg.Buffer != NULL, "Buffer should not have been NULL\n");
1587     ok(!StubMsg.BufferStart, "BufferStart should have been NULL instead of %p\n", StubMsg.BufferStart);
1588     ok(!StubMsg.BufferEnd, "BufferEnd should have been NULL instead of %p\n", StubMsg.BufferEnd);
1589 todo_wine
1590     ok(StubMsg.BufferLength == 0, "BufferLength should have left as 0 instead of being set to %d\n", StubMsg.BufferLength);
1591     ok(StubMsg.fBufferValid == TRUE, "fBufferValid should have been TRUE instead of 0x%x\n", StubMsg.fBufferValid);
1592
1593     StubMsg.BufferLength = 1;
1594     NdrFreeBuffer(&StubMsg);
1595     ok(RpcMessage.Handle != NULL, "RpcMessage.Handle should not have been NULL\n");
1596     ok(RpcMessage.Buffer != NULL, "RpcMessage.Buffer should not have been NULL\n");
1597     ok(RpcMessage.BufferLength == 10, "RpcMessage.BufferLength should have been left as 10 instead of %d\n", RpcMessage.BufferLength);
1598     ok(StubMsg.Buffer != NULL, "Buffer should not have been NULL\n");
1599     ok(StubMsg.BufferLength == 1, "BufferLength should have left as 1 instead of being set to %d\n", StubMsg.BufferLength);
1600     ok(StubMsg.fBufferValid == FALSE, "fBufferValid should have been FALSE instead of 0x%x\n", StubMsg.fBufferValid);
1601
1602     /* attempt double-free */
1603     NdrFreeBuffer(&StubMsg);
1604
1605     status = RpcServerUnregisterIf(NULL, NULL, FALSE);
1606     ok(status == RPC_S_OK, "RpcServerUnregisterIf failed (%lu)\n", status);
1607 }
1608
1609 START_TEST( ndr_marshall )
1610 {
1611     test_ndr_simple_type();
1612     test_simple_types();
1613     test_simple_struct();
1614     test_fullpointer_xlat();
1615     test_client_init();
1616     test_server_init();
1617     test_ndr_allocate();
1618     test_conformant_array();
1619     test_conformant_string();
1620     test_nonconformant_string();
1621     test_ndr_buffer();
1622 }