rpcrt4: Implement NdrMapCommAndFaultStatus.
[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     ok(rpcMsg.ProcNum == 0x8001, "rpcMsg.ProcNum should have been 0x8001 instead of 0x%x\n", rpcMsg.ProcNum);
905     TEST_POINTER_UNSET(TransferSyntax);
906     ok(rpcMsg.RpcInterfaceInformation == Object_StubDesc.RpcInterfaceInformation,
907         "rpcMsg.RpcInterfaceInformation should have been %p instead of %p\n",
908         Object_StubDesc.RpcInterfaceInformation, rpcMsg.RpcInterfaceInformation);
909     /* Note: ReservedForRuntime not tested */
910     TEST_POINTER_UNSET(ManagerEpv);
911     TEST_POINTER_UNSET(ImportContext);
912     ok(rpcMsg.RpcFlags == 0, "rpcMsg.RpcFlags should have been 0 instead of 0x%lx\n", rpcMsg.RpcFlags);
913 #undef TEST_POINTER_UNSET
914
915 #define TEST_ZERO(field, fmt) ok(stubMsg.field == 0, #field " should have been set to zero instead of " fmt "\n", stubMsg.field)
916 #define TEST_POINTER_UNSET(field) ok(stubMsg.field == (void *)0xcccccccc, #field " should have been unset instead of %p\n", stubMsg.field)
917 #define TEST_ULONG_UNSET(field) ok(stubMsg.field == 0xcccccccc, #field " should have been unset instead of 0x%x\n", stubMsg.field)
918 #define TEST_ULONG_PTR_UNSET(field) ok(stubMsg.field == 0xcccccccc, #field " should have been unset instead of 0x%lx\n", stubMsg.field)
919
920     ok(stubMsg.RpcMsg == &rpcMsg, "stubMsg.RpcMsg should have been %p instead of %p\n", &rpcMsg, stubMsg.RpcMsg);
921     TEST_POINTER_UNSET(Buffer);
922     TEST_ZERO(BufferStart, "%p");
923     TEST_ZERO(BufferEnd, "%p");
924     TEST_POINTER_UNSET(BufferMark);
925     TEST_ZERO(BufferLength, "%d");
926     TEST_ULONG_UNSET(MemorySize);
927     TEST_POINTER_UNSET(Memory);
928     ok(stubMsg.IsClient == 1, "stubMsg.IsClient should have been 1 instead of %u\n", stubMsg.IsClient);
929     TEST_ZERO(ReuseBuffer, "%d");
930     TEST_ZERO(pAllocAllNodesContext, "%p");
931     TEST_ZERO(pPointerQueueState, "%p");
932     TEST_ZERO(IgnoreEmbeddedPointers, "%d");
933     TEST_ZERO(PointerBufferMark, "%p");
934     TEST_ZERO(fBufferValid, "%d");
935     TEST_ZERO(uFlags, "%d");
936     /* FIXME: UniquePtrCount */
937     TEST_ULONG_PTR_UNSET(MaxCount);
938     TEST_ULONG_UNSET(Offset);
939     TEST_ULONG_UNSET(ActualCount);
940     ok(stubMsg.pfnAllocate == my_alloc, "stubMsg.pfnAllocate should have been %p instead of %p\n", my_alloc, stubMsg.pfnAllocate);
941     ok(stubMsg.pfnFree == my_free, "stubMsg.pfnFree should have been %p instead of %p\n", my_free, stubMsg.pfnFree);
942     TEST_ZERO(StackTop, "%p");
943     TEST_POINTER_UNSET(pPresentedType);
944     TEST_POINTER_UNSET(pTransmitType);
945     TEST_POINTER_UNSET(SavedHandle);
946     ok(stubMsg.StubDesc == &Object_StubDesc, "stubMsg.StubDesc should have been %p instead of %p\n", &Object_StubDesc, stubMsg.StubDesc);
947     TEST_POINTER_UNSET(FullPtrXlatTables);
948     TEST_ZERO(FullPtrRefId, "%d");
949     TEST_ZERO(PointerLength, "%d");
950     TEST_ZERO(fInDontFree, "%d");
951     TEST_ZERO(fDontCallFreeInst, "%d");
952     TEST_ZERO(fInOnlyParam, "%d");
953     TEST_ZERO(fHasReturn, "%d");
954     TEST_ZERO(fHasExtensions, "%d");
955     TEST_ZERO(fHasNewCorrDesc, "%d");
956     TEST_ZERO(fUnused, "%d");
957     ok(stubMsg.fUnused2 == 0xffffcccc, "stubMsg.fUnused2 should have been 0xcccc instead of 0x%x\n", stubMsg.fUnused2);
958     ok(stubMsg.dwDestContext == MSHCTX_DIFFERENTMACHINE, "stubMsg.dwDestContext should have been MSHCTX_DIFFERENTMACHINE instead of %d\n", stubMsg.dwDestContext);
959     TEST_ZERO(pvDestContext, "%p");
960     TEST_POINTER_UNSET(SavedContextHandles);
961     TEST_ULONG_UNSET(ParamNumber);
962     TEST_ZERO(pRpcChannelBuffer, "%p");
963     TEST_ZERO(pArrayInfo, "%p");
964     TEST_POINTER_UNSET(SizePtrCountArray);
965     TEST_POINTER_UNSET(SizePtrOffsetArray);
966     TEST_POINTER_UNSET(SizePtrLengthArray);
967     TEST_POINTER_UNSET(pArgQueue);
968     TEST_ZERO(dwStubPhase, "%d");
969     /* FIXME: where does this value come from? */
970     trace("LowStackMark is %p\n", stubMsg.LowStackMark);
971     TEST_ZERO(pAsyncMsg, "%p");
972     TEST_ZERO(pCorrInfo, "%p");
973     TEST_ZERO(pCorrMemory, "%p");
974     TEST_ZERO(pMemoryList, "%p");
975     TEST_POINTER_UNSET(pCSInfo);
976     TEST_POINTER_UNSET(ConformanceMark);
977     TEST_POINTER_UNSET(VarianceMark);
978     ok(stubMsg.Unused == 0xcccccccc, "Unused should have be unset instead of 0x%lx\n", stubMsg.Unused);
979     TEST_POINTER_UNSET(pContext);
980     TEST_POINTER_UNSET(ContextHandleHash);
981     TEST_POINTER_UNSET(pUserMarshalList);
982     TEST_ULONG_PTR_UNSET(Reserved51_3);
983     TEST_ULONG_PTR_UNSET(Reserved51_4);
984     TEST_ULONG_PTR_UNSET(Reserved51_5);
985 #undef TEST_ULONG_UNSET
986 #undef TEST_POINTER_UNSET
987 #undef TEST_ZERO
988
989 }
990
991 static void test_server_init(void)
992 {
993     MIDL_STUB_MESSAGE stubMsg;
994     RPC_MESSAGE rpcMsg;
995     unsigned char *ret;
996     unsigned char buffer[256];
997
998     memset(&rpcMsg, 0, sizeof(rpcMsg));
999     rpcMsg.Buffer = buffer;
1000     rpcMsg.BufferLength = sizeof(buffer);
1001     rpcMsg.RpcFlags = RPC_BUFFER_COMPLETE;
1002
1003     memset(&stubMsg, 0xcc, sizeof(stubMsg));
1004
1005     ret = NdrServerInitializeNew(&rpcMsg, &stubMsg, &Object_StubDesc);
1006     ok(ret == NULL, "NdrServerInitializeNew should have returned NULL instead of %p\n", ret);
1007
1008 #define TEST_ZERO(field, fmt) ok(stubMsg.field == 0, #field " should have been set to zero instead of " fmt "\n", stubMsg.field)
1009 #define TEST_POINTER_UNSET(field) ok(stubMsg.field == (void *)0xcccccccc, #field " should have been unset instead of %p\n", stubMsg.field)
1010 #define TEST_ULONG_UNSET(field) ok(stubMsg.field == 0xcccccccc, #field " should have been unset instead of 0x%x\n", stubMsg.field)
1011 #define TEST_ULONG_PTR_UNSET(field) ok(stubMsg.field == 0xcccccccc, #field " should have been unset instead of 0x%lx\n", stubMsg.field)
1012
1013     ok(stubMsg.RpcMsg == &rpcMsg, "stubMsg.RpcMsg should have been %p instead of %p\n", &rpcMsg, stubMsg.RpcMsg);
1014     ok(stubMsg.Buffer == buffer, "stubMsg.Buffer should have been %p instead of %p\n", buffer, stubMsg.Buffer);
1015     ok(stubMsg.BufferStart == buffer, "stubMsg.BufferStart should have been %p instead of %p\n", buffer, stubMsg.BufferStart);
1016     ok(stubMsg.BufferEnd == buffer + sizeof(buffer), "stubMsg.BufferEnd should have been %p instead of %p\n", buffer + sizeof(buffer), stubMsg.BufferEnd);
1017     TEST_POINTER_UNSET(BufferMark);
1018 todo_wine
1019     TEST_ZERO(BufferLength, "%d");
1020     TEST_ULONG_UNSET(MemorySize);
1021     TEST_POINTER_UNSET(Memory);
1022     ok(stubMsg.IsClient == 0, "stubMsg.IsClient should have been 0 instead of %u\n", stubMsg.IsClient);
1023     TEST_ZERO(ReuseBuffer, "%d");
1024     TEST_ZERO(pAllocAllNodesContext, "%p");
1025     TEST_ZERO(pPointerQueueState, "%p");
1026     TEST_ZERO(IgnoreEmbeddedPointers, "%d");
1027     TEST_ZERO(PointerBufferMark, "%p");
1028     ok(stubMsg.fBufferValid == 0xcc, "fBufferValid should have been unset instead of 0x%x\n", stubMsg.fBufferValid);
1029     TEST_ZERO(uFlags, "%d");
1030     /* FIXME: UniquePtrCount */
1031     TEST_ULONG_PTR_UNSET(MaxCount);
1032     TEST_ULONG_UNSET(Offset);
1033     TEST_ULONG_UNSET(ActualCount);
1034     ok(stubMsg.pfnAllocate == my_alloc, "stubMsg.pfnAllocate should have been %p instead of %p\n", my_alloc, stubMsg.pfnAllocate);
1035     ok(stubMsg.pfnFree == my_free, "stubMsg.pfnFree should have been %p instead of %p\n", my_free, stubMsg.pfnFree);
1036     TEST_ZERO(StackTop, "%p");
1037     TEST_POINTER_UNSET(pPresentedType);
1038     TEST_POINTER_UNSET(pTransmitType);
1039     TEST_POINTER_UNSET(SavedHandle);
1040     ok(stubMsg.StubDesc == &Object_StubDesc, "stubMsg.StubDesc should have been %p instead of %p\n", &Object_StubDesc, stubMsg.StubDesc);
1041     TEST_ZERO(FullPtrXlatTables, "%p");
1042     TEST_ZERO(FullPtrRefId, "%d");
1043     TEST_ZERO(PointerLength, "%d");
1044     TEST_ZERO(fInDontFree, "%d");
1045     TEST_ZERO(fDontCallFreeInst, "%d");
1046     TEST_ZERO(fInOnlyParam, "%d");
1047     TEST_ZERO(fHasReturn, "%d");
1048     TEST_ZERO(fHasExtensions, "%d");
1049     TEST_ZERO(fHasNewCorrDesc, "%d");
1050     TEST_ZERO(fUnused, "%d");
1051     ok(stubMsg.fUnused2 == 0xffffcccc, "stubMsg.fUnused2 should have been 0xcccc instead of 0x%x\n", stubMsg.fUnused2);
1052     ok(stubMsg.dwDestContext == MSHCTX_DIFFERENTMACHINE, "stubMsg.dwDestContext should have been MSHCTX_DIFFERENTMACHINE instead of %d\n", stubMsg.dwDestContext);
1053     TEST_ZERO(pvDestContext, "%p");
1054     TEST_POINTER_UNSET(SavedContextHandles);
1055     TEST_ULONG_UNSET(ParamNumber);
1056     TEST_ZERO(pRpcChannelBuffer, "%p");
1057     TEST_ZERO(pArrayInfo, "%p");
1058     TEST_POINTER_UNSET(SizePtrCountArray);
1059     TEST_POINTER_UNSET(SizePtrOffsetArray);
1060     TEST_POINTER_UNSET(SizePtrLengthArray);
1061     TEST_POINTER_UNSET(pArgQueue);
1062     TEST_ZERO(dwStubPhase, "%d");
1063     /* FIXME: where does this value come from? */
1064     trace("LowStackMark is %p\n", stubMsg.LowStackMark);
1065     TEST_ZERO(pAsyncMsg, "%p");
1066     TEST_ZERO(pCorrInfo, "%p");
1067     TEST_ZERO(pCorrMemory, "%p");
1068     TEST_ZERO(pMemoryList, "%p");
1069     TEST_POINTER_UNSET(pCSInfo);
1070     TEST_POINTER_UNSET(ConformanceMark);
1071     TEST_POINTER_UNSET(VarianceMark);
1072     ok(stubMsg.Unused == 0xcccccccc, "Unused should have be unset instead of 0x%lx\n", stubMsg.Unused);
1073     TEST_POINTER_UNSET(pContext);
1074     TEST_POINTER_UNSET(ContextHandleHash);
1075     TEST_POINTER_UNSET(pUserMarshalList);
1076     TEST_ULONG_PTR_UNSET(Reserved51_3);
1077     TEST_ULONG_PTR_UNSET(Reserved51_4);
1078     TEST_ULONG_PTR_UNSET(Reserved51_5);
1079 #undef TEST_ULONG_UNSET
1080 #undef TEST_POINTER_UNSET
1081 #undef TEST_ZERO
1082
1083 }
1084
1085 static void test_ndr_allocate(void)
1086 {
1087     RPC_MESSAGE RpcMessage;
1088     MIDL_STUB_MESSAGE StubMsg;
1089     MIDL_STUB_DESC StubDesc;
1090     void *p1, *p2;
1091     struct tag_mem_list_v1_t
1092     {
1093         DWORD magic;
1094         void *ptr;
1095         struct tag_mem_list_v1_t *next;
1096     } *mem_list_v1;
1097     struct tag_mem_list_v2_t
1098     {
1099         DWORD magic;
1100         DWORD size;
1101         DWORD unknown;
1102         struct tag_mem_list_v2_t *next;
1103     } *mem_list_v2;
1104     const DWORD magic_MEML = 'M' << 24 | 'E' << 16 | 'M' << 8 | 'L';
1105
1106     StubDesc = Object_StubDesc;
1107     NdrClientInitializeNew(&RpcMessage, &StubMsg, &StubDesc, 0);
1108
1109     ok(StubMsg.pMemoryList == NULL, "memlist %p\n", StubMsg.pMemoryList);
1110     my_alloc_called = my_free_called = 0;
1111     p1 = NdrAllocate(&StubMsg, 10);
1112     p2 = NdrAllocate(&StubMsg, 24);
1113     ok(my_alloc_called == 2, "alloc called %d\n", my_alloc_called);
1114     ok(StubMsg.pMemoryList != NULL, "StubMsg.pMemoryList NULL\n");
1115     if(StubMsg.pMemoryList)
1116     {
1117         mem_list_v2 = StubMsg.pMemoryList;
1118         if (mem_list_v2->size == 24)
1119         {
1120             trace("v2 mem list format\n");
1121             ok((char *)mem_list_v2 == (char *)p2 + 24, "expected mem_list_v2 pointer %p, but got %p\n", (char *)p2 + 24, mem_list_v2);
1122             ok(mem_list_v2->magic == magic_MEML, "magic %08x\n", mem_list_v2->magic);
1123             ok(mem_list_v2->size == 24, "wrong size for p2 %d\n", mem_list_v2->size);
1124             ok(mem_list_v2->unknown == 0, "wrong unknown for p2 0x%x\n", mem_list_v2->unknown);
1125             ok(mem_list_v2->next != NULL, "next NULL\n");
1126             mem_list_v2 = mem_list_v2->next;
1127             if(mem_list_v2)
1128             {
1129                 ok((char *)mem_list_v2 == (char *)p1 + 16, "expected mem_list_v2 pointer %p, but got %p\n", (char *)p1 + 16, mem_list_v2);
1130                 ok(mem_list_v2->magic == magic_MEML, "magic %08x\n", mem_list_v2->magic);
1131                 ok(mem_list_v2->size == 16, "wrong size for p1 %d\n", mem_list_v2->size);
1132                 ok(mem_list_v2->unknown == 0, "wrong unknown for p1 0x%x\n", mem_list_v2->unknown);
1133                 ok(mem_list_v2->next == NULL, "next %p\n", mem_list_v2->next);
1134             }
1135         }
1136         else
1137         {
1138             trace("v1 mem list format\n");
1139             mem_list_v1 = StubMsg.pMemoryList;
1140             ok(mem_list_v1->magic == magic_MEML, "magic %08x\n", mem_list_v1->magic);
1141             ok(mem_list_v1->ptr == p2, "ptr != p2\n");
1142             ok(mem_list_v1->next != NULL, "next NULL\n");
1143             mem_list_v1 = mem_list_v1->next;
1144             if(mem_list_v1)
1145             {
1146                 ok(mem_list_v1->magic == magic_MEML, "magic %08x\n", mem_list_v1->magic);
1147                 ok(mem_list_v1->ptr == p1, "ptr != p1\n");
1148                 ok(mem_list_v1->next == NULL, "next %p\n", mem_list_v1->next);
1149             }
1150         }
1151     }
1152     /* NdrFree isn't exported so we can't test free'ing */
1153 }
1154
1155 static void test_conformant_array(void)
1156 {
1157     RPC_MESSAGE RpcMessage;
1158     MIDL_STUB_MESSAGE StubMsg;
1159     MIDL_STUB_DESC StubDesc;
1160     void *ptr;
1161     unsigned char *mem, *mem_orig;
1162     unsigned char memsrc[20];
1163
1164     static const unsigned char fmtstr_conf_array[] =
1165     {
1166         0x1b,              /* FC_CARRAY */
1167         0x0,               /* align */
1168         NdrFcShort( 0x1 ), /* elem size */
1169         0x40,              /* Corr desc:  const */
1170         0x0,
1171         NdrFcShort(0x10),  /* const = 0x10 */
1172         0x1,               /* FC_BYTE */
1173         0x5b               /* FC_END */
1174     };
1175
1176     StubDesc = Object_StubDesc;
1177     StubDesc.pFormatTypes = fmtstr_conf_array;
1178
1179     NdrClientInitializeNew(
1180                            &RpcMessage,
1181                            &StubMsg,
1182                            &StubDesc,
1183                            0);
1184
1185     StubMsg.BufferLength = 0;
1186     NdrConformantArrayBufferSize( &StubMsg,
1187                           memsrc,
1188                           fmtstr_conf_array );
1189     ok(StubMsg.BufferLength >= 20, "length %d\n", StubMsg.BufferLength);
1190
1191     /*NdrGetBuffer(&_StubMsg, _StubMsg.BufferLength, NULL);*/
1192     StubMsg.RpcMsg->Buffer = StubMsg.BufferStart = StubMsg.Buffer = HeapAlloc(GetProcessHeap(), 0, StubMsg.BufferLength);
1193     StubMsg.BufferEnd = StubMsg.BufferStart + StubMsg.BufferLength;
1194
1195     ptr = NdrConformantArrayMarshall( &StubMsg,  memsrc, fmtstr_conf_array );
1196     ok(ptr == NULL, "ret %p\n", ptr);
1197     ok(StubMsg.Buffer - StubMsg.BufferStart == 20, "Buffer %p Start %p len %d\n", StubMsg.Buffer, StubMsg.BufferStart, 20);
1198     ok(!memcmp(StubMsg.BufferStart + 4, memsrc, 16), "incorrectly marshaled\n");
1199
1200     StubMsg.Buffer = StubMsg.BufferStart;
1201     StubMsg.MemorySize = 0;
1202     mem = NULL;
1203
1204     /* Client */
1205     my_alloc_called = 0;
1206     /* passing mem == NULL with must_alloc == 0 crashes under Windows */
1207     NdrConformantArrayUnmarshall( &StubMsg, &mem, fmtstr_conf_array, 1);
1208     ok(mem != NULL, "mem not alloced\n");
1209     ok(mem != StubMsg.BufferStart + 4, "mem pointing at buffer\n");
1210     ok(my_alloc_called == 1, "alloc called %d\n", my_alloc_called);
1211
1212     my_alloc_called = 0;
1213     StubMsg.Buffer = StubMsg.BufferStart;
1214     mem_orig = mem;
1215     NdrConformantArrayUnmarshall( &StubMsg, &mem, fmtstr_conf_array, 0);
1216     ok(mem == mem_orig, "mem alloced\n");
1217     ok(mem != StubMsg.BufferStart + 4, "mem pointing at buffer\n");
1218     ok(my_alloc_called == 0, "alloc called %d\n", my_alloc_called);
1219
1220     my_alloc_called = 0;
1221     StubMsg.Buffer = StubMsg.BufferStart;
1222     NdrConformantArrayUnmarshall( &StubMsg, &mem, fmtstr_conf_array, 1);
1223     ok(mem != mem_orig, "mem not alloced\n");
1224     ok(mem != StubMsg.BufferStart + 4, "mem pointing at buffer\n");
1225     ok(my_alloc_called == 1, "alloc called %d\n", my_alloc_called);
1226
1227     my_free_called = 0;
1228     StubMsg.Buffer = StubMsg.BufferStart;
1229     NdrConformantArrayFree( &StubMsg, mem, fmtstr_conf_array );
1230     ok(my_free_called == 0, "free called %d\n", my_free_called);
1231     StubMsg.pfnFree(mem);
1232
1233     /* Server */
1234     my_alloc_called = 0;
1235     StubMsg.IsClient = 0;
1236     mem = NULL;
1237     StubMsg.Buffer = StubMsg.BufferStart;
1238     NdrConformantArrayUnmarshall( &StubMsg, &mem, fmtstr_conf_array, 0);
1239     ok(mem == StubMsg.BufferStart + 4, "mem not pointing at buffer\n");
1240     ok(my_alloc_called == 0, "alloc called %d\n", my_alloc_called);
1241     my_alloc_called = 0;
1242     mem = NULL;
1243     StubMsg.Buffer = StubMsg.BufferStart;
1244     NdrConformantArrayUnmarshall( &StubMsg, &mem, fmtstr_conf_array, 1);
1245     ok(mem != StubMsg.BufferStart + 4, "mem pointing at buffer\n");
1246     ok(my_alloc_called == 1, "alloc called %d\n", my_alloc_called);
1247     StubMsg.pfnFree(mem);
1248
1249     my_alloc_called = 0;
1250     mem = mem_orig;
1251     StubMsg.Buffer = StubMsg.BufferStart;
1252     NdrConformantArrayUnmarshall( &StubMsg, &mem, fmtstr_conf_array, 0);
1253     ok(mem == mem_orig, "mem alloced\n");
1254     ok(my_alloc_called == 0, "alloc called %d\n", my_alloc_called);
1255
1256     my_alloc_called = 0;
1257     mem = mem_orig;
1258     StubMsg.Buffer = StubMsg.BufferStart;
1259     NdrConformantArrayUnmarshall( &StubMsg, &mem, fmtstr_conf_array, 1);
1260     ok(mem != StubMsg.BufferStart + 4, "mem pointing at buffer\n");
1261     ok(my_alloc_called == 1, "alloc called %d\n", my_alloc_called);
1262     StubMsg.pfnFree(mem);
1263     StubMsg.pfnFree(mem_orig);
1264
1265     HeapFree(GetProcessHeap(), 0, StubMsg.RpcMsg->Buffer);
1266 }
1267
1268 static void test_conformant_string(void)
1269 {
1270     RPC_MESSAGE RpcMessage;
1271     MIDL_STUB_MESSAGE StubMsg;
1272     MIDL_STUB_DESC StubDesc;
1273     void *ptr;
1274     unsigned char *mem, *mem_orig;
1275     char memsrc[] = "This is a test string";
1276
1277     static const unsigned char fmtstr_conf_str[] =
1278     {
1279                         0x11, 0x8,      /* FC_RP [simple_pointer] */
1280                         0x22,           /* FC_C_CSTRING */
1281                         0x5c,           /* FC_PAD */
1282     };
1283
1284     StubDesc = Object_StubDesc;
1285     StubDesc.pFormatTypes = fmtstr_conf_str;
1286
1287     NdrClientInitializeNew(
1288                            &RpcMessage,
1289                            &StubMsg,
1290                            &StubDesc,
1291                            0);
1292
1293     StubMsg.BufferLength = 0;
1294     NdrPointerBufferSize( &StubMsg,
1295                           (unsigned char *)memsrc,
1296                           fmtstr_conf_str );
1297     ok(StubMsg.BufferLength >= sizeof(memsrc) + 12, "length %d\n", StubMsg.BufferLength);
1298
1299     /*NdrGetBuffer(&_StubMsg, _StubMsg.BufferLength, NULL);*/
1300     StubMsg.RpcMsg->Buffer = StubMsg.BufferStart = StubMsg.Buffer = HeapAlloc(GetProcessHeap(), 0, StubMsg.BufferLength);
1301     StubMsg.BufferEnd = StubMsg.BufferStart + StubMsg.BufferLength;
1302
1303     ptr = NdrPointerMarshall( &StubMsg, (unsigned char *)memsrc, fmtstr_conf_str );
1304     ok(ptr == NULL, "ret %p\n", ptr);
1305     ok(StubMsg.Buffer - StubMsg.BufferStart == sizeof(memsrc) + 12, "Buffer %p Start %p len %d\n",
1306        StubMsg.Buffer, StubMsg.BufferStart, StubMsg.Buffer - StubMsg.BufferStart);
1307     ok(!memcmp(StubMsg.BufferStart + 12, memsrc, sizeof(memsrc)), "incorrectly marshaled\n");
1308
1309     StubMsg.Buffer = StubMsg.BufferStart;
1310     StubMsg.MemorySize = 0;
1311     mem = NULL;
1312
1313     /* Client */
1314     my_alloc_called = 0;
1315     StubMsg.Buffer = StubMsg.BufferStart;
1316     mem = mem_orig = HeapAlloc(GetProcessHeap(), 0, sizeof(memsrc));
1317     NdrPointerUnmarshall( &StubMsg, &mem, fmtstr_conf_str, 0);
1318     ok(mem == mem_orig, "mem not alloced\n");
1319     ok(my_alloc_called == 0, "alloc called %d\n", my_alloc_called);
1320
1321     my_alloc_called = 0;
1322     StubMsg.Buffer = StubMsg.BufferStart;
1323     NdrPointerUnmarshall( &StubMsg, &mem, fmtstr_conf_str, 1);
1324 todo_wine {
1325     ok(mem == mem_orig, "mem not alloced\n");
1326     ok(my_alloc_called == 0, "alloc called %d\n", my_alloc_called);
1327 }
1328
1329     my_free_called = 0;
1330     StubMsg.Buffer = StubMsg.BufferStart;
1331     NdrPointerFree( &StubMsg, mem, fmtstr_conf_str );
1332     ok(my_free_called == 1, "free called %d\n", my_free_called);
1333
1334     mem = my_alloc(10);
1335     my_free_called = 0;
1336     StubMsg.Buffer = StubMsg.BufferStart;
1337     NdrPointerFree( &StubMsg, mem, fmtstr_conf_str );
1338     ok(my_free_called == 1, "free called %d\n", my_free_called);
1339
1340     /* Server */
1341     my_alloc_called = 0;
1342     StubMsg.IsClient = 0;
1343     mem = NULL;
1344     StubMsg.Buffer = StubMsg.BufferStart;
1345     NdrPointerUnmarshall( &StubMsg, &mem, fmtstr_conf_str, 0);
1346     ok(mem == StubMsg.BufferStart + 12, "mem not pointing at buffer\n");
1347     ok(my_alloc_called == 0, "alloc called %d\n", my_alloc_called);
1348
1349     my_alloc_called = 0;
1350     mem = NULL;
1351     StubMsg.Buffer = StubMsg.BufferStart;
1352     NdrPointerUnmarshall( &StubMsg, &mem, fmtstr_conf_str, 1);
1353 todo_wine {
1354     ok(mem == StubMsg.BufferStart + 12, "mem not pointing at buffer\n");
1355     ok(my_alloc_called == 0, "alloc called %d\n", my_alloc_called);
1356 }
1357
1358     my_alloc_called = 0;
1359     mem = mem_orig;
1360     StubMsg.Buffer = StubMsg.BufferStart;
1361     NdrPointerUnmarshall( &StubMsg, &mem, fmtstr_conf_str, 0);
1362     ok(mem == StubMsg.BufferStart + 12, "mem not pointing at buffer\n");
1363     ok(my_alloc_called == 0, "alloc called %d\n", my_alloc_called);
1364
1365     my_alloc_called = 0;
1366     mem = mem_orig;
1367     StubMsg.Buffer = StubMsg.BufferStart;
1368     NdrPointerUnmarshall( &StubMsg, &mem, fmtstr_conf_str, 1);
1369 todo_wine {
1370     ok(mem == StubMsg.BufferStart + 12, "mem not pointing at buffer\n");
1371     ok(my_alloc_called == 0, "alloc called %d\n", my_alloc_called);
1372 }
1373
1374     mem = my_alloc(10);
1375     my_free_called = 0;
1376     StubMsg.Buffer = StubMsg.BufferStart;
1377     NdrPointerFree( &StubMsg, mem, fmtstr_conf_str );
1378     ok(my_free_called == 1, "free called %d\n", my_free_called);
1379
1380     HeapFree(GetProcessHeap(), 0, mem_orig);
1381     HeapFree(GetProcessHeap(), 0, StubMsg.RpcMsg->Buffer);
1382 }
1383
1384 static void test_nonconformant_string(void)
1385 {
1386     RPC_MESSAGE RpcMessage;
1387     MIDL_STUB_MESSAGE StubMsg;
1388     MIDL_STUB_DESC StubDesc;
1389     void *ptr;
1390     unsigned char *mem, *mem_orig;
1391     unsigned char memsrc[10] = "This is";
1392     unsigned char memsrc2[10] = "This is a";
1393
1394     static const unsigned char fmtstr_nonconf_str[] =
1395     {
1396                         0x26,           /* FC_CSTRING */
1397                         0x5c,           /* FC_PAD */
1398                         NdrFcShort( 0xa ),      /* 10 */
1399     };
1400
1401     StubDesc = Object_StubDesc;
1402     StubDesc.pFormatTypes = fmtstr_nonconf_str;
1403
1404     /* length < size */
1405     NdrClientInitializeNew(
1406                            &RpcMessage,
1407                            &StubMsg,
1408                            &StubDesc,
1409                            0);
1410
1411     StubMsg.BufferLength = 0;
1412
1413     NdrNonConformantStringBufferSize( &StubMsg,
1414                           (unsigned char *)memsrc,
1415                           fmtstr_nonconf_str );
1416     ok(StubMsg.BufferLength >= strlen((char *)memsrc) + 1 + 8, "length %d\n", StubMsg.BufferLength);
1417
1418     /*NdrGetBuffer(&_StubMsg, _StubMsg.BufferLength, NULL);*/
1419     StubMsg.RpcMsg->Buffer = StubMsg.BufferStart = StubMsg.Buffer = HeapAlloc(GetProcessHeap(), 0, StubMsg.BufferLength);
1420     StubMsg.BufferEnd = StubMsg.BufferStart + StubMsg.BufferLength;
1421
1422     ptr = NdrNonConformantStringMarshall( &StubMsg, (unsigned char *)memsrc, fmtstr_nonconf_str );
1423     ok(ptr == NULL, "ret %p\n", ptr);
1424     ok(StubMsg.Buffer - StubMsg.BufferStart == strlen((char *)memsrc) + 1 + 8, "Buffer %p Start %p len %d\n",
1425        StubMsg.Buffer, StubMsg.BufferStart, StubMsg.Buffer - StubMsg.BufferStart);
1426     ok(!memcmp(StubMsg.BufferStart + 8, memsrc, strlen((char *)memsrc) + 1), "incorrectly marshaled\n");
1427
1428     StubMsg.Buffer = StubMsg.BufferStart;
1429     StubMsg.MemorySize = 0;
1430     mem = NULL;
1431
1432     /* Client */
1433     my_alloc_called = 0;
1434     StubMsg.Buffer = StubMsg.BufferStart;
1435     mem = mem_orig = HeapAlloc(GetProcessHeap(), 0, sizeof(memsrc));
1436     NdrNonConformantStringUnmarshall( &StubMsg, &mem, fmtstr_nonconf_str, 0);
1437     ok(mem == mem_orig, "mem alloced\n");
1438     ok(my_alloc_called == 0, "alloc called %d\n", my_alloc_called);
1439
1440     my_alloc_called = 0;
1441     StubMsg.Buffer = StubMsg.BufferStart;
1442     NdrNonConformantStringUnmarshall( &StubMsg, &mem, fmtstr_nonconf_str, 1);
1443     todo_wine
1444     ok(mem == mem_orig, "mem alloced\n");
1445     todo_wine
1446     ok(my_alloc_called == 0, "alloc called %d\n", my_alloc_called);
1447
1448     /* Server */
1449     my_alloc_called = 0;
1450     StubMsg.IsClient = 0;
1451     mem = NULL;
1452     StubMsg.Buffer = StubMsg.BufferStart;
1453     NdrNonConformantStringUnmarshall( &StubMsg, &mem, fmtstr_nonconf_str, 0);
1454     ok(mem != mem_orig, "mem not alloced\n");
1455     ok(mem != StubMsg.BufferStart + 8, "mem pointing at buffer\n");
1456     ok(my_alloc_called == 1, "alloc called %d\n", my_alloc_called);
1457     NdrOleFree(mem);
1458
1459     my_alloc_called = 0;
1460     mem = mem_orig;
1461     StubMsg.Buffer = StubMsg.BufferStart;
1462     NdrNonConformantStringUnmarshall( &StubMsg, &mem, fmtstr_nonconf_str, 0);
1463     ok(mem == mem_orig, "mem alloced\n");
1464     ok(my_alloc_called == 0, "alloc called %d\n", my_alloc_called);
1465
1466     my_alloc_called = 0;
1467     mem = mem_orig;
1468     StubMsg.Buffer = StubMsg.BufferStart;
1469     NdrNonConformantStringUnmarshall( &StubMsg, &mem, fmtstr_nonconf_str, 1);
1470     todo_wine
1471     ok(mem == mem_orig, "mem alloced\n");
1472     todo_wine
1473     ok(my_alloc_called == 0, "alloc called %d\n", my_alloc_called);
1474
1475     HeapFree(GetProcessHeap(), 0, mem_orig);
1476     HeapFree(GetProcessHeap(), 0, StubMsg.RpcMsg->Buffer);
1477
1478     /* length = size */
1479     NdrClientInitializeNew(
1480                            &RpcMessage,
1481                            &StubMsg,
1482                            &StubDesc,
1483                            0);
1484
1485     StubMsg.BufferLength = 0;
1486
1487     NdrNonConformantStringBufferSize( &StubMsg,
1488                           (unsigned char *)memsrc2,
1489                           fmtstr_nonconf_str );
1490     ok(StubMsg.BufferLength >= strlen((char *)memsrc2) + 1 + 8, "length %d\n", StubMsg.BufferLength);
1491
1492     /*NdrGetBuffer(&_StubMsg, _StubMsg.BufferLength, NULL);*/
1493     StubMsg.RpcMsg->Buffer = StubMsg.BufferStart = StubMsg.Buffer = HeapAlloc(GetProcessHeap(), 0, StubMsg.BufferLength);
1494     StubMsg.BufferEnd = StubMsg.BufferStart + StubMsg.BufferLength;
1495
1496     ptr = NdrNonConformantStringMarshall( &StubMsg, (unsigned char *)memsrc2, fmtstr_nonconf_str );
1497     ok(ptr == NULL, "ret %p\n", ptr);
1498     ok(StubMsg.Buffer - StubMsg.BufferStart == strlen((char *)memsrc2) + 1 + 8, "Buffer %p Start %p len %d\n",
1499        StubMsg.Buffer, StubMsg.BufferStart, StubMsg.Buffer - StubMsg.BufferStart);
1500     ok(!memcmp(StubMsg.BufferStart + 8, memsrc2, strlen((char *)memsrc2) + 1), "incorrectly marshaled\n");
1501
1502     StubMsg.Buffer = StubMsg.BufferStart;
1503     StubMsg.MemorySize = 0;
1504     mem = NULL;
1505
1506     /* Client */
1507     my_alloc_called = 0;
1508     StubMsg.Buffer = StubMsg.BufferStart;
1509     mem = mem_orig = HeapAlloc(GetProcessHeap(), 0, sizeof(memsrc));
1510     NdrNonConformantStringUnmarshall( &StubMsg, &mem, fmtstr_nonconf_str, 0);
1511     ok(mem == mem_orig, "mem alloced\n");
1512     ok(my_alloc_called == 0, "alloc called %d\n", my_alloc_called);
1513
1514     my_alloc_called = 0;
1515     StubMsg.Buffer = StubMsg.BufferStart;
1516     NdrNonConformantStringUnmarshall( &StubMsg, &mem, fmtstr_nonconf_str, 1);
1517     todo_wine
1518     ok(mem == mem_orig, "mem alloced\n");
1519     todo_wine
1520     ok(my_alloc_called == 0, "alloc called %d\n", my_alloc_called);
1521
1522     /* Server */
1523     my_alloc_called = 0;
1524     StubMsg.IsClient = 0;
1525     mem = NULL;
1526     StubMsg.Buffer = StubMsg.BufferStart;
1527     NdrNonConformantStringUnmarshall( &StubMsg, &mem, fmtstr_nonconf_str, 0);
1528     ok(mem != mem_orig, "mem not alloced\n");
1529     ok(mem != StubMsg.BufferStart + 8, "mem pointing at buffer\n");
1530     ok(my_alloc_called == 1, "alloc called %d\n", my_alloc_called);
1531     NdrOleFree(mem);
1532
1533     my_alloc_called = 0;
1534     mem = mem_orig;
1535     StubMsg.Buffer = StubMsg.BufferStart;
1536     NdrNonConformantStringUnmarshall( &StubMsg, &mem, fmtstr_nonconf_str, 0);
1537     ok(mem == mem_orig, "mem alloced\n");
1538     ok(my_alloc_called == 0, "alloc called %d\n", my_alloc_called);
1539
1540     my_alloc_called = 0;
1541     mem = mem_orig;
1542     StubMsg.Buffer = StubMsg.BufferStart;
1543     NdrNonConformantStringUnmarshall( &StubMsg, &mem, fmtstr_nonconf_str, 1);
1544     todo_wine
1545     ok(mem == mem_orig, "mem alloced\n");
1546     todo_wine
1547     ok(my_alloc_called == 0, "alloc called %d\n", my_alloc_called);
1548
1549     HeapFree(GetProcessHeap(), 0, mem_orig);
1550     HeapFree(GetProcessHeap(), 0, StubMsg.RpcMsg->Buffer);
1551 }
1552
1553 static void test_ndr_buffer(void)
1554 {
1555     static unsigned char ncalrpc[] = "ncalrpc";
1556     static unsigned char endpoint[] = "winetest:" __FILE__;
1557     RPC_MESSAGE RpcMessage;
1558     MIDL_STUB_MESSAGE StubMsg;
1559     MIDL_STUB_DESC StubDesc = Object_StubDesc;
1560     unsigned char *ret;
1561     unsigned char *binding;
1562     RPC_BINDING_HANDLE Handle;
1563     RPC_STATUS status;
1564
1565     StubDesc.RpcInterfaceInformation = (void *)&IFoo___RpcServerInterface;
1566
1567     ok(RPC_S_OK == RpcServerUseProtseqEp(ncalrpc, 20, endpoint, NULL), "RpcServerUseProtseqEp\n");
1568     ok(RPC_S_OK == RpcServerRegisterIf(IFoo_v0_0_s_ifspec, NULL, NULL), "RpcServerRegisterIf\n");
1569     ok(RPC_S_OK == RpcServerListen(1, 20, TRUE), "RpcServerListen\n");
1570
1571     status = RpcStringBindingCompose(NULL, ncalrpc, NULL, endpoint, NULL, &binding);
1572     ok(status == RPC_S_OK, "RpcStringBindingCompose failed (%lu)\n", status);
1573
1574     status = RpcBindingFromStringBinding(binding, &Handle);
1575     ok(status == RPC_S_OK, "RpcBindingFromStringBinding failed (%lu)\n", status);
1576
1577     NdrClientInitializeNew(&RpcMessage, &StubMsg, &StubDesc, 5);
1578
1579     ret = NdrGetBuffer(&StubMsg, 10, Handle);
1580     ok(ret == StubMsg.Buffer, "NdrGetBuffer should have returned the same value as StubMsg.Buffer instead of %p\n", ret);
1581     ok(RpcMessage.Handle != NULL, "RpcMessage.Handle should not have been NULL\n");
1582     ok(RpcMessage.Buffer != NULL, "RpcMessage.Buffer should not have been NULL\n");
1583     ok(RpcMessage.BufferLength == 10, "RpcMessage.BufferLength should have been 10 instead of %d\n", RpcMessage.BufferLength);
1584     ok(RpcMessage.RpcFlags == 0, "RpcMessage.RpcFlags should have been 0x0 instead of 0x%lx\n", RpcMessage.RpcFlags);
1585     ok(StubMsg.Buffer != NULL, "Buffer should not have been NULL\n");
1586     ok(!StubMsg.BufferStart, "BufferStart should have been NULL instead of %p\n", StubMsg.BufferStart);
1587     ok(!StubMsg.BufferEnd, "BufferEnd should have been NULL instead of %p\n", StubMsg.BufferEnd);
1588 todo_wine
1589     ok(StubMsg.BufferLength == 0, "BufferLength should have left as 0 instead of being set to %d\n", StubMsg.BufferLength);
1590     ok(StubMsg.fBufferValid == TRUE, "fBufferValid should have been TRUE instead of 0x%x\n", StubMsg.fBufferValid);
1591
1592     StubMsg.BufferLength = 1;
1593     NdrFreeBuffer(&StubMsg);
1594     ok(RpcMessage.Handle != NULL, "RpcMessage.Handle should not have been NULL\n");
1595     ok(RpcMessage.Buffer != NULL, "RpcMessage.Buffer should not have been NULL\n");
1596     ok(RpcMessage.BufferLength == 10, "RpcMessage.BufferLength should have been left as 10 instead of %d\n", RpcMessage.BufferLength);
1597     ok(StubMsg.Buffer != NULL, "Buffer should not have been NULL\n");
1598     ok(StubMsg.BufferLength == 1, "BufferLength should have left as 1 instead of being set to %d\n", StubMsg.BufferLength);
1599     ok(StubMsg.fBufferValid == FALSE, "fBufferValid should have been FALSE instead of 0x%x\n", StubMsg.fBufferValid);
1600
1601     /* attempt double-free */
1602     NdrFreeBuffer(&StubMsg);
1603
1604     status = RpcServerUnregisterIf(NULL, NULL, FALSE);
1605     ok(status == RPC_S_OK, "RpcServerUnregisterIf failed (%lu)\n", status);
1606 }
1607
1608 static void test_NdrMapCommAndFaultStatus(void)
1609 {
1610     RPC_STATUS rpc_status;
1611     MIDL_STUB_MESSAGE StubMsg;
1612     RPC_MESSAGE RpcMessage;
1613
1614     NdrClientInitializeNew(&RpcMessage, &StubMsg, &Object_StubDesc, 5);
1615
1616     for (rpc_status = 0; rpc_status < 10000; rpc_status++)
1617     {
1618         RPC_STATUS status;
1619         ULONG comm_status = 0;
1620         ULONG fault_status = 0;
1621         ULONG expected_comm_status = 0;
1622         ULONG expected_fault_status = 0;
1623         status = NdrMapCommAndFaultStatus(&StubMsg, &comm_status, &fault_status, rpc_status);
1624         ok(status == RPC_S_OK, "NdrMapCommAndFaultStatus failed with error %ld\n", status);
1625         switch (rpc_status)
1626         {
1627         case ERROR_INVALID_HANDLE:
1628         case RPC_S_INVALID_BINDING:
1629         case RPC_S_UNKNOWN_IF:
1630         case RPC_S_SERVER_UNAVAILABLE:
1631         case RPC_S_SERVER_TOO_BUSY:
1632         case RPC_S_CALL_FAILED_DNE:
1633         case RPC_S_PROTOCOL_ERROR:
1634         case RPC_S_UNSUPPORTED_TRANS_SYN:
1635         case RPC_S_UNSUPPORTED_TYPE:
1636         case RPC_S_PROCNUM_OUT_OF_RANGE:
1637         case EPT_S_NOT_REGISTERED:
1638         case RPC_S_COMM_FAILURE:
1639             expected_comm_status = rpc_status;
1640             break;
1641         default:
1642             expected_fault_status = rpc_status;
1643         }
1644         ok(comm_status == expected_comm_status, "NdrMapCommAndFaultStatus should have mapped %ld to comm status %d instead of %d\n",
1645             rpc_status, expected_comm_status, comm_status);
1646         ok(fault_status == expected_fault_status, "NdrMapCommAndFaultStatus should have mapped %ld to fault status %d instead of %d\n",
1647             rpc_status, expected_fault_status, fault_status);
1648     }
1649 }
1650
1651 START_TEST( ndr_marshall )
1652 {
1653     test_ndr_simple_type();
1654     test_simple_types();
1655     test_simple_struct();
1656     test_fullpointer_xlat();
1657     test_client_init();
1658     test_server_init();
1659     test_ndr_allocate();
1660     test_conformant_array();
1661     test_conformant_string();
1662     test_nonconformant_string();
1663     test_ndr_buffer();
1664     test_NdrMapCommAndFaultStatus();
1665 }