rpcrt4: Export I_UuidCreate().
[wine/multimedia.git] / dlls / rpcrt4 / tests / rpc.c
blob34f7fac2ffb14905f4225cdd2db16676b8edb43a
1 /*
2 * Unit test suite for rpc functions
4 * Copyright 2002 Greg Turner
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #include <stdarg.h>
22 #include <stdio.h>
24 #include <ntstatus.h>
25 #define WIN32_NO_STATUS
26 #include "wine/test.h"
27 #include <windef.h>
28 #include <winbase.h>
29 #include <winnt.h>
30 #include <winerror.h>
31 #include <ole2.h>
32 #include <ntsecapi.h>
34 #include "rpc.h"
35 #include "rpcdce.h"
36 #include "secext.h"
38 typedef unsigned int unsigned32;
39 typedef struct twr_t
41 unsigned32 tower_length;
42 /* [size_is] */ byte tower_octet_string[ 1 ];
43 } twr_t;
45 RPC_STATUS WINAPI TowerExplode(const twr_t *tower, RPC_SYNTAX_IDENTIFIER *object, RPC_SYNTAX_IDENTIFIER *syntax, char **protseq, char **endpoint, char **address);
46 RPC_STATUS WINAPI TowerConstruct(const RPC_SYNTAX_IDENTIFIER *object, const RPC_SYNTAX_IDENTIFIER *syntax, const char *protseq, const char *endpoint, const char *address, twr_t **tower);
48 static UUID Uuid_Table[10] = {
49 { 0x00000000, 0x0000, 0x0000, {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00} }, /* 0 (null) */
50 { 0xdeadbeef, 0xdead, 0xbeef, {0x10, 0x21, 0x35, 0x56, 0x89, 0xa0, 0xf4, 0x8a} }, /* 1 */
51 { 0xabadfeed, 0x49ff, 0xbead, {0x8a, 0xf4, 0xa0, 0x89, 0x56, 0x35, 0x21, 0x10} }, /* 2 */
52 { 0x93da375c, 0x1324, 0x1355, {0x87, 0xff, 0x49, 0x44, 0x34, 0x44, 0x22, 0x19} }, /* 3 */
53 { 0xdeadbeef, 0xdead, 0xbeef, {0x10, 0x21, 0x35, 0x56, 0x89, 0xa0, 0xf4, 0x8b} }, /* 4 (~1) */
54 { 0x9badfeed, 0x49ff, 0xbead, {0x8a, 0xf4, 0xa0, 0x89, 0x56, 0x35, 0x21, 0x10} }, /* 5 (~2) */
55 { 0x00000000, 0x0001, 0x0000, {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00} }, /* 6 (~0) */
56 { 0x00000000, 0x0000, 0x0000, {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01} }, /* 7 (~0) */
57 { 0x12312312, 0x1231, 0x1231, {0x12, 0x34, 0x56, 0x78, 0x9a, 0xbc, 0xde, 0xff} }, /* 8 */
58 { 0x11111111, 0x1111, 0x1111, {0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11} } /* 9 */
61 /* index of "10" means "NULL" */
62 static BOOL Uuid_Comparison_Grid[11][11] = {
63 { TRUE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, TRUE },
64 { FALSE, TRUE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE },
65 { FALSE, FALSE, TRUE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE },
66 { FALSE, FALSE, FALSE, TRUE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE },
67 { FALSE, FALSE, FALSE, FALSE, TRUE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE },
68 { FALSE, FALSE, FALSE, FALSE, FALSE, TRUE, FALSE, FALSE, FALSE, FALSE, FALSE },
69 { FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, TRUE, FALSE, FALSE, FALSE, FALSE },
70 { FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, TRUE, FALSE, FALSE, FALSE },
71 { FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, TRUE, FALSE, FALSE },
72 { FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, TRUE, FALSE },
73 { TRUE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, TRUE }
76 static void UuidConversionAndComparison(void) {
77 CHAR strx[100], x;
78 LPSTR str = strx;
79 WCHAR wstrx[100], wx;
80 LPWSTR wstr = wstrx;
82 UUID Uuid1, Uuid2, *PUuid1, *PUuid2;
83 RPC_STATUS rslt;
85 int i1,i2;
87 /* Uuid Equality */
88 for (i1 = 0; i1 < 11; i1++)
89 for (i2 = 0; i2 < 11; i2++) {
90 if (i1 < 10) {
91 Uuid1 = Uuid_Table[i1];
92 PUuid1 = &Uuid1;
93 } else {
94 PUuid1 = NULL;
96 if (i2 < 10) {
97 Uuid2 = Uuid_Table[i2];
98 PUuid2 = &Uuid2;
99 } else {
100 PUuid2 = NULL;
102 ok( (UuidEqual(PUuid1, PUuid2, &rslt) == Uuid_Comparison_Grid[i1][i2]), "UUID Equality\n" );
105 /* Uuid to String to Uuid (char) */
106 for (i1 = 0; i1 < 10; i1++) {
107 Uuid1 = Uuid_Table[i1];
108 ok( (UuidToStringA(&Uuid1, (unsigned char**)&str) == RPC_S_OK), "Simple UUID->String copy\n" );
109 ok( (UuidFromStringA((unsigned char*)str, &Uuid2) == RPC_S_OK), "Simple String->UUID copy from generated UUID String\n" );
110 ok( UuidEqual(&Uuid1, &Uuid2, &rslt), "Uuid -> String -> Uuid transform\n" );
111 /* invalid uuid tests -- size of valid UUID string=36 */
112 for (i2 = 0; i2 < 36; i2++) {
113 x = str[i2];
114 str[i2] = 'g'; /* whatever, but "g" is a good boundary condition */
115 ok( (UuidFromStringA((unsigned char*)str, &Uuid1) == RPC_S_INVALID_STRING_UUID), "Invalid UUID String\n" );
116 str[i2] = x; /* change it back so remaining tests are interesting. */
118 RpcStringFreeA((unsigned char **)&str);
121 /* Uuid to String to Uuid (wchar) */
122 for (i1 = 0; i1 < 10; i1++) {
123 Uuid1 = Uuid_Table[i1];
124 rslt=UuidToStringW(&Uuid1, &wstr);
125 ok( (rslt == RPC_S_OK), "Simple UUID->WString copy\n" );
126 ok( (UuidFromStringW(wstr, &Uuid2) == RPC_S_OK), "Simple WString->UUID copy from generated UUID String\n" );
127 ok( UuidEqual(&Uuid1, &Uuid2, &rslt), "Uuid -> WString -> Uuid transform\n" );
128 /* invalid uuid tests -- size of valid UUID string=36 */
129 for (i2 = 0; i2 < 36; i2++) {
130 wx = wstr[i2];
131 wstr[i2] = 'g'; /* whatever, but "g" is a good boundary condition */
132 ok( (UuidFromStringW(wstr, &Uuid1) == RPC_S_INVALID_STRING_UUID), "Invalid UUID WString\n" );
133 wstr[i2] = wx; /* change it back so remaining tests are interesting. */
135 RpcStringFreeW(&wstr);
139 static void TestDceErrorInqText (void)
141 char bufferInvalid [1024];
142 char buffer [1024]; /* The required size is not documented but would
143 * appear to be 256.
145 DWORD dwCount;
147 dwCount = FormatMessageA (FORMAT_MESSAGE_FROM_SYSTEM |
148 FORMAT_MESSAGE_IGNORE_INSERTS,
149 NULL, RPC_S_NOT_RPC_ERROR, 0, bufferInvalid,
150 sizeof(bufferInvalid)/sizeof(bufferInvalid[0]), NULL);
152 /* A random sample of DceErrorInqText */
153 /* 0 is success */
154 ok ((DceErrorInqTextA (0, (unsigned char*)buffer) == RPC_S_OK),
155 "DceErrorInqTextA(0...)\n");
156 /* A real RPC_S error */
157 ok ((DceErrorInqTextA (RPC_S_INVALID_STRING_UUID, (unsigned char*)buffer) == RPC_S_OK),
158 "DceErrorInqTextA(valid...)\n");
160 if (dwCount)
162 /* A message for which FormatMessage should fail
163 * which should return RPC_S_OK and the
164 * fixed "not valid" message
166 ok ((DceErrorInqTextA (35, (unsigned char*)buffer) == RPC_S_OK &&
167 strcmp (buffer, bufferInvalid) == 0),
168 "DceErrorInqTextA(unformattable...)\n");
169 /* One for which FormatMessage should succeed but
170 * DceErrorInqText should "fail"
171 * 3814 is generally quite a long message
173 ok ((DceErrorInqTextA (3814, (unsigned char*)buffer) == RPC_S_OK &&
174 strcmp (buffer, bufferInvalid) == 0),
175 "DceErrorInqTextA(deviation...)\n");
177 else
178 ok (0, "Cannot set up for DceErrorInqText\n");
181 static RPC_DISPATCH_FUNCTION IFoo_table[] =
186 static RPC_DISPATCH_TABLE IFoo_v0_0_DispatchTable =
189 IFoo_table
192 static const RPC_SERVER_INTERFACE IFoo___RpcServerInterface =
194 sizeof(RPC_SERVER_INTERFACE),
195 {{0x00000000,0x0000,0x0000,{0x00,0x00,0x00,0x00,0x00,0x00,0x12,0x34}},{0,0}},
196 {{0x8a885d04,0x1ceb,0x11c9,{0x9f,0xe8,0x08,0x00,0x2b,0x10,0x48,0x60}},{2,0}},
197 &IFoo_v0_0_DispatchTable,
205 static RPC_IF_HANDLE IFoo_v0_0_s_ifspec = (RPC_IF_HANDLE)& IFoo___RpcServerInterface;
207 static void test_rpc_ncacn_ip_tcp(void)
209 RPC_STATUS status;
210 unsigned char *binding, *principal;
211 handle_t IFoo_IfHandle;
212 ULONG level, authnsvc, authzsvc;
213 RPC_AUTH_IDENTITY_HANDLE identity;
214 static unsigned char foo[] = "foo";
215 static unsigned char ncacn_ip_tcp[] = "ncacn_ip_tcp";
216 static unsigned char address[] = "127.0.0.1";
217 static unsigned char endpoint[] = "4114";
218 static unsigned char spn[] = "principal";
220 status = RpcNetworkIsProtseqValidA(foo);
221 ok(status == RPC_S_INVALID_RPC_PROTSEQ, "return wrong\n");
223 status = RpcNetworkIsProtseqValidA(ncacn_ip_tcp);
224 ok(status == RPC_S_OK, "return wrong\n");
226 status = RpcMgmtStopServerListening(NULL);
227 todo_wine {
228 ok(status == RPC_S_NOT_LISTENING,
229 "wrong RpcMgmtStopServerListening error (%u)\n", status);
232 status = RpcMgmtWaitServerListen();
233 ok(status == RPC_S_NOT_LISTENING,
234 "wrong RpcMgmtWaitServerListen error status (%u)\n", status);
236 status = RpcServerListen(1, 20, FALSE);
237 ok(status == RPC_S_NO_PROTSEQS_REGISTERED,
238 "wrong RpcServerListen error (%u)\n", status);
240 status = RpcServerUseProtseqEpA(ncacn_ip_tcp, 20, endpoint, NULL);
241 ok(status == RPC_S_OK, "RpcServerUseProtseqEp failed (%u)\n", status);
243 status = RpcServerRegisterIf(IFoo_v0_0_s_ifspec, NULL, NULL);
244 ok(status == RPC_S_OK, "RpcServerRegisterIf failed (%u)\n", status);
246 status = RpcServerListen(1, 20, TRUE);
247 todo_wine {
248 ok(status == RPC_S_OK, "RpcServerListen failed (%u)\n", status);
251 status = RpcServerListen(1, 20, TRUE);
252 todo_wine {
253 ok(status == RPC_S_ALREADY_LISTENING,
254 "wrong RpcServerListen error (%u)\n", status);
257 status = RpcStringBindingComposeA(NULL, ncacn_ip_tcp, address,
258 endpoint, NULL, &binding);
259 ok(status == RPC_S_OK, "RpcStringBindingCompose failed (%u)\n", status);
261 status = RpcBindingFromStringBindingA(binding, &IFoo_IfHandle);
262 ok(status == RPC_S_OK, "RpcBindingFromStringBinding failed (%u)\n",
263 status);
265 status = RpcBindingSetAuthInfoA(IFoo_IfHandle, NULL, RPC_C_AUTHN_LEVEL_NONE,
266 RPC_C_AUTHN_WINNT, NULL, RPC_C_AUTHZ_NAME);
267 ok(status == RPC_S_OK, "RpcBindingSetAuthInfo failed (%u)\n", status);
269 status = RpcBindingInqAuthInfoA(IFoo_IfHandle, NULL, NULL, NULL, NULL, NULL);
270 ok(status == RPC_S_BINDING_HAS_NO_AUTH, "RpcBindingInqAuthInfo failed (%u)\n",
271 status);
273 status = RpcBindingSetAuthInfoA(IFoo_IfHandle, spn, RPC_C_AUTHN_LEVEL_PKT_PRIVACY,
274 RPC_C_AUTHN_WINNT, NULL, RPC_C_AUTHZ_NAME);
275 ok(status == RPC_S_OK, "RpcBindingSetAuthInfo failed (%u)\n", status);
277 level = authnsvc = authzsvc = 0;
278 principal = (unsigned char *)0xdeadbeef;
279 identity = (RPC_AUTH_IDENTITY_HANDLE *)0xdeadbeef;
280 status = RpcBindingInqAuthInfoA(IFoo_IfHandle, &principal, &level, &authnsvc,
281 &identity, &authzsvc);
283 ok(status == RPC_S_OK, "RpcBindingInqAuthInfo failed (%u)\n", status);
284 ok(identity == NULL, "expected NULL identity, got %p\n", identity);
285 ok(principal != (unsigned char *)0xdeadbeef, "expected valid principal, got %p\n", principal);
286 ok(level == RPC_C_AUTHN_LEVEL_PKT_PRIVACY, "expected RPC_C_AUTHN_LEVEL_PKT_PRIVACY, got %d\n", level);
287 ok(authnsvc == RPC_C_AUTHN_WINNT, "expected RPC_C_AUTHN_WINNT, got %d\n", authnsvc);
288 todo_wine ok(authzsvc == RPC_C_AUTHZ_NAME, "expected RPC_C_AUTHZ_NAME, got %d\n", authzsvc);
289 if (status == RPC_S_OK) RpcStringFreeA(&principal);
291 status = RpcMgmtStopServerListening(NULL);
292 ok(status == RPC_S_OK, "RpcMgmtStopServerListening failed (%u)\n",
293 status);
295 status = RpcMgmtStopServerListening(NULL);
296 ok(status == RPC_S_OK, "RpcMgmtStopServerListening failed (%u)\n",
297 status);
299 status = RpcServerUnregisterIf(NULL, NULL, FALSE);
300 ok(status == RPC_S_OK, "RpcServerUnregisterIf failed (%u)\n", status);
302 status = RpcMgmtWaitServerListen();
303 todo_wine {
304 ok(status == RPC_S_OK, "RpcMgmtWaitServerListen failed (%u)\n", status);
307 status = RpcStringFreeA(&binding);
308 ok(status == RPC_S_OK, "RpcStringFree failed (%u)\n", status);
310 status = RpcBindingFree(&IFoo_IfHandle);
311 ok(status == RPC_S_OK, "RpcBindingFree failed (%u)\n", status);
314 /* this is what's generated with MS/RPC - it includes an extra 2
315 * bytes in the protocol floor */
316 static const unsigned char tower_data_tcp_ip1[] =
318 0x05,0x00,0x13,0x00,0x0d,0x00,0xdb,0xf1,
319 0xa4,0x47,0xca,0x67,0x10,0xb3,0x1f,0x00,
320 0xdd,0x01,0x06,0x62,0xda,0x00,0x00,0x02,
321 0x00,0x00,0x00,0x13,0x00,0x0d,0x04,0x5d,
322 0x88,0x8a,0xeb,0x1c,0xc9,0x11,0x9f,0xe8,
323 0x08,0x00,0x2b,0x10,0x48,0x60,0x02,0x00,
324 0x02,0x00,0x00,0x00,0x01,0x00,0x0b,0x02,
325 0x00,0x00,0x00,0x01,0x00,0x07,0x02,0x00,
326 0x00,0x87,0x01,0x00,0x09,0x04,0x00,0x0a,
327 0x00,0x00,0x01,
329 /* this is the optimal data that i think should be generated */
330 static const unsigned char tower_data_tcp_ip2[] =
332 0x05,0x00,0x13,0x00,0x0d,0x00,0xdb,0xf1,
333 0xa4,0x47,0xca,0x67,0x10,0xb3,0x1f,0x00,
334 0xdd,0x01,0x06,0x62,0xda,0x00,0x00,0x02,
335 0x00,0x00,0x00,0x13,0x00,0x0d,0x04,0x5d,
336 0x88,0x8a,0xeb,0x1c,0xc9,0x11,0x9f,0xe8,
337 0x08,0x00,0x2b,0x10,0x48,0x60,0x02,0x00,
338 0x02,0x00,0x00,0x00,0x01,0x00,0x0b,0x00,
339 0x00,0x01,0x00,0x07,0x02,0x00,0x00,0x87,
340 0x01,0x00,0x09,0x04,0x00,0x0a,0x00,0x00,
341 0x01,
344 static void test_towers(void)
346 RPC_STATUS ret;
347 twr_t *tower;
348 static const RPC_SYNTAX_IDENTIFIER mapi_if_id = { { 0xa4f1db00, 0xca47, 0x1067, { 0xb3, 0x1f, 0x00, 0xdd, 0x01, 0x06, 0x62, 0xda } }, { 0, 0 } };
349 static const RPC_SYNTAX_IDENTIFIER ndr_syntax = { { 0x8a885d04, 0x1ceb, 0x11c9, { 0x9f, 0xe8, 0x08, 0x00, 0x2b, 0x10, 0x48, 0x60 } }, { 2, 0 } };
350 RPC_SYNTAX_IDENTIFIER object, syntax;
351 char *protseq, *endpoint, *address;
352 BOOL same;
354 ret = TowerConstruct(&mapi_if_id, &ndr_syntax, "ncacn_ip_tcp", "135", "10.0.0.1", &tower);
355 ok(ret == RPC_S_OK ||
356 broken(ret == RPC_S_INVALID_RPC_PROTSEQ), /* Vista */
357 "TowerConstruct failed with error %d\n", ret);
358 if (ret == RPC_S_INVALID_RPC_PROTSEQ)
360 /* Windows Vista fails with this error and crashes if we continue */
361 win_skip("TowerConstruct failed, we are most likely on Windows Vista\n");
362 return;
365 /* first check we have the right amount of data */
366 ok(tower->tower_length == sizeof(tower_data_tcp_ip1) ||
367 tower->tower_length == sizeof(tower_data_tcp_ip2),
368 "Wrong size of tower %d\n", tower->tower_length);
370 /* then do a byte-by-byte comparison */
371 same = ((tower->tower_length == sizeof(tower_data_tcp_ip1)) &&
372 !memcmp(&tower->tower_octet_string, tower_data_tcp_ip1, sizeof(tower_data_tcp_ip1))) ||
373 ((tower->tower_length == sizeof(tower_data_tcp_ip2)) &&
374 !memcmp(&tower->tower_octet_string, tower_data_tcp_ip2, sizeof(tower_data_tcp_ip2)));
376 ok(same, "Tower data differs\n");
377 if (!same)
379 unsigned32 i;
380 for (i = 0; i < tower->tower_length; i++)
382 if (i % 8 == 0) printf(" ");
383 printf("0x%02x,", tower->tower_octet_string[i]);
384 if (i % 8 == 7) printf("\n");
386 printf("\n");
389 ret = TowerExplode(tower, &object, &syntax, &protseq, &endpoint, &address);
390 ok(ret == RPC_S_OK, "TowerExplode failed with error %d\n", ret);
391 ok(!memcmp(&object, &mapi_if_id, sizeof(mapi_if_id)), "object id didn't match\n");
392 ok(!memcmp(&syntax, &ndr_syntax, sizeof(syntax)), "syntax id didn't match\n");
393 ok(!strcmp(protseq, "ncacn_ip_tcp"), "protseq was \"%s\" instead of \"ncacn_ip_tcp\"\n", protseq);
394 ok(!strcmp(endpoint, "135"), "endpoint was \"%s\" instead of \"135\"\n", endpoint);
395 ok(!strcmp(address, "10.0.0.1"), "address was \"%s\" instead of \"10.0.0.1\"\n", address);
397 I_RpcFree(protseq);
398 I_RpcFree(endpoint);
399 I_RpcFree(address);
401 ret = TowerExplode(tower, NULL, NULL, NULL, NULL, NULL);
402 ok(ret == RPC_S_OK, "TowerExplode failed with error %d\n", ret);
404 I_RpcFree(tower);
406 /* test the behaviour for ip_tcp with name instead of dotted IP notation */
407 ret = TowerConstruct(&mapi_if_id, &ndr_syntax, "ncacn_ip_tcp", "135", "localhost", &tower);
408 ok(ret == RPC_S_OK, "TowerConstruct failed with error %d\n", ret);
409 ret = TowerExplode(tower, NULL, NULL, NULL, NULL, &address);
410 ok(ret == RPC_S_OK, "TowerExplode failed with error %d\n", ret);
411 ok(!strcmp(address, "0.0.0.0") ||
412 broken(!strcmp(address, "255.255.255.255")),
413 "address was \"%s\" instead of \"0.0.0.0\"\n", address);
415 I_RpcFree(address);
416 I_RpcFree(tower);
418 /* test the behaviour for np with no address */
419 ret = TowerConstruct(&mapi_if_id, &ndr_syntax, "ncacn_np", "\\pipe\\test", NULL, &tower);
420 ok(ret == RPC_S_OK, "TowerConstruct failed with error %d\n", ret);
421 ret = TowerExplode(tower, NULL, NULL, NULL, NULL, &address);
422 ok(ret == RPC_S_OK ||
423 broken(ret != RPC_S_OK), /* win2k, indeterminate */
424 "TowerExplode failed with error %d\n", ret);
425 /* Windows XP SP3 sets address to NULL */
426 ok(!address || !strcmp(address, ""), "address was \"%s\" instead of \"\" or NULL (XP SP3)\n", address);
428 I_RpcFree(address);
429 I_RpcFree(tower);
432 static void test_I_RpcMapWin32Status(void)
434 LONG win32status;
435 RPC_STATUS rpc_status;
436 BOOL w2k3_up = FALSE;
438 /* Windows 2003 and Vista return STATUS_UNSUCCESSFUL if given an unknown status */
439 win32status = I_RpcMapWin32Status(9999);
440 if (win32status == STATUS_UNSUCCESSFUL)
442 trace("We are on Windows 2003 or Vista\n");
443 w2k3_up = TRUE;
446 /* On Windows XP-SP1 and below some statuses are not mapped and return
447 * the given status
449 for (rpc_status = 0; rpc_status < 10000; rpc_status++)
451 LONG expected_win32status;
452 BOOL missing = FALSE;
454 win32status = I_RpcMapWin32Status(rpc_status);
455 switch (rpc_status)
457 case ERROR_SUCCESS: expected_win32status = ERROR_SUCCESS; break;
458 case ERROR_ACCESS_DENIED: expected_win32status = STATUS_ACCESS_DENIED; break;
459 case ERROR_INVALID_HANDLE: expected_win32status = RPC_NT_SS_CONTEXT_MISMATCH; break;
460 case ERROR_OUTOFMEMORY: expected_win32status = STATUS_NO_MEMORY; break;
461 case ERROR_INVALID_PARAMETER: expected_win32status = STATUS_INVALID_PARAMETER; break;
462 case ERROR_INSUFFICIENT_BUFFER: expected_win32status = STATUS_BUFFER_TOO_SMALL; break;
463 case ERROR_MAX_THRDS_REACHED: expected_win32status = STATUS_NO_MEMORY; break;
464 case ERROR_NOACCESS: expected_win32status = STATUS_ACCESS_VIOLATION; break;
465 case ERROR_NOT_ENOUGH_SERVER_MEMORY: expected_win32status = STATUS_INSUFF_SERVER_RESOURCES; break;
466 case ERROR_WRONG_PASSWORD: expected_win32status = STATUS_WRONG_PASSWORD; missing = TRUE; break;
467 case ERROR_INVALID_LOGON_HOURS: expected_win32status = STATUS_INVALID_LOGON_HOURS; missing = TRUE; break;
468 case ERROR_PASSWORD_EXPIRED: expected_win32status = STATUS_PASSWORD_EXPIRED; missing = TRUE; break;
469 case ERROR_ACCOUNT_DISABLED: expected_win32status = STATUS_ACCOUNT_DISABLED; missing = TRUE; break;
470 case ERROR_INVALID_SECURITY_DESCR: expected_win32status = STATUS_INVALID_SECURITY_DESCR; break;
471 case RPC_S_INVALID_STRING_BINDING: expected_win32status = RPC_NT_INVALID_STRING_BINDING; break;
472 case RPC_S_WRONG_KIND_OF_BINDING: expected_win32status = RPC_NT_WRONG_KIND_OF_BINDING; break;
473 case RPC_S_INVALID_BINDING: expected_win32status = RPC_NT_INVALID_BINDING; break;
474 case RPC_S_PROTSEQ_NOT_SUPPORTED: expected_win32status = RPC_NT_PROTSEQ_NOT_SUPPORTED; break;
475 case RPC_S_INVALID_RPC_PROTSEQ: expected_win32status = RPC_NT_INVALID_RPC_PROTSEQ; break;
476 case RPC_S_INVALID_STRING_UUID: expected_win32status = RPC_NT_INVALID_STRING_UUID; break;
477 case RPC_S_INVALID_ENDPOINT_FORMAT: expected_win32status = RPC_NT_INVALID_ENDPOINT_FORMAT; break;
478 case RPC_S_INVALID_NET_ADDR: expected_win32status = RPC_NT_INVALID_NET_ADDR; break;
479 case RPC_S_NO_ENDPOINT_FOUND: expected_win32status = RPC_NT_NO_ENDPOINT_FOUND; break;
480 case RPC_S_INVALID_TIMEOUT: expected_win32status = RPC_NT_INVALID_TIMEOUT; break;
481 case RPC_S_OBJECT_NOT_FOUND: expected_win32status = RPC_NT_OBJECT_NOT_FOUND; break;
482 case RPC_S_ALREADY_REGISTERED: expected_win32status = RPC_NT_ALREADY_REGISTERED; break;
483 case RPC_S_TYPE_ALREADY_REGISTERED: expected_win32status = RPC_NT_TYPE_ALREADY_REGISTERED; break;
484 case RPC_S_ALREADY_LISTENING: expected_win32status = RPC_NT_ALREADY_LISTENING; break;
485 case RPC_S_NO_PROTSEQS_REGISTERED: expected_win32status = RPC_NT_NO_PROTSEQS_REGISTERED; break;
486 case RPC_S_NOT_LISTENING: expected_win32status = RPC_NT_NOT_LISTENING; break;
487 case RPC_S_UNKNOWN_MGR_TYPE: expected_win32status = RPC_NT_UNKNOWN_MGR_TYPE; break;
488 case RPC_S_UNKNOWN_IF: expected_win32status = RPC_NT_UNKNOWN_IF; break;
489 case RPC_S_NO_BINDINGS: expected_win32status = RPC_NT_NO_BINDINGS; break;
490 case RPC_S_NO_PROTSEQS: expected_win32status = RPC_NT_NO_PROTSEQS; break;
491 case RPC_S_CANT_CREATE_ENDPOINT: expected_win32status = RPC_NT_CANT_CREATE_ENDPOINT; break;
492 case RPC_S_OUT_OF_RESOURCES: expected_win32status = RPC_NT_OUT_OF_RESOURCES; break;
493 case RPC_S_SERVER_UNAVAILABLE: expected_win32status = RPC_NT_SERVER_UNAVAILABLE; break;
494 case RPC_S_SERVER_TOO_BUSY: expected_win32status = RPC_NT_SERVER_TOO_BUSY; break;
495 case RPC_S_INVALID_NETWORK_OPTIONS: expected_win32status = RPC_NT_INVALID_NETWORK_OPTIONS; break;
496 case RPC_S_NO_CALL_ACTIVE: expected_win32status = RPC_NT_NO_CALL_ACTIVE; break;
497 case RPC_S_CALL_FAILED: expected_win32status = RPC_NT_CALL_FAILED; break;
498 case RPC_S_CALL_FAILED_DNE: expected_win32status = RPC_NT_CALL_FAILED_DNE; break;
499 case RPC_S_PROTOCOL_ERROR: expected_win32status = RPC_NT_PROTOCOL_ERROR; break;
500 case RPC_S_UNSUPPORTED_TRANS_SYN: expected_win32status = RPC_NT_UNSUPPORTED_TRANS_SYN; break;
501 case RPC_S_UNSUPPORTED_TYPE: expected_win32status = RPC_NT_UNSUPPORTED_TYPE; break;
502 case RPC_S_INVALID_TAG: expected_win32status = RPC_NT_INVALID_TAG; break;
503 case RPC_S_INVALID_BOUND: expected_win32status = RPC_NT_INVALID_BOUND; break;
504 case RPC_S_NO_ENTRY_NAME: expected_win32status = RPC_NT_NO_ENTRY_NAME; break;
505 case RPC_S_INVALID_NAME_SYNTAX: expected_win32status = RPC_NT_INVALID_NAME_SYNTAX; break;
506 case RPC_S_UNSUPPORTED_NAME_SYNTAX: expected_win32status = RPC_NT_UNSUPPORTED_NAME_SYNTAX; break;
507 case RPC_S_UUID_NO_ADDRESS: expected_win32status = RPC_NT_UUID_NO_ADDRESS; break;
508 case RPC_S_DUPLICATE_ENDPOINT: expected_win32status = RPC_NT_DUPLICATE_ENDPOINT; break;
509 case RPC_S_UNKNOWN_AUTHN_TYPE: expected_win32status = RPC_NT_UNKNOWN_AUTHN_TYPE; break;
510 case RPC_S_MAX_CALLS_TOO_SMALL: expected_win32status = RPC_NT_MAX_CALLS_TOO_SMALL; break;
511 case RPC_S_STRING_TOO_LONG: expected_win32status = RPC_NT_STRING_TOO_LONG; break;
512 case RPC_S_PROTSEQ_NOT_FOUND: expected_win32status = RPC_NT_PROTSEQ_NOT_FOUND; break;
513 case RPC_S_PROCNUM_OUT_OF_RANGE: expected_win32status = RPC_NT_PROCNUM_OUT_OF_RANGE; break;
514 case RPC_S_BINDING_HAS_NO_AUTH: expected_win32status = RPC_NT_BINDING_HAS_NO_AUTH; break;
515 case RPC_S_UNKNOWN_AUTHN_SERVICE: expected_win32status = RPC_NT_UNKNOWN_AUTHN_SERVICE; break;
516 case RPC_S_UNKNOWN_AUTHN_LEVEL: expected_win32status = RPC_NT_UNKNOWN_AUTHN_LEVEL; break;
517 case RPC_S_INVALID_AUTH_IDENTITY: expected_win32status = RPC_NT_INVALID_AUTH_IDENTITY; break;
518 case RPC_S_UNKNOWN_AUTHZ_SERVICE: expected_win32status = RPC_NT_UNKNOWN_AUTHZ_SERVICE; break;
519 case EPT_S_INVALID_ENTRY: expected_win32status = EPT_NT_INVALID_ENTRY; break;
520 case EPT_S_CANT_PERFORM_OP: expected_win32status = EPT_NT_CANT_PERFORM_OP; break;
521 case EPT_S_NOT_REGISTERED: expected_win32status = EPT_NT_NOT_REGISTERED; break;
522 case EPT_S_CANT_CREATE: expected_win32status = EPT_NT_CANT_CREATE; break;
523 case RPC_S_NOTHING_TO_EXPORT: expected_win32status = RPC_NT_NOTHING_TO_EXPORT; break;
524 case RPC_S_INCOMPLETE_NAME: expected_win32status = RPC_NT_INCOMPLETE_NAME; break;
525 case RPC_S_INVALID_VERS_OPTION: expected_win32status = RPC_NT_INVALID_VERS_OPTION; break;
526 case RPC_S_NO_MORE_MEMBERS: expected_win32status = RPC_NT_NO_MORE_MEMBERS; break;
527 case RPC_S_NOT_ALL_OBJS_UNEXPORTED: expected_win32status = RPC_NT_NOT_ALL_OBJS_UNEXPORTED; break;
528 case RPC_S_INTERFACE_NOT_FOUND: expected_win32status = RPC_NT_INTERFACE_NOT_FOUND; break;
529 case RPC_S_ENTRY_ALREADY_EXISTS: expected_win32status = RPC_NT_ENTRY_ALREADY_EXISTS; break;
530 case RPC_S_ENTRY_NOT_FOUND: expected_win32status = RPC_NT_ENTRY_NOT_FOUND; break;
531 case RPC_S_NAME_SERVICE_UNAVAILABLE: expected_win32status = RPC_NT_NAME_SERVICE_UNAVAILABLE; break;
532 case RPC_S_INVALID_NAF_ID: expected_win32status = RPC_NT_INVALID_NAF_ID; break;
533 case RPC_S_CANNOT_SUPPORT: expected_win32status = RPC_NT_CANNOT_SUPPORT; break;
534 case RPC_S_NO_CONTEXT_AVAILABLE: expected_win32status = RPC_NT_NO_CONTEXT_AVAILABLE; break;
535 case RPC_S_INTERNAL_ERROR: expected_win32status = RPC_NT_INTERNAL_ERROR; break;
536 case RPC_S_ZERO_DIVIDE: expected_win32status = RPC_NT_ZERO_DIVIDE; break;
537 case RPC_S_ADDRESS_ERROR: expected_win32status = RPC_NT_ADDRESS_ERROR; break;
538 case RPC_S_FP_DIV_ZERO: expected_win32status = RPC_NT_FP_DIV_ZERO; break;
539 case RPC_S_FP_UNDERFLOW: expected_win32status = RPC_NT_FP_UNDERFLOW; break;
540 case RPC_S_FP_OVERFLOW: expected_win32status = RPC_NT_FP_OVERFLOW; break;
541 case RPC_S_CALL_IN_PROGRESS: expected_win32status = RPC_NT_CALL_IN_PROGRESS; break;
542 case RPC_S_NO_MORE_BINDINGS: expected_win32status = RPC_NT_NO_MORE_BINDINGS; break;
543 case RPC_S_CALL_CANCELLED: expected_win32status = RPC_NT_CALL_CANCELLED; missing = TRUE; break;
544 case RPC_S_INVALID_OBJECT: expected_win32status = RPC_NT_INVALID_OBJECT; break;
545 case RPC_S_INVALID_ASYNC_HANDLE: expected_win32status = RPC_NT_INVALID_ASYNC_HANDLE; missing = TRUE; break;
546 case RPC_S_INVALID_ASYNC_CALL: expected_win32status = RPC_NT_INVALID_ASYNC_CALL; missing = TRUE; break;
547 case RPC_S_GROUP_MEMBER_NOT_FOUND: expected_win32status = RPC_NT_GROUP_MEMBER_NOT_FOUND; break;
548 case RPC_X_NO_MORE_ENTRIES: expected_win32status = RPC_NT_NO_MORE_ENTRIES; break;
549 case RPC_X_SS_CHAR_TRANS_OPEN_FAIL: expected_win32status = RPC_NT_SS_CHAR_TRANS_OPEN_FAIL; break;
550 case RPC_X_SS_CHAR_TRANS_SHORT_FILE: expected_win32status = RPC_NT_SS_CHAR_TRANS_SHORT_FILE; break;
551 case RPC_X_SS_IN_NULL_CONTEXT: expected_win32status = RPC_NT_SS_IN_NULL_CONTEXT; break;
552 case RPC_X_SS_CONTEXT_DAMAGED: expected_win32status = RPC_NT_SS_CONTEXT_DAMAGED; break;
553 case RPC_X_SS_HANDLES_MISMATCH: expected_win32status = RPC_NT_SS_HANDLES_MISMATCH; break;
554 case RPC_X_SS_CANNOT_GET_CALL_HANDLE: expected_win32status = RPC_NT_SS_CANNOT_GET_CALL_HANDLE; break;
555 case RPC_X_NULL_REF_POINTER: expected_win32status = RPC_NT_NULL_REF_POINTER; break;
556 case RPC_X_ENUM_VALUE_OUT_OF_RANGE: expected_win32status = RPC_NT_ENUM_VALUE_OUT_OF_RANGE; break;
557 case RPC_X_BYTE_COUNT_TOO_SMALL: expected_win32status = RPC_NT_BYTE_COUNT_TOO_SMALL; break;
558 case RPC_X_BAD_STUB_DATA: expected_win32status = RPC_NT_BAD_STUB_DATA; break;
559 case RPC_X_PIPE_CLOSED: expected_win32status = RPC_NT_PIPE_CLOSED; missing = TRUE; break;
560 case RPC_X_PIPE_DISCIPLINE_ERROR: expected_win32status = RPC_NT_PIPE_DISCIPLINE_ERROR; missing = TRUE; break;
561 case RPC_X_PIPE_EMPTY: expected_win32status = RPC_NT_PIPE_EMPTY; missing = TRUE; break;
562 case ERROR_PASSWORD_MUST_CHANGE: expected_win32status = STATUS_PASSWORD_MUST_CHANGE; missing = TRUE; break;
563 case ERROR_ACCOUNT_LOCKED_OUT: expected_win32status = STATUS_ACCOUNT_LOCKED_OUT; missing = TRUE; break;
564 default:
565 if (w2k3_up)
566 expected_win32status = STATUS_UNSUCCESSFUL;
567 else
568 expected_win32status = rpc_status;
571 ok(win32status == expected_win32status ||
572 broken(missing && win32status == rpc_status),
573 "I_RpcMapWin32Status(%d) should have returned 0x%x instead of 0x%x%s\n",
574 rpc_status, expected_win32status, win32status,
575 broken(missing) ? " (or have returned with the given status)" : "");
579 static void test_RpcStringBindingParseA(void)
581 static unsigned char valid_binding[] = "00000000-0000-0000-c000-000000000046@ncacn_np:.[endpoint=\\pipe\\test]";
582 static unsigned char valid_binding2[] = "00000000-0000-0000-c000-000000000046@ncacn_np:.[\\pipe\\test]";
583 static unsigned char invalid_uuid_binding[] = "{00000000-0000-0000-c000-000000000046}@ncacn_np:.[endpoint=\\pipe\\test]";
584 static unsigned char invalid_ep_binding[] = "00000000-0000-0000-c000-000000000046@ncacn_np:.[endpoint=test]";
585 static unsigned char invalid_binding[] = "00000000-0000-0000-c000-000000000046@ncacn_np";
586 RPC_STATUS status;
587 unsigned char *uuid;
588 unsigned char *protseq;
589 unsigned char *network_addr;
590 unsigned char *endpoint;
591 unsigned char *options;
593 /* test all parameters */
594 status = RpcStringBindingParseA(valid_binding, &uuid, &protseq, &network_addr, &endpoint, &options);
595 ok(status == RPC_S_OK, "RpcStringBindingParseA failed with error %d\n", status);
596 ok(!strcmp((char *)uuid, "00000000-0000-0000-c000-000000000046"), "uuid should have been 00000000-0000-0000-C000-000000000046 instead of %s\n", uuid);
597 ok(!strcmp((char *)protseq, "ncacn_np"), "protseq should have been ncacn_np instead of %s\n", protseq);
598 ok(!strcmp((char *)network_addr, "."), "network_addr should have been . instead of %s\n", network_addr);
599 ok(!strcmp((char *)endpoint, "pipetest"), "endpoint should have been pipetest instead of %s\n", endpoint);
600 if (options)
601 ok(!strcmp((char *)options, ""), "options should have been \"\" of \"%s\"\n", options);
602 else
603 todo_wine ok(FALSE, "options is NULL\n");
604 RpcStringFreeA(&uuid);
605 RpcStringFreeA(&protseq);
606 RpcStringFreeA(&network_addr);
607 RpcStringFreeA(&endpoint);
608 RpcStringFreeA(&options);
610 /* test all parameters with different type of string binding */
611 status = RpcStringBindingParseA(valid_binding2, &uuid, &protseq, &network_addr, &endpoint, &options);
612 ok(status == RPC_S_OK, "RpcStringBindingParseA failed with error %d\n", status);
613 ok(!strcmp((char *)uuid, "00000000-0000-0000-c000-000000000046"), "uuid should have been 00000000-0000-0000-C000-000000000046 instead of %s\n", uuid);
614 ok(!strcmp((char *)protseq, "ncacn_np"), "protseq should have been ncacn_np instead of %s\n", protseq);
615 ok(!strcmp((char *)network_addr, "."), "network_addr should have been . instead of %s\n", network_addr);
616 ok(!strcmp((char *)endpoint, "pipetest"), "endpoint should have been pipetest instead of %s\n", endpoint);
617 if (options)
618 ok(!strcmp((char *)options, ""), "options should have been \"\" of \"%s\"\n", options);
619 else
620 todo_wine ok(FALSE, "options is NULL\n");
621 RpcStringFreeA(&uuid);
622 RpcStringFreeA(&protseq);
623 RpcStringFreeA(&network_addr);
624 RpcStringFreeA(&endpoint);
625 RpcStringFreeA(&options);
627 /* test with as many parameters NULL as possible */
628 status = RpcStringBindingParseA(valid_binding, NULL, &protseq, NULL, NULL, NULL);
629 ok(status == RPC_S_OK, "RpcStringBindingParseA failed with error %d\n", status);
630 ok(!strcmp((char *)protseq, "ncacn_np"), "protseq should have been ncacn_np instead of %s\n", protseq);
631 RpcStringFreeA(&protseq);
633 /* test with invalid uuid */
634 status = RpcStringBindingParseA(invalid_uuid_binding, NULL, &protseq, NULL, NULL, NULL);
635 ok(status == RPC_S_INVALID_STRING_UUID, "RpcStringBindingParseA should have returned RPC_S_INVALID_STRING_UUID instead of %d\n", status);
636 ok(protseq == NULL, "protseq was %p instead of NULL\n", protseq);
638 /* test with invalid endpoint */
639 status = RpcStringBindingParseA(invalid_ep_binding, NULL, &protseq, NULL, NULL, NULL);
640 ok(status == RPC_S_OK, "RpcStringBindingParseA failed with error %d\n", status);
641 RpcStringFreeA(&protseq);
643 /* test with invalid binding */
644 status = RpcStringBindingParseA(invalid_binding, &uuid, &protseq, &network_addr, &endpoint, &options);
645 todo_wine
646 ok(status == RPC_S_INVALID_STRING_BINDING, "RpcStringBindingParseA should have returned RPC_S_INVALID_STRING_BINDING instead of %d\n", status);
647 todo_wine
648 ok(uuid == NULL, "uuid was %p instead of NULL\n", uuid);
649 if (uuid)
650 RpcStringFreeA(&uuid);
651 ok(protseq == NULL, "protseq was %p instead of NULL\n", protseq);
652 todo_wine
653 ok(network_addr == NULL, "network_addr was %p instead of NULL\n", network_addr);
654 if (network_addr)
655 RpcStringFreeA(&network_addr);
656 ok(endpoint == NULL, "endpoint was %p instead of NULL\n", endpoint);
657 ok(options == NULL, "options was %p instead of NULL\n", options);
660 static void test_I_RpcExceptionFilter(void)
662 ULONG exception;
663 int retval;
664 int (WINAPI *pI_RpcExceptionFilter)(ULONG) = (void *)GetProcAddress(GetModuleHandleA("rpcrt4.dll"), "I_RpcExceptionFilter");
666 if (!pI_RpcExceptionFilter)
668 skip("I_RpcExceptionFilter not exported\n");
669 return;
672 for (exception = 0; exception < STATUS_REG_NAT_CONSUMPTION; exception++)
674 /* skip over uninteresting bits of the number space */
675 if (exception == 2000) exception = 0x40000000;
676 if (exception == 0x40000005) exception = 0x80000000;
677 if (exception == 0x80000005) exception = 0xc0000000;
679 retval = pI_RpcExceptionFilter(exception);
680 switch (exception)
682 case STATUS_DATATYPE_MISALIGNMENT:
683 case STATUS_BREAKPOINT:
684 case STATUS_ACCESS_VIOLATION:
685 case STATUS_ILLEGAL_INSTRUCTION:
686 case STATUS_PRIVILEGED_INSTRUCTION:
687 case 0xc00000aa /* STATUS_INSTRUCTION_MISALIGNMENT */:
688 case STATUS_STACK_OVERFLOW:
689 case 0xc0000194 /* STATUS_POSSIBLE_DEADLOCK */:
690 ok(retval == EXCEPTION_CONTINUE_SEARCH, "I_RpcExceptionFilter(0x%x) should have returned %d instead of %d\n",
691 exception, EXCEPTION_CONTINUE_SEARCH, retval);
692 break;
693 case STATUS_GUARD_PAGE_VIOLATION:
694 case STATUS_IN_PAGE_ERROR:
695 case STATUS_HANDLE_NOT_CLOSABLE:
696 trace("I_RpcExceptionFilter(0x%x) returned %d\n", exception, retval);
697 break;
698 default:
699 ok(retval == EXCEPTION_EXECUTE_HANDLER, "I_RpcExceptionFilter(0x%x) should have returned %d instead of %d\n",
700 exception, EXCEPTION_EXECUTE_HANDLER, retval);
705 static void test_RpcStringBindingFromBinding(void)
707 static unsigned char ncacn_np[] = "ncacn_np";
708 static unsigned char address[] = ".";
709 static unsigned char endpoint[] = "\\pipe\\wine_rpc_test";
710 RPC_STATUS status;
711 handle_t handle;
712 RPC_CSTR binding;
714 status = RpcStringBindingComposeA(NULL, ncacn_np, address,
715 endpoint, NULL, &binding);
716 ok(status == RPC_S_OK, "RpcStringBindingCompose failed (%u)\n", status);
718 status = RpcBindingFromStringBindingA(binding, &handle);
719 ok(status == RPC_S_OK, "RpcBindingFromStringBinding failed (%u)\n", status);
720 RpcStringFreeA(&binding);
722 status = RpcBindingToStringBindingA(handle, &binding);
723 ok(status == RPC_S_OK, "RpcStringBindingFromBinding failed with error %u\n", status);
725 ok(!strcmp((const char *)binding, "ncacn_np:.[\\\\pipe\\\\wine_rpc_test]"),
726 "binding string didn't match what was expected: \"%s\"\n", binding);
727 RpcStringFreeA(&binding);
729 status = RpcBindingFree(&handle);
730 ok(status == RPC_S_OK, "RpcBindingFree failed with error %u\n", status);
733 static void test_UuidCreate(void)
735 UUID guid;
736 BYTE version;
738 UuidCreate(&guid);
739 version = (guid.Data3 & 0xf000) >> 12;
740 ok(version == 4 || broken(version == 1), "unexpected version %d\n",
741 version);
742 if (version == 4)
744 static UUID v4and = { 0, 0, 0x4000, { 0x80,0,0,0,0,0,0,0 } };
745 static UUID v4or = { 0xffffffff, 0xffff, 0x4fff,
746 { 0xbf,0xff,0xff,0xff,0xff,0xff,0xff,0xff } };
747 UUID and, or;
748 RPC_STATUS rslt;
749 int i;
751 and = guid;
752 or = guid;
753 /* Generate a bunch of UUIDs and mask them. By the end, we expect
754 * every randomly generated bit to have been zero at least once,
755 * resulting in no bits set in the and mask except those which are not
756 * randomly generated: the version number and the topmost bits of the
757 * Data4 field (treated as big-endian.) Similarly, we expect only
758 * the bits which are not randomly set to be cleared in the or mask.
760 for (i = 0; i < 1000; i++)
762 LPBYTE src, dst;
764 UuidCreate(&guid);
765 for (src = (LPBYTE)&guid, dst = (LPBYTE)&and;
766 src - (LPBYTE)&guid < sizeof(guid); src++, dst++)
767 *dst &= *src;
768 for (src = (LPBYTE)&guid, dst = (LPBYTE)&or;
769 src - (LPBYTE)&guid < sizeof(guid); src++, dst++)
770 *dst |= *src;
772 ok(UuidEqual(&and, &v4and, &rslt),
773 "unexpected bits set in V4 UUID: %s\n", wine_dbgstr_guid(&and));
774 ok(UuidEqual(&or, &v4or, &rslt),
775 "unexpected bits set in V4 UUID: %s\n", wine_dbgstr_guid(&or));
777 else
779 /* Older versions of Windows generate V1 UUIDs. For these, there are
780 * many stable bits, including at least the MAC address if one is
781 * present. Just check that Data4[0]'s most significant bits are
782 * set as expected.
784 ok((guid.Data4[0] & 0xc0) == 0x80,
785 "unexpected value in Data4[0]: %02x\n", guid.Data4[0] & 0xc0);
789 static void test_UuidCreateSequential(void)
791 UUID guid1;
792 BYTE version;
793 RPC_STATUS (WINAPI *pUuidCreateSequential)(UUID *) = (void *)GetProcAddress(GetModuleHandleA("rpcrt4.dll"), "UuidCreateSequential");
794 RPC_STATUS (WINAPI *pI_UuidCreate)(UUID *) = (void*)GetProcAddress(GetModuleHandleA("rpcrt4.dll"), "I_UuidCreate");
795 RPC_STATUS ret;
797 if (!pUuidCreateSequential)
799 win_skip("UuidCreateSequential not exported\n");
800 return;
803 ok(pI_UuidCreate != pUuidCreateSequential, "got %p, %p\n", pI_UuidCreate, pUuidCreateSequential);
805 ret = pUuidCreateSequential(&guid1);
806 ok(!ret || ret == RPC_S_UUID_LOCAL_ONLY,
807 "expected RPC_S_OK or RPC_S_UUID_LOCAL_ONLY, got %08x\n", ret);
808 version = (guid1.Data3 & 0xf000) >> 12;
809 ok(version == 1, "unexpected version %d\n", version);
810 if (version == 1)
812 UUID guid2;
814 if (!ret)
816 /* If the call succeeded, there's a valid (non-multicast) MAC
817 * address in the uuid:
819 ok(!(guid1.Data4[2] & 0x01),
820 "GUID does not appear to contain a MAC address: %s\n",
821 wine_dbgstr_guid(&guid1));
823 else
825 /* Otherwise, there's a randomly generated multicast MAC address
826 * address in the uuid:
828 ok((guid1.Data4[2] & 0x01),
829 "GUID does not appear to contain a multicast MAC address: %s\n",
830 wine_dbgstr_guid(&guid1));
832 /* Generate another GUID, and make sure its MAC address matches the
833 * first.
835 ret = pUuidCreateSequential(&guid2);
836 ok(!ret || ret == RPC_S_UUID_LOCAL_ONLY,
837 "expected RPC_S_OK or RPC_S_UUID_LOCAL_ONLY, got %08x\n", ret);
838 version = (guid2.Data3 & 0xf000) >> 12;
839 ok(version == 1, "unexpected version %d\n", version);
840 ok(!memcmp(guid1.Data4, guid2.Data4, sizeof(guid2.Data4)),
841 "unexpected value in MAC address: %s\n",
842 wine_dbgstr_guid(&guid2));
844 /* I_UuidCreate does exactly the same */
845 pI_UuidCreate(&guid2);
846 version = (guid2.Data3 & 0xf000) >> 12;
847 ok(version == 1, "unexpected version %d\n", version);
848 ok(!memcmp(guid1.Data4, guid2.Data4, sizeof(guid2.Data4)),
849 "unexpected value in MAC address: %s\n",
850 wine_dbgstr_guid(&guid2));
854 static void test_RpcBindingFree(void)
856 RPC_BINDING_HANDLE binding = NULL;
857 RPC_STATUS status;
859 status = RpcBindingFree(&binding);
860 ok(status == RPC_S_INVALID_BINDING,
861 "RpcBindingFree should have returned RPC_S_INVALID_BINDING instead of %d\n",
862 status);
865 static void test_RpcServerInqDefaultPrincName(void)
867 RPC_STATUS ret;
868 RPC_CSTR principal, saved_principal;
869 BOOLEAN (WINAPI *pGetUserNameExA)(EXTENDED_NAME_FORMAT,LPSTR,PULONG);
870 char *username;
871 ULONG len = 0;
873 pGetUserNameExA = (void *)GetProcAddress( LoadLibraryA("secur32.dll"), "GetUserNameExA" );
874 if (!pGetUserNameExA)
876 win_skip( "GetUserNameExA not exported\n" );
877 return;
879 pGetUserNameExA( NameSamCompatible, NULL, &len );
880 username = HeapAlloc( GetProcessHeap(), 0, len );
881 pGetUserNameExA( NameSamCompatible, username, &len );
883 ret = RpcServerInqDefaultPrincNameA( 0, NULL );
884 ok( ret == RPC_S_UNKNOWN_AUTHN_SERVICE, "got %u\n", ret );
886 ret = RpcServerInqDefaultPrincNameA( RPC_C_AUTHN_DEFAULT, NULL );
887 ok( ret == RPC_S_UNKNOWN_AUTHN_SERVICE, "got %u\n", ret );
889 principal = (RPC_CSTR)0xdeadbeef;
890 ret = RpcServerInqDefaultPrincNameA( RPC_C_AUTHN_DEFAULT, &principal );
891 ok( ret == RPC_S_UNKNOWN_AUTHN_SERVICE, "got %u\n", ret );
892 ok( principal == (RPC_CSTR)0xdeadbeef, "got unexpected principal\n" );
894 saved_principal = (RPC_CSTR)0xdeadbeef;
895 ret = RpcServerInqDefaultPrincNameA( RPC_C_AUTHN_WINNT, &saved_principal );
896 ok( ret == RPC_S_OK, "got %u\n", ret );
897 ok( saved_principal != (RPC_CSTR)0xdeadbeef, "expected valid principal\n" );
898 ok( !strcmp( (const char *)saved_principal, username ), "got \'%s\'\n", saved_principal );
899 trace("%s\n", saved_principal);
901 ret = RpcServerRegisterAuthInfoA( (RPC_CSTR)"wine\\test", RPC_C_AUTHN_WINNT, NULL, NULL );
902 ok( ret == RPC_S_OK, "got %u\n", ret );
904 principal = (RPC_CSTR)0xdeadbeef;
905 ret = RpcServerInqDefaultPrincNameA( RPC_C_AUTHN_WINNT, &principal );
906 ok( ret == RPC_S_OK, "got %u\n", ret );
907 ok( principal != (RPC_CSTR)0xdeadbeef, "expected valid principal\n" );
908 ok( !strcmp( (const char *)principal, username ), "got \'%s\'\n", principal );
909 RpcStringFreeA( &principal );
911 ret = RpcServerRegisterAuthInfoA( saved_principal, RPC_C_AUTHN_WINNT, NULL, NULL );
912 ok( ret == RPC_S_OK, "got %u\n", ret );
914 RpcStringFreeA( &saved_principal );
915 HeapFree( GetProcessHeap(), 0, username );
918 START_TEST( rpc )
920 UuidConversionAndComparison();
921 TestDceErrorInqText();
922 test_rpc_ncacn_ip_tcp();
923 test_towers();
924 test_I_RpcMapWin32Status();
925 test_RpcStringBindingParseA();
926 test_I_RpcExceptionFilter();
927 test_RpcStringBindingFromBinding();
928 test_UuidCreate();
929 test_UuidCreateSequential();
930 test_RpcBindingFree();
931 test_RpcServerInqDefaultPrincName();