push 6fe5edf8439c19d3885814583531c2f2b1495177
[wine/hacks.git] / dlls / rpcrt4 / tests / rpc.c
blob9fd99938da7073935638ee9cf4ed71abb9d3d178
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>
32 #include "rpc.h"
33 #include "rpcdce.h"
35 typedef unsigned int unsigned32;
36 typedef struct twr_t
38 unsigned32 tower_length;
39 /* [size_is] */ byte tower_octet_string[ 1 ];
40 } twr_t;
42 RPC_STATUS WINAPI TowerExplode(const twr_t *tower, RPC_SYNTAX_IDENTIFIER *object, RPC_SYNTAX_IDENTIFIER *syntax, char **protseq, char **endpoint, char **address);
43 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);
45 static UUID Uuid_Table[10] = {
46 { 0x00000000, 0x0000, 0x0000, {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00} }, /* 0 (null) */
47 { 0xdeadbeef, 0xdead, 0xbeef, {0x10, 0x21, 0x35, 0x56, 0x89, 0xa0, 0xf4, 0x8a} }, /* 1 */
48 { 0xabadfeed, 0x49ff, 0xbead, {0x8a, 0xf4, 0xa0, 0x89, 0x56, 0x35, 0x21, 0x10} }, /* 2 */
49 { 0x93da375c, 0x1324, 0x1355, {0x87, 0xff, 0x49, 0x44, 0x34, 0x44, 0x22, 0x19} }, /* 3 */
50 { 0xdeadbeef, 0xdead, 0xbeef, {0x10, 0x21, 0x35, 0x56, 0x89, 0xa0, 0xf4, 0x8b} }, /* 4 (~1) */
51 { 0x9badfeed, 0x49ff, 0xbead, {0x8a, 0xf4, 0xa0, 0x89, 0x56, 0x35, 0x21, 0x10} }, /* 5 (~2) */
52 { 0x00000000, 0x0001, 0x0000, {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00} }, /* 6 (~0) */
53 { 0x00000000, 0x0000, 0x0000, {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01} }, /* 7 (~0) */
54 { 0x12312312, 0x1231, 0x1231, {0x12, 0x34, 0x56, 0x78, 0x9a, 0xbc, 0xde, 0xff} }, /* 8 */
55 { 0x11111111, 0x1111, 0x1111, {0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11} } /* 9 */
58 /* index of "10" means "NULL" */
59 static BOOL Uuid_Comparison_Grid[11][11] = {
60 { TRUE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, TRUE },
61 { FALSE, TRUE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE },
62 { FALSE, FALSE, TRUE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE },
63 { FALSE, FALSE, FALSE, TRUE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE },
64 { FALSE, FALSE, FALSE, FALSE, TRUE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE },
65 { FALSE, FALSE, FALSE, FALSE, FALSE, TRUE, FALSE, FALSE, FALSE, FALSE, FALSE },
66 { FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, TRUE, FALSE, FALSE, FALSE, FALSE },
67 { FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, TRUE, FALSE, FALSE, FALSE },
68 { FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, TRUE, FALSE, FALSE },
69 { FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, TRUE, FALSE },
70 { TRUE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, TRUE }
73 static void UuidConversionAndComparison(void) {
74 CHAR strx[100], x;
75 LPSTR str = strx;
76 WCHAR wstrx[100], wx;
77 LPWSTR wstr = wstrx;
79 UUID Uuid1, Uuid2, *PUuid1, *PUuid2;
80 RPC_STATUS rslt;
82 int i1,i2;
84 /* Uuid Equality */
85 for (i1 = 0; i1 < 11; i1++)
86 for (i2 = 0; i2 < 11; i2++) {
87 if (i1 < 10) {
88 Uuid1 = Uuid_Table[i1];
89 PUuid1 = &Uuid1;
90 } else {
91 PUuid1 = NULL;
93 if (i2 < 10) {
94 Uuid2 = Uuid_Table[i2];
95 PUuid2 = &Uuid2;
96 } else {
97 PUuid2 = NULL;
99 ok( (UuidEqual(PUuid1, PUuid2, &rslt) == Uuid_Comparison_Grid[i1][i2]), "UUID Equality\n" );
102 /* Uuid to String to Uuid (char) */
103 for (i1 = 0; i1 < 10; i1++) {
104 Uuid1 = Uuid_Table[i1];
105 ok( (UuidToStringA(&Uuid1, (unsigned char**)&str) == RPC_S_OK), "Simple UUID->String copy\n" );
106 ok( (UuidFromStringA((unsigned char*)str, &Uuid2) == RPC_S_OK), "Simple String->UUID copy from generated UUID String\n" );
107 ok( UuidEqual(&Uuid1, &Uuid2, &rslt), "Uuid -> String -> Uuid transform\n" );
108 /* invalid uuid tests -- size of valid UUID string=36 */
109 for (i2 = 0; i2 < 36; i2++) {
110 x = str[i2];
111 str[i2] = 'g'; /* whatever, but "g" is a good boundary condition */
112 ok( (UuidFromStringA((unsigned char*)str, &Uuid1) == RPC_S_INVALID_STRING_UUID), "Invalid UUID String\n" );
113 str[i2] = x; /* change it back so remaining tests are interesting. */
115 RpcStringFree((unsigned char **)&str);
118 /* Uuid to String to Uuid (wchar) */
119 for (i1 = 0; i1 < 10; i1++) {
120 Uuid1 = Uuid_Table[i1];
121 rslt=UuidToStringW(&Uuid1, &wstr);
122 if (rslt==RPC_S_CANNOT_SUPPORT) {
123 /* Must be Win9x (no Unicode support), skip the tests */
124 break;
126 ok( (rslt == RPC_S_OK), "Simple UUID->WString copy\n" );
127 ok( (UuidFromStringW(wstr, &Uuid2) == RPC_S_OK), "Simple WString->UUID copy from generated UUID String\n" );
128 ok( UuidEqual(&Uuid1, &Uuid2, &rslt), "Uuid -> WString -> Uuid transform\n" );
129 /* invalid uuid tests -- size of valid UUID string=36 */
130 for (i2 = 0; i2 < 36; i2++) {
131 wx = wstr[i2];
132 wstr[i2] = 'g'; /* whatever, but "g" is a good boundary condition */
133 ok( (UuidFromStringW(wstr, &Uuid1) == RPC_S_INVALID_STRING_UUID), "Invalid UUID WString\n" );
134 wstr[i2] = wx; /* change it back so remaining tests are interesting. */
136 RpcStringFreeW(&wstr);
140 static void TestDceErrorInqText (void)
142 char bufferInvalid [1024];
143 char buffer [1024]; /* The required size is not documented but would
144 * appear to be 256.
146 DWORD dwCount;
148 dwCount = FormatMessageA (FORMAT_MESSAGE_FROM_SYSTEM |
149 FORMAT_MESSAGE_IGNORE_INSERTS,
150 NULL, RPC_S_NOT_RPC_ERROR, 0, bufferInvalid,
151 sizeof(bufferInvalid)/sizeof(bufferInvalid[0]), NULL);
153 /* A random sample of DceErrorInqText */
154 /* 0 is success */
155 ok ((DceErrorInqTextA (0, (unsigned char*)buffer) == RPC_S_OK),
156 "DceErrorInqTextA(0...)\n");
157 /* A real RPC_S error */
158 ok ((DceErrorInqTextA (RPC_S_INVALID_STRING_UUID, (unsigned char*)buffer) == RPC_S_OK),
159 "DceErrorInqTextA(valid...)\n");
161 if (dwCount)
163 /* A message for which FormatMessage should fail
164 * which should return RPC_S_OK and the
165 * fixed "not valid" message
167 ok ((DceErrorInqTextA (35, (unsigned char*)buffer) == RPC_S_OK &&
168 strcmp (buffer, bufferInvalid) == 0),
169 "DceErrorInqTextA(unformattable...)\n");
170 /* One for which FormatMessage should succeed but
171 * DceErrorInqText should "fail"
172 * 3814 is generally quite a long message
174 ok ((DceErrorInqTextA (3814, (unsigned char*)buffer) == RPC_S_OK &&
175 strcmp (buffer, bufferInvalid) == 0),
176 "DceErrorInqTextA(deviation...)\n");
178 else
179 ok (0, "Cannot set up for DceErrorInqText\n");
182 static RPC_DISPATCH_FUNCTION IFoo_table[] =
187 static RPC_DISPATCH_TABLE IFoo_v0_0_DispatchTable =
190 IFoo_table
193 static const RPC_SERVER_INTERFACE IFoo___RpcServerInterface =
195 sizeof(RPC_SERVER_INTERFACE),
196 {{0x00000000,0x0000,0x0000,{0x00,0x00,0x00,0x00,0x00,0x00,0x12,0x34}},{0,0}},
197 {{0x8a885d04,0x1ceb,0x11c9,{0x9f,0xe8,0x08,0x00,0x2b,0x10,0x48,0x60}},{2,0}},
198 &IFoo_v0_0_DispatchTable,
206 static RPC_IF_HANDLE IFoo_v0_0_s_ifspec = (RPC_IF_HANDLE)& IFoo___RpcServerInterface;
208 static void test_rpc_ncacn_ip_tcp(void)
210 RPC_STATUS status;
211 unsigned char *binding;
212 handle_t IFoo_IfHandle;
213 static unsigned char foo[] = "foo";
214 static unsigned char ncacn_ip_tcp[] = "ncacn_ip_tcp";
215 static unsigned char address[] = "127.0.0.1";
216 static unsigned char endpoint[] = "4114";
218 status = RpcNetworkIsProtseqValid(foo);
219 ok(status == RPC_S_INVALID_RPC_PROTSEQ, "return wrong\n");
221 status = RpcNetworkIsProtseqValid(ncacn_ip_tcp);
222 ok(status == RPC_S_OK, "return wrong\n");
224 status = RpcMgmtStopServerListening(NULL);
225 todo_wine {
226 ok(status == RPC_S_NOT_LISTENING,
227 "wrong RpcMgmtStopServerListening error (%lu)\n", status);
230 status = RpcMgmtWaitServerListen();
231 ok(status == RPC_S_NOT_LISTENING,
232 "wrong RpcMgmtWaitServerListen error status (%lu)\n", status);
234 status = RpcServerListen(1, 20, FALSE);
235 ok(status == RPC_S_NO_PROTSEQS_REGISTERED,
236 "wrong RpcServerListen error (%lu)\n", status);
238 status = RpcServerUseProtseqEp(ncacn_ip_tcp, 20, endpoint, NULL);
239 ok(status == RPC_S_OK, "RpcServerUseProtseqEp failed (%lu)\n", status);
241 status = RpcServerRegisterIf(IFoo_v0_0_s_ifspec, NULL, NULL);
242 ok(status == RPC_S_OK, "RpcServerRegisterIf failed (%lu)\n", status);
244 status = RpcServerListen(1, 20, TRUE);
245 todo_wine {
246 ok(status == RPC_S_OK, "RpcServerListen failed (%lu)\n", status);
249 status = RpcServerListen(1, 20, TRUE);
250 todo_wine {
251 ok(status == RPC_S_ALREADY_LISTENING,
252 "wrong RpcServerListen error (%lu)\n", status);
255 status = RpcStringBindingCompose(NULL, ncacn_ip_tcp, address,
256 endpoint, NULL, &binding);
257 ok(status == RPC_S_OK, "RpcStringBindingCompose failed (%lu)\n", status);
259 status = RpcBindingFromStringBinding(binding, &IFoo_IfHandle);
260 ok(status == RPC_S_OK, "RpcBindingFromStringBinding failed (%lu)\n",
261 status);
263 status = RpcMgmtStopServerListening(NULL);
264 ok(status == RPC_S_OK, "RpcMgmtStopServerListening failed (%lu)\n",
265 status);
267 status = RpcMgmtStopServerListening(NULL);
268 ok(status == RPC_S_OK, "RpcMgmtStopServerListening failed (%lu)\n",
269 status);
271 status = RpcServerUnregisterIf(NULL, NULL, FALSE);
272 ok(status == RPC_S_OK, "RpcServerUnregisterIf failed (%lu)\n", status);
274 status = RpcMgmtWaitServerListen();
275 todo_wine {
276 ok(status == RPC_S_OK, "RpcMgmtWaitServerListen failed (%lu)\n", status);
279 status = RpcStringFree(&binding);
280 ok(status == RPC_S_OK, "RpcStringFree failed (%lu)\n", status);
282 status = RpcBindingFree(&IFoo_IfHandle);
283 ok(status == RPC_S_OK, "RpcBindingFree failed (%lu)\n", status);
286 /* this is what's generated with MS/RPC - it includes an extra 2
287 * bytes in the protocol floor */
288 static const unsigned char tower_data_tcp_ip1[] =
290 0x05,0x00,0x13,0x00,0x0d,0x00,0xdb,0xf1,
291 0xa4,0x47,0xca,0x67,0x10,0xb3,0x1f,0x00,
292 0xdd,0x01,0x06,0x62,0xda,0x00,0x00,0x02,
293 0x00,0x00,0x00,0x13,0x00,0x0d,0x04,0x5d,
294 0x88,0x8a,0xeb,0x1c,0xc9,0x11,0x9f,0xe8,
295 0x08,0x00,0x2b,0x10,0x48,0x60,0x02,0x00,
296 0x02,0x00,0x00,0x00,0x01,0x00,0x0b,0x02,
297 0x00,0x00,0x00,0x01,0x00,0x07,0x02,0x00,
298 0x00,0x87,0x01,0x00,0x09,0x04,0x00,0x0a,
299 0x00,0x00,0x01,
301 /* this is the optimal data that i think should be generated */
302 static const unsigned char tower_data_tcp_ip2[] =
304 0x05,0x00,0x13,0x00,0x0d,0x00,0xdb,0xf1,
305 0xa4,0x47,0xca,0x67,0x10,0xb3,0x1f,0x00,
306 0xdd,0x01,0x06,0x62,0xda,0x00,0x00,0x02,
307 0x00,0x00,0x00,0x13,0x00,0x0d,0x04,0x5d,
308 0x88,0x8a,0xeb,0x1c,0xc9,0x11,0x9f,0xe8,
309 0x08,0x00,0x2b,0x10,0x48,0x60,0x02,0x00,
310 0x02,0x00,0x00,0x00,0x01,0x00,0x0b,0x00,
311 0x00,0x01,0x00,0x07,0x02,0x00,0x00,0x87,
312 0x01,0x00,0x09,0x04,0x00,0x0a,0x00,0x00,
313 0x01,
316 static void test_towers(void)
318 RPC_STATUS ret;
319 twr_t *tower;
320 static const RPC_SYNTAX_IDENTIFIER mapi_if_id = { { 0xa4f1db00, 0xca47, 0x1067, { 0xb3, 0x1f, 0x00, 0xdd, 0x01, 0x06, 0x62, 0xda } }, { 0, 0 } };
321 static const RPC_SYNTAX_IDENTIFIER ndr_syntax = { { 0x8a885d04, 0x1ceb, 0x11c9, { 0x9f, 0xe8, 0x08, 0x00, 0x2b, 0x10, 0x48, 0x60 } }, { 2, 0 } };
322 RPC_SYNTAX_IDENTIFIER object, syntax;
323 char *protseq, *endpoint, *address;
324 BOOL same;
326 ret = TowerConstruct(&mapi_if_id, &ndr_syntax, "ncacn_ip_tcp", "135", "10.0.0.1", &tower);
327 ok(ret == RPC_S_OK, "TowerConstruct failed with error %ld\n", ret);
328 if (ret == RPC_S_INVALID_RPC_PROTSEQ)
330 /* Windows Vista fails with this error and crashes if we continue */
331 skip("TowerConstruct failed, we are most likely on Windows Vista\n");
332 return;
335 /* first check we have the right amount of data */
336 ok(tower->tower_length == sizeof(tower_data_tcp_ip1) ||
337 tower->tower_length == sizeof(tower_data_tcp_ip2),
338 "Wrong size of tower %d\n", tower->tower_length);
340 /* then do a byte-by-byte comparison */
341 same = ((tower->tower_length == sizeof(tower_data_tcp_ip1)) &&
342 !memcmp(&tower->tower_octet_string, tower_data_tcp_ip1, sizeof(tower_data_tcp_ip1))) ||
343 ((tower->tower_length == sizeof(tower_data_tcp_ip2)) &&
344 !memcmp(&tower->tower_octet_string, tower_data_tcp_ip2, sizeof(tower_data_tcp_ip2)));
346 ok(same, "Tower data differs\n");
347 if (!same)
349 unsigned32 i;
350 for (i = 0; i < tower->tower_length; i++)
352 if (i % 8 == 0) printf(" ");
353 printf("0x%02x,", tower->tower_octet_string[i]);
354 if (i % 8 == 7) printf("\n");
356 printf("\n");
359 ret = TowerExplode(tower, &object, &syntax, &protseq, &endpoint, &address);
360 ok(ret == RPC_S_OK, "TowerExplode failed with error %ld\n", ret);
361 ok(!memcmp(&object, &mapi_if_id, sizeof(mapi_if_id)), "object id didn't match\n");
362 ok(!memcmp(&syntax, &ndr_syntax, sizeof(syntax)), "syntax id didn't match\n");
363 ok(!strcmp(protseq, "ncacn_ip_tcp"), "protseq was \"%s\" instead of \"ncacn_ip_tcp\"\n", protseq);
364 ok(!strcmp(endpoint, "135"), "endpoint was \"%s\" instead of \"135\"\n", endpoint);
365 ok(!strcmp(address, "10.0.0.1"), "address was \"%s\" instead of \"10.0.0.1\"\n", address);
367 I_RpcFree(protseq);
368 I_RpcFree(endpoint);
369 I_RpcFree(address);
371 ret = TowerExplode(tower, NULL, NULL, NULL, NULL, NULL);
372 ok(ret == RPC_S_OK, "TowerExplode failed with error %ld\n", ret);
374 I_RpcFree(tower);
376 /* test the behaviour for ip_tcp with name instead of dotted IP notation */
377 ret = TowerConstruct(&mapi_if_id, &ndr_syntax, "ncacn_ip_tcp", "135", "localhost", &tower);
378 ok(ret == RPC_S_OK, "TowerConstruct failed with error %ld\n", ret);
379 ret = TowerExplode(tower, NULL, NULL, NULL, NULL, &address);
380 ok(ret == RPC_S_OK, "TowerExplode failed with error %ld\n", ret);
381 ok(!strcmp(address, "0.0.0.0"), "address was \"%s\" instead of \"0.0.0.0\"\n", address);
383 I_RpcFree(address);
384 I_RpcFree(tower);
386 /* test the behaviour for np with no address */
387 ret = TowerConstruct(&mapi_if_id, &ndr_syntax, "ncacn_np", "\\pipe\\test", NULL, &tower);
388 ok(ret == RPC_S_OK, "TowerConstruct failed with error %ld\n", ret);
389 ret = TowerExplode(tower, NULL, NULL, NULL, NULL, &address);
390 ok(ret == RPC_S_OK, "TowerExplode failed with error %ld\n", ret);
391 /* Windows XP SP3 sets address to NULL */
392 ok(!address || !strcmp(address, ""), "address was \"%s\" instead of \"\"\n or NULL (XP SP3)", address);
394 I_RpcFree(address);
395 I_RpcFree(tower);
398 static void test_I_RpcMapWin32Status(void)
400 LONG win32status;
401 RPC_STATUS rpc_status;
402 BOOL w2k3_up = FALSE;
404 /* Windows 2003 and Vista return STATUS_UNSUCCESSFUL if given an unknown status */
405 win32status = I_RpcMapWin32Status(9999);
406 if (win32status == STATUS_UNSUCCESSFUL)
408 trace("We are on Windows 2003 or Vista\n");
409 w2k3_up = TRUE;
412 for (rpc_status = 0; rpc_status < 10000; rpc_status++)
414 LONG expected_win32status;
415 win32status = I_RpcMapWin32Status(rpc_status);
416 switch (rpc_status)
418 case ERROR_SUCCESS: expected_win32status = ERROR_SUCCESS; break;
419 case ERROR_ACCESS_DENIED: expected_win32status = STATUS_ACCESS_DENIED; break;
420 case ERROR_INVALID_HANDLE: expected_win32status = RPC_NT_SS_CONTEXT_MISMATCH; break;
421 case ERROR_OUTOFMEMORY: expected_win32status = STATUS_NO_MEMORY; break;
422 case ERROR_INVALID_PARAMETER: expected_win32status = STATUS_INVALID_PARAMETER; break;
423 case ERROR_INSUFFICIENT_BUFFER: expected_win32status = STATUS_BUFFER_TOO_SMALL; break;
424 case ERROR_MAX_THRDS_REACHED: expected_win32status = STATUS_NO_MEMORY; break;
425 case ERROR_NOACCESS: expected_win32status = STATUS_ACCESS_VIOLATION; break;
426 case ERROR_NOT_ENOUGH_SERVER_MEMORY: expected_win32status = STATUS_INSUFF_SERVER_RESOURCES; break;
427 case ERROR_WRONG_PASSWORD: expected_win32status = STATUS_WRONG_PASSWORD; break;
428 case ERROR_INVALID_LOGON_HOURS: expected_win32status = STATUS_INVALID_LOGON_HOURS; break;
429 case ERROR_PASSWORD_EXPIRED: expected_win32status = STATUS_PASSWORD_EXPIRED; break;
430 case ERROR_ACCOUNT_DISABLED: expected_win32status = STATUS_ACCOUNT_DISABLED; break;
431 case ERROR_INVALID_SECURITY_DESCR: expected_win32status = STATUS_INVALID_SECURITY_DESCR; break;
432 case RPC_S_INVALID_STRING_BINDING: expected_win32status = RPC_NT_INVALID_STRING_BINDING; break;
433 case RPC_S_WRONG_KIND_OF_BINDING: expected_win32status = RPC_NT_WRONG_KIND_OF_BINDING; break;
434 case RPC_S_INVALID_BINDING: expected_win32status = RPC_NT_INVALID_BINDING; break;
435 case RPC_S_PROTSEQ_NOT_SUPPORTED: expected_win32status = RPC_NT_PROTSEQ_NOT_SUPPORTED; break;
436 case RPC_S_INVALID_RPC_PROTSEQ: expected_win32status = RPC_NT_INVALID_RPC_PROTSEQ; break;
437 case RPC_S_INVALID_STRING_UUID: expected_win32status = RPC_NT_INVALID_STRING_UUID; break;
438 case RPC_S_INVALID_ENDPOINT_FORMAT: expected_win32status = RPC_NT_INVALID_ENDPOINT_FORMAT; break;
439 case RPC_S_INVALID_NET_ADDR: expected_win32status = RPC_NT_INVALID_NET_ADDR; break;
440 case RPC_S_NO_ENDPOINT_FOUND: expected_win32status = RPC_NT_NO_ENDPOINT_FOUND; break;
441 case RPC_S_INVALID_TIMEOUT: expected_win32status = RPC_NT_INVALID_TIMEOUT; break;
442 case RPC_S_OBJECT_NOT_FOUND: expected_win32status = RPC_NT_OBJECT_NOT_FOUND; break;
443 case RPC_S_ALREADY_REGISTERED: expected_win32status = RPC_NT_ALREADY_REGISTERED; break;
444 case RPC_S_TYPE_ALREADY_REGISTERED: expected_win32status = RPC_NT_TYPE_ALREADY_REGISTERED; break;
445 case RPC_S_ALREADY_LISTENING: expected_win32status = RPC_NT_ALREADY_LISTENING; break;
446 case RPC_S_NO_PROTSEQS_REGISTERED: expected_win32status = RPC_NT_NO_PROTSEQS_REGISTERED; break;
447 case RPC_S_NOT_LISTENING: expected_win32status = RPC_NT_NOT_LISTENING; break;
448 case RPC_S_UNKNOWN_MGR_TYPE: expected_win32status = RPC_NT_UNKNOWN_MGR_TYPE; break;
449 case RPC_S_UNKNOWN_IF: expected_win32status = RPC_NT_UNKNOWN_IF; break;
450 case RPC_S_NO_BINDINGS: expected_win32status = RPC_NT_NO_BINDINGS; break;
451 case RPC_S_NO_PROTSEQS: expected_win32status = RPC_NT_NO_PROTSEQS; break;
452 case RPC_S_CANT_CREATE_ENDPOINT: expected_win32status = RPC_NT_CANT_CREATE_ENDPOINT; break;
453 case RPC_S_OUT_OF_RESOURCES: expected_win32status = RPC_NT_OUT_OF_RESOURCES; break;
454 case RPC_S_SERVER_UNAVAILABLE: expected_win32status = RPC_NT_SERVER_UNAVAILABLE; break;
455 case RPC_S_SERVER_TOO_BUSY: expected_win32status = RPC_NT_SERVER_TOO_BUSY; break;
456 case RPC_S_INVALID_NETWORK_OPTIONS: expected_win32status = RPC_NT_INVALID_NETWORK_OPTIONS; break;
457 case RPC_S_NO_CALL_ACTIVE: expected_win32status = RPC_NT_NO_CALL_ACTIVE; break;
458 case RPC_S_CALL_FAILED: expected_win32status = RPC_NT_CALL_FAILED; break;
459 case RPC_S_CALL_FAILED_DNE: expected_win32status = RPC_NT_CALL_FAILED_DNE; break;
460 case RPC_S_PROTOCOL_ERROR: expected_win32status = RPC_NT_PROTOCOL_ERROR; break;
461 case RPC_S_UNSUPPORTED_TRANS_SYN: expected_win32status = RPC_NT_UNSUPPORTED_TRANS_SYN; break;
462 case RPC_S_UNSUPPORTED_TYPE: expected_win32status = RPC_NT_UNSUPPORTED_TYPE; break;
463 case RPC_S_INVALID_TAG: expected_win32status = RPC_NT_INVALID_TAG; break;
464 case RPC_S_INVALID_BOUND: expected_win32status = RPC_NT_INVALID_BOUND; break;
465 case RPC_S_NO_ENTRY_NAME: expected_win32status = RPC_NT_NO_ENTRY_NAME; break;
466 case RPC_S_INVALID_NAME_SYNTAX: expected_win32status = RPC_NT_INVALID_NAME_SYNTAX; break;
467 case RPC_S_UNSUPPORTED_NAME_SYNTAX: expected_win32status = RPC_NT_UNSUPPORTED_NAME_SYNTAX; break;
468 case RPC_S_UUID_NO_ADDRESS: expected_win32status = RPC_NT_UUID_NO_ADDRESS; break;
469 case RPC_S_DUPLICATE_ENDPOINT: expected_win32status = RPC_NT_DUPLICATE_ENDPOINT; break;
470 case RPC_S_UNKNOWN_AUTHN_TYPE: expected_win32status = RPC_NT_UNKNOWN_AUTHN_TYPE; break;
471 case RPC_S_MAX_CALLS_TOO_SMALL: expected_win32status = RPC_NT_MAX_CALLS_TOO_SMALL; break;
472 case RPC_S_STRING_TOO_LONG: expected_win32status = RPC_NT_STRING_TOO_LONG; break;
473 case RPC_S_PROTSEQ_NOT_FOUND: expected_win32status = RPC_NT_PROTSEQ_NOT_FOUND; break;
474 case RPC_S_PROCNUM_OUT_OF_RANGE: expected_win32status = RPC_NT_PROCNUM_OUT_OF_RANGE; break;
475 case RPC_S_BINDING_HAS_NO_AUTH: expected_win32status = RPC_NT_BINDING_HAS_NO_AUTH; break;
476 case RPC_S_UNKNOWN_AUTHN_SERVICE: expected_win32status = RPC_NT_UNKNOWN_AUTHN_SERVICE; break;
477 case RPC_S_UNKNOWN_AUTHN_LEVEL: expected_win32status = RPC_NT_UNKNOWN_AUTHN_LEVEL; break;
478 case RPC_S_INVALID_AUTH_IDENTITY: expected_win32status = RPC_NT_INVALID_AUTH_IDENTITY; break;
479 case RPC_S_UNKNOWN_AUTHZ_SERVICE: expected_win32status = RPC_NT_UNKNOWN_AUTHZ_SERVICE; break;
480 case EPT_S_INVALID_ENTRY: expected_win32status = EPT_NT_INVALID_ENTRY; break;
481 case EPT_S_CANT_PERFORM_OP: expected_win32status = EPT_NT_CANT_PERFORM_OP; break;
482 case EPT_S_NOT_REGISTERED: expected_win32status = EPT_NT_NOT_REGISTERED; break;
483 case EPT_S_CANT_CREATE: expected_win32status = EPT_NT_CANT_CREATE; break;
484 case RPC_S_NOTHING_TO_EXPORT: expected_win32status = RPC_NT_NOTHING_TO_EXPORT; break;
485 case RPC_S_INCOMPLETE_NAME: expected_win32status = RPC_NT_INCOMPLETE_NAME; break;
486 case RPC_S_INVALID_VERS_OPTION: expected_win32status = RPC_NT_INVALID_VERS_OPTION; break;
487 case RPC_S_NO_MORE_MEMBERS: expected_win32status = RPC_NT_NO_MORE_MEMBERS; break;
488 case RPC_S_NOT_ALL_OBJS_UNEXPORTED: expected_win32status = RPC_NT_NOT_ALL_OBJS_UNEXPORTED; break;
489 case RPC_S_INTERFACE_NOT_FOUND: expected_win32status = RPC_NT_INTERFACE_NOT_FOUND; break;
490 case RPC_S_ENTRY_ALREADY_EXISTS: expected_win32status = RPC_NT_ENTRY_ALREADY_EXISTS; break;
491 case RPC_S_ENTRY_NOT_FOUND: expected_win32status = RPC_NT_ENTRY_NOT_FOUND; break;
492 case RPC_S_NAME_SERVICE_UNAVAILABLE: expected_win32status = RPC_NT_NAME_SERVICE_UNAVAILABLE; break;
493 case RPC_S_INVALID_NAF_ID: expected_win32status = RPC_NT_INVALID_NAF_ID; break;
494 case RPC_S_CANNOT_SUPPORT: expected_win32status = RPC_NT_CANNOT_SUPPORT; break;
495 case RPC_S_NO_CONTEXT_AVAILABLE: expected_win32status = RPC_NT_NO_CONTEXT_AVAILABLE; break;
496 case RPC_S_INTERNAL_ERROR: expected_win32status = RPC_NT_INTERNAL_ERROR; break;
497 case RPC_S_ZERO_DIVIDE: expected_win32status = RPC_NT_ZERO_DIVIDE; break;
498 case RPC_S_ADDRESS_ERROR: expected_win32status = RPC_NT_ADDRESS_ERROR; break;
499 case RPC_S_FP_DIV_ZERO: expected_win32status = RPC_NT_FP_DIV_ZERO; break;
500 case RPC_S_FP_UNDERFLOW: expected_win32status = RPC_NT_FP_UNDERFLOW; break;
501 case RPC_S_FP_OVERFLOW: expected_win32status = RPC_NT_FP_OVERFLOW; break;
502 case RPC_S_CALL_IN_PROGRESS: expected_win32status = RPC_NT_CALL_IN_PROGRESS; break;
503 case RPC_S_NO_MORE_BINDINGS: expected_win32status = RPC_NT_NO_MORE_BINDINGS; break;
504 case RPC_S_CALL_CANCELLED: expected_win32status = RPC_NT_CALL_CANCELLED; break;
505 case RPC_S_INVALID_OBJECT: expected_win32status = RPC_NT_INVALID_OBJECT; break;
506 case RPC_S_INVALID_ASYNC_HANDLE: expected_win32status = RPC_NT_INVALID_ASYNC_HANDLE; break;
507 case RPC_S_INVALID_ASYNC_CALL: expected_win32status = RPC_NT_INVALID_ASYNC_CALL; break;
508 case RPC_S_GROUP_MEMBER_NOT_FOUND: expected_win32status = RPC_NT_GROUP_MEMBER_NOT_FOUND; break;
509 case RPC_X_NO_MORE_ENTRIES: expected_win32status = RPC_NT_NO_MORE_ENTRIES; break;
510 case RPC_X_SS_CHAR_TRANS_OPEN_FAIL: expected_win32status = RPC_NT_SS_CHAR_TRANS_OPEN_FAIL; break;
511 case RPC_X_SS_CHAR_TRANS_SHORT_FILE: expected_win32status = RPC_NT_SS_CHAR_TRANS_SHORT_FILE; break;
512 case RPC_X_SS_IN_NULL_CONTEXT: expected_win32status = RPC_NT_SS_IN_NULL_CONTEXT; break;
513 case RPC_X_SS_CONTEXT_DAMAGED: expected_win32status = RPC_NT_SS_CONTEXT_DAMAGED; break;
514 case RPC_X_SS_HANDLES_MISMATCH: expected_win32status = RPC_NT_SS_HANDLES_MISMATCH; break;
515 case RPC_X_SS_CANNOT_GET_CALL_HANDLE: expected_win32status = RPC_NT_SS_CANNOT_GET_CALL_HANDLE; break;
516 case RPC_X_NULL_REF_POINTER: expected_win32status = RPC_NT_NULL_REF_POINTER; break;
517 case RPC_X_ENUM_VALUE_OUT_OF_RANGE: expected_win32status = RPC_NT_ENUM_VALUE_OUT_OF_RANGE; break;
518 case RPC_X_BYTE_COUNT_TOO_SMALL: expected_win32status = RPC_NT_BYTE_COUNT_TOO_SMALL; break;
519 case RPC_X_BAD_STUB_DATA: expected_win32status = RPC_NT_BAD_STUB_DATA; break;
520 case RPC_X_PIPE_CLOSED: expected_win32status = RPC_NT_PIPE_CLOSED; break;
521 case RPC_X_PIPE_DISCIPLINE_ERROR: expected_win32status = RPC_NT_PIPE_DISCIPLINE_ERROR; break;
522 case RPC_X_PIPE_EMPTY: expected_win32status = RPC_NT_PIPE_EMPTY; break;
523 case ERROR_PASSWORD_MUST_CHANGE: expected_win32status = STATUS_PASSWORD_MUST_CHANGE; break;
524 case ERROR_ACCOUNT_LOCKED_OUT: expected_win32status = STATUS_ACCOUNT_LOCKED_OUT; break;
525 default:
526 if (w2k3_up)
527 expected_win32status = STATUS_UNSUCCESSFUL;
528 else
529 expected_win32status = rpc_status;
531 ok(win32status == expected_win32status, "I_RpcMapWin32Status(%ld) should have returned 0x%x instead of 0x%x\n",
532 rpc_status, expected_win32status, win32status);
536 static void test_RpcStringBindingParseA(void)
538 static unsigned char valid_binding[] = "00000000-0000-0000-c000-000000000046@ncacn_np:.[endpoint=\\pipe\\test]";
539 static unsigned char valid_binding2[] = "00000000-0000-0000-c000-000000000046@ncacn_np:.[\\pipe\\test]";
540 static unsigned char invalid_uuid_binding[] = "{00000000-0000-0000-c000-000000000046}@ncacn_np:.[endpoint=\\pipe\\test]";
541 static unsigned char invalid_ep_binding[] = "00000000-0000-0000-c000-000000000046@ncacn_np:.[endpoint=test]";
542 static unsigned char invalid_binding[] = "00000000-0000-0000-c000-000000000046@ncacn_np";
543 RPC_STATUS status;
544 unsigned char *uuid;
545 unsigned char *protseq;
546 unsigned char *network_addr;
547 unsigned char *endpoint;
548 unsigned char *options;
550 /* test all parameters */
551 status = RpcStringBindingParseA(valid_binding, &uuid, &protseq, &network_addr, &endpoint, &options);
552 ok(status == RPC_S_OK, "RpcStringBindingParseA failed with error %ld\n", status);
553 ok(!strcmp((char *)uuid, "00000000-0000-0000-c000-000000000046"), "uuid should have been 00000000-0000-0000-C000-000000000046 instead of %s\n", uuid);
554 ok(!strcmp((char *)protseq, "ncacn_np"), "protseq should have been ncacn_np instead of %s\n", protseq);
555 ok(!strcmp((char *)network_addr, "."), "network_addr should have been . instead of %s\n", network_addr);
556 todo_wine
557 ok(!strcmp((char *)endpoint, "pipetest"), "endpoint should have been pipetest instead of %s\n", endpoint);
558 todo_wine
559 ok(options && !strcmp((char *)options, ""), "options should have been \"\" of \"%s\"\n", options);
560 RpcStringFreeA(&uuid);
561 RpcStringFreeA(&protseq);
562 RpcStringFreeA(&network_addr);
563 RpcStringFreeA(&endpoint);
564 RpcStringFreeA(&options);
566 /* test all parameters with different type of string binding */
567 status = RpcStringBindingParseA(valid_binding2, &uuid, &protseq, &network_addr, &endpoint, &options);
568 ok(status == RPC_S_OK, "RpcStringBindingParseA failed with error %ld\n", status);
569 ok(!strcmp((char *)uuid, "00000000-0000-0000-c000-000000000046"), "uuid should have been 00000000-0000-0000-C000-000000000046 instead of %s\n", uuid);
570 ok(!strcmp((char *)protseq, "ncacn_np"), "protseq should have been ncacn_np instead of %s\n", protseq);
571 ok(!strcmp((char *)network_addr, "."), "network_addr should have been . instead of %s\n", network_addr);
572 todo_wine
573 ok(!strcmp((char *)endpoint, "pipetest"), "endpoint should have been pipetest instead of %s\n", endpoint);
574 todo_wine
575 ok(options && !strcmp((char *)options, ""), "options should have been \"\" of \"%s\"\n", options);
576 RpcStringFreeA(&uuid);
577 RpcStringFreeA(&protseq);
578 RpcStringFreeA(&network_addr);
579 RpcStringFreeA(&endpoint);
580 RpcStringFreeA(&options);
582 /* test with as many parameters NULL as possible */
583 status = RpcStringBindingParseA(valid_binding, NULL, &protseq, NULL, NULL, NULL);
584 ok(status == RPC_S_OK, "RpcStringBindingParseA failed with error %ld\n", status);
585 ok(!strcmp((char *)protseq, "ncacn_np"), "protseq should have been ncacn_np instead of %s\n", protseq);
586 RpcStringFreeA(&protseq);
588 /* test with invalid uuid */
589 status = RpcStringBindingParseA(invalid_uuid_binding, NULL, &protseq, NULL, NULL, NULL);
590 todo_wine
591 ok(status == RPC_S_INVALID_STRING_UUID, "RpcStringBindingParseA should have returned RPC_S_INVALID_STRING_UUID instead of %ld\n", status);
592 todo_wine
593 ok(protseq == NULL, "protseq was %p instead of NULL\n", protseq);
595 /* test with invalid endpoint */
596 status = RpcStringBindingParseA(invalid_ep_binding, NULL, &protseq, NULL, NULL, NULL);
597 ok(status == RPC_S_OK, "RpcStringBindingParseA failed with error %ld\n", status);
598 RpcStringFreeA(&protseq);
600 /* test with invalid binding */
601 status = RpcStringBindingParseA(invalid_binding, &uuid, &protseq, &network_addr, &endpoint, &options);
602 todo_wine
603 ok(status == RPC_S_INVALID_STRING_BINDING, "RpcStringBindingParseA should have returned RPC_S_INVALID_STRING_BINDING instead of %ld\n", status);
604 todo_wine
605 ok(uuid == NULL, "uuid was %p instead of NULL\n", uuid);
606 ok(protseq == NULL, "protseq was %p instead of NULL\n", protseq);
607 todo_wine
608 ok(network_addr == NULL, "network_addr was %p instead of NULL\n", network_addr);
609 ok(endpoint == NULL, "endpoint was %p instead of NULL\n", endpoint);
610 ok(options == NULL, "options was %p instead of NULL\n", options);
613 static void test_I_RpcExceptionFilter(void)
615 ULONG exception;
616 int retval;
617 int (WINAPI *pI_RpcExceptionFilter)(ULONG) = (void *)GetProcAddress(GetModuleHandle("rpcrt4.dll"), "I_RpcExceptionFilter");
619 if (!pI_RpcExceptionFilter)
621 skip("I_RpcExceptionFilter not exported\n");
622 return;
625 for (exception = 0; exception < STATUS_REG_NAT_CONSUMPTION; exception++)
627 /* skip over uninteresting bits of the number space */
628 if (exception == 2000) exception = 0x40000000;
629 if (exception == 0x40000005) exception = 0x80000000;
630 if (exception == 0x80000005) exception = 0xc0000000;
632 retval = pI_RpcExceptionFilter(exception);
633 switch (exception)
635 case STATUS_DATATYPE_MISALIGNMENT:
636 case STATUS_BREAKPOINT:
637 case STATUS_ACCESS_VIOLATION:
638 case STATUS_ILLEGAL_INSTRUCTION:
639 case STATUS_PRIVILEGED_INSTRUCTION:
640 case 0xc00000aa /* STATUS_INSTRUCTION_MISALIGNMENT */:
641 case STATUS_STACK_OVERFLOW:
642 case 0xc0000194 /* STATUS_POSSIBLE_DEADLOCK */:
643 ok(retval == EXCEPTION_CONTINUE_SEARCH, "I_RpcExceptionFilter(0x%x) should have returned %d instead of %d\n",
644 exception, EXCEPTION_CONTINUE_SEARCH, retval);
645 break;
646 default:
647 ok(retval == EXCEPTION_EXECUTE_HANDLER, "I_RpcExceptionFilter(0x%x) should have returned %d instead of %d\n",
648 exception, EXCEPTION_EXECUTE_HANDLER, retval);
653 START_TEST( rpc )
655 trace ( " ** Uuid Conversion and Comparison Tests **\n" );
656 UuidConversionAndComparison();
657 trace ( " ** DceErrorInqText **\n");
658 TestDceErrorInqText();
659 test_rpc_ncacn_ip_tcp();
660 test_towers();
661 test_I_RpcMapWin32Status();
662 test_RpcStringBindingParseA();
663 test_I_RpcExceptionFilter();