[RPCRT4] Sync with Wine Staging 2.9. CORE-13362
[reactos.git] / rostests / winetests / rpcrt4 / server.c
1 /*
2 * Tests for WIDL and RPC server/clients.
3 *
4 * Copyright (C) Google 2007 (Dan Hipschman)
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 #define COBJMACROS
22 #include <windows.h>
23 #include <ole2.h>
24 #include <oleauto.h>
25 #include <secext.h>
26 #include <rpcdce.h>
27 #include <netfw.h>
28 #include "wine/test.h"
29 #include "server_s.h"
30 #include "server_defines.h"
31
32 #include <stddef.h>
33 #include <stdio.h>
34 #include <stdlib.h>
35
36 #define PORT "4114"
37 #define PIPE "\\pipe\\wine_rpcrt4_test"
38
39 #define INT_CODE 4198
40
41 static const char *progname;
42 static BOOL old_windows_version;
43
44 static HANDLE stop_event;
45
46 static void (WINAPI *pNDRSContextMarshall2)(RPC_BINDING_HANDLE, NDR_SCONTEXT, void*, NDR_RUNDOWN, void*, ULONG);
47 static NDR_SCONTEXT (WINAPI *pNDRSContextUnmarshall2)(RPC_BINDING_HANDLE, void*, ULONG, void*, ULONG);
48 static RPC_STATUS (WINAPI *pRpcServerRegisterIfEx)(RPC_IF_HANDLE,UUID*, RPC_MGR_EPV*, unsigned int,
49 unsigned int,RPC_IF_CALLBACK_FN*);
50 static RPC_STATUS (WINAPI *pRpcBindingSetAuthInfoExA)(RPC_BINDING_HANDLE, RPC_CSTR, ULONG, ULONG,
51 RPC_AUTH_IDENTITY_HANDLE, ULONG, RPC_SECURITY_QOS *);
52 static RPC_STATUS (WINAPI *pRpcServerRegisterAuthInfoA)(RPC_CSTR, ULONG, RPC_AUTH_KEY_RETRIEVAL_FN, LPVOID);
53
54 static char *domain_and_user;
55
56 /* type check statements generated in header file */
57 fnprintf *p_printf = printf;
58
59 static const WCHAR helloW[] = { 'H','e','l','l','o',0 };
60 static const WCHAR worldW[] = { 'W','o','r','l','d','!',0 };
61
62 static void InitFunctionPointers(void)
63 {
64 HMODULE hrpcrt4 = GetModuleHandleA("rpcrt4.dll");
65
66 pNDRSContextMarshall2 = (void *)GetProcAddress(hrpcrt4, "NDRSContextMarshall2");
67 pNDRSContextUnmarshall2 = (void *)GetProcAddress(hrpcrt4, "NDRSContextUnmarshall2");
68 pRpcServerRegisterIfEx = (void *)GetProcAddress(hrpcrt4, "RpcServerRegisterIfEx");
69 pRpcBindingSetAuthInfoExA = (void *)GetProcAddress(hrpcrt4, "RpcBindingSetAuthInfoExA");
70 pRpcServerRegisterAuthInfoA = (void *)GetProcAddress(hrpcrt4, "RpcServerRegisterAuthInfoA");
71
72 if (!pNDRSContextMarshall2) old_windows_version = TRUE;
73 }
74
75 void __RPC_FAR *__RPC_USER
76 midl_user_allocate(SIZE_T n)
77 {
78 return HeapAlloc(GetProcessHeap(), 0, n);
79 }
80
81 void __RPC_USER
82 midl_user_free(void __RPC_FAR *p)
83 {
84 HeapFree(GetProcessHeap(), 0, p);
85 }
86
87 static char *
88 xstrdup(const char *s)
89 {
90 char *d = HeapAlloc(GetProcessHeap(), 0, strlen(s) + 1);
91 strcpy(d, s);
92 return d;
93 }
94
95 int __cdecl s_int_return(void)
96 {
97 return INT_CODE;
98 }
99
100 int __cdecl s_square(int x)
101 {
102 return x * x;
103 }
104
105 int __cdecl s_sum(int x, int y)
106 {
107 return x + y;
108 }
109
110 signed char __cdecl s_sum_char(signed char x, signed char y)
111 {
112 return x + y;
113 }
114
115 short __cdecl s_sum_short(short x, short y)
116 {
117 return x + y;
118 }
119
120 int __cdecl s_sum_float(float x, float y)
121 {
122 return x + y;
123 }
124
125 int __cdecl s_sum_double_int(int x, double y)
126 {
127 return x + y;
128 }
129
130 hyper __cdecl s_sum_hyper(hyper x, hyper y)
131 {
132 return x + y;
133 }
134
135 int __cdecl s_sum_hyper_int(hyper x, hyper y)
136 {
137 return x + y;
138 }
139
140 int __cdecl s_sum_char_hyper(signed char x, hyper y)
141 {
142 return x + y;
143 }
144
145 void __cdecl s_square_out(int x, int *y)
146 {
147 *y = s_square(x);
148 }
149
150 void __cdecl s_square_ref(int *x)
151 {
152 *x = s_square(*x);
153 }
154
155 int __cdecl s_str_length(const char *s)
156 {
157 return strlen(s);
158 }
159
160 int __cdecl s_str_t_length(str_t s)
161 {
162 return strlen(s);
163 }
164
165 int __cdecl s_cstr_length(const char *s, int n)
166 {
167 int len = 0;
168 while (0 < n-- && *s++)
169 ++len;
170 return len;
171 }
172
173 int __cdecl s_dot_self(vector_t *v)
174 {
175 return s_square(v->x) + s_square(v->y) + s_square(v->z);
176 }
177
178 double __cdecl s_square_half(double x, double *y)
179 {
180 *y = x / 2.0;
181 return x * x;
182 }
183
184 float __cdecl s_square_half_float(float x, float *y)
185 {
186 *y = x / 2.0f;
187 return x * x;
188 }
189
190 LONG __cdecl s_square_half_long(LONG x, LONG *y)
191 {
192 *y = x / 2;
193 return x * x;
194 }
195
196 int __cdecl s_sum_fixed_array(int a[5])
197 {
198 return a[0] + a[1] + a[2] + a[3] + a[4];
199 }
200
201 int __cdecl s_pints_sum(pints_t *pints)
202 {
203 return *pints->pi + **pints->ppi + ***pints->pppi;
204 }
205
206 double __cdecl s_ptypes_sum(ptypes_t *pt)
207 {
208 return *pt->pc + *pt->ps + *pt->pl + *pt->pf + *pt->pd;
209 }
210
211 int __cdecl s_dot_pvectors(pvectors_t *p)
212 {
213 return p->pu->x * (*p->pv)->x + p->pu->y * (*p->pv)->y + p->pu->z * (*p->pv)->z;
214 }
215
216 int __cdecl s_sum_sp(sp_t *sp)
217 {
218 return sp->x + sp->s->x;
219 }
220
221 double __cdecl s_square_sun(sun_t *su)
222 {
223 switch (su->s)
224 {
225 case SUN_I: return su->u.i * su->u.i;
226 case SUN_F1:
227 case SUN_F2: return su->u.f * su->u.f;
228 case SUN_PI: return (*su->u.pi) * (*su->u.pi);
229 default:
230 return 0.0;
231 }
232 }
233
234 int __cdecl s_test_list_length(test_list_t *list)
235 {
236 return (list->t == TL_LIST
237 ? 1 + s_test_list_length(list->u.tail)
238 : 0);
239 }
240
241 int __cdecl s_sum_fixed_int_3d(int m[2][3][4])
242 {
243 int i, j, k;
244 int sum = 0;
245
246 for (i = 0; i < 2; ++i)
247 for (j = 0; j < 3; ++j)
248 for (k = 0; k < 4; ++k)
249 sum += m[i][j][k];
250
251 return sum;
252 }
253
254 int __cdecl s_sum_conf_array(int x[], int n)
255 {
256 int *p = x, *end = p + n;
257 int sum = 0;
258
259 while (p < end)
260 sum += *p++;
261
262 return sum;
263 }
264
265 int __cdecl s_sum_conf_ptr_by_conf_ptr(int n1, int *n2_then_x1, int *x2)
266 {
267 int i;
268 int sum = 0;
269 if(n1 == 0)
270 return 0;
271
272 for(i = 1; i < n1; ++i)
273 sum += n2_then_x1[i];
274
275 for(i = 0; i < *n2_then_x1; ++i)
276 sum += x2[i];
277
278 return sum;
279 }
280
281 int __cdecl s_sum_unique_conf_array(int x[], int n)
282 {
283 return s_sum_conf_array(x, n);
284 }
285
286 int __cdecl s_sum_unique_conf_ptr(int *x, int n)
287 {
288 return x ? s_sum_conf_array(x, n) : 0;
289 }
290
291 int __cdecl s_sum_var_array(int x[20], int n)
292 {
293 ok(0 <= n, "RPC sum_var_array\n");
294 ok(n <= 20, "RPC sum_var_array\n");
295
296 return s_sum_conf_array(x, n);
297 }
298
299 int __cdecl s_sum_complex_array(int n, refpint_t pi[])
300 {
301 int total = 0;
302 for (; n > 0; n--)
303 total += *pi[n - 1];
304 return total;
305 }
306
307 int __cdecl s_dot_two_vectors(vector_t vs[2])
308 {
309 return vs[0].x * vs[1].x + vs[0].y * vs[1].y + vs[0].z * vs[1].z;
310 }
311
312 void __cdecl s_get_number_array(int x[20], int *n)
313 {
314 int c[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9};
315 memcpy(x, c, sizeof(c));
316 *n = sizeof(c)/sizeof(c[0]);
317 }
318
319 int __cdecl s_sum_cs(cs_t *cs)
320 {
321 return s_sum_conf_array(cs->ca, cs->n);
322 }
323
324 int __cdecl s_sum_cps(cps_t *cps)
325 {
326 int sum = 0;
327 int i;
328
329 for (i = 0; i < *cps->pn; ++i)
330 sum += cps->ca1[i];
331
332 for (i = 0; i < 2 * cps->n; ++i)
333 sum += cps->ca2[i];
334
335 return sum;
336 }
337
338 int __cdecl s_sum_cpsc(cpsc_t *cpsc)
339 {
340 int sum = 0;
341 int i;
342 for (i = 0; i < (cpsc->c ? cpsc->a : cpsc->b); ++i)
343 sum += cpsc->ca[i];
344 return sum;
345 }
346
347 int __cdecl s_get_cpsc(int n, cpsc_t *cpsc)
348 {
349 int i, ret;
350
351 cpsc->a = 2 * n;
352 cpsc->b = 2;
353 cpsc->c = 1;
354 cpsc->ca = MIDL_user_allocate( cpsc->a * sizeof(int) );
355 for (i = ret = 0; i < cpsc->a; i++) cpsc->ca[i] = i;
356 for (i = ret = 0; i < cpsc->a; i++) ret += cpsc->ca[i];
357 return ret;
358 }
359
360 int __cdecl s_square_puint(puint_t p)
361 {
362 int n = atoi(p);
363 return n * n;
364 }
365
366 int __cdecl s_sum_puints(puints_t *p)
367 {
368 int sum = 0;
369 int i;
370 for (i = 0; i < p->n; ++i)
371 sum += atoi(p->ps[i]);
372 return sum;
373 }
374
375 int __cdecl s_sum_cpuints(cpuints_t *p)
376 {
377 int sum = 0;
378 int i;
379 for (i = 0; i < p->n; ++i)
380 sum += atoi(p->ps[i]);
381 return sum;
382 }
383
384 int __cdecl s_dot_copy_vectors(vector_t u, vector_t v)
385 {
386 return u.x * v.x + u.y * v.y + u.z * v.z;
387 }
388
389 int __cdecl s_square_test_us(test_us_t *tus)
390 {
391 int n = atoi(tus->us.x);
392 return n * n;
393 }
394
395 double __cdecl s_square_encu(encu_t *eu)
396 {
397 switch (eu->t)
398 {
399 case ENCU_I: return eu->tagged_union.i * eu->tagged_union.i;
400 case ENCU_F: return eu->tagged_union.f * eu->tagged_union.f;
401 default:
402 return 0.0;
403 }
404 }
405
406 double __cdecl s_square_unencu(int t, unencu_t *eu)
407 {
408 switch (t)
409 {
410 case ENCU_I: return eu->i * eu->i;
411 case ENCU_F: return eu->f * eu->f;
412 default:
413 return 0.0;
414 }
415 }
416
417 void __cdecl s_check_se2(se_t *s)
418 {
419 ok(s->f == E2, "check_se2\n");
420 }
421
422 int __cdecl s_sum_parr(int *a[3])
423 {
424 return s_sum_pcarr(a, 3);
425 }
426
427 int __cdecl s_sum_pcarr(int *a[], int n)
428 {
429 int i, s = 0;
430 for (i = 0; i < n; ++i)
431 s += *a[i];
432 return s;
433 }
434
435 int __cdecl s_enum_ord(e_t e)
436 {
437 switch (e)
438 {
439 case E1: return 1;
440 case E2: return 2;
441 case E3: return 3;
442 case E4: return 4;
443 default:
444 return 0;
445 }
446 }
447
448 double __cdecl s_square_encue(encue_t *eue)
449 {
450 switch (eue->t)
451 {
452 case E1: return eue->tagged_union.i1 * eue->tagged_union.i1;
453 case E2: return eue->tagged_union.f2 * eue->tagged_union.f2;
454 default:
455 return 0.0;
456 }
457 }
458
459 int __cdecl s_sum_toplev_conf_2n(int *x, int n)
460 {
461 int sum = 0;
462 int i;
463 for (i = 0; i < 2 * n; ++i)
464 sum += x[i];
465 return sum;
466 }
467
468 int __cdecl s_sum_toplev_conf_cond(int *x, int a, int b, int c)
469 {
470 int sum = 0;
471 int n = c ? a : b;
472 int i;
473 for (i = 0; i < n; ++i)
474 sum += x[i];
475 return sum;
476 }
477
478 double __cdecl s_sum_aligns(aligns_t *a)
479 {
480 return a->c + a->i + a->s + a->d;
481 }
482
483 int __cdecl s_sum_padded(padded_t *p)
484 {
485 return p->i + p->c;
486 }
487
488 int __cdecl s_sum_padded2(padded_t ps[2])
489 {
490 return s_sum_padded(&ps[0]) + s_sum_padded(&ps[1]);
491 }
492
493 int __cdecl s_sum_padded_conf(padded_t *ps, int n)
494 {
495 int sum = 0;
496 int i;
497 for (i = 0; i < n; ++i)
498 sum += s_sum_padded(&ps[i]);
499 return sum;
500 }
501
502 int __cdecl s_sum_bogus(bogus_t *b)
503 {
504 return *b->h.p1 + *b->p2 + *b->p3 + b->c;
505 }
506
507 void __cdecl s_check_null(int *null)
508 {
509 ok(!null, "RPC check_null\n");
510 }
511
512 int __cdecl s_str_struct_len(str_struct_t *s)
513 {
514 return lstrlenA(s->s);
515 }
516
517 int __cdecl s_wstr_struct_len(wstr_struct_t *s)
518 {
519 return lstrlenW(s->s);
520 }
521
522 int __cdecl s_sum_doub_carr(doub_carr_t *dc)
523 {
524 int i, j;
525 int sum = 0;
526 for (i = 0; i < dc->n; ++i)
527 for (j = 0; j < dc->a[i]->n; ++j)
528 sum += dc->a[i]->a[j];
529 return sum;
530 }
531
532 void __cdecl s_make_pyramid_doub_carr(unsigned char n, doub_carr_t **dc)
533 {
534 doub_carr_t *t;
535 int i, j;
536 t = MIDL_user_allocate(FIELD_OFFSET(doub_carr_t, a[n]));
537 t->n = n;
538 for (i = 0; i < n; ++i)
539 {
540 int v = i + 1;
541 t->a[i] = MIDL_user_allocate(FIELD_OFFSET(doub_carr_1_t, a[v]));
542 t->a[i]->n = v;
543 for (j = 0; j < v; ++j)
544 t->a[i]->a[j] = j + 1;
545 }
546 *dc = t;
547 }
548
549 unsigned __cdecl s_hash_bstr(bstr_t b)
550 {
551 short n = b[-1];
552 short *s = b;
553 unsigned hash = 0;
554 short i;
555 for (i = 0; i < n; ++i)
556 hash = 5 * hash + (unsigned) s[i];
557 return hash;
558 }
559
560 void __cdecl s_get_a_bstr(bstr_t *b)
561 {
562 bstr_t bstr;
563 short str[] = {5, 'W', 'i', 'n', 'e', 0};
564 bstr = HeapAlloc(GetProcessHeap(), 0, sizeof(str));
565 memcpy(bstr, str, sizeof(str));
566 *b = bstr + 1;
567 }
568
569 void __cdecl s_get_name(name_t *name)
570 {
571 const char bossman[] = "Jeremy White";
572 memcpy(name->name, bossman, min(name->size, sizeof(bossman)));
573 /* ensure nul-termination */
574 if (name->size < sizeof(bossman))
575 name->name[name->size - 1] = 0;
576 }
577
578 void __cdecl s_get_names(int *n, str_array_t *names)
579 {
580 str_array_t list;
581
582 list = MIDL_user_allocate(2 * sizeof(list[0]));
583 list[0] = MIDL_user_allocate(6);
584 strcpy(list[0], "Hello");
585 list[1] = MIDL_user_allocate(7);
586 strcpy(list[1], "World!");
587
588 *names = list;
589 *n = 2;
590 }
591
592 void __cdecl s_get_namesw(int *n, wstr_array_t *names)
593 {
594 wstr_array_t list;
595
596 list = MIDL_user_allocate(2 * sizeof(list[0]));
597 list[0] = MIDL_user_allocate(sizeof(helloW));
598 lstrcpyW(list[0], helloW);
599 list[1] = MIDL_user_allocate(sizeof(worldW));
600 lstrcpyW(list[1], worldW);
601
602 *names = list;
603 *n = 2;
604 }
605
606 int __cdecl s_sum_pcarr2(int n, int **pa)
607 {
608 return s_sum_conf_array(*pa, n);
609 }
610
611 int __cdecl s_sum_L1_norms(int n, vector_t *vs)
612 {
613 int i;
614 int sum = 0;
615 for (i = 0; i < n; ++i)
616 sum += abs(vs[i].x) + abs(vs[i].y) + abs(vs[i].z);
617 return sum;
618 }
619
620 s123_t * __cdecl s_get_s123(void)
621 {
622 s123_t *s = MIDL_user_allocate(sizeof *s);
623 s->f1 = 1;
624 s->f2 = 2;
625 s->f3 = 3;
626 return s;
627 }
628
629 str_t __cdecl s_get_filename(void)
630 {
631 return (char *)__FILE__;
632 }
633
634 int __cdecl s_echo_ranged_int(int i, int j, int k)
635 {
636 return min( 100, i + j + k );
637 }
638
639 int __cdecl s_echo_ranged_int2(int i)
640 {
641 return i;
642 }
643
644 void __cdecl s_get_ranged_enum(renum_t *re)
645 {
646 *re = RE3;
647 }
648
649 void __cdecl s_context_handle_test(void)
650 {
651 NDR_SCONTEXT h;
652 RPC_BINDING_HANDLE binding;
653 RPC_STATUS status;
654 unsigned char buf[20];
655 static RPC_SERVER_INTERFACE server_if =
656 {
657 sizeof(RPC_SERVER_INTERFACE),
658 {{0x00000000,0x4114,0x0704,{0x23,0x01,0x00,0x00,0x00,0x00,0x00,0x00}},{1,0}},
659 {{0x8a885d04,0x1ceb,0x11c9,{0x9f,0xe8,0x08,0x00,0x2b,0x10,0x48,0x60}},{2,0}},
660 NULL,
661 0,
662 0,
663 0,
664 0,
665 0,
666 };
667
668 binding = I_RpcGetCurrentCallHandle();
669 ok(binding != NULL, "I_RpcGetCurrentCallHandle returned NULL\n");
670
671 if (!pNDRSContextMarshall2 || !pNDRSContextUnmarshall2)
672 {
673 win_skip("NDRSContextMarshall2 or NDRSContextUnmarshall2 not exported from rpcrt4.dll\n");
674 return;
675 }
676
677 h = pNDRSContextUnmarshall2(binding, NULL, NDR_LOCAL_DATA_REPRESENTATION, NULL, 0);
678 ok(h != NULL, "NDRSContextUnmarshall2 returned NULL\n");
679
680 /* marshal a context handle with NULL userContext */
681 memset(buf, 0xcc, sizeof(buf));
682 pNDRSContextMarshall2(binding, h, buf, NULL, NULL, 0);
683 ok(*(ULONG *)buf == 0, "attributes should have been set to 0 instead of 0x%x\n", *(ULONG *)buf);
684 ok(UuidIsNil((UUID *)&buf[4], &status), "uuid should have been nil\n");
685
686 h = pNDRSContextUnmarshall2(binding, NULL, NDR_LOCAL_DATA_REPRESENTATION, NULL, 0);
687 ok(h != NULL, "NDRSContextUnmarshall2 returned NULL\n");
688
689 /* marshal a context handle with non-NULL userContext */
690 memset(buf, 0xcc, sizeof(buf));
691 h->userContext = (void *)0xdeadbeef;
692 pNDRSContextMarshall2(binding, h, buf, NULL, NULL, 0);
693 ok(*(ULONG *)buf == 0, "attributes should have been set to 0 instead of 0x%x\n", *(ULONG *)buf);
694 ok(!UuidIsNil((UUID *)&buf[4], &status), "uuid should not have been nil\n");
695
696 /* raises ERROR_INVALID_HANDLE exception on Vista upwards */
697 if (0)
698 {
699 h = pNDRSContextUnmarshall2(binding, buf, NDR_LOCAL_DATA_REPRESENTATION, NULL, 0);
700 ok(h != NULL, "NDRSContextUnmarshall2 returned NULL\n");
701 ok(h->userContext == (void *)0xdeadbeef, "userContext of interface didn't unmarshal properly: %p\n", h->userContext);
702
703 /* marshal a context handle with an interface specified */
704 h = pNDRSContextUnmarshall2(binding, NULL, NDR_LOCAL_DATA_REPRESENTATION, &server_if.InterfaceId, 0);
705 ok(h != NULL, "NDRSContextUnmarshall2 returned NULL\n");
706
707 memset(buf, 0xcc, sizeof(buf));
708 h->userContext = (void *)0xcafebabe;
709 pNDRSContextMarshall2(binding, h, buf, NULL, &server_if.InterfaceId, 0);
710 ok(*(ULONG *)buf == 0, "attributes should have been set to 0 instead of 0x%x\n", *(ULONG *)buf);
711 ok(!UuidIsNil((UUID *)&buf[4], &status), "uuid should not have been nil\n");
712
713 h = pNDRSContextUnmarshall2(binding, buf, NDR_LOCAL_DATA_REPRESENTATION, &server_if.InterfaceId, 0);
714 ok(h != NULL, "NDRSContextUnmarshall2 returned NULL\n");
715 ok(h->userContext == (void *)0xcafebabe, "userContext of interface didn't unmarshal properly: %p\n", h->userContext);
716 }
717
718 /* test same interface data, but different pointer */
719 /* raises ERROR_INVALID_HANDLE exception */
720 if (0)
721 {
722 RPC_SERVER_INTERFACE server_if_clone = server_if;
723
724 pNDRSContextUnmarshall2(binding, buf, NDR_LOCAL_DATA_REPRESENTATION, &server_if_clone.InterfaceId, 0);
725 }
726
727 /* test different interface data, but different pointer */
728 /* raises ERROR_INVALID_HANDLE exception */
729 if (0)
730 {
731 static RPC_SERVER_INTERFACE server_if2 =
732 {
733 sizeof(RPC_SERVER_INTERFACE),
734 {{0x00000000,0x4114,0x0704,{0x23,0x01,0x00,0x00,0x00,0x00,0x00,0x00}},{1,0}},
735 {{0x8a885d04,0x1ceb,0x11c9,{0x9f,0xe8,0x08,0x00,0x2b,0x10,0x48,0x60}},{2,0}},
736 NULL,
737 0,
738 0,
739 0,
740 0,
741 0,
742 };
743 pNDRSContextMarshall2(binding, h, buf, NULL, &server_if.InterfaceId, 0);
744
745 pNDRSContextUnmarshall2(binding, buf, NDR_LOCAL_DATA_REPRESENTATION, &server_if2.InterfaceId, 0);
746 }
747
748 binding = NULL;
749 status = RpcBindingServerFromClient(NULL, &binding);
750
751 ok(status == RPC_S_OK, "expected RPC_S_OK got %u\n", status);
752 ok(binding != NULL, "binding is NULL\n");
753
754 if (status == RPC_S_OK && binding != NULL)
755 {
756 unsigned char* string_binding = NULL;
757 unsigned char* object_uuid = NULL;
758 unsigned char* protseq = NULL;
759 unsigned char* network_address = NULL;
760 unsigned char* endpoint = NULL;
761 unsigned char* network_options = NULL;
762
763 status = RpcBindingToStringBindingA(binding, &string_binding);
764 ok(status == RPC_S_OK, "expected RPC_S_OK got %u\n", status);
765 ok(string_binding != NULL, "string_binding is NULL\n");
766
767 status = RpcStringBindingParseA(string_binding, &object_uuid, &protseq, &network_address, &endpoint, &network_options);
768 ok(status == RPC_S_OK, "expected RPC_S_OK got %u\n", status);
769 ok(protseq != NULL && *protseq != '\0', "protseq is %s\n", protseq);
770 ok(network_address != NULL && *network_address != '\0', "network_address is %s\n", network_address);
771
772 todo_wine
773 {
774 ok(object_uuid != NULL && *object_uuid == '\0', "object_uuid is %s\n", object_uuid);
775 ok(endpoint != NULL && *endpoint == '\0', "endpoint is %s\n", endpoint);
776 ok(network_options != NULL && *network_options == '\0', "network_options is %s\n", network_options);
777 }
778
779 RpcStringFreeA(&string_binding);
780 RpcStringFreeA(&object_uuid);
781 RpcStringFreeA(&protseq);
782 RpcStringFreeA(&network_address);
783 RpcStringFreeA(&endpoint);
784 RpcStringFreeA(&network_options);
785 RpcBindingFree(&binding);
786 }
787 }
788
789 void __cdecl s_get_numbers(int length, int size, pints_t n[])
790 {
791 int i;
792 for (i = 0; i < length; i++)
793 {
794 n[i].pi = midl_user_allocate(sizeof(*n[i].pi));
795 *n[i].pi = i;
796 n[i].ppi = NULL;
797 n[i].pppi = NULL;
798 }
799 }
800
801 void __cdecl s_get_numbers_struct(numbers_struct_t **ns)
802 {
803 int i;
804 *ns = midl_user_allocate(FIELD_OFFSET(numbers_struct_t, numbers[5]));
805 if (!*ns) return;
806 (*ns)->length = 5;
807 (*ns)->size = 5;
808 for (i = 0; i < (*ns)->length; i++)
809 {
810 (*ns)->numbers[i].pi = NULL;
811 (*ns)->numbers[i].ppi = NULL;
812 (*ns)->numbers[i].pppi = NULL;
813 }
814 (*ns)->numbers[0].pi = midl_user_allocate(sizeof(*(*ns)->numbers[i].pi));
815 *(*ns)->numbers[0].pi = 5;
816 }
817
818 void __cdecl s_full_pointer_test(int *a, int *b)
819 {
820 ok(*a == 42, "Expected *a to be 42 instead of %d\n", *a);
821 ok(*b == 42, "Expected *b to be 42 instead of %d\n", *a);
822 ok(a == b, "Expected a (%p) to point to the same memory as b (%p)\n", a, b);
823 }
824
825 void __cdecl s_full_pointer_null_test(int *a, int *b)
826 {
827 ok(*a == 42, "Expected *a to be 42 instead of %d\n", *a);
828 ok(b == NULL, "Expected b to be NULL instead of %p\n", b);
829 }
830
831 void __cdecl s_stop(void)
832 {
833 ok(RPC_S_OK == RpcMgmtStopServerListening(NULL), "RpcMgmtStopServerListening\n");
834 ok(RPC_S_OK == RpcServerUnregisterIf(NULL, NULL, FALSE), "RpcServerUnregisterIf\n");
835 ok(SetEvent(stop_event), "SetEvent\n");
836 }
837
838 static void
839 make_cmdline(char buffer[MAX_PATH], const char *test)
840 {
841 sprintf(buffer, "%s server %s", progname, test);
842 }
843
844 static void
845 run_client(const char *test)
846 {
847 char cmdline[MAX_PATH];
848 PROCESS_INFORMATION info;
849 STARTUPINFOA startup;
850
851 memset(&startup, 0, sizeof startup);
852 startup.cb = sizeof startup;
853
854 make_cmdline(cmdline, test);
855 ok(CreateProcessA(NULL, cmdline, NULL, NULL, FALSE, 0L, NULL, NULL, &startup, &info), "CreateProcess\n");
856 winetest_wait_child_process( info.hProcess );
857 ok(CloseHandle(info.hProcess), "CloseHandle\n");
858 ok(CloseHandle(info.hThread), "CloseHandle\n");
859 }
860
861 static void
862 basic_tests(void)
863 {
864 char string[] = "I am a string";
865 WCHAR wstring[] = {'I',' ','a','m',' ','a',' ','w','s','t','r','i','n','g', 0};
866 int f[5] = {1, 3, 0, -2, -4};
867 vector_t a = {1, 3, 7};
868 vector_t vec1 = {4, -2, 1}, vec2 = {-5, 2, 3}, *pvec2 = &vec2;
869 pvectors_t pvecs = {&vec1, &pvec2};
870 sp_inner_t spi = {42};
871 sp_t sp = {-13, &spi};
872 aligns_t aligns;
873 pints_t pints;
874 ptypes_t ptypes;
875 padded_t padded;
876 padded_t padded2[2];
877 bogus_t bogus;
878 int i1, i2, i3, *pi2, *pi3, **ppi3;
879 double u, v;
880 float s, t;
881 LONG q, r;
882 short h;
883 char c;
884 int x;
885 hyper y;
886 str_struct_t ss = {string};
887 wstr_struct_t ws = {wstring};
888 str_t str;
889 se_t se;
890 renum_t re;
891
892 ok(int_return() == INT_CODE, "RPC int_return\n");
893
894 ok(square(7) == 49, "RPC square\n");
895 x = sum(23, -4);
896 ok(x == 19, "RPC sum got %d\n", x);
897 c = sum_char(-23, 50);
898 ok(c == 27, "RPC sum_char got %d\n", (int)c);
899 h = sum_short(1122, -344);
900 ok(h == 778, "RPC sum_short got %d\n", (int)h);
901 x = sum_float(123.45, -32.2);
902 ok(x == 91, "RPC sum_float got %d\n", x);
903 x = sum_double_int(-78, 148.46);
904 ok(x == 70, "RPC sum_double_int got %d\n", x);
905 y = sum_hyper((hyper)0x12345678 << 16, (hyper)0x33557799 << 16);
906 ok(y == (hyper)0x4589ce11 << 16, "RPC hyper got %x%08x\n", (DWORD)(y >> 32), (DWORD)y);
907 x = sum_hyper_int((hyper)0x24242424 << 16, -((hyper)0x24241212 << 16));
908 ok(x == 0x12120000, "RPC hyper_int got 0x%x\n", x);
909 x = sum_char_hyper( 12, ((hyper)0x42424242 << 32) | 0x33334444 );
910 ok(x == 0x33334450, "RPC char_hyper got 0x%x\n", x);
911
912 x = 0;
913 square_out(11, &x);
914 ok(x == 121, "RPC square_out\n");
915
916 x = 5;
917 square_ref(&x);
918 ok(x == 25, "RPC square_ref\n");
919
920 ok(str_length(string) == strlen(string), "RPC str_length\n");
921 ok(str_t_length(string) == strlen(string), "RPC str_length\n");
922 ok(dot_self(&a) == 59, "RPC dot_self\n");
923
924 ok(str_struct_len(&ss) == lstrlenA(string), "RPC str_struct_len\n");
925 ok(wstr_struct_len(&ws) == lstrlenW(wstring), "RPC str_struct_len\n");
926
927 v = 0.0;
928 u = square_half(3.0, &v);
929 ok(u == 9.0, "RPC square_half\n");
930 ok(v == 1.5, "RPC square_half\n");
931
932 t = 0.0f;
933 s = square_half_float(3.0f, &t);
934 ok(s == 9.0f, "RPC square_half_float\n");
935 ok(t == 1.5f, "RPC square_half_float\n");
936
937 r = 0;
938 q = square_half_long(3, &r);
939 ok(q == 9, "RPC square_half_long\n");
940 ok(r == 1, "RPC square_half_long\n");
941
942 i1 = 19;
943 i2 = -3;
944 i3 = -29;
945 pi2 = &i2;
946 pi3 = &i3;
947 ppi3 = &pi3;
948 pints.pi = &i1;
949 pints.ppi = &pi2;
950 pints.pppi = &ppi3;
951 ok(pints_sum(&pints) == -13, "RPC pints_sum\n");
952
953 c = 10;
954 h = 3;
955 q = 14;
956 s = -5.0f;
957 u = 11.0;
958 ptypes.pc = &c;
959 ptypes.ps = &h;
960 ptypes.pl = &q;
961 ptypes.pf = &s;
962 ptypes.pd = &u;
963 ok(ptypes_sum(&ptypes) == 33.0, "RPC ptypes_sum\n");
964
965 ok(dot_pvectors(&pvecs) == -21, "RPC dot_pvectors\n");
966 ok(dot_copy_vectors(vec1, vec2) == -21, "RPC dot_copy_vectors\n");
967 ok(sum_fixed_array(f) == -2, "RPC sum_fixed_array\n");
968 ok(sum_sp(&sp) == 29, "RPC sum_sp\n");
969
970 ok(enum_ord(E1) == 1, "RPC enum_ord\n");
971 ok(enum_ord(E2) == 2, "RPC enum_ord\n");
972 ok(enum_ord(E3) == 3, "RPC enum_ord\n");
973 ok(enum_ord(E4) == 4, "RPC enum_ord\n");
974
975 se.f = E2;
976 check_se2(&se);
977
978 memset(&aligns, 0, sizeof(aligns));
979 aligns.c = 3;
980 aligns.i = 4;
981 aligns.s = 5;
982 aligns.d = 6.0;
983 ok(sum_aligns(&aligns) == 18.0, "RPC sum_aligns\n");
984
985 padded.i = -3;
986 padded.c = 8;
987 ok(sum_padded(&padded) == 5, "RPC sum_padded\n");
988 padded2[0].i = -5;
989 padded2[0].c = 1;
990 padded2[1].i = 3;
991 padded2[1].c = 7;
992 ok(sum_padded2(padded2) == 6, "RPC sum_padded2\n");
993 padded2[0].i = -5;
994 padded2[0].c = 1;
995 padded2[1].i = 3;
996 padded2[1].c = 7;
997 ok(sum_padded_conf(padded2, 2) == 6, "RPC sum_padded_conf\n");
998
999 i1 = 14;
1000 i2 = -7;
1001 i3 = -4;
1002 bogus.h.p1 = &i1;
1003 bogus.p2 = &i2;
1004 bogus.p3 = &i3;
1005 bogus.c = 9;
1006 ok(sum_bogus(&bogus) == 12, "RPC sum_bogus\n");
1007
1008 check_null(NULL);
1009
1010 str = get_filename();
1011 ok(!strcmp(str, __FILE__), "get_filename() returned %s instead of %s\n", str, __FILE__);
1012 midl_user_free(str);
1013
1014 x = echo_ranged_int(0,0,0);
1015 ok(x == 0, "echo_ranged_int() returned %d instead of 0\n", x);
1016 x = echo_ranged_int(10,20,100);
1017 ok(x == 100, "echo_ranged_int() returned %d instead of 100\n", x);
1018 x = echo_ranged_int2(40);
1019 ok(x == 40, "echo_ranged_int() returned %d instead of 40\n", x);
1020
1021 if (!old_windows_version)
1022 {
1023 re = 0xdeadbeef;
1024 get_ranged_enum(&re);
1025 ok(re == RE3 ||
1026 broken(re == MAKELONG(re, 0xdead)), /* Win 8, Win 10 */
1027 "get_ranged_enum() returned %x instead of RE3\n", re);
1028 }
1029 }
1030
1031 static void
1032 union_tests(void)
1033 {
1034 encue_t eue;
1035 encu_t eu;
1036 unencu_t uneu;
1037 sun_t su;
1038 int i;
1039
1040 su.s = SUN_I;
1041 su.u.i = 9;
1042 ok(square_sun(&su) == 81.0, "RPC square_sun\n");
1043
1044 su.s = SUN_F1;
1045 su.u.f = 5.0;
1046 ok(square_sun(&su) == 25.0, "RPC square_sun\n");
1047
1048 su.s = SUN_F2;
1049 su.u.f = -2.0;
1050 ok(square_sun(&su) == 4.0, "RPC square_sun\n");
1051
1052 su.s = SUN_PI;
1053 su.u.pi = &i;
1054 i = 11;
1055 ok(square_sun(&su) == 121.0, "RPC square_sun\n");
1056
1057 eu.t = ENCU_I;
1058 eu.tagged_union.i = 7;
1059 ok(square_encu(&eu) == 49.0, "RPC square_encu\n");
1060
1061 eu.t = ENCU_F;
1062 eu.tagged_union.f = 3.0;
1063 ok(square_encu(&eu) == 9.0, "RPC square_encu\n");
1064
1065 uneu.i = 4;
1066 ok(square_unencu(ENCU_I, &uneu) == 16.0, "RPC square_unencu\n");
1067
1068 uneu.f = 5.0;
1069 ok(square_unencu(ENCU_F, &uneu) == 25.0, "RPC square_unencu\n");
1070
1071 eue.t = E1;
1072 eue.tagged_union.i1 = 8;
1073 ok(square_encue(&eue) == 64.0, "RPC square_encue\n");
1074
1075 eue.t = E2;
1076 eue.tagged_union.f2 = 10.0;
1077 ok(square_encue(&eue) == 100.0, "RPC square_encue\n");
1078 }
1079
1080 static test_list_t *
1081 null_list(void)
1082 {
1083 test_list_t *n = HeapAlloc(GetProcessHeap(), 0, sizeof *n);
1084 n->t = TL_NULL;
1085 n->u.x = 0;
1086 return n;
1087 }
1088
1089 static test_list_t *
1090 make_list(test_list_t *tail)
1091 {
1092 test_list_t *n = HeapAlloc(GetProcessHeap(), 0, sizeof *n);
1093 n->t = TL_LIST;
1094 n->u.tail = tail;
1095 return n;
1096 }
1097
1098 static void
1099 free_list(test_list_t *list)
1100 {
1101 if (list->t == TL_LIST)
1102 free_list(list->u.tail);
1103 HeapFree(GetProcessHeap(), 0, list);
1104 }
1105
1106 ULONG __RPC_USER
1107 puint_t_UserSize(ULONG *flags, ULONG start, puint_t *p)
1108 {
1109 return start + sizeof(int);
1110 }
1111
1112 unsigned char * __RPC_USER
1113 puint_t_UserMarshal(ULONG *flags, unsigned char *buffer, puint_t *p)
1114 {
1115 int n = atoi(*p);
1116 memcpy(buffer, &n, sizeof n);
1117 return buffer + sizeof n;
1118 }
1119
1120 unsigned char * __RPC_USER
1121 puint_t_UserUnmarshal(ULONG *flags, unsigned char *buffer, puint_t *p)
1122 {
1123 int n;
1124 memcpy(&n, buffer, sizeof n);
1125 *p = HeapAlloc(GetProcessHeap(), 0, 10);
1126 sprintf(*p, "%d", n);
1127 return buffer + sizeof n;
1128 }
1129
1130 void __RPC_USER
1131 puint_t_UserFree(ULONG *flags, puint_t *p)
1132 {
1133 HeapFree(GetProcessHeap(), 0, *p);
1134 }
1135
1136 ULONG __RPC_USER
1137 us_t_UserSize(ULONG *flags, ULONG start, us_t *pus)
1138 {
1139 return start + sizeof(struct wire_us);
1140 }
1141
1142 unsigned char * __RPC_USER
1143 us_t_UserMarshal(ULONG *flags, unsigned char *buffer, us_t *pus)
1144 {
1145 struct wire_us wus;
1146 wus.x = atoi(pus->x);
1147 memcpy(buffer, &wus, sizeof wus);
1148 return buffer + sizeof wus;
1149 }
1150
1151 unsigned char * __RPC_USER
1152 us_t_UserUnmarshal(ULONG *flags, unsigned char *buffer, us_t *pus)
1153 {
1154 struct wire_us wus;
1155 memcpy(&wus, buffer, sizeof wus);
1156 pus->x = HeapAlloc(GetProcessHeap(), 0, 10);
1157 sprintf(pus->x, "%d", wus.x);
1158 return buffer + sizeof wus;
1159 }
1160
1161 void __RPC_USER
1162 us_t_UserFree(ULONG *flags, us_t *pus)
1163 {
1164 HeapFree(GetProcessHeap(), 0, pus->x);
1165 }
1166
1167 ULONG __RPC_USER
1168 bstr_t_UserSize(ULONG *flags, ULONG start, bstr_t *b)
1169 {
1170 return start + FIELD_OFFSET(user_bstr_t, data[(*b)[-1]]);
1171 }
1172
1173 unsigned char * __RPC_USER
1174 bstr_t_UserMarshal(ULONG *flags, unsigned char *buffer, bstr_t *b)
1175 {
1176 wire_bstr_t wb = (wire_bstr_t) buffer;
1177 wb->n = (*b)[-1];
1178 memcpy(&wb->data, *b, wb->n * sizeof wb->data[0]);
1179 return buffer + FIELD_OFFSET(user_bstr_t, data[wb->n]);
1180 }
1181
1182 unsigned char * __RPC_USER
1183 bstr_t_UserUnmarshal(ULONG *flags, unsigned char *buffer, bstr_t *b)
1184 {
1185 wire_bstr_t wb = (wire_bstr_t) buffer;
1186 short *data = HeapAlloc(GetProcessHeap(), 0, (wb->n + 1) * sizeof *data);
1187 data[0] = wb->n;
1188 memcpy(&data[1], wb->data, wb->n * sizeof data[1]);
1189 *b = &data[1];
1190 return buffer + FIELD_OFFSET(user_bstr_t, data[wb->n]);
1191 }
1192
1193 void __RPC_USER
1194 bstr_t_UserFree(ULONG *flags, bstr_t *b)
1195 {
1196 HeapFree(GetProcessHeap(), 0, &((*b)[-1]));
1197 }
1198
1199 static void
1200 pointer_tests(void)
1201 {
1202 int a[] = {1, 2, 3, 4};
1203 char p1[] = "11";
1204 test_list_t *list = make_list(make_list(make_list(null_list())));
1205 test_us_t tus = {{p1}};
1206 int *pa[4];
1207 puints_t pus;
1208 cpuints_t cpus;
1209 short bstr_data[] = { 5, 'H', 'e', 'l', 'l', 'o' };
1210 bstr_t bstr = &bstr_data[1], bstr2;
1211 name_t name;
1212 void *buffer;
1213 int *pa2;
1214 s123_t *s123;
1215 int val = 42;
1216
1217 ok(test_list_length(list) == 3, "RPC test_list_length\n");
1218 ok(square_puint(p1) == 121, "RPC square_puint\n");
1219 pus.n = 4;
1220 pus.ps = HeapAlloc(GetProcessHeap(), 0, pus.n * sizeof pus.ps[0]);
1221 pus.ps[0] = xstrdup("5");
1222 pus.ps[1] = xstrdup("6");
1223 pus.ps[2] = xstrdup("7");
1224 pus.ps[3] = xstrdup("8");
1225 ok(sum_puints(&pus) == 26, "RPC sum_puints\n");
1226 HeapFree(GetProcessHeap(), 0, pus.ps[0]);
1227 HeapFree(GetProcessHeap(), 0, pus.ps[1]);
1228 HeapFree(GetProcessHeap(), 0, pus.ps[2]);
1229 HeapFree(GetProcessHeap(), 0, pus.ps[3]);
1230 HeapFree(GetProcessHeap(), 0, pus.ps);
1231 cpus.n = 4;
1232 cpus.ps = HeapAlloc(GetProcessHeap(), 0, cpus.n * sizeof cpus.ps[0]);
1233 cpus.ps[0] = xstrdup("5");
1234 cpus.ps[1] = xstrdup("6");
1235 cpus.ps[2] = xstrdup("7");
1236 cpus.ps[3] = xstrdup("8");
1237 ok(sum_cpuints(&cpus) == 26, "RPC sum_puints\n");
1238 HeapFree(GetProcessHeap(), 0, cpus.ps[0]);
1239 HeapFree(GetProcessHeap(), 0, cpus.ps[1]);
1240 HeapFree(GetProcessHeap(), 0, cpus.ps[2]);
1241 HeapFree(GetProcessHeap(), 0, cpus.ps[3]);
1242 HeapFree(GetProcessHeap(), 0, cpus.ps);
1243 ok(square_test_us(&tus) == 121, "RPC square_test_us\n");
1244
1245 pa[0] = &a[0];
1246 pa[1] = &a[1];
1247 pa[2] = &a[2];
1248 ok(sum_parr(pa) == 6, "RPC sum_parr\n");
1249
1250 pa[0] = &a[0];
1251 pa[1] = &a[1];
1252 pa[2] = &a[2];
1253 pa[3] = &a[3];
1254 ok(sum_pcarr(pa, 4) == 10, "RPC sum_pcarr\n");
1255
1256 ok(hash_bstr(bstr) == s_hash_bstr(bstr), "RPC hash_bstr_data\n");
1257
1258 get_a_bstr(&bstr);
1259 s_get_a_bstr(&bstr2);
1260 ok(!lstrcmpW((LPCWSTR)bstr, (LPCWSTR)bstr2), "bstr mismatch\n");
1261 HeapFree(GetProcessHeap(), 0, bstr - 1);
1262 HeapFree(GetProcessHeap(), 0, bstr2 - 1);
1263
1264 free_list(list);
1265
1266 if (!old_windows_version)
1267 {
1268 int n;
1269 str_array_t names;
1270 wstr_array_t namesw;
1271
1272 name.size = 10;
1273 name.name = buffer = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, name.size);
1274 get_name(&name);
1275 ok(name.name == buffer, "[in,out] pointer should have stayed as %p but instead changed to %p\n", name.name, buffer);
1276 ok(!strcmp(name.name, "Jeremy Wh"), "name didn't unmarshall properly, expected \"Jeremy Wh\", but got \"%s\"\n", name.name);
1277 HeapFree(GetProcessHeap(), 0, name.name);
1278
1279 n = -1;
1280 names = NULL;
1281 get_names(&n, &names);
1282 ok(n == 2, "expected 2, got %d\n", n);
1283 ok(!strcmp(names[0], "Hello"), "expected Hello, got %s\n", names[0]);
1284 ok(!strcmp(names[1], "World!"), "expected World!, got %s\n", names[1]);
1285 MIDL_user_free(names[0]);
1286 MIDL_user_free(names[1]);
1287 MIDL_user_free(names);
1288
1289 n = -1;
1290 namesw = NULL;
1291 get_namesw(&n, &namesw);
1292 ok(n == 2, "expected 2, got %d\n", n);
1293 ok(!lstrcmpW(namesw[0], helloW), "expected Hello, got %s\n", wine_dbgstr_w(namesw[0]));
1294 ok(!lstrcmpW(namesw[1], worldW), "expected World!, got %s\n", wine_dbgstr_w(namesw[1]));
1295 MIDL_user_free(namesw[0]);
1296 MIDL_user_free(namesw[1]);
1297 MIDL_user_free(namesw);
1298 }
1299
1300 pa2 = a;
1301 ok(sum_pcarr2(4, &pa2) == 10, "RPC sum_pcarr2\n");
1302
1303 s123 = get_s123();
1304 ok(s123->f1 == 1 && s123->f2 == 2 && s123->f3 == 3, "RPC get_s123\n");
1305 MIDL_user_free(s123);
1306
1307 full_pointer_test(&val, &val);
1308 full_pointer_null_test(&val, NULL);
1309 }
1310
1311 static int
1312 check_pyramid_doub_carr(doub_carr_t *dc)
1313 {
1314 int i, j;
1315 for (i = 0; i < dc->n; ++i)
1316 for (j = 0; j < dc->a[i]->n; ++j)
1317 if (dc->a[i]->a[j] != j + 1)
1318 return FALSE;
1319 return TRUE;
1320 }
1321
1322 static void
1323 free_pyramid_doub_carr(doub_carr_t *dc)
1324 {
1325 int i;
1326 for (i = 0; i < dc->n; ++i)
1327 MIDL_user_free(dc->a[i]);
1328 MIDL_user_free(dc);
1329 }
1330
1331 static void
1332 array_tests(void)
1333 {
1334 int m[2][3][4] =
1335 {
1336 {{1, 2, 3, 4}, {-1, -3, -5, -7}, {0, 2, 4, 6}},
1337 {{1, -2, 3, -4}, {2, 3, 5, 7}, {-4, -1, -14, 4114}}
1338 };
1339 int c[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9};
1340 int c2[] = {10, 100, 200};
1341 int c3[20];
1342 vector_t vs[2] = {{1, -2, 3}, {4, -5, -6}};
1343 cps_t cps;
1344 cpsc_t cpsc;
1345 cs_t *cs;
1346 int n;
1347 int ca[5] = {1, -2, 3, -4, 5};
1348 int tmp[10];
1349 doub_carr_t *dc;
1350 int *pi;
1351 pints_t api[5];
1352 numbers_struct_t *ns;
1353 refpint_t rpi[5];
1354
1355 if (!old_windows_version)
1356 {
1357 const char str1[25] = "Hello";
1358 ok(cstr_length(str1, sizeof str1) == strlen(str1), "RPC cstr_length\n");
1359 }
1360
1361 ok(sum_fixed_int_3d(m) == 4116, "RPC sum_fixed_int_3d\n");
1362
1363 ok(sum_conf_array(c, 10) == 45, "RPC sum_conf_array\n");
1364 ok(sum_conf_array(&c[5], 2) == 11, "RPC sum_conf_array\n");
1365 ok(sum_conf_array(&c[7], 1) == 7, "RPC sum_conf_array\n");
1366 ok(sum_conf_array(&c[2], 0) == 0, "RPC sum_conf_array\n");
1367
1368 ok(sum_conf_ptr_by_conf_ptr(1, c2, c) == 45, "RPC sum_conf_ptr_by_conf_ptr\n");
1369 ok(sum_conf_ptr_by_conf_ptr(3, c2, c) == 345, "RPC sum_conf_ptr_by_conf_ptr\n");
1370 c2[0] = 0;
1371 ok(sum_conf_ptr_by_conf_ptr(3, c2, c) == 300, "RPC sum_conf_ptr_by_conf_ptr\n");
1372
1373 ok(sum_unique_conf_array(ca, 4) == -2, "RPC sum_unique_conf_array\n");
1374 ok(sum_unique_conf_ptr(ca, 5) == 3, "RPC sum_unique_conf_array\n");
1375 ok(sum_unique_conf_ptr(NULL, 10) == 0, "RPC sum_unique_conf_array\n");
1376
1377 get_number_array(c3, &n);
1378 ok(n == 10, "RPC get_num_array\n");
1379 for (; n > 0; n--)
1380 ok(c3[n-1] == c[n-1], "get_num_array returned wrong value %d @ %d\n",
1381 c3[n-1], n);
1382 ok(sum_var_array(c, 10) == 45, "RPC sum_conf_array\n");
1383 ok(sum_var_array(&c[5], 2) == 11, "RPC sum_conf_array\n");
1384 ok(sum_var_array(&c[7], 1) == 7, "RPC sum_conf_array\n");
1385 ok(sum_var_array(&c[2], 0) == 0, "RPC sum_conf_array\n");
1386
1387 ok(dot_two_vectors(vs) == -4, "RPC dot_two_vectors\n");
1388 cs = HeapAlloc(GetProcessHeap(), 0, FIELD_OFFSET(cs_t, ca[5]));
1389 cs->n = 5;
1390 cs->ca[0] = 3;
1391 cs->ca[1] = 5;
1392 cs->ca[2] = -2;
1393 cs->ca[3] = -1;
1394 cs->ca[4] = -4;
1395 ok(sum_cs(cs) == 1, "RPC sum_cs\n");
1396 HeapFree(GetProcessHeap(), 0, cs);
1397
1398 n = 5;
1399 cps.pn = &n;
1400 cps.ca1 = &c[2];
1401 cps.n = 3;
1402 cps.ca2 = &c[3];
1403 ok(sum_cps(&cps) == 53, "RPC sum_cps\n");
1404
1405 cpsc.a = 4;
1406 cpsc.b = 5;
1407 cpsc.c = 1;
1408 cpsc.ca = c;
1409 ok(sum_cpsc(&cpsc) == 6, "RPC sum_cpsc\n");
1410 cpsc.a = 4;
1411 cpsc.b = 5;
1412 cpsc.c = 0;
1413 cpsc.ca = c;
1414 ok(sum_cpsc(&cpsc) == 10, "RPC sum_cpsc\n");
1415
1416 cpsc.ca = NULL;
1417 ok(get_cpsc(5, &cpsc) == 45, "RPC sum_cpsc\n");
1418 ok( cpsc.a == 10, "RPC get_cpsc %u\n", cpsc.a );
1419 for (n = 0; n < 10; n++) ok( cpsc.ca[n] == n, "RPC get_cpsc[%d] = %d\n", n, cpsc.ca[n] );
1420
1421 memset( tmp, 0x33, sizeof(tmp) );
1422 cpsc.ca = tmp;
1423 ok(get_cpsc(4, &cpsc) == 28, "RPC sum_cpsc\n");
1424 ok( cpsc.a == 8, "RPC get_cpsc %u\n", cpsc.a );
1425 ok( cpsc.ca == tmp, "RPC get_cpsc %p/%p\n", cpsc.ca, tmp );
1426 for (n = 0; n < 8; n++) ok( cpsc.ca[n] == n, "RPC get_cpsc[%d] = %d\n", n, cpsc.ca[n] );
1427
1428 ok(sum_toplev_conf_2n(c, 3) == 15, "RPC sum_toplev_conf_2n\n");
1429 ok(sum_toplev_conf_cond(c, 5, 6, 1) == 10, "RPC sum_toplev_conf_cond\n");
1430 ok(sum_toplev_conf_cond(c, 5, 6, 0) == 15, "RPC sum_toplev_conf_cond\n");
1431
1432 dc = HeapAlloc(GetProcessHeap(), 0, FIELD_OFFSET(doub_carr_t, a[2]));
1433 dc->n = 2;
1434 dc->a[0] = HeapAlloc(GetProcessHeap(), 0, FIELD_OFFSET(doub_carr_1_t, a[3]));
1435 dc->a[0]->n = 3;
1436 dc->a[0]->a[0] = 5;
1437 dc->a[0]->a[1] = 1;
1438 dc->a[0]->a[2] = 8;
1439 dc->a[1] = HeapAlloc(GetProcessHeap(), 0, FIELD_OFFSET(doub_carr_1_t, a[2]));
1440 dc->a[1]->n = 2;
1441 dc->a[1]->a[0] = 2;
1442 dc->a[1]->a[1] = 3;
1443 ok(sum_doub_carr(dc) == 19, "RPC sum_doub_carr\n");
1444 HeapFree(GetProcessHeap(), 0, dc->a[0]);
1445 HeapFree(GetProcessHeap(), 0, dc->a[1]);
1446 HeapFree(GetProcessHeap(), 0, dc);
1447
1448 dc = NULL;
1449 make_pyramid_doub_carr(4, &dc);
1450 ok(check_pyramid_doub_carr(dc), "RPC make_pyramid_doub_carr\n");
1451 free_pyramid_doub_carr(dc);
1452
1453 ok(sum_L1_norms(2, vs) == 21, "RPC sum_L1_norms\n");
1454
1455 memset(api, 0, sizeof(api));
1456 pi = HeapAlloc(GetProcessHeap(), 0, sizeof(*pi));
1457 *pi = -1;
1458 api[0].pi = pi;
1459 get_numbers(1, 1, api);
1460 ok(api[0].pi == pi, "RPC conformant varying array [out] pointer changed from %p to %p\n", pi, api[0].pi);
1461 ok(*api[0].pi == 0, "pi unmarshalled incorrectly %d\n", *api[0].pi);
1462
1463 if (!old_windows_version)
1464 {
1465 ns = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, FIELD_OFFSET(numbers_struct_t, numbers[5]));
1466 ns->length = 5;
1467 ns->size = 5;
1468 ns->numbers[0].pi = pi;
1469 get_numbers_struct(&ns);
1470 ok(ns->numbers[0].pi == pi, "RPC conformant varying struct embedded pointer changed from %p to %p\n", pi, ns->numbers[0].pi);
1471 ok(*ns->numbers[0].pi == 5, "pi unmarshalled incorrectly %d\n", *ns->numbers[0].pi);
1472 HeapFree(GetProcessHeap(), 0, ns);
1473 }
1474 HeapFree(GetProcessHeap(), 0, pi);
1475
1476 pi = HeapAlloc(GetProcessHeap(), 0, 5 * sizeof(*pi));
1477 pi[0] = 3; rpi[0] = &pi[0];
1478 pi[1] = 5; rpi[1] = &pi[1];
1479 pi[2] = -2; rpi[2] = &pi[2];
1480 pi[3] = -1; rpi[3] = &pi[3];
1481 pi[4] = -4; rpi[4] = &pi[4];
1482 ok(sum_complex_array(5, rpi) == 1, "RPC sum_complex_array\n");
1483 HeapFree(GetProcessHeap(), 0, pi);
1484 }
1485
1486 void __cdecl s_authinfo_test(unsigned int protseq, int secure)
1487 {
1488 RPC_BINDING_HANDLE binding;
1489 RPC_STATUS status;
1490 ULONG level, authnsvc;
1491 RPC_AUTHZ_HANDLE privs;
1492 unsigned char *principal;
1493
1494 binding = I_RpcGetCurrentCallHandle();
1495 ok(binding != NULL, "I_RpcGetCurrentCallHandle returned NULL\n");
1496
1497 level = authnsvc = 0xdeadbeef;
1498 privs = (RPC_AUTHZ_HANDLE)0xdeadbeef;
1499 principal = (unsigned char *)0xdeadbeef;
1500
1501 if (secure || protseq == RPC_PROTSEQ_LRPC)
1502 {
1503 status = RpcBindingInqAuthClientA(binding, &privs, &principal, &level, &authnsvc, NULL);
1504 if (status == RPC_S_CANNOT_SUPPORT)
1505 {
1506 win_skip("RpcBindingInqAuthClientA not supported\n");
1507 return;
1508 }
1509 ok(status == RPC_S_OK, "expected RPC_S_OK got %u\n", status);
1510 ok(privs != (RPC_AUTHZ_HANDLE)0xdeadbeef, "privs unchanged\n");
1511 ok(principal != (unsigned char *)0xdeadbeef, "principal unchanged\n");
1512 if (protseq != RPC_PROTSEQ_LRPC)
1513 {
1514 todo_wine
1515 ok(principal != NULL, "NULL principal\n");
1516 }
1517 if (protseq == RPC_PROTSEQ_LRPC && principal)
1518 {
1519 int len;
1520 char *spn;
1521
1522 len = WideCharToMultiByte(CP_ACP, 0, (const WCHAR *)privs, -1, NULL, 0, NULL, NULL);
1523 spn = HeapAlloc( GetProcessHeap(), 0, len );
1524 WideCharToMultiByte(CP_ACP, 0, (const WCHAR *)privs, -1, spn, len, NULL, NULL);
1525
1526 ok(!strcmp(domain_and_user, spn), "expected %s got %s\n", domain_and_user, spn);
1527 HeapFree( GetProcessHeap(), 0, spn );
1528 }
1529 ok(level == RPC_C_AUTHN_LEVEL_PKT_PRIVACY, "level unchanged\n");
1530 ok(authnsvc == RPC_C_AUTHN_WINNT, "authnsvc unchanged\n");
1531 RpcStringFreeA(&principal);
1532
1533 status = RpcBindingInqAuthClientA(NULL, &privs, &principal, &level, &authnsvc, NULL);
1534 ok(status == RPC_S_OK, "expected RPC_S_OK got %u\n", status);
1535 RpcStringFreeA(&principal);
1536
1537 status = RpcBindingInqAuthClientExA(NULL, &privs, &principal, &level, &authnsvc, NULL, 0);
1538 ok(status == RPC_S_OK, "expected RPC_S_OK got %u\n", status);
1539 RpcStringFreeA(&principal);
1540
1541 status = RpcImpersonateClient(NULL);
1542 ok(status == RPC_S_OK, "expected RPC_S_OK got %u\n", status);
1543 status = RpcRevertToSelf();
1544 ok(status == RPC_S_OK, "expected RPC_S_OK got %u\n", status);
1545
1546 }
1547 else
1548 {
1549 status = RpcBindingInqAuthClientA(binding, &privs, &principal, &level, &authnsvc, NULL);
1550 ok(status == RPC_S_BINDING_HAS_NO_AUTH, "expected RPC_S_BINDING_HAS_NO_AUTH got %u\n", status);
1551 ok(privs == (RPC_AUTHZ_HANDLE)0xdeadbeef, "got %p\n", privs);
1552 ok(principal == (unsigned char *)0xdeadbeef, "got %s\n", principal);
1553 ok(level == 0xdeadbeef, "got %u\n", level);
1554 ok(authnsvc == 0xdeadbeef, "got %u\n", authnsvc);
1555 }
1556 }
1557
1558 static void
1559 run_tests(void)
1560 {
1561 basic_tests();
1562 union_tests();
1563 pointer_tests();
1564 array_tests();
1565 context_handle_test();
1566 }
1567
1568 static void
1569 set_auth_info(RPC_BINDING_HANDLE handle)
1570 {
1571 RPC_STATUS status;
1572 RPC_SECURITY_QOS qos;
1573
1574 qos.Version = 1;
1575 qos.Capabilities = RPC_C_QOS_CAPABILITIES_MUTUAL_AUTH;
1576 qos.IdentityTracking = RPC_C_QOS_IDENTITY_STATIC;
1577 qos.ImpersonationType = RPC_C_IMP_LEVEL_IMPERSONATE;
1578
1579 status = pRpcBindingSetAuthInfoExA(handle, (RPC_CSTR)domain_and_user, RPC_C_AUTHN_LEVEL_PKT_PRIVACY,
1580 RPC_C_AUTHN_WINNT, NULL, 0, &qos);
1581 ok(status == RPC_S_OK, "RpcBindingSetAuthInfoExA failed %d\n", status);
1582 }
1583
1584 #define test_is_server_listening(a,b) _test_is_server_listening(__LINE__,a,b)
1585 static void _test_is_server_listening(unsigned line, RPC_BINDING_HANDLE binding, RPC_STATUS expected_status)
1586 {
1587 RPC_STATUS status;
1588 status = RpcMgmtIsServerListening(binding);
1589 ok_(__FILE__,line)(status == expected_status, "RpcMgmtIsServerListening returned %u, expected %u\n",
1590 status, expected_status);
1591 }
1592
1593 #define test_is_server_listening2(a,b,c) _test_is_server_listening2(__LINE__,a,b,c)
1594 static void _test_is_server_listening2(unsigned line, RPC_BINDING_HANDLE binding, RPC_STATUS expected_status,
1595 RPC_STATUS expected_status2)
1596 {
1597 RPC_STATUS status;
1598 status = RpcMgmtIsServerListening(binding);
1599 ok_(__FILE__,line)(status == expected_status || status == expected_status2,
1600 "RpcMgmtIsServerListening returned %u, expected %u or %u\n",
1601 status, expected_status, expected_status2);
1602 }
1603
1604 static void
1605 client(const char *test)
1606 {
1607 static unsigned char iptcp[] = "ncacn_ip_tcp";
1608 static unsigned char np[] = "ncacn_np";
1609 static unsigned char ncalrpc[] = "ncalrpc";
1610 static unsigned char address[] = "127.0.0.1";
1611 static unsigned char address_np[] = "\\\\.";
1612 static unsigned char port[] = PORT;
1613 static unsigned char pipe[] = PIPE;
1614 static unsigned char guid[] = "00000000-4114-0704-2301-000000000000";
1615
1616 unsigned char *binding;
1617
1618 if (strcmp(test, "tcp_basic") == 0)
1619 {
1620 ok(RPC_S_OK == RpcStringBindingComposeA(NULL, iptcp, address, port, NULL, &binding), "RpcStringBindingCompose\n");
1621 ok(RPC_S_OK == RpcBindingFromStringBindingA(binding, &IServer_IfHandle), "RpcBindingFromStringBinding\n");
1622
1623 run_tests();
1624 authinfo_test(RPC_PROTSEQ_TCP, 0);
1625 test_is_server_listening2(IServer_IfHandle, RPC_S_OK, RPC_S_ACCESS_DENIED);
1626
1627 ok(RPC_S_OK == RpcStringFreeA(&binding), "RpcStringFree\n");
1628 ok(RPC_S_OK == RpcBindingFree(&IServer_IfHandle), "RpcBindingFree\n");
1629 }
1630 else if (strcmp(test, "tcp_secure") == 0)
1631 {
1632 ok(RPC_S_OK == RpcStringBindingComposeA(NULL, iptcp, address, port, NULL, &binding), "RpcStringBindingCompose\n");
1633 ok(RPC_S_OK == RpcBindingFromStringBindingA(binding, &IServer_IfHandle), "RpcBindingFromStringBinding\n");
1634
1635 set_auth_info(IServer_IfHandle);
1636 authinfo_test(RPC_PROTSEQ_TCP, 1);
1637 test_is_server_listening(IServer_IfHandle, RPC_S_ACCESS_DENIED);
1638
1639 ok(RPC_S_OK == RpcStringFreeA(&binding), "RpcStringFree\n");
1640 ok(RPC_S_OK == RpcBindingFree(&IServer_IfHandle), "RpcBindingFree\n");
1641 }
1642 else if (strcmp(test, "ncalrpc_basic") == 0)
1643 {
1644 ok(RPC_S_OK == RpcStringBindingComposeA(NULL, ncalrpc, NULL, guid, NULL, &binding), "RpcStringBindingCompose\n");
1645 ok(RPC_S_OK == RpcBindingFromStringBindingA(binding, &IServer_IfHandle), "RpcBindingFromStringBinding\n");
1646
1647 run_tests(); /* can cause RPC_X_BAD_STUB_DATA exception */
1648 authinfo_test(RPC_PROTSEQ_LRPC, 0);
1649 test_is_server_listening(IServer_IfHandle, RPC_S_OK);
1650
1651 ok(RPC_S_OK == RpcStringFreeA(&binding), "RpcStringFree\n");
1652 ok(RPC_S_OK == RpcBindingFree(&IServer_IfHandle), "RpcBindingFree\n");
1653 }
1654 else if (strcmp(test, "ncalrpc_secure") == 0)
1655 {
1656 ok(RPC_S_OK == RpcStringBindingComposeA(NULL, ncalrpc, NULL, guid, NULL, &binding), "RpcStringBindingCompose\n");
1657 ok(RPC_S_OK == RpcBindingFromStringBindingA(binding, &IServer_IfHandle), "RpcBindingFromStringBinding\n");
1658
1659 set_auth_info(IServer_IfHandle);
1660 authinfo_test(RPC_PROTSEQ_LRPC, 1);
1661 test_is_server_listening(IServer_IfHandle, RPC_S_OK);
1662
1663 ok(RPC_S_OK == RpcStringFreeA(&binding), "RpcStringFree\n");
1664 ok(RPC_S_OK == RpcBindingFree(&IServer_IfHandle), "RpcBindingFree\n");
1665 }
1666 else if (strcmp(test, "np_basic") == 0)
1667 {
1668 ok(RPC_S_OK == RpcStringBindingComposeA(NULL, np, address_np, pipe, NULL, &binding), "RpcStringBindingCompose\n");
1669 ok(RPC_S_OK == RpcBindingFromStringBindingA(binding, &IServer_IfHandle), "RpcBindingFromStringBinding\n");
1670
1671 test_is_server_listening(IServer_IfHandle, RPC_S_OK);
1672 run_tests();
1673 authinfo_test(RPC_PROTSEQ_NMP, 0);
1674 test_is_server_listening(IServer_IfHandle, RPC_S_OK);
1675 stop();
1676 test_is_server_listening(IServer_IfHandle, RPC_S_NOT_LISTENING);
1677
1678 ok(RPC_S_OK == RpcStringFreeA(&binding), "RpcStringFree\n");
1679 ok(RPC_S_OK == RpcBindingFree(&IServer_IfHandle), "RpcBindingFree\n");
1680 }
1681 }
1682
1683 static void
1684 server(void)
1685 {
1686 static unsigned char iptcp[] = "ncacn_ip_tcp";
1687 static unsigned char port[] = PORT;
1688 static unsigned char np[] = "ncacn_np";
1689 static unsigned char pipe[] = PIPE;
1690 static unsigned char ncalrpc[] = "ncalrpc";
1691 static unsigned char guid[] = "00000000-4114-0704-2301-000000000000";
1692 RPC_STATUS status, iptcp_status, np_status, ncalrpc_status;
1693 DWORD ret;
1694
1695 iptcp_status = RpcServerUseProtseqEpA(iptcp, 20, port, NULL);
1696 ok(iptcp_status == RPC_S_OK, "RpcServerUseProtseqEp(ncacn_ip_tcp) failed with status %d\n", iptcp_status);
1697
1698 ncalrpc_status = RpcServerUseProtseqEpA(ncalrpc, 0, guid, NULL);
1699 ok(ncalrpc_status == RPC_S_OK, "RpcServerUseProtseqEp(ncalrpc) failed with status %d\n", ncalrpc_status);
1700
1701 np_status = RpcServerUseProtseqEpA(np, 0, pipe, NULL);
1702 if (np_status == RPC_S_PROTSEQ_NOT_SUPPORTED)
1703 skip("Protocol sequence ncacn_np is not supported\n");
1704 else
1705 ok(np_status == RPC_S_OK, "RpcServerUseProtseqEp(ncacn_np) failed with status %d\n", np_status);
1706
1707 if (pRpcServerRegisterIfEx)
1708 {
1709 trace("Using RpcServerRegisterIfEx\n");
1710 status = pRpcServerRegisterIfEx(s_IServer_v0_0_s_ifspec, NULL, NULL,
1711 RPC_IF_ALLOW_CALLBACKS_WITH_NO_AUTH,
1712 RPC_C_LISTEN_MAX_CALLS_DEFAULT, NULL);
1713 }
1714 else
1715 status = RpcServerRegisterIf(s_IServer_v0_0_s_ifspec, NULL, NULL);
1716 ok(status == RPC_S_OK, "RpcServerRegisterIf failed with status %d\n", status);
1717 test_is_server_listening(NULL, RPC_S_NOT_LISTENING);
1718 status = RpcServerListen(1, 20, TRUE);
1719 ok(status == RPC_S_OK, "RpcServerListen failed with status %d\n", status);
1720 test_is_server_listening(NULL, RPC_S_OK);
1721 stop_event = CreateEventW(NULL, FALSE, FALSE, NULL);
1722 ok(stop_event != NULL, "CreateEvent failed with error %d\n", GetLastError());
1723
1724 if (iptcp_status == RPC_S_OK)
1725 run_client("tcp_basic");
1726 else
1727 skip("tcp tests skipped due to earlier failure\n");
1728
1729 if (ncalrpc_status == RPC_S_OK)
1730 {
1731 run_client("ncalrpc_basic");
1732
1733 /* we don't need to register RPC_C_AUTHN_WINNT for ncalrpc */
1734 run_client("ncalrpc_secure");
1735 }
1736 else
1737 skip("lrpc tests skipped due to earlier failure\n");
1738
1739 if (np_status == RPC_S_OK)
1740 run_client("np_basic");
1741 else
1742 {
1743 skip("np_basic tests skipped due to earlier failure\n");
1744 /* np client is what signals stop_event, so bail out if we didn't run do it */
1745 return;
1746 }
1747
1748 ret = WaitForSingleObject(stop_event, 1000);
1749 ok(WAIT_OBJECT_0 == ret, "WaitForSingleObject\n");
1750 /* if the stop event didn't fire then RpcMgmtWaitServerListen will wait
1751 * forever, so don't bother calling it in this case */
1752 if (ret == WAIT_OBJECT_0)
1753 {
1754 status = RpcMgmtWaitServerListen();
1755 todo_wine {
1756 ok(status == RPC_S_OK, "RpcMgmtWaitServerListening failed with status %d\n", status);
1757 }
1758 }
1759 }
1760
1761 static BOOL is_process_elevated(void)
1762 {
1763 HANDLE token;
1764 if (OpenProcessToken( GetCurrentProcess(), TOKEN_QUERY, &token ))
1765 {
1766 TOKEN_ELEVATION_TYPE type;
1767 DWORD size;
1768 BOOL ret;
1769
1770 ret = GetTokenInformation( token, TokenElevationType, &type, sizeof(type), &size );
1771 CloseHandle( token );
1772 return (ret && type == TokenElevationTypeFull);
1773 }
1774 return FALSE;
1775 }
1776
1777 static BOOL is_firewall_enabled(void)
1778 {
1779 HRESULT hr, init;
1780 INetFwMgr *mgr = NULL;
1781 INetFwPolicy *policy = NULL;
1782 INetFwProfile *profile = NULL;
1783 VARIANT_BOOL enabled = VARIANT_FALSE;
1784
1785 init = CoInitializeEx( 0, COINIT_APARTMENTTHREADED );
1786
1787 hr = CoCreateInstance( &CLSID_NetFwMgr, NULL, CLSCTX_INPROC_SERVER, &IID_INetFwMgr,
1788 (void **)&mgr );
1789 ok( hr == S_OK, "got %08x\n", hr );
1790 if (hr != S_OK) goto done;
1791
1792 hr = INetFwMgr_get_LocalPolicy( mgr, &policy );
1793 ok( hr == S_OK, "got %08x\n", hr );
1794 if (hr != S_OK) goto done;
1795
1796 hr = INetFwPolicy_get_CurrentProfile( policy, &profile );
1797 if (hr != S_OK) goto done;
1798
1799 hr = INetFwProfile_get_FirewallEnabled( profile, &enabled );
1800 ok( hr == S_OK, "got %08x\n", hr );
1801
1802 done:
1803 if (policy) INetFwPolicy_Release( policy );
1804 if (profile) INetFwProfile_Release( profile );
1805 if (mgr) INetFwMgr_Release( mgr );
1806 if (SUCCEEDED( init )) CoUninitialize();
1807 return (enabled == VARIANT_TRUE);
1808 }
1809
1810 enum firewall_op
1811 {
1812 APP_ADD,
1813 APP_REMOVE
1814 };
1815
1816 static HRESULT set_firewall( enum firewall_op op )
1817 {
1818 static const WCHAR testW[] = {'r','p','c','r','t','4','_','t','e','s','t',0};
1819 HRESULT hr, init;
1820 INetFwMgr *mgr = NULL;
1821 INetFwPolicy *policy = NULL;
1822 INetFwProfile *profile = NULL;
1823 INetFwAuthorizedApplication *app = NULL;
1824 INetFwAuthorizedApplications *apps = NULL;
1825 BSTR name, image = SysAllocStringLen( NULL, MAX_PATH );
1826
1827 if (!GetModuleFileNameW( NULL, image, MAX_PATH ))
1828 {
1829 SysFreeString( image );
1830 return E_FAIL;
1831 }
1832 init = CoInitializeEx( 0, COINIT_APARTMENTTHREADED );
1833
1834 hr = CoCreateInstance( &CLSID_NetFwMgr, NULL, CLSCTX_INPROC_SERVER, &IID_INetFwMgr,
1835 (void **)&mgr );
1836 ok( hr == S_OK, "got %08x\n", hr );
1837 if (hr != S_OK) goto done;
1838
1839 hr = INetFwMgr_get_LocalPolicy( mgr, &policy );
1840 ok( hr == S_OK, "got %08x\n", hr );
1841 if (hr != S_OK) goto done;
1842
1843 hr = INetFwPolicy_get_CurrentProfile( policy, &profile );
1844 if (hr != S_OK) goto done;
1845
1846 INetFwProfile_get_AuthorizedApplications( profile, &apps );
1847 ok( hr == S_OK, "got %08x\n", hr );
1848 if (hr != S_OK) goto done;
1849
1850 hr = CoCreateInstance( &CLSID_NetFwAuthorizedApplication, NULL, CLSCTX_INPROC_SERVER,
1851 &IID_INetFwAuthorizedApplication, (void **)&app );
1852 ok( hr == S_OK, "got %08x\n", hr );
1853 if (hr != S_OK) goto done;
1854
1855 hr = INetFwAuthorizedApplication_put_ProcessImageFileName( app, image );
1856 if (hr != S_OK) goto done;
1857
1858 name = SysAllocString( testW );
1859 hr = INetFwAuthorizedApplication_put_Name( app, name );
1860 SysFreeString( name );
1861 ok( hr == S_OK, "got %08x\n", hr );
1862 if (hr != S_OK) goto done;
1863
1864 if (op == APP_ADD)
1865 hr = INetFwAuthorizedApplications_Add( apps, app );
1866 else if (op == APP_REMOVE)
1867 hr = INetFwAuthorizedApplications_Remove( apps, image );
1868 else
1869 hr = E_INVALIDARG;
1870
1871 done:
1872 if (app) INetFwAuthorizedApplication_Release( app );
1873 if (apps) INetFwAuthorizedApplications_Release( apps );
1874 if (policy) INetFwPolicy_Release( policy );
1875 if (profile) INetFwProfile_Release( profile );
1876 if (mgr) INetFwMgr_Release( mgr );
1877 if (SUCCEEDED( init )) CoUninitialize();
1878 SysFreeString( image );
1879 return hr;
1880 }
1881
1882 START_TEST(server)
1883 {
1884 ULONG size = 0;
1885 int argc;
1886 char **argv;
1887 BOOL firewall_enabled = is_firewall_enabled();
1888
1889 InitFunctionPointers();
1890
1891 if (firewall_enabled && !is_process_elevated())
1892 {
1893 trace("no privileges, skipping tests to avoid firewall dialog\n");
1894 return;
1895 }
1896
1897 ok(!GetUserNameExA(NameSamCompatible, NULL, &size), "GetUserNameExA\n");
1898 domain_and_user = HeapAlloc(GetProcessHeap(), 0, size);
1899 ok(GetUserNameExA(NameSamCompatible, domain_and_user, &size), "GetUserNameExA\n");
1900
1901 argc = winetest_get_mainargs(&argv);
1902 progname = argv[0];
1903
1904 if (argc == 3)
1905 {
1906 RpcTryExcept
1907 {
1908 client(argv[2]);
1909 }
1910 RpcExcept(TRUE)
1911 {
1912 trace("Exception %d\n", RpcExceptionCode());
1913 }
1914 RpcEndExcept
1915 }
1916 else
1917 {
1918 if (firewall_enabled)
1919 {
1920 HRESULT hr = set_firewall(APP_ADD);
1921 if (hr != S_OK)
1922 {
1923 skip("can't authorize app in firewall %08x\n", hr);
1924 HeapFree(GetProcessHeap(), 0, domain_and_user);
1925 return;
1926 }
1927 }
1928 server();
1929 if (firewall_enabled) set_firewall(APP_REMOVE);
1930 }
1931
1932 HeapFree(GetProcessHeap(), 0, domain_and_user);
1933 }