r5941: Commit this patch much earlier than I would normally prefer, but metze needs...
[Samba/aatanasov.git] / source / torture / rpc / schannel.c
blobd27285a9cc2d66e4a7c7403acf140d8c19b5cbf5
1 /*
2 Unix SMB/CIFS implementation.
4 test suite for schannel operations
6 Copyright (C) Andrew Tridgell 2004
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 #include "includes.h"
24 #include "librpc/gen_ndr/ndr_samr.h"
25 #include "librpc/gen_ndr/ndr_netlogon.h"
27 #define TEST_MACHINE_NAME "schanneltest"
30 do some samr ops using the schannel connection
32 static BOOL test_samr_ops(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx)
34 NTSTATUS status;
35 struct samr_GetDomPwInfo r;
36 int i;
37 struct samr_String name;
39 name.string = lp_workgroup();
40 r.in.domain_name = &name;
42 printf("Testing GetDomPwInfo with name %s\n", r.in.domain_name->string);
44 /* do several ops to test credential chaining */
45 for (i=0;i<5;i++) {
46 status = dcerpc_samr_GetDomPwInfo(p, mem_ctx, &r);
47 if (!NT_STATUS_IS_OK(status)) {
48 printf("GetDomPwInfo op %d failed - %s\n", i, nt_errstr(status));
49 return False;
53 return True;
58 try a netlogon SamLogon
60 static BOOL test_netlogon_ops(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx,
61 struct creds_CredentialState *creds)
63 NTSTATUS status;
64 struct netr_LogonSamLogon r;
65 struct netr_Authenticator auth, auth2;
66 struct netr_NetworkInfo ninfo;
67 const char *username = lp_parm_string(-1, "torture", "username");
68 const char *password = lp_parm_string(-1, "torture", "password");
70 int i;
71 BOOL ret = True;
73 ninfo.identity_info.domain_name.string = lp_workgroup();
74 ninfo.identity_info.parameter_control = 0;
75 ninfo.identity_info.logon_id_low = 0;
76 ninfo.identity_info.logon_id_high = 0;
77 ninfo.identity_info.account_name.string = username;
78 ninfo.identity_info.workstation.string = TEST_MACHINE_NAME;
79 generate_random_buffer(ninfo.challenge,
80 sizeof(ninfo.challenge));
81 ninfo.nt.length = 24;
82 ninfo.nt.data = talloc_size(mem_ctx, 24);
83 SMBNTencrypt(password, ninfo.challenge, ninfo.nt.data);
84 ninfo.lm.length = 24;
85 ninfo.lm.data = talloc_size(mem_ctx, 24);
86 SMBencrypt(password, ninfo.challenge, ninfo.lm.data);
89 r.in.server_name = talloc_asprintf(mem_ctx, "\\\\%s", dcerpc_server_name(p));
90 r.in.workstation = TEST_MACHINE_NAME;
91 r.in.credential = &auth;
92 r.in.return_authenticator = &auth2;
93 r.in.logon_level = 2;
94 r.in.logon.network = &ninfo;
96 printf("Testing LogonSamLogon with name %s\n", username);
98 for (i=2;i<3;i++) {
99 ZERO_STRUCT(auth2);
100 creds_client_authenticator(creds, &auth);
102 r.in.validation_level = i;
104 status = dcerpc_netr_LogonSamLogon(p, mem_ctx, &r);
106 if (!creds_client_check(creds, &r.out.return_authenticator->cred)) {
107 printf("Credential chaining failed\n");
108 ret = False;
112 return ret;
116 test a schannel connection with the given flags
118 static BOOL test_schannel(TALLOC_CTX *mem_ctx,
119 uint16_t acct_flags, uint32_t dcerpc_flags,
120 uint32_t schannel_type)
122 void *join_ctx;
123 const char *machine_password;
124 NTSTATUS status;
125 const char *binding = lp_parm_string(-1, "torture", "binding");
126 struct dcerpc_binding *b;
127 struct dcerpc_pipe *p = NULL;
128 struct dcerpc_pipe *p_netlogon = NULL;
129 struct creds_CredentialState *creds;
130 struct cli_credentials *credentials;
132 TALLOC_CTX *test_ctx = talloc_named(mem_ctx, 0, "test_schannel context");
133 char *test_machine_account = talloc_asprintf(NULL, "%s$", TEST_MACHINE_NAME);
135 credentials = cli_credentials_init(mem_ctx);
137 join_ctx = torture_create_testuser(test_machine_account, lp_workgroup(),
138 acct_flags, &machine_password);
139 if (!join_ctx) {
140 printf("Failed to join domain with acct_flags=0x%x\n", acct_flags);
141 talloc_free(test_ctx);
142 return False;
145 status = dcerpc_parse_binding(test_ctx, binding, &b);
146 if (!NT_STATUS_IS_OK(status)) {
147 printf("Bad binding string %s\n", binding);
148 goto failed;
151 b->flags &= ~DCERPC_AUTH_OPTIONS;
152 b->flags |= dcerpc_flags;
154 cli_credentials_set_domain(credentials, lp_workgroup(), CRED_SPECIFIED);
155 cli_credentials_set_workstation(credentials, TEST_MACHINE_NAME, CRED_SPECIFIED);
156 cli_credentials_set_username(credentials, test_machine_account, CRED_SPECIFIED);
157 cli_credentials_set_password(credentials, machine_password, CRED_SPECIFIED);
159 status = dcerpc_pipe_connect_b(test_ctx,
160 &p, b,
161 DCERPC_SAMR_UUID,
162 DCERPC_SAMR_VERSION,
163 credentials);
164 if (!NT_STATUS_IS_OK(status)) {
165 printf("Failed to connect with schannel: %s\n", nt_errstr(status));
166 goto failed;
169 if (!test_samr_ops(p, test_ctx)) {
170 printf("Failed to process schannel secured ops\n");
171 goto failed;
174 status = dcerpc_schannel_creds(p->conn->security_state.generic_state, test_ctx, &creds);
175 if (!NT_STATUS_IS_OK(status)) {
176 goto failed;
179 /* Also test that when we connect to the netlogon pipe, that
180 * the credentials we setup on the first pipe are valid for
181 * the second */
183 /* Swap the binding details from SAMR to NETLOGON */
184 status = dcerpc_epm_map_binding(test_ctx, b, DCERPC_NETLOGON_UUID,
185 DCERPC_NETLOGON_VERSION);
186 if (!NT_STATUS_IS_OK(status)) {
187 goto failed;
190 status = dcerpc_secondary_connection(p, &p_netlogon,
193 if (!NT_STATUS_IS_OK(status)) {
194 goto failed;
197 status = dcerpc_bind_auth_schannel_withkey(p_netlogon,
198 DCERPC_NETLOGON_UUID,
199 DCERPC_NETLOGON_VERSION,
200 creds);
202 if (!NT_STATUS_IS_OK(status)) {
203 goto failed;
206 status = dcerpc_schannel_creds(p_netlogon->conn->security_state.generic_state, test_ctx, &creds);
207 if (!NT_STATUS_IS_OK(status)) {
208 goto failed;
211 /* do a couple of logins */
212 if (!test_netlogon_ops(p_netlogon, test_ctx, creds)) {
213 printf("Failed to process schannel secured ops\n");
214 goto failed;
217 torture_leave_domain(join_ctx);
218 talloc_free(test_ctx);
219 return True;
221 failed:
222 torture_leave_domain(join_ctx);
223 talloc_free(test_ctx);
224 return False;
228 a schannel test suite
230 BOOL torture_rpc_schannel(void)
232 TALLOC_CTX *mem_ctx;
233 BOOL ret = True;
234 struct {
235 uint16_t acct_flags;
236 uint32_t dcerpc_flags;
237 uint32_t schannel_type;
238 } tests[] = {
239 { ACB_WSTRUST, DCERPC_SCHANNEL_WORKSTATION | DCERPC_SIGN, 3 },
240 { ACB_WSTRUST, DCERPC_SCHANNEL_WORKSTATION | DCERPC_SEAL, 3 },
241 { ACB_WSTRUST, DCERPC_SCHANNEL_WORKSTATION | DCERPC_SIGN | DCERPC_SCHANNEL_128, 3 },
242 { ACB_WSTRUST, DCERPC_SCHANNEL_WORKSTATION | DCERPC_SEAL | DCERPC_SCHANNEL_128, 3 },
243 { ACB_SVRTRUST, DCERPC_SCHANNEL_BDC | DCERPC_SIGN, 3 },
244 { ACB_SVRTRUST, DCERPC_SCHANNEL_BDC | DCERPC_SEAL, 3 },
245 { ACB_SVRTRUST, DCERPC_SCHANNEL_BDC | DCERPC_SIGN | DCERPC_SCHANNEL_128, 3 },
246 { ACB_SVRTRUST, DCERPC_SCHANNEL_BDC | DCERPC_SEAL | DCERPC_SCHANNEL_128, 3 }
248 int i;
250 mem_ctx = talloc_init("torture_rpc_schannel");
252 for (i=0;i<ARRAY_SIZE(tests);i++) {
253 if (!test_schannel(mem_ctx,
254 tests[i].acct_flags, tests[i].dcerpc_flags, tests[i].schannel_type)) {
255 printf("Failed with acct_flags=0x%x dcerpc_flags=0x%x schannel_type=%d\n",
256 tests[i].acct_flags, tests[i].dcerpc_flags, tests[i].schannel_type);
257 ret = False;
258 break;
262 talloc_free(mem_ctx);
264 return ret;