2 Unix SMB/CIFS implementation.
3 Test suite for libnet calls.
5 Copyright (C) Rafal Szczesniak 2005
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>.
22 #include "torture/rpc/torture_rpc.h"
23 #include "torture/libnet/usertest.h"
24 #include "libnet/libnet.h"
25 #include "librpc/gen_ndr/ndr_samr_c.h"
26 #include "param/param.h"
28 #include "torture/libnet/proto.h"
31 static bool test_useradd(struct torture_context
*tctx
,
32 struct dcerpc_pipe
*p
, TALLOC_CTX
*mem_ctx
,
33 struct policy_handle
*domain_handle
,
38 struct libnet_rpc_useradd user
;
40 user
.in
.domain_handle
= *domain_handle
;
41 user
.in
.username
= name
;
43 torture_comment(tctx
, "Testing libnet_rpc_useradd\n");
45 status
= libnet_rpc_useradd(p
, mem_ctx
, &user
);
46 if (!NT_STATUS_IS_OK(status
)) {
47 torture_comment(tctx
, "Failed to call libnet_rpc_useradd - %s\n", nt_errstr(status
));
55 static bool test_useradd_async(struct torture_context
*tctx
,
56 struct dcerpc_pipe
*p
, TALLOC_CTX
*mem_ctx
,
57 struct policy_handle
*handle
, const char* username
)
60 struct composite_context
*c
;
61 struct libnet_rpc_useradd user
;
63 user
.in
.domain_handle
= *handle
;
64 user
.in
.username
= username
;
66 torture_comment(tctx
, "Testing async libnet_rpc_useradd\n");
68 c
= libnet_rpc_useradd_send(p
, mem_ctx
, &user
, msg_handler
);
70 torture_comment(tctx
, "Failed to call async libnet_rpc_useradd\n");
74 status
= libnet_rpc_useradd_recv(c
, mem_ctx
, &user
);
75 if (!NT_STATUS_IS_OK(status
)) {
76 torture_comment(tctx
, "Calling async libnet_rpc_useradd failed - %s\n", nt_errstr(status
));
84 static bool test_usermod(struct torture_context
*tctx
, struct dcerpc_pipe
*p
,
86 struct policy_handle
*handle
, int num_changes
,
87 struct libnet_rpc_usermod
*mod
, char **username
)
89 const char* logon_scripts
[] = { "start_login.cmd", "login.bat", "start.cmd" };
90 const char* home_dirs
[] = { "\\\\srv\\home", "\\\\homesrv\\home\\user", "\\\\pdcsrv\\domain" };
91 const char* home_drives
[] = { "H:", "z:", "I:", "J:", "n:" };
92 const char *homedir
, *homedrive
, *logonscript
;
93 const uint32_t flags
[] = { (ACB_DISABLED
| ACB_NORMAL
| ACB_PW_EXPIRED
),
94 (ACB_NORMAL
| ACB_PWNOEXP
),
95 (ACB_NORMAL
| ACB_PW_EXPIRED
) };
99 enum test_fields testfld
;
103 srandom((unsigned)time(NULL
));
105 mod
->in
.username
= talloc_strdup(mem_ctx
, *username
);
106 mod
->in
.domain_handle
= *handle
;
108 torture_comment(tctx
, "modifying user (%d simultaneous change(s))\n",
111 torture_comment(tctx
, "fields to change: [");
113 for (i
= 0; i
< num_changes
&& i
<= USER_FIELD_LAST
; i
++) {
116 testfld
= (random() % USER_FIELD_LAST
) + 1;
122 continue_if_field_set(mod
->in
.change
.account_name
);
123 mod
->in
.change
.account_name
= talloc_asprintf(mem_ctx
, TEST_CHG_ACCOUNTNAME
,
124 (int)(random() % 100));
125 mod
->in
.change
.fields
|= USERMOD_FIELD_ACCOUNT_NAME
;
126 fldname
= "account_name";
127 *username
= talloc_strdup(mem_ctx
, mod
->in
.change
.account_name
);
131 continue_if_field_set(mod
->in
.change
.full_name
);
132 mod
->in
.change
.full_name
= talloc_asprintf(mem_ctx
, TEST_CHG_FULLNAME
,
133 (int)random(), (int)random());
134 mod
->in
.change
.fields
|= USERMOD_FIELD_FULL_NAME
;
135 fldname
= "full_name";
138 case acct_description
:
139 continue_if_field_set(mod
->in
.change
.description
);
140 mod
->in
.change
.description
= talloc_asprintf(mem_ctx
, TEST_CHG_DESCRIPTION
,
142 mod
->in
.change
.fields
|= USERMOD_FIELD_DESCRIPTION
;
143 fldname
= "description";
146 case acct_home_directory
:
147 continue_if_field_set(mod
->in
.change
.home_directory
);
148 homedir
= home_dirs
[random() % (sizeof(home_dirs
)/sizeof(char*))];
149 mod
->in
.change
.home_directory
= talloc_strdup(mem_ctx
, homedir
);
150 mod
->in
.change
.fields
|= USERMOD_FIELD_HOME_DIRECTORY
;
151 fldname
= "home_directory";
154 case acct_home_drive
:
155 continue_if_field_set(mod
->in
.change
.home_drive
);
156 homedrive
= home_drives
[random() % (sizeof(home_drives
)/sizeof(char*))];
157 mod
->in
.change
.home_drive
= talloc_strdup(mem_ctx
, homedrive
);
158 mod
->in
.change
.fields
|= USERMOD_FIELD_HOME_DRIVE
;
159 fldname
= "home_drive";
163 continue_if_field_set(mod
->in
.change
.comment
);
164 mod
->in
.change
.comment
= talloc_asprintf(mem_ctx
, TEST_CHG_COMMENT
,
166 mod
->in
.change
.fields
|= USERMOD_FIELD_COMMENT
;
170 case acct_logon_script
:
171 continue_if_field_set(mod
->in
.change
.logon_script
);
172 logonscript
= logon_scripts
[random() % (sizeof(logon_scripts
)/sizeof(char*))];
173 mod
->in
.change
.logon_script
= talloc_strdup(mem_ctx
, logonscript
);
174 mod
->in
.change
.fields
|= USERMOD_FIELD_LOGON_SCRIPT
;
175 fldname
= "logon_script";
178 case acct_profile_path
:
179 continue_if_field_set(mod
->in
.change
.profile_path
);
180 mod
->in
.change
.profile_path
= talloc_asprintf(mem_ctx
, TEST_CHG_PROFILEPATH
,
181 (long int)random(), (unsigned int)random());
182 mod
->in
.change
.fields
|= USERMOD_FIELD_PROFILE_PATH
;
183 fldname
= "profile_path";
187 continue_if_field_set(mod
->in
.change
.acct_expiry
);
188 now
= timeval_add(&now
, (random() % (31*24*60*60)), 0);
189 mod
->in
.change
.acct_expiry
= (struct timeval
*)talloc_memdup(mem_ctx
, &now
, sizeof(now
));
190 mod
->in
.change
.fields
|= USERMOD_FIELD_ACCT_EXPIRY
;
191 fldname
= "acct_expiry";
195 continue_if_field_set(mod
->in
.change
.acct_flags
);
196 mod
->in
.change
.acct_flags
= flags
[random() % ARRAY_SIZE(flags
)];
197 mod
->in
.change
.fields
|= USERMOD_FIELD_ACCT_FLAGS
;
198 fldname
= "acct_flags";
202 fldname
= talloc_asprintf(mem_ctx
, "unknown_field (%d)", testfld
);
206 torture_comment(tctx
, ((i
< num_changes
- 1) ? "%s," : "%s"), fldname
);
208 torture_comment(tctx
, "]\n");
210 status
= libnet_rpc_usermod(p
, mem_ctx
, mod
);
211 torture_assert_ntstatus_ok(tctx
, status
, "Failed to call sync libnet_rpc_usermod");
217 static bool test_userdel(struct torture_context
*tctx
,
218 struct dcerpc_pipe
*p
, TALLOC_CTX
*mem_ctx
,
219 struct policy_handle
*handle
, const char *username
)
222 struct libnet_rpc_userdel user
;
224 user
.in
.domain_handle
= *handle
;
225 user
.in
.username
= username
;
227 status
= libnet_rpc_userdel(p
, mem_ctx
, &user
);
228 if (!NT_STATUS_IS_OK(status
)) {
229 torture_comment(tctx
, "Failed to call sync libnet_rpc_userdel - %s\n", nt_errstr(status
));
237 #define CMP_LSA_STRING_FLD(fld, flags) \
238 if ((mod->in.change.fields & flags) && \
239 !strequal(i->fld.string, mod->in.change.fld)) { \
240 torture_comment(tctx, "'%s' field does not match\n", #fld); \
241 torture_comment(tctx, "received: '%s'\n", i->fld.string); \
242 torture_comment(tctx, "expected: '%s'\n", mod->in.change.fld); \
247 #define CMP_TIME_FLD(fld, flags) \
248 if (mod->in.change.fields & flags) { \
249 nttime_to_timeval(&t, i->fld); \
250 if (timeval_compare(&t, mod->in.change.fld)) { \
251 torture_comment(tctx, "'%s' field does not match\n", #fld); \
252 torture_comment(tctx, "received: '%s (+%ld us)'\n", \
253 timestring(mem_ctx, t.tv_sec), (long)t.tv_usec); \
254 torture_comment(tctx, "expected: '%s (+%ld us)'\n", \
255 timestring(mem_ctx, mod->in.change.fld->tv_sec), \
256 (long)mod->in.change.fld->tv_usec); \
261 #define CMP_NUM_FLD(fld, flags) \
262 if ((mod->in.change.fields & flags) && \
263 (i->fld != mod->in.change.fld)) { \
264 torture_comment(tctx, "'%s' field does not match\n", #fld); \
265 torture_comment(tctx, "received: '%04x'\n", i->fld); \
266 torture_comment(tctx, "expected: '%04x'\n", mod->in.change.fld); \
271 static bool test_compare(struct torture_context
*tctx
,
272 struct dcerpc_pipe
*p
, TALLOC_CTX
*mem_ctx
,
273 struct policy_handle
*handle
, struct libnet_rpc_usermod
*mod
,
274 const char *username
)
277 struct libnet_rpc_userinfo info
;
278 struct samr_UserInfo21
*i
;
283 info
.in
.username
= username
;
284 info
.in
.domain_handle
= *handle
;
285 info
.in
.level
= 21; /* the most rich infolevel available */
287 status
= libnet_rpc_userinfo(p
, mem_ctx
, &info
);
288 torture_assert_ntstatus_ok(tctx
, status
, "Failed to call sync libnet_rpc_userinfo");
290 i
= &info
.out
.info
.info21
;
292 CMP_LSA_STRING_FLD(account_name
, USERMOD_FIELD_ACCOUNT_NAME
);
293 CMP_LSA_STRING_FLD(full_name
, USERMOD_FIELD_FULL_NAME
);
294 CMP_LSA_STRING_FLD(description
, USERMOD_FIELD_DESCRIPTION
);
295 CMP_LSA_STRING_FLD(comment
, USERMOD_FIELD_COMMENT
);
296 CMP_LSA_STRING_FLD(logon_script
, USERMOD_FIELD_LOGON_SCRIPT
);
297 CMP_LSA_STRING_FLD(profile_path
, USERMOD_FIELD_PROFILE_PATH
);
298 CMP_LSA_STRING_FLD(home_directory
, USERMOD_FIELD_HOME_DIRECTORY
);
299 CMP_LSA_STRING_FLD(home_drive
, USERMOD_FIELD_HOME_DRIVE
);
300 CMP_TIME_FLD(acct_expiry
, USERMOD_FIELD_ACCT_EXPIRY
);
301 CMP_NUM_FLD(acct_flags
, USERMOD_FIELD_ACCT_FLAGS
)
307 bool torture_useradd(struct torture_context
*torture
)
310 struct dcerpc_pipe
*p
;
311 struct policy_handle h
;
312 struct lsa_String domain_name
;
314 const char *name
= TEST_USERNAME
;
317 struct dcerpc_binding_handle
*b
;
319 mem_ctx
= talloc_init("test_useradd");
321 status
= torture_rpc_connection(torture
,
325 torture_assert_ntstatus_ok(torture
, status
, "RPC connect failed");
326 b
= p
->binding_handle
;
328 domain_name
.string
= lpcfg_workgroup(torture
->lp_ctx
);
329 if (!test_domain_open(torture
, b
, &domain_name
, mem_ctx
, &h
, &sid
)) {
334 if (!test_useradd(torture
, p
, mem_ctx
, &h
, name
)) {
339 if (!test_user_cleanup(torture
, b
, mem_ctx
, &h
, name
)) {
344 if (!test_domain_open(torture
, b
, &domain_name
, mem_ctx
, &h
, &sid
)) {
349 if (!test_useradd_async(torture
, p
, mem_ctx
, &h
, name
)) {
354 if (!test_user_cleanup(torture
, b
, mem_ctx
, &h
, name
)) {
360 talloc_free(mem_ctx
);
365 bool torture_userdel(struct torture_context
*torture
)
368 struct dcerpc_pipe
*p
;
369 struct policy_handle h
;
370 struct lsa_String domain_name
;
373 const char *name
= TEST_USERNAME
;
376 struct dcerpc_binding_handle
*b
;
378 mem_ctx
= talloc_init("test_userdel");
380 status
= torture_rpc_connection(torture
,
384 if (!NT_STATUS_IS_OK(status
)) {
387 b
= p
->binding_handle
;
389 domain_name
.string
= lpcfg_workgroup(torture
->lp_ctx
);
390 if (!test_domain_open(torture
, b
, &domain_name
, mem_ctx
, &h
, &sid
)) {
395 if (!test_user_create(torture
, b
, mem_ctx
, &h
, name
, &rid
)) {
400 if (!test_userdel(torture
, p
, mem_ctx
, &h
, name
)) {
406 talloc_free(mem_ctx
);
411 bool torture_usermod(struct torture_context
*torture
)
414 struct dcerpc_pipe
*p
;
415 struct policy_handle h
;
416 struct lsa_String domain_name
;
423 struct dcerpc_binding_handle
*b
;
425 mem_ctx
= talloc_init("test_userdel");
427 status
= torture_rpc_connection(torture
,
431 torture_assert_ntstatus_ok(torture
, status
, "RPC connect");
432 b
= p
->binding_handle
;
434 domain_name
.string
= lpcfg_workgroup(torture
->lp_ctx
);
435 name
= talloc_strdup(mem_ctx
, TEST_USERNAME
);
437 if (!test_domain_open(torture
, b
, &domain_name
, mem_ctx
, &h
, &sid
)) {
442 if (!test_user_create(torture
, b
, mem_ctx
, &h
, name
, &rid
)) {
447 for (i
= USER_FIELD_FIRST
; i
<= USER_FIELD_LAST
; i
++) {
448 struct libnet_rpc_usermod m
;
450 if (!test_usermod(torture
, p
, mem_ctx
, &h
, i
, &m
, &name
)) {
455 if (!test_compare(torture
, p
, mem_ctx
, &h
, &m
, name
)) {
462 if (!test_user_cleanup(torture
, b
, mem_ctx
, &h
, TEST_USERNAME
)) {
468 talloc_free(mem_ctx
);