2 Unix SMB/CIFS implementation.
4 test suite for netlogon rpc operations
6 Copyright (C) Andrew Tridgell 2003
7 Copyright (C) Andrew Bartlett <abartlet@samba.org> 2003-2004
8 Copyright (C) Tim Potter 2003
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 3 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program. If not, see <http://www.gnu.org/licenses/>.
25 #include "torture/torture.h"
26 #include "lib/events/events.h"
27 #include "auth/auth.h"
28 #include "auth/gensec/gensec.h"
29 #include "lib/cmdline/popt_common.h"
30 #include "torture/rpc/rpc.h"
31 #include "torture/rpc/netlogon.h"
32 #include "../lib/crypto/crypto.h"
33 #include "libcli/auth/libcli_auth.h"
34 #include "librpc/gen_ndr/ndr_netlogon_c.h"
35 #include "librpc/gen_ndr/ndr_lsa_c.h"
36 #include "param/param.h"
38 #define TEST_MACHINE_NAME "torturetest"
40 static bool test_LogonUasLogon(struct torture_context *tctx,
41 struct dcerpc_pipe *p)
44 struct netr_LogonUasLogon r;
45 struct netr_UasInfo *info = NULL;
47 r.in.server_name = NULL;
48 r.in.account_name = cli_credentials_get_username(cmdline_credentials);
49 r.in.workstation = TEST_MACHINE_NAME;
52 status = dcerpc_netr_LogonUasLogon(p, tctx, &r);
53 torture_assert_ntstatus_ok(tctx, status, "LogonUasLogon");
58 static bool test_LogonUasLogoff(struct torture_context *tctx,
59 struct dcerpc_pipe *p)
62 struct netr_LogonUasLogoff r;
63 struct netr_UasLogoffInfo info;
65 r.in.server_name = NULL;
66 r.in.account_name = cli_credentials_get_username(cmdline_credentials);
67 r.in.workstation = TEST_MACHINE_NAME;
70 status = dcerpc_netr_LogonUasLogoff(p, tctx, &r);
71 torture_assert_ntstatus_ok(tctx, status, "LogonUasLogoff");
76 static bool test_SetupCredentials(struct dcerpc_pipe *p, struct torture_context *tctx,
77 struct cli_credentials *credentials,
78 struct creds_CredentialState **creds_out)
81 struct netr_ServerReqChallenge r;
82 struct netr_ServerAuthenticate a;
83 struct netr_Credential credentials1, credentials2, credentials3;
84 struct creds_CredentialState *creds;
85 const struct samr_Password *mach_password;
86 const char *machine_name;
88 mach_password = cli_credentials_get_nt_hash(credentials, tctx);
89 machine_name = cli_credentials_get_workstation(credentials);
91 torture_comment(tctx, "Testing ServerReqChallenge\n");
93 creds = talloc(tctx, struct creds_CredentialState);
94 torture_assert(tctx, creds != NULL, "memory allocation");
96 r.in.server_name = NULL;
97 r.in.computer_name = machine_name;
98 r.in.credentials = &credentials1;
99 r.out.credentials = &credentials2;
101 generate_random_buffer(credentials1.data, sizeof(credentials1.data));
103 status = dcerpc_netr_ServerReqChallenge(p, tctx, &r);
104 torture_assert_ntstatus_ok(tctx, status, "ServerReqChallenge");
106 a.in.server_name = NULL;
107 a.in.account_name = talloc_asprintf(tctx, "%s$", machine_name);
108 a.in.secure_channel_type = SEC_CHAN_BDC;
109 a.in.computer_name = machine_name;
110 a.in.credentials = &credentials3;
111 a.out.credentials = &credentials3;
113 creds_client_init(creds, &credentials1, &credentials2,
114 mach_password, &credentials3,
117 torture_comment(tctx, "Testing ServerAuthenticate\n");
119 status = dcerpc_netr_ServerAuthenticate(p, tctx, &a);
121 /* This allows the tests to continue against the more fussy windows 2008 */
122 if (NT_STATUS_EQUAL(status, NT_STATUS_DOWNGRADE_DETECTED)) {
123 return test_SetupCredentials2(p, tctx, NETLOGON_NEG_AUTH2_ADS_FLAGS,
124 credentials, SEC_CHAN_BDC, creds_out);
127 torture_assert_ntstatus_ok(tctx, status, "ServerAuthenticate");
129 torture_assert(tctx, creds_client_check(creds, &credentials3),
130 "Credential chaining failed");
136 bool test_SetupCredentials2(struct dcerpc_pipe *p, struct torture_context *tctx,
137 uint32_t negotiate_flags,
138 struct cli_credentials *machine_credentials,
140 struct creds_CredentialState **creds_out)
143 struct netr_ServerReqChallenge r;
144 struct netr_ServerAuthenticate2 a;
145 struct netr_Credential credentials1, credentials2, credentials3;
146 struct creds_CredentialState *creds;
147 const struct samr_Password *mach_password;
148 const char *machine_name;
149 const char *plain_pass;
151 mach_password = cli_credentials_get_nt_hash(machine_credentials, tctx);
152 machine_name = cli_credentials_get_workstation(machine_credentials);
154 torture_comment(tctx, "Testing ServerReqChallenge\n");
156 creds = talloc(tctx, struct creds_CredentialState);
157 torture_assert(tctx, creds != NULL, "memory allocation");
159 r.in.server_name = NULL;
160 r.in.computer_name = machine_name;
161 r.in.credentials = &credentials1;
162 r.out.credentials = &credentials2;
164 generate_random_buffer(credentials1.data, sizeof(credentials1.data));
166 status = dcerpc_netr_ServerReqChallenge(p, tctx, &r);
167 torture_assert_ntstatus_ok(tctx, status, "ServerReqChallenge");
169 a.in.server_name = NULL;
170 a.in.account_name = talloc_asprintf(tctx, "%s$", machine_name);
171 a.in.secure_channel_type = sec_chan_type;
172 a.in.computer_name = machine_name;
173 a.in.negotiate_flags = &negotiate_flags;
174 a.out.negotiate_flags = &negotiate_flags;
175 a.in.credentials = &credentials3;
176 a.out.credentials = &credentials3;
178 creds_client_init(creds, &credentials1, &credentials2,
179 mach_password, &credentials3,
182 torture_comment(tctx, "Testing ServerAuthenticate2\n");
184 status = dcerpc_netr_ServerAuthenticate2(p, tctx, &a);
185 torture_assert_ntstatus_ok(tctx, status, "ServerAuthenticate2");
187 torture_assert(tctx, creds_client_check(creds, &credentials3),
188 "Credential chaining failed");
190 torture_comment(tctx, "negotiate_flags=0x%08x\n", negotiate_flags);
197 static bool test_SetupCredentials3(struct dcerpc_pipe *p, struct torture_context *tctx,
198 uint32_t negotiate_flags,
199 struct cli_credentials *machine_credentials,
200 struct creds_CredentialState **creds_out)
203 struct netr_ServerReqChallenge r;
204 struct netr_ServerAuthenticate3 a;
205 struct netr_Credential credentials1, credentials2, credentials3;
206 struct creds_CredentialState *creds;
207 struct samr_Password mach_password;
209 const char *machine_name;
210 const char *plain_pass;
212 machine_name = cli_credentials_get_workstation(machine_credentials);
213 plain_pass = cli_credentials_get_password(machine_credentials);
215 torture_comment(tctx, "Testing ServerReqChallenge\n");
217 creds = talloc(tctx, struct creds_CredentialState);
218 torture_assert(tctx, creds != NULL, "memory allocation");
220 r.in.server_name = NULL;
221 r.in.computer_name = machine_name;
222 r.in.credentials = &credentials1;
223 r.out.credentials = &credentials2;
225 generate_random_buffer(credentials1.data, sizeof(credentials1.data));
227 status = dcerpc_netr_ServerReqChallenge(p, tctx, &r);
228 torture_assert_ntstatus_ok(tctx, status, "ServerReqChallenge");
230 E_md4hash(plain_pass, mach_password.hash);
232 a.in.server_name = NULL;
233 a.in.account_name = talloc_asprintf(tctx, "%s$", machine_name);
234 a.in.secure_channel_type = SEC_CHAN_BDC;
235 a.in.computer_name = machine_name;
236 a.in.negotiate_flags = &negotiate_flags;
237 a.in.credentials = &credentials3;
238 a.out.credentials = &credentials3;
239 a.out.negotiate_flags = &negotiate_flags;
242 creds_client_init(creds, &credentials1, &credentials2,
243 &mach_password, &credentials3,
246 torture_comment(tctx, "Testing ServerAuthenticate3\n");
248 status = dcerpc_netr_ServerAuthenticate3(p, tctx, &a);
249 torture_assert_ntstatus_ok(tctx, status, "ServerAuthenticate3");
250 torture_assert(tctx, creds_client_check(creds, &credentials3), "Credential chaining failed");
252 torture_comment(tctx, "negotiate_flags=0x%08x\n", negotiate_flags);
254 /* Prove that requesting a challenge again won't break it */
255 status = dcerpc_netr_ServerReqChallenge(p, tctx, &r);
256 torture_assert_ntstatus_ok(tctx, status, "ServerReqChallenge");
263 try a change password for our machine account
265 static bool test_SetPassword(struct torture_context *tctx,
266 struct dcerpc_pipe *p,
267 struct cli_credentials *machine_credentials)
270 struct netr_ServerPasswordSet r;
271 const char *password;
272 struct creds_CredentialState *creds;
274 if (!test_SetupCredentials(p, tctx, machine_credentials, &creds)) {
278 r.in.server_name = talloc_asprintf(tctx, "\\\\%s", dcerpc_server_name(p));
279 r.in.account_name = talloc_asprintf(tctx, "%s$", TEST_MACHINE_NAME);
280 r.in.secure_channel_type = SEC_CHAN_BDC;
281 r.in.computer_name = TEST_MACHINE_NAME;
283 password = generate_random_str(tctx, 8);
284 E_md4hash(password, r.in.new_password.hash);
286 creds_des_encrypt(creds, &r.in.new_password);
288 torture_comment(tctx, "Testing ServerPasswordSet on machine account\n");
289 torture_comment(tctx, "Changing machine account password to '%s'\n",
292 creds_client_authenticator(creds, &r.in.credential);
294 status = dcerpc_netr_ServerPasswordSet(p, tctx, &r);
295 torture_assert_ntstatus_ok(tctx, status, "ServerPasswordSet");
297 if (!creds_client_check(creds, &r.out.return_authenticator.cred)) {
298 torture_comment(tctx, "Credential chaining failed\n");
301 /* by changing the machine password twice we test the
302 credentials chaining fully, and we verify that the server
303 allows the password to be set to the same value twice in a
304 row (match win2k3) */
305 torture_comment(tctx,
306 "Testing a second ServerPasswordSet on machine account\n");
307 torture_comment(tctx,
308 "Changing machine account password to '%s' (same as previous run)\n", password);
310 creds_client_authenticator(creds, &r.in.credential);
312 status = dcerpc_netr_ServerPasswordSet(p, tctx, &r);
313 torture_assert_ntstatus_ok(tctx, status, "ServerPasswordSet (2)");
315 if (!creds_client_check(creds, &r.out.return_authenticator.cred)) {
316 torture_comment(tctx, "Credential chaining failed\n");
319 cli_credentials_set_password(machine_credentials, password, CRED_SPECIFIED);
322 test_SetupCredentials(p, tctx, machine_credentials, &creds),
323 "ServerPasswordSet failed to actually change the password");
329 generate a random password for password change tests
331 static DATA_BLOB netlogon_very_rand_pass(TALLOC_CTX *mem_ctx, int len)
334 DATA_BLOB password = data_blob_talloc(mem_ctx, NULL, len * 2 /* number of unicode chars */);
335 generate_random_buffer(password.data, password.length);
337 for (i=0; i < len; i++) {
338 if (((uint16_t *)password.data)[i] == 0) {
339 ((uint16_t *)password.data)[i] = 1;
347 try a change password for our machine account
349 static bool test_SetPassword2(struct torture_context *tctx,
350 struct dcerpc_pipe *p,
351 struct cli_credentials *machine_credentials)
354 struct netr_ServerPasswordSet2 r;
355 const char *password;
356 DATA_BLOB new_random_pass;
357 struct creds_CredentialState *creds;
358 struct samr_CryptPassword password_buf;
359 struct samr_Password nt_hash;
361 if (!test_SetupCredentials(p, tctx, machine_credentials, &creds)) {
365 r.in.server_name = talloc_asprintf(tctx, "\\\\%s", dcerpc_server_name(p));
366 r.in.account_name = talloc_asprintf(tctx, "%s$", TEST_MACHINE_NAME);
367 r.in.secure_channel_type = SEC_CHAN_BDC;
368 r.in.computer_name = TEST_MACHINE_NAME;
370 password = generate_random_str(tctx, 8);
371 encode_pw_buffer(password_buf.data, password, STR_UNICODE);
372 creds_arcfour_crypt(creds, password_buf.data, 516);
374 memcpy(r.in.new_password.data, password_buf.data, 512);
375 r.in.new_password.length = IVAL(password_buf.data, 512);
377 torture_comment(tctx, "Testing ServerPasswordSet2 on machine account\n");
378 torture_comment(tctx, "Changing machine account password to '%s'\n", password);
380 creds_client_authenticator(creds, &r.in.credential);
382 status = dcerpc_netr_ServerPasswordSet2(p, tctx, &r);
383 torture_assert_ntstatus_ok(tctx, status, "ServerPasswordSet2");
385 if (!creds_client_check(creds, &r.out.return_authenticator.cred)) {
386 torture_comment(tctx, "Credential chaining failed\n");
389 cli_credentials_set_password(machine_credentials, password, CRED_SPECIFIED);
391 if (!torture_setting_bool(tctx, "dangerous", false)) {
392 torture_comment(tctx,
393 "Not testing ability to set password to '', enable dangerous tests to perform this test\n");
395 /* by changing the machine password to ""
396 * we check if the server uses password restrictions
397 * for ServerPasswordSet2
398 * (win2k3 accepts "")
401 encode_pw_buffer(password_buf.data, password, STR_UNICODE);
402 creds_arcfour_crypt(creds, password_buf.data, 516);
404 memcpy(r.in.new_password.data, password_buf.data, 512);
405 r.in.new_password.length = IVAL(password_buf.data, 512);
407 torture_comment(tctx,
408 "Testing ServerPasswordSet2 on machine account\n");
409 torture_comment(tctx,
410 "Changing machine account password to '%s'\n", password);
412 creds_client_authenticator(creds, &r.in.credential);
414 status = dcerpc_netr_ServerPasswordSet2(p, tctx, &r);
415 torture_assert_ntstatus_ok(tctx, status, "ServerPasswordSet2");
417 if (!creds_client_check(creds, &r.out.return_authenticator.cred)) {
418 torture_comment(tctx, "Credential chaining failed\n");
421 cli_credentials_set_password(machine_credentials, password, CRED_SPECIFIED);
424 torture_assert(tctx, test_SetupCredentials(p, tctx, machine_credentials, &creds),
425 "ServerPasswordSet failed to actually change the password");
427 /* now try a random password */
428 password = generate_random_str(tctx, 8);
429 encode_pw_buffer(password_buf.data, password, STR_UNICODE);
430 creds_arcfour_crypt(creds, password_buf.data, 516);
432 memcpy(r.in.new_password.data, password_buf.data, 512);
433 r.in.new_password.length = IVAL(password_buf.data, 512);
435 torture_comment(tctx, "Testing second ServerPasswordSet2 on machine account\n");
436 torture_comment(tctx, "Changing machine account password to '%s'\n", password);
438 creds_client_authenticator(creds, &r.in.credential);
440 status = dcerpc_netr_ServerPasswordSet2(p, tctx, &r);
441 torture_assert_ntstatus_ok(tctx, status, "ServerPasswordSet2 (2)");
443 if (!creds_client_check(creds, &r.out.return_authenticator.cred)) {
444 torture_comment(tctx, "Credential chaining failed\n");
447 /* by changing the machine password twice we test the
448 credentials chaining fully, and we verify that the server
449 allows the password to be set to the same value twice in a
450 row (match win2k3) */
451 torture_comment(tctx,
452 "Testing a second ServerPasswordSet2 on machine account\n");
453 torture_comment(tctx,
454 "Changing machine account password to '%s' (same as previous run)\n", password);
456 creds_client_authenticator(creds, &r.in.credential);
458 status = dcerpc_netr_ServerPasswordSet2(p, tctx, &r);
459 torture_assert_ntstatus_ok(tctx, status, "ServerPasswordSet (3)");
461 if (!creds_client_check(creds, &r.out.return_authenticator.cred)) {
462 torture_comment(tctx, "Credential chaining failed\n");
465 cli_credentials_set_password(machine_credentials, password, CRED_SPECIFIED);
467 torture_assert (tctx,
468 test_SetupCredentials(p, tctx, machine_credentials, &creds),
469 "ServerPasswordSet failed to actually change the password");
471 new_random_pass = netlogon_very_rand_pass(tctx, 128);
473 /* now try a random stream of bytes for a password */
474 set_pw_in_buffer(password_buf.data, &new_random_pass);
476 creds_arcfour_crypt(creds, password_buf.data, 516);
478 memcpy(r.in.new_password.data, password_buf.data, 512);
479 r.in.new_password.length = IVAL(password_buf.data, 512);
481 torture_comment(tctx,
482 "Testing a third ServerPasswordSet2 on machine account, with a compleatly random password\n");
484 creds_client_authenticator(creds, &r.in.credential);
486 status = dcerpc_netr_ServerPasswordSet2(p, tctx, &r);
487 torture_assert_ntstatus_ok(tctx, status, "ServerPasswordSet (3)");
489 if (!creds_client_check(creds, &r.out.return_authenticator.cred)) {
490 torture_comment(tctx, "Credential chaining failed\n");
493 mdfour(nt_hash.hash, new_random_pass.data, new_random_pass.length);
495 cli_credentials_set_password(machine_credentials, NULL, CRED_UNINITIALISED);
496 cli_credentials_set_nt_hash(machine_credentials, &nt_hash, CRED_SPECIFIED);
498 torture_assert (tctx,
499 test_SetupCredentials(p, tctx, machine_credentials, &creds),
500 "ServerPasswordSet failed to actually change the password");
505 static bool test_GetPassword(struct torture_context *tctx,
506 struct dcerpc_pipe *p,
507 struct cli_credentials *machine_credentials)
509 struct netr_ServerPasswordGet r;
510 struct creds_CredentialState *creds;
511 struct netr_Authenticator credential;
513 struct netr_Authenticator return_authenticator;
514 struct samr_Password password;
516 if (!test_SetupCredentials(p, tctx, machine_credentials, &creds)) {
520 creds_client_authenticator(creds, &credential);
522 r.in.server_name = talloc_asprintf(tctx, "\\\\%s", dcerpc_server_name(p));
523 r.in.account_name = talloc_asprintf(tctx, "%s$", TEST_MACHINE_NAME);
524 r.in.secure_channel_type = SEC_CHAN_BDC;
525 r.in.computer_name = TEST_MACHINE_NAME;
526 r.in.credential = &credential;
527 r.out.return_authenticator = &return_authenticator;
528 r.out.password = &password;
530 status = dcerpc_netr_ServerPasswordGet(p, tctx, &r);
531 torture_assert_ntstatus_ok(tctx, status, "ServerPasswordGet");
536 static bool test_GetTrustPasswords(struct torture_context *tctx,
537 struct dcerpc_pipe *p,
538 struct cli_credentials *machine_credentials)
540 struct netr_ServerTrustPasswordsGet r;
541 struct creds_CredentialState *creds;
542 struct netr_Authenticator credential;
544 struct netr_Authenticator return_authenticator;
545 struct samr_Password password, password2;
547 if (!test_SetupCredentials(p, tctx, machine_credentials, &creds)) {
551 creds_client_authenticator(creds, &credential);
553 r.in.server_name = talloc_asprintf(tctx, "\\\\%s", dcerpc_server_name(p));
554 r.in.account_name = talloc_asprintf(tctx, "%s$", TEST_MACHINE_NAME);
555 r.in.secure_channel_type = SEC_CHAN_BDC;
556 r.in.computer_name = TEST_MACHINE_NAME;
557 r.in.credential = &credential;
558 r.out.return_authenticator = &return_authenticator;
559 r.out.password = &password;
560 r.out.password2 = &password2;
562 status = dcerpc_netr_ServerTrustPasswordsGet(p, tctx, &r);
563 torture_assert_ntstatus_ok(tctx, status, "ServerTrustPasswordsGet");
569 try a netlogon SamLogon
571 bool test_netlogon_ops(struct dcerpc_pipe *p, struct torture_context *tctx,
572 struct cli_credentials *credentials,
573 struct creds_CredentialState *creds)
576 struct netr_LogonSamLogon r;
577 struct netr_Authenticator auth, auth2;
578 struct netr_NetworkInfo ninfo;
579 DATA_BLOB names_blob, chal, lm_resp, nt_resp;
581 int flags = CLI_CRED_NTLM_AUTH;
582 if (lp_client_lanman_auth(tctx->lp_ctx)) {
583 flags |= CLI_CRED_LANMAN_AUTH;
586 if (lp_client_ntlmv2_auth(tctx->lp_ctx)) {
587 flags |= CLI_CRED_NTLMv2_AUTH;
590 cli_credentials_get_ntlm_username_domain(cmdline_credentials, tctx,
591 &ninfo.identity_info.account_name.string,
592 &ninfo.identity_info.domain_name.string);
594 generate_random_buffer(ninfo.challenge,
595 sizeof(ninfo.challenge));
596 chal = data_blob_const(ninfo.challenge,
597 sizeof(ninfo.challenge));
599 names_blob = NTLMv2_generate_names_blob(tctx, cli_credentials_get_workstation(credentials),
600 cli_credentials_get_domain(credentials));
602 status = cli_credentials_get_ntlm_response(cmdline_credentials, tctx,
608 torture_assert_ntstatus_ok(tctx, status, "cli_credentials_get_ntlm_response failed");
610 ninfo.lm.data = lm_resp.data;
611 ninfo.lm.length = lm_resp.length;
613 ninfo.nt.data = nt_resp.data;
614 ninfo.nt.length = nt_resp.length;
616 ninfo.identity_info.parameter_control = 0;
617 ninfo.identity_info.logon_id_low = 0;
618 ninfo.identity_info.logon_id_high = 0;
619 ninfo.identity_info.workstation.string = cli_credentials_get_workstation(credentials);
621 r.in.server_name = talloc_asprintf(tctx, "\\\\%s", dcerpc_server_name(p));
622 r.in.computer_name = cli_credentials_get_workstation(credentials);
623 r.in.credential = &auth;
624 r.in.return_authenticator = &auth2;
625 r.in.logon_level = 2;
626 r.in.logon.network = &ninfo;
628 d_printf("Testing LogonSamLogon with name %s\n", ninfo.identity_info.account_name.string);
632 creds_client_authenticator(creds, &auth);
634 r.in.validation_level = i;
636 status = dcerpc_netr_LogonSamLogon(p, tctx, &r);
637 torture_assert_ntstatus_ok(tctx, status, "LogonSamLogon failed");
639 torture_assert(tctx, creds_client_check(creds, &r.out.return_authenticator->cred),
640 "Credential chaining failed");
643 r.in.credential = NULL;
647 r.in.validation_level = i;
649 torture_comment(tctx, "Testing SamLogon with validation level %d and a NULL credential\n", i);
651 status = dcerpc_netr_LogonSamLogon(p, tctx, &r);
652 torture_assert_ntstatus_equal(tctx, status, NT_STATUS_INVALID_PARAMETER,
653 "LogonSamLogon expected INVALID_PARAMETER");
661 try a netlogon SamLogon
663 static bool test_SamLogon(struct torture_context *tctx,
664 struct dcerpc_pipe *p,
665 struct cli_credentials *credentials)
667 struct creds_CredentialState *creds;
669 if (!test_SetupCredentials(p, tctx, credentials, &creds)) {
673 return test_netlogon_ops(p, tctx, credentials, creds);
676 /* we remember the sequence numbers so we can easily do a DatabaseDelta */
677 static uint64_t sequence_nums[3];
680 try a netlogon DatabaseSync
682 static bool test_DatabaseSync(struct torture_context *tctx,
683 struct dcerpc_pipe *p,
684 struct cli_credentials *machine_credentials)
687 struct netr_DatabaseSync r;
688 struct creds_CredentialState *creds;
689 const uint32_t database_ids[] = {SAM_DATABASE_DOMAIN, SAM_DATABASE_BUILTIN, SAM_DATABASE_PRIVS};
692 if (!test_SetupCredentials(p, tctx, machine_credentials, &creds)) {
696 r.in.logon_server = talloc_asprintf(tctx, "\\\\%s", dcerpc_server_name(p));
697 r.in.computername = TEST_MACHINE_NAME;
698 r.in.preferredmaximumlength = (uint32_t)-1;
699 ZERO_STRUCT(r.in.return_authenticator);
701 for (i=0;i<ARRAY_SIZE(database_ids);i++) {
702 r.in.sync_context = 0;
703 r.in.database_id = database_ids[i];
705 torture_comment(tctx, "Testing DatabaseSync of id %d\n", r.in.database_id);
708 creds_client_authenticator(creds, &r.in.credential);
710 status = dcerpc_netr_DatabaseSync(p, tctx, &r);
711 if (NT_STATUS_EQUAL(status, STATUS_MORE_ENTRIES))
714 /* Native mode servers don't do this */
715 if (NT_STATUS_EQUAL(status, NT_STATUS_NOT_SUPPORTED)) {
718 torture_assert_ntstatus_ok(tctx, status, "DatabaseSync");
720 if (!creds_client_check(creds, &r.out.return_authenticator.cred)) {
721 torture_comment(tctx, "Credential chaining failed\n");
724 r.in.sync_context = r.out.sync_context;
726 if (r.out.delta_enum_array &&
727 r.out.delta_enum_array->num_deltas > 0 &&
728 r.out.delta_enum_array->delta_enum[0].delta_type == NETR_DELTA_DOMAIN &&
729 r.out.delta_enum_array->delta_enum[0].delta_union.domain) {
730 sequence_nums[r.in.database_id] =
731 r.out.delta_enum_array->delta_enum[0].delta_union.domain->sequence_num;
732 torture_comment(tctx, "\tsequence_nums[%d]=%llu\n",
734 (unsigned long long)sequence_nums[r.in.database_id]);
736 } while (NT_STATUS_EQUAL(status, STATUS_MORE_ENTRIES));
744 try a netlogon DatabaseDeltas
746 static bool test_DatabaseDeltas(struct torture_context *tctx,
747 struct dcerpc_pipe *p,
748 struct cli_credentials *machine_credentials)
751 struct netr_DatabaseDeltas r;
752 struct creds_CredentialState *creds;
753 struct netr_Authenticator credential;
754 struct netr_Authenticator return_authenticator;
755 struct netr_DELTA_ENUM_ARRAY *delta_enum_array = NULL;
756 const uint32_t database_ids[] = {0, 1, 2};
759 if (!test_SetupCredentials(p, tctx, machine_credentials, &creds)) {
763 r.in.logon_server = talloc_asprintf(tctx, "\\\\%s", dcerpc_server_name(p));
764 r.in.computername = TEST_MACHINE_NAME;
765 r.in.preferredmaximumlength = (uint32_t)-1;
766 ZERO_STRUCT(r.in.return_authenticator);
767 r.out.return_authenticator = &return_authenticator;
768 r.out.delta_enum_array = &delta_enum_array;
770 for (i=0;i<ARRAY_SIZE(database_ids);i++) {
771 r.in.database_id = database_ids[i];
772 r.in.sequence_num = &sequence_nums[r.in.database_id];
774 if (*r.in.sequence_num == 0) continue;
776 *r.in.sequence_num -= 1;
778 torture_comment(tctx, "Testing DatabaseDeltas of id %d at %llu\n",
779 r.in.database_id, (unsigned long long)*r.in.sequence_num);
782 creds_client_authenticator(creds, &credential);
784 status = dcerpc_netr_DatabaseDeltas(p, tctx, &r);
785 if (NT_STATUS_EQUAL(status,
786 NT_STATUS_SYNCHRONIZATION_REQUIRED)) {
787 torture_comment(tctx, "not considering %s to be an error\n",
791 if (NT_STATUS_EQUAL(status, STATUS_MORE_ENTRIES))
794 torture_assert_ntstatus_ok(tctx, status, "DatabaseDeltas");
796 if (!creds_client_check(creds, &return_authenticator.cred)) {
797 torture_comment(tctx, "Credential chaining failed\n");
800 (*r.in.sequence_num)++;
801 } while (NT_STATUS_EQUAL(status, STATUS_MORE_ENTRIES));
809 try a netlogon AccountDeltas
811 static bool test_AccountDeltas(struct torture_context *tctx,
812 struct dcerpc_pipe *p,
813 struct cli_credentials *machine_credentials)
816 struct netr_AccountDeltas r;
817 struct creds_CredentialState *creds;
819 if (!test_SetupCredentials(p, tctx, machine_credentials, &creds)) {
823 r.in.logon_server = talloc_asprintf(tctx, "\\\\%s", dcerpc_server_name(p));
824 r.in.computername = TEST_MACHINE_NAME;
825 ZERO_STRUCT(r.in.return_authenticator);
826 creds_client_authenticator(creds, &r.in.credential);
827 ZERO_STRUCT(r.in.uas);
832 /* w2k3 returns "NOT IMPLEMENTED" for this call */
833 status = dcerpc_netr_AccountDeltas(p, tctx, &r);
834 torture_assert_ntstatus_equal(tctx, status, NT_STATUS_NOT_IMPLEMENTED, "AccountDeltas");
840 try a netlogon AccountSync
842 static bool test_AccountSync(struct torture_context *tctx, struct dcerpc_pipe *p,
843 struct cli_credentials *machine_credentials)
846 struct netr_AccountSync r;
847 struct creds_CredentialState *creds;
849 if (!test_SetupCredentials(p, tctx, machine_credentials, &creds)) {
853 r.in.logon_server = talloc_asprintf(tctx, "\\\\%s", dcerpc_server_name(p));
854 r.in.computername = TEST_MACHINE_NAME;
855 ZERO_STRUCT(r.in.return_authenticator);
856 creds_client_authenticator(creds, &r.in.credential);
857 ZERO_STRUCT(r.in.recordid);
862 /* w2k3 returns "NOT IMPLEMENTED" for this call */
863 status = dcerpc_netr_AccountSync(p, tctx, &r);
864 torture_assert_ntstatus_equal(tctx, status, NT_STATUS_NOT_IMPLEMENTED, "AccountSync");
870 try a netlogon GetDcName
872 static bool test_GetDcName(struct torture_context *tctx,
873 struct dcerpc_pipe *p)
876 struct netr_GetDcName r;
877 const char *dcname = NULL;
879 r.in.logon_server = talloc_asprintf(tctx, "\\\\%s", dcerpc_server_name(p));
880 r.in.domainname = lp_workgroup(tctx->lp_ctx);
881 r.out.dcname = &dcname;
883 status = dcerpc_netr_GetDcName(p, tctx, &r);
884 torture_assert_ntstatus_ok(tctx, status, "GetDcName");
885 torture_assert_werr_ok(tctx, r.out.result, "GetDcName");
887 torture_comment(tctx, "\tDC is at '%s'\n", dcname);
893 try a netlogon LogonControl
895 static bool test_LogonControl(struct torture_context *tctx,
896 struct dcerpc_pipe *p)
899 struct netr_LogonControl r;
900 union netr_CONTROL_QUERY_INFORMATION info;
903 r.in.logon_server = talloc_asprintf(tctx, "\\\\%s", dcerpc_server_name(p));
904 r.in.function_code = 1;
910 torture_comment(tctx, "Testing LogonControl level %d\n", i);
912 status = dcerpc_netr_LogonControl(p, tctx, &r);
913 torture_assert_ntstatus_ok(tctx, status, "LogonControl");
921 try a netlogon GetAnyDCName
923 static bool test_GetAnyDCName(struct torture_context *tctx,
924 struct dcerpc_pipe *p)
927 struct netr_GetAnyDCName r;
928 const char *dcname = NULL;
930 r.in.logon_server = talloc_asprintf(tctx, "\\\\%s", dcerpc_server_name(p));
931 r.in.domainname = lp_workgroup(tctx->lp_ctx);
932 r.out.dcname = &dcname;
934 status = dcerpc_netr_GetAnyDCName(p, tctx, &r);
935 torture_assert_ntstatus_ok(tctx, status, "GetAnyDCName");
938 torture_comment(tctx, "\tDC is at '%s'\n", dcname);
946 try a netlogon LogonControl2
948 static bool test_LogonControl2(struct torture_context *tctx,
949 struct dcerpc_pipe *p)
952 struct netr_LogonControl2 r;
953 union netr_CONTROL_DATA_INFORMATION data;
954 union netr_CONTROL_QUERY_INFORMATION query;
957 data.domain = lp_workgroup(tctx->lp_ctx);
959 r.in.logon_server = talloc_asprintf(tctx, "\\\\%s", dcerpc_server_name(p));
961 r.in.function_code = NETLOGON_CONTROL_REDISCOVER;
963 r.out.query = &query;
968 torture_comment(tctx, "Testing LogonControl2 level %d function %d\n",
969 i, r.in.function_code);
971 status = dcerpc_netr_LogonControl2(p, tctx, &r);
972 torture_assert_ntstatus_ok(tctx, status, "LogonControl");
975 data.domain = lp_workgroup(tctx->lp_ctx);
977 r.in.function_code = NETLOGON_CONTROL_TC_QUERY;
983 torture_comment(tctx, "Testing LogonControl2 level %d function %d\n",
984 i, r.in.function_code);
986 status = dcerpc_netr_LogonControl2(p, tctx, &r);
987 torture_assert_ntstatus_ok(tctx, status, "LogonControl");
990 data.domain = lp_workgroup(tctx->lp_ctx);
992 r.in.function_code = NETLOGON_CONTROL_TRANSPORT_NOTIFY;
998 torture_comment(tctx, "Testing LogonControl2 level %d function %d\n",
999 i, r.in.function_code);
1001 status = dcerpc_netr_LogonControl2(p, tctx, &r);
1002 torture_assert_ntstatus_ok(tctx, status, "LogonControl");
1005 data.debug_level = ~0;
1007 r.in.function_code = NETLOGON_CONTROL_SET_DBFLAG;
1013 torture_comment(tctx, "Testing LogonControl2 level %d function %d\n",
1014 i, r.in.function_code);
1016 status = dcerpc_netr_LogonControl2(p, tctx, &r);
1017 torture_assert_ntstatus_ok(tctx, status, "LogonControl");
1024 try a netlogon DatabaseSync2
1026 static bool test_DatabaseSync2(struct torture_context *tctx,
1027 struct dcerpc_pipe *p,
1028 struct cli_credentials *machine_credentials)
1031 struct netr_DatabaseSync2 r;
1032 struct creds_CredentialState *creds;
1033 const uint32_t database_ids[] = {0, 1, 2};
1036 if (!test_SetupCredentials2(p, tctx, NETLOGON_NEG_AUTH2_FLAGS,
1037 machine_credentials,
1038 SEC_CHAN_BDC, &creds)) {
1042 r.in.logon_server = talloc_asprintf(tctx, "\\\\%s", dcerpc_server_name(p));
1043 r.in.computername = TEST_MACHINE_NAME;
1044 r.in.preferredmaximumlength = (uint32_t)-1;
1045 ZERO_STRUCT(r.in.return_authenticator);
1047 for (i=0;i<ARRAY_SIZE(database_ids);i++) {
1048 r.in.sync_context = 0;
1049 r.in.database_id = database_ids[i];
1050 r.in.restart_state = 0;
1052 torture_comment(tctx, "Testing DatabaseSync2 of id %d\n", r.in.database_id);
1055 creds_client_authenticator(creds, &r.in.credential);
1057 status = dcerpc_netr_DatabaseSync2(p, tctx, &r);
1058 if (NT_STATUS_EQUAL(status, STATUS_MORE_ENTRIES))
1061 /* Native mode servers don't do this */
1062 if (NT_STATUS_EQUAL(status, NT_STATUS_NOT_SUPPORTED)) {
1066 torture_assert_ntstatus_ok(tctx, status, "DatabaseSync2");
1068 if (!creds_client_check(creds, &r.out.return_authenticator.cred)) {
1069 torture_comment(tctx, "Credential chaining failed\n");
1072 r.in.sync_context = r.out.sync_context;
1073 } while (NT_STATUS_EQUAL(status, STATUS_MORE_ENTRIES));
1081 try a netlogon LogonControl2Ex
1083 static bool test_LogonControl2Ex(struct torture_context *tctx,
1084 struct dcerpc_pipe *p)
1087 struct netr_LogonControl2Ex r;
1088 union netr_CONTROL_QUERY_INFORMATION query;
1091 r.in.logon_server = talloc_asprintf(tctx, "\\\\%s", dcerpc_server_name(p));
1093 r.in.function_code = NETLOGON_CONTROL_REDISCOVER;
1094 r.in.data.domain = lp_workgroup(tctx->lp_ctx);
1095 r.out.query = &query;
1100 torture_comment(tctx, "Testing LogonControl2Ex level %d function %d\n",
1101 i, r.in.function_code);
1103 status = dcerpc_netr_LogonControl2Ex(p, tctx, &r);
1104 torture_assert_ntstatus_ok(tctx, status, "LogonControl");
1107 r.in.function_code = NETLOGON_CONTROL_TC_QUERY;
1108 r.in.data.domain = lp_workgroup(tctx->lp_ctx);
1113 torture_comment(tctx, "Testing LogonControl2Ex level %d function %d\n",
1114 i, r.in.function_code);
1116 status = dcerpc_netr_LogonControl2Ex(p, tctx, &r);
1117 torture_assert_ntstatus_ok(tctx, status, "LogonControl");
1120 r.in.function_code = NETLOGON_CONTROL_TRANSPORT_NOTIFY;
1121 r.in.data.domain = lp_workgroup(tctx->lp_ctx);
1126 torture_comment(tctx, "Testing LogonControl2Ex level %d function %d\n",
1127 i, r.in.function_code);
1129 status = dcerpc_netr_LogonControl2Ex(p, tctx, &r);
1130 torture_assert_ntstatus_ok(tctx, status, "LogonControl");
1133 r.in.function_code = NETLOGON_CONTROL_SET_DBFLAG;
1134 r.in.data.debug_level = ~0;
1139 torture_comment(tctx, "Testing LogonControl2Ex level %d function %d\n",
1140 i, r.in.function_code);
1142 status = dcerpc_netr_LogonControl2Ex(p, tctx, &r);
1143 torture_assert_ntstatus_ok(tctx, status, "LogonControl");
1149 static bool test_netr_DsRGetForestTrustInformation(struct torture_context *tctx,
1150 struct dcerpc_pipe *p, const char *trusted_domain_name)
1153 struct netr_DsRGetForestTrustInformation r;
1154 struct lsa_ForestTrustInformation info, *info_ptr;
1158 r.in.server_name = talloc_asprintf(tctx, "\\\\%s", dcerpc_server_name(p));
1159 r.in.trusted_domain_name = trusted_domain_name;
1161 r.out.forest_trust_info = &info_ptr;
1163 torture_comment(tctx ,"Testing netr_DsRGetForestTrustInformation\n");
1165 status = dcerpc_netr_DsRGetForestTrustInformation(p, tctx, &r);
1166 torture_assert_ntstatus_ok(tctx, status, "DsRGetForestTrustInformation");
1167 torture_assert_werr_ok(tctx, r.out.result, "DsRGetForestTrustInformation");
1173 try a netlogon netr_DsrEnumerateDomainTrusts
1175 static bool test_DsrEnumerateDomainTrusts(struct torture_context *tctx,
1176 struct dcerpc_pipe *p)
1179 struct netr_DsrEnumerateDomainTrusts r;
1180 struct netr_DomainTrustList trusts;
1183 r.in.server_name = talloc_asprintf(tctx, "\\\\%s", dcerpc_server_name(p));
1184 r.in.trust_flags = 0x3f;
1185 r.out.trusts = &trusts;
1187 status = dcerpc_netr_DsrEnumerateDomainTrusts(p, tctx, &r);
1188 torture_assert_ntstatus_ok(tctx, status, "DsrEnumerateDomaintrusts");
1189 torture_assert_werr_ok(tctx, r.out.result, "DsrEnumerateDomaintrusts");
1191 /* when trusted_domain_name is NULL, netr_DsRGetForestTrustInformation
1192 * will show non-forest trusts and all UPN suffixes of the own forest
1193 * as LSA_FOREST_TRUST_TOP_LEVEL_NAME types */
1195 if (r.out.trusts->count) {
1196 if (!test_netr_DsRGetForestTrustInformation(tctx, p, NULL)) {
1201 for (i=0; i<r.out.trusts->count; i++) {
1203 /* get info for transitive forest trusts */
1205 if (r.out.trusts->array[i].trust_attributes & NETR_TRUST_ATTRIBUTE_FOREST_TRANSITIVE) {
1206 if (!test_netr_DsRGetForestTrustInformation(tctx, p,
1207 r.out.trusts->array[i].dns_name)) {
1216 static bool test_netr_NetrEnumerateTrustedDomains(struct torture_context *tctx,
1217 struct dcerpc_pipe *p)
1220 struct netr_NetrEnumerateTrustedDomains r;
1221 struct netr_Blob trusted_domains_blob;
1223 r.in.server_name = talloc_asprintf(tctx, "\\\\%s", dcerpc_server_name(p));
1224 r.out.trusted_domains_blob = &trusted_domains_blob;
1226 status = dcerpc_netr_NetrEnumerateTrustedDomains(p, tctx, &r);
1227 torture_assert_ntstatus_ok(tctx, status, "netr_NetrEnumerateTrustedDomains");
1228 torture_assert_werr_ok(tctx, r.out.result, "NetrEnumerateTrustedDomains");
1233 static bool test_netr_NetrEnumerateTrustedDomainsEx(struct torture_context *tctx,
1234 struct dcerpc_pipe *p)
1237 struct netr_NetrEnumerateTrustedDomainsEx r;
1238 struct netr_DomainTrustList dom_trust_list;
1240 r.in.server_name = talloc_asprintf(tctx, "\\\\%s", dcerpc_server_name(p));
1241 r.out.dom_trust_list = &dom_trust_list;
1243 status = dcerpc_netr_NetrEnumerateTrustedDomainsEx(p, tctx, &r);
1244 torture_assert_ntstatus_ok(tctx, status, "netr_NetrEnumerateTrustedDomainsEx");
1245 torture_assert_werr_ok(tctx, r.out.result, "NetrEnumerateTrustedDomainsEx");
1251 static bool test_netr_DsRGetSiteName(struct dcerpc_pipe *p, struct torture_context *tctx,
1252 const char *computer_name,
1253 const char *expected_site)
1256 struct netr_DsRGetSiteName r;
1257 const char *site = NULL;
1259 if (torture_setting_bool(tctx, "samba4", false))
1260 torture_skip(tctx, "skipping DsRGetSiteName test against Samba4");
1262 r.in.computer_name = computer_name;
1264 torture_comment(tctx, "Testing netr_DsRGetSiteName\n");
1266 status = dcerpc_netr_DsRGetSiteName(p, tctx, &r);
1267 torture_assert_ntstatus_ok(tctx, status, "DsRGetSiteName");
1268 torture_assert_werr_ok(tctx, r.out.result, "DsRGetSiteName");
1269 torture_assert_str_equal(tctx, expected_site, site, "netr_DsRGetSiteName");
1271 r.in.computer_name = talloc_asprintf(tctx, "\\\\%s", computer_name);
1272 torture_comment(tctx,
1273 "Testing netr_DsRGetSiteName with broken computer name: %s\n", r.in.computer_name);
1275 status = dcerpc_netr_DsRGetSiteName(p, tctx, &r);
1276 torture_assert_ntstatus_ok(tctx, status, "DsRGetSiteName");
1277 torture_assert_werr_equal(tctx, r.out.result, WERR_INVALID_COMPUTERNAME, "netr_DsRGetSiteName");
1283 try a netlogon netr_DsRGetDCName
1285 static bool test_netr_DsRGetDCName(struct torture_context *tctx,
1286 struct dcerpc_pipe *p)
1289 struct netr_DsRGetDCName r;
1290 struct netr_DsRGetDCNameInfo *info = NULL;
1292 r.in.server_unc = talloc_asprintf(tctx, "\\\\%s", dcerpc_server_name(p));
1293 r.in.domain_name = talloc_asprintf(tctx, "%s", lp_realm(tctx->lp_ctx));
1294 r.in.domain_guid = NULL;
1295 r.in.site_guid = NULL;
1296 r.in.flags = DS_RETURN_DNS_NAME;
1299 status = dcerpc_netr_DsRGetDCName(p, tctx, &r);
1300 torture_assert_ntstatus_ok(tctx, status, "DsRGetDCName");
1301 torture_assert_werr_ok(tctx, r.out.result, "DsRGetDCName");
1302 return test_netr_DsRGetSiteName(p, tctx,
1304 info->dc_site_name);
1308 try a netlogon netr_DsRGetDCNameEx
1310 static bool test_netr_DsRGetDCNameEx(struct torture_context *tctx,
1311 struct dcerpc_pipe *p)
1314 struct netr_DsRGetDCNameEx r;
1315 struct netr_DsRGetDCNameInfo *info = NULL;
1317 r.in.server_unc = talloc_asprintf(tctx, "\\\\%s", dcerpc_server_name(p));
1318 r.in.domain_name = talloc_asprintf(tctx, "%s", lp_realm(tctx->lp_ctx));
1319 r.in.domain_guid = NULL;
1320 r.in.site_name = NULL;
1321 r.in.flags = DS_RETURN_DNS_NAME;
1324 status = dcerpc_netr_DsRGetDCNameEx(p, tctx, &r);
1325 torture_assert_ntstatus_ok(tctx, status, "netr_DsRGetDCNameEx");
1326 torture_assert_werr_ok(tctx, r.out.result, "netr_DsRGetDCNameEx");
1328 return test_netr_DsRGetSiteName(p, tctx, info->dc_unc,
1329 info->dc_site_name);
1333 try a netlogon netr_DsRGetDCNameEx2
1335 static bool test_netr_DsRGetDCNameEx2(struct torture_context *tctx,
1336 struct dcerpc_pipe *p)
1339 struct netr_DsRGetDCNameEx2 r;
1340 struct netr_DsRGetDCNameInfo *info = NULL;
1342 r.in.server_unc = talloc_asprintf(tctx, "\\\\%s", dcerpc_server_name(p));
1343 r.in.client_account = NULL;
1344 r.in.mask = 0x00000000;
1345 r.in.domain_name = talloc_asprintf(tctx, "%s", lp_realm(tctx->lp_ctx));
1346 r.in.domain_guid = NULL;
1347 r.in.site_name = NULL;
1348 r.in.flags = DS_RETURN_DNS_NAME;
1351 torture_comment(tctx, "Testing netr_DsRGetDCNameEx2 without client account\n");
1353 status = dcerpc_netr_DsRGetDCNameEx2(p, tctx, &r);
1354 torture_assert_ntstatus_ok(tctx, status, "netr_DsRGetDCNameEx2");
1355 torture_assert_werr_ok(tctx, r.out.result, "netr_DsRGetDCNameEx2");
1357 torture_comment(tctx, "Testing netr_DsRGetDCNameEx2 with client acount\n");
1358 r.in.client_account = TEST_MACHINE_NAME"$";
1359 r.in.mask = ACB_SVRTRUST;
1360 r.in.flags = DS_RETURN_FLAT_NAME;
1363 status = dcerpc_netr_DsRGetDCNameEx2(p, tctx, &r);
1364 torture_assert_ntstatus_ok(tctx, status, "netr_DsRGetDCNameEx2");
1365 torture_assert_werr_ok(tctx, r.out.result, "netr_DsRGetDCNameEx2");
1366 return test_netr_DsRGetSiteName(p, tctx, info->dc_unc,
1367 info->dc_site_name);
1370 static bool test_netr_DsrGetDcSiteCoverageW(struct torture_context *tctx,
1371 struct dcerpc_pipe *p)
1374 struct netr_DsrGetDcSiteCoverageW r;
1375 struct DcSitesCtr *ctr = NULL;
1377 r.in.server_name = talloc_asprintf(tctx, "\\\\%s", dcerpc_server_name(p));
1380 status = dcerpc_netr_DsrGetDcSiteCoverageW(p, tctx, &r);
1381 torture_assert_ntstatus_ok(tctx, status, "failed");
1382 torture_assert_werr_ok(tctx, r.out.result, "failed");
1387 static bool test_netr_DsRAddressToSitenamesW(struct torture_context *tctx,
1388 struct dcerpc_pipe *p)
1391 struct netr_DsRAddressToSitenamesW r;
1392 struct netr_DsRAddress addr;
1393 struct netr_DsRAddressToSitenamesWCtr *ctr;
1395 ctr = talloc(tctx, struct netr_DsRAddressToSitenamesWCtr);
1398 addr.buffer = talloc_zero_array(tctx, uint8_t, addr.size);
1400 addr.buffer[0] = 2; /* AF_INET */
1401 addr.buffer[4] = 127;
1406 r.in.server_name = talloc_asprintf(tctx, "\\\\%s", dcerpc_server_name(p));
1408 r.in.addresses = talloc_zero_array(tctx, struct netr_DsRAddress, r.in.count);
1409 r.in.addresses[0] = addr;
1412 status = dcerpc_netr_DsRAddressToSitenamesW(p, tctx, &r);
1413 torture_assert_ntstatus_ok(tctx, status, "failed");
1414 torture_assert_werr_ok(tctx, r.out.result, "failed");
1419 static bool test_netr_DsRAddressToSitenamesExW(struct torture_context *tctx,
1420 struct dcerpc_pipe *p)
1423 struct netr_DsRAddressToSitenamesExW r;
1424 struct netr_DsRAddress addr;
1425 struct netr_DsRAddressToSitenamesExWCtr *ctr;
1427 ctr = talloc(tctx, struct netr_DsRAddressToSitenamesExWCtr);
1430 addr.buffer = talloc_zero_array(tctx, uint8_t, addr.size);
1432 addr.buffer[0] = 2; /* AF_INET */
1433 addr.buffer[4] = 127;
1438 r.in.server_name = talloc_asprintf(tctx, "\\\\%s", dcerpc_server_name(p));
1440 r.in.addresses = talloc_zero_array(tctx, struct netr_DsRAddress, r.in.count);
1441 r.in.addresses[0] = addr;
1444 status = dcerpc_netr_DsRAddressToSitenamesExW(p, tctx, &r);
1445 torture_assert_ntstatus_ok(tctx, status, "failed");
1446 torture_assert_werr_ok(tctx, r.out.result, "failed");
1451 static bool test_GetDomainInfo(struct torture_context *tctx,
1452 struct dcerpc_pipe *p,
1453 struct cli_credentials *machine_credentials)
1456 struct netr_LogonGetDomainInfo r;
1457 struct netr_DomainQuery1 q1;
1458 struct netr_Authenticator a;
1459 struct creds_CredentialState *creds;
1460 union netr_DomainInfo info;
1462 if (!test_SetupCredentials3(p, tctx, NETLOGON_NEG_AUTH2_ADS_FLAGS,
1463 machine_credentials, &creds)) {
1469 creds_client_authenticator(creds, &a);
1471 r.in.server_name = talloc_asprintf(tctx, "\\\\%s", dcerpc_server_name(p));
1472 r.in.computer_name = TEST_MACHINE_NAME;
1474 r.in.credential = &a;
1475 r.in.return_authenticator = &a;
1476 r.out.return_authenticator = &a;
1479 r.in.query.query1 = &q1;
1482 /* this should really be the fully qualified name */
1483 q1.workstation_domain = TEST_MACHINE_NAME;
1484 q1.workstation_site = "Default-First-Site-Name";
1485 q1.blob2.length = 0;
1487 q1.blob2.data = NULL;
1488 q1.product.string = "product string";
1490 torture_comment(tctx, "Testing netr_LogonGetDomainInfo\n");
1492 status = dcerpc_netr_LogonGetDomainInfo(p, tctx, &r);
1493 torture_assert_ntstatus_ok(tctx, status, "netr_LogonGetDomainInfo");
1494 torture_assert(tctx, creds_client_check(creds, &a.cred), "Credential chaining failed");
1496 torture_comment(tctx, "Testing netr_LogonGetDomainInfo 2nd call\n");
1497 creds_client_authenticator(creds, &a);
1499 status = dcerpc_netr_LogonGetDomainInfo(p, tctx, &r);
1500 torture_assert_ntstatus_ok(tctx, status, "netr_LogonGetDomainInfo");
1501 torture_assert(tctx, creds_client_check(creds, &a.cred), "Credential chaining failed");
1507 static void async_callback(struct rpc_request *req)
1509 int *counter = (int *)req->async.private_data;
1510 if (NT_STATUS_IS_OK(req->status)) {
1515 static bool test_GetDomainInfo_async(struct torture_context *tctx,
1516 struct dcerpc_pipe *p,
1517 struct cli_credentials *machine_credentials)
1520 struct netr_LogonGetDomainInfo r;
1521 struct netr_DomainQuery1 q1;
1522 struct netr_Authenticator a;
1523 #define ASYNC_COUNT 100
1524 struct creds_CredentialState *creds;
1525 struct creds_CredentialState *creds_async[ASYNC_COUNT];
1526 struct rpc_request *req[ASYNC_COUNT];
1528 int *async_counter = talloc(tctx, int);
1529 union netr_DomainInfo info;
1531 if (!test_SetupCredentials3(p, tctx, NETLOGON_NEG_AUTH2_ADS_FLAGS,
1532 machine_credentials, &creds)) {
1537 r.in.server_name = talloc_asprintf(tctx, "\\\\%s", dcerpc_server_name(p));
1538 r.in.computer_name = TEST_MACHINE_NAME;
1540 r.in.credential = &a;
1541 r.in.return_authenticator = &a;
1542 r.out.return_authenticator = &a;
1545 r.in.query.query1 = &q1;
1548 /* this should really be the fully qualified name */
1549 q1.workstation_domain = TEST_MACHINE_NAME;
1550 q1.workstation_site = "Default-First-Site-Name";
1551 q1.blob2.length = 0;
1553 q1.blob2.data = NULL;
1554 q1.product.string = "product string";
1556 torture_comment(tctx, "Testing netr_LogonGetDomainInfo - async count %d\n", ASYNC_COUNT);
1560 for (i=0;i<ASYNC_COUNT;i++) {
1561 creds_client_authenticator(creds, &a);
1563 creds_async[i] = (struct creds_CredentialState *)talloc_memdup(creds, creds, sizeof(*creds));
1564 req[i] = dcerpc_netr_LogonGetDomainInfo_send(p, tctx, &r);
1566 req[i]->async.callback = async_callback;
1567 req[i]->async.private_data = async_counter;
1569 /* even with this flush per request a w2k3 server seems to
1570 clag with multiple outstanding requests. bleergh. */
1571 torture_assert_int_equal(tctx, event_loop_once(dcerpc_event_context(p)), 0,
1572 "event_loop_once failed");
1575 for (i=0;i<ASYNC_COUNT;i++) {
1576 status = dcerpc_ndr_request_recv(req[i]);
1578 torture_assert_ntstatus_ok(tctx, status, "netr_LogonGetDomainInfo_async");
1579 torture_assert_ntstatus_ok(tctx, r.out.result, "netr_LogonGetDomainInfo_async");
1581 torture_assert(tctx, creds_client_check(creds_async[i], &a.cred),
1582 "Credential chaining failed at async");
1585 torture_comment(tctx,
1586 "Testing netr_LogonGetDomainInfo - async count %d OK\n", *async_counter);
1588 torture_assert_int_equal(tctx, (*async_counter), ASYNC_COUNT, "int");
1593 static bool test_ManyGetDCName(struct torture_context *tctx,
1594 struct dcerpc_pipe *p)
1597 struct dcerpc_pipe *p2;
1598 struct lsa_ObjectAttribute attr;
1599 struct lsa_QosInfo qos;
1600 struct lsa_OpenPolicy2 o;
1601 struct policy_handle lsa_handle;
1602 struct lsa_DomainList domains;
1604 struct lsa_EnumTrustDom t;
1605 uint32_t resume_handle = 0;
1606 struct netr_GetAnyDCName d;
1607 const char *dcname = NULL;
1611 if (p->conn->transport.transport != NCACN_NP) {
1615 torture_comment(tctx, "Torturing GetDCName\n");
1617 status = dcerpc_secondary_connection(p, &p2, p->binding);
1618 torture_assert_ntstatus_ok(tctx, status, "Failed to create secondary connection");
1620 status = dcerpc_bind_auth_none(p2, &ndr_table_lsarpc);
1621 torture_assert_ntstatus_ok(tctx, status, "Failed to create bind on secondary connection");
1624 qos.impersonation_level = 2;
1625 qos.context_mode = 1;
1626 qos.effective_only = 0;
1629 attr.root_dir = NULL;
1630 attr.object_name = NULL;
1631 attr.attributes = 0;
1632 attr.sec_desc = NULL;
1633 attr.sec_qos = &qos;
1635 o.in.system_name = "\\";
1637 o.in.access_mask = SEC_FLAG_MAXIMUM_ALLOWED;
1638 o.out.handle = &lsa_handle;
1640 status = dcerpc_lsa_OpenPolicy2(p2, tctx, &o);
1641 torture_assert_ntstatus_ok(tctx, status, "OpenPolicy2 failed");
1643 t.in.handle = &lsa_handle;
1644 t.in.resume_handle = &resume_handle;
1645 t.in.max_size = 1000;
1646 t.out.domains = &domains;
1647 t.out.resume_handle = &resume_handle;
1649 status = dcerpc_lsa_EnumTrustDom(p2, tctx, &t);
1651 if ((!NT_STATUS_IS_OK(status) &&
1652 (!NT_STATUS_EQUAL(status, NT_STATUS_NO_MORE_ENTRIES))))
1653 torture_fail(tctx, "Could not list domains");
1657 d.in.logon_server = talloc_asprintf(tctx, "\\\\%s",
1658 dcerpc_server_name(p));
1659 d.out.dcname = &dcname;
1661 for (i=0; i<domains.count * 4; i++) {
1662 struct lsa_DomainInfo *info =
1663 &domains.domains[rand()%domains.count];
1665 d.in.domainname = info->name.string;
1667 status = dcerpc_netr_GetAnyDCName(p, tctx, &d);
1668 torture_assert_ntstatus_ok(tctx, status, "GetAnyDCName");
1670 torture_comment(tctx, "\tDC for domain %s is %s\n", info->name.string,
1671 dcname ? dcname : "unknown");
1677 struct torture_suite *torture_rpc_netlogon(TALLOC_CTX *mem_ctx)
1679 struct torture_suite *suite = torture_suite_create(mem_ctx, "NETLOGON");
1680 struct torture_rpc_tcase *tcase;
1681 struct torture_test *test;
1683 tcase = torture_suite_add_machine_rpc_iface_tcase(suite, "netlogon",
1684 &ndr_table_netlogon, TEST_MACHINE_NAME);
1686 torture_rpc_tcase_add_test(tcase, "LogonUasLogon", test_LogonUasLogon);
1687 torture_rpc_tcase_add_test(tcase, "LogonUasLogoff", test_LogonUasLogoff);
1688 torture_rpc_tcase_add_test_creds(tcase, "SamLogon", test_SamLogon);
1689 torture_rpc_tcase_add_test_creds(tcase, "SetPassword", test_SetPassword);
1690 torture_rpc_tcase_add_test_creds(tcase, "SetPassword2", test_SetPassword2);
1691 torture_rpc_tcase_add_test_creds(tcase, "GetPassword", test_GetPassword);
1692 torture_rpc_tcase_add_test_creds(tcase, "GetTrustPasswords", test_GetTrustPasswords);
1693 torture_rpc_tcase_add_test_creds(tcase, "GetDomainInfo", test_GetDomainInfo);
1694 torture_rpc_tcase_add_test_creds(tcase, "DatabaseSync", test_DatabaseSync);
1695 torture_rpc_tcase_add_test_creds(tcase, "DatabaseDeltas", test_DatabaseDeltas);
1696 torture_rpc_tcase_add_test_creds(tcase, "AccountDeltas", test_AccountDeltas);
1697 torture_rpc_tcase_add_test_creds(tcase, "AccountSync", test_AccountSync);
1698 torture_rpc_tcase_add_test(tcase, "GetDcName", test_GetDcName);
1699 torture_rpc_tcase_add_test(tcase, "ManyGetDCName", test_ManyGetDCName);
1700 torture_rpc_tcase_add_test(tcase, "LogonControl", test_LogonControl);
1701 torture_rpc_tcase_add_test(tcase, "GetAnyDCName", test_GetAnyDCName);
1702 torture_rpc_tcase_add_test(tcase, "LogonControl2", test_LogonControl2);
1703 torture_rpc_tcase_add_test_creds(tcase, "DatabaseSync2", test_DatabaseSync2);
1704 torture_rpc_tcase_add_test(tcase, "LogonControl2Ex", test_LogonControl2Ex);
1705 torture_rpc_tcase_add_test(tcase, "DsrEnumerateDomainTrusts", test_DsrEnumerateDomainTrusts);
1706 torture_rpc_tcase_add_test(tcase, "NetrEnumerateTrustedDomains", test_netr_NetrEnumerateTrustedDomains);
1707 torture_rpc_tcase_add_test(tcase, "NetrEnumerateTrustedDomainsEx", test_netr_NetrEnumerateTrustedDomainsEx);
1708 test = torture_rpc_tcase_add_test_creds(tcase, "GetDomainInfo_async", test_GetDomainInfo_async);
1709 test->dangerous = true;
1710 torture_rpc_tcase_add_test(tcase, "DsRGetDCName", test_netr_DsRGetDCName);
1711 torture_rpc_tcase_add_test(tcase, "DsRGetDCNameEx", test_netr_DsRGetDCNameEx);
1712 torture_rpc_tcase_add_test(tcase, "DsRGetDCNameEx2", test_netr_DsRGetDCNameEx2);
1713 torture_rpc_tcase_add_test(tcase, "DsrGetDcSiteCoverageW", test_netr_DsrGetDcSiteCoverageW);
1714 torture_rpc_tcase_add_test(tcase, "DsRAddressToSitenamesW", test_netr_DsRAddressToSitenamesW);
1715 torture_rpc_tcase_add_test(tcase, "DsRAddressToSitenamesExW", test_netr_DsRAddressToSitenamesExW);