2 Samba Unix/Linux SMB client library
3 Distributed SMB/CIFS Server Management Utility
4 Copyright (C) 2006 Volker Lendecke (vl@samba.org)
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program 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
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>.
20 #include "utils/net.h"
21 #include "rpc_client/rpc_client.h"
22 #include "../librpc/gen_ndr/ndr_samr_c.h"
23 #include "../libcli/security/security.h"
26 * Do something with the account policies. Read them all, run a function on
27 * them and possibly write them back. "fn" has to return the container index
28 * it has modified, it can return 0 for no change.
31 static NTSTATUS
rpc_sh_acct_do(struct net_context
*c
,
33 struct rpc_sh_ctx
*ctx
,
34 struct rpc_pipe_client
*pipe_hnd
,
35 int argc
, const char **argv
,
36 int (*fn
)(struct net_context
*c
,
38 struct rpc_sh_ctx
*ctx
,
39 struct samr_DomInfo1
*i1
,
40 struct samr_DomInfo3
*i3
,
41 struct samr_DomInfo12
*i12
,
42 int argc
, const char **argv
))
44 struct policy_handle connect_pol
, domain_pol
;
45 NTSTATUS status
, result
;
46 union samr_DomainInfo
*info1
= NULL
;
47 union samr_DomainInfo
*info3
= NULL
;
48 union samr_DomainInfo
*info12
= NULL
;
50 struct dcerpc_binding_handle
*b
= pipe_hnd
->binding_handle
;
52 ZERO_STRUCT(connect_pol
);
53 ZERO_STRUCT(domain_pol
);
55 /* Get sam policy handle */
57 status
= dcerpc_samr_Connect2(b
, mem_ctx
,
59 MAXIMUM_ALLOWED_ACCESS
,
62 if (!NT_STATUS_IS_OK(status
)) {
65 if (!NT_STATUS_IS_OK(result
)) {
70 /* Get domain policy handle */
72 status
= dcerpc_samr_OpenDomain(b
, mem_ctx
,
74 MAXIMUM_ALLOWED_ACCESS
,
78 if (!NT_STATUS_IS_OK(status
)) {
81 if (!NT_STATUS_IS_OK(result
)) {
86 status
= dcerpc_samr_QueryDomainInfo(b
, mem_ctx
,
91 if (!NT_STATUS_IS_OK(status
)) {
94 if (!NT_STATUS_IS_OK(result
)) {
96 d_fprintf(stderr
, _("query_domain_info level 1 failed: %s\n"),
101 status
= dcerpc_samr_QueryDomainInfo(b
, mem_ctx
,
106 if (!NT_STATUS_IS_OK(status
)) {
109 if (!NT_STATUS_IS_OK(result
)) {
111 d_fprintf(stderr
, _("query_domain_info level 3 failed: %s\n"),
116 status
= dcerpc_samr_QueryDomainInfo(b
, mem_ctx
,
121 if (!NT_STATUS_IS_OK(status
)) {
124 if (!NT_STATUS_IS_OK(result
)) {
126 d_fprintf(stderr
, _("query_domain_info level 12 failed: %s\n"),
131 store
= fn(c
, mem_ctx
, ctx
, &info1
->info1
, &info3
->info3
,
132 &info12
->info12
, argc
, argv
);
135 /* Don't save anything */
141 status
= dcerpc_samr_SetDomainInfo(b
, mem_ctx
,
148 status
= dcerpc_samr_SetDomainInfo(b
, mem_ctx
,
155 status
= dcerpc_samr_SetDomainInfo(b
, mem_ctx
,
162 d_fprintf(stderr
, _("Got unexpected info level %d\n"), store
);
163 status
= NT_STATUS_INTERNAL_ERROR
;
167 if (!NT_STATUS_IS_OK(status
)) {
174 if (is_valid_policy_hnd(&domain_pol
)) {
175 dcerpc_samr_Close(b
, mem_ctx
, &domain_pol
, &result
);
177 if (is_valid_policy_hnd(&connect_pol
)) {
178 dcerpc_samr_Close(b
, mem_ctx
, &connect_pol
, &result
);
184 static int account_show(struct net_context
*c
,
185 TALLOC_CTX
*mem_ctx
, struct rpc_sh_ctx
*ctx
,
186 struct samr_DomInfo1
*i1
,
187 struct samr_DomInfo3
*i3
,
188 struct samr_DomInfo12
*i12
,
189 int argc
, const char **argv
)
192 d_fprintf(stderr
, "%s %s\n", _("Usage:"), ctx
->whoami
);
196 d_printf(_("Minimum password length: %d\n"), i1
->min_password_length
);
197 d_printf(_("Password history length: %d\n"),
198 i1
->password_history_length
);
200 d_printf(_("Minimum password age: "));
201 if (!nt_time_is_zero((NTTIME
*)&i1
->min_password_age
)) {
202 time_t t
= nt_time_to_unix_abs((NTTIME
*)&i1
->min_password_age
);
203 d_printf(_("%d seconds\n"), (int)t
);
205 d_printf(_("not set\n"));
208 d_printf(_("Maximum password age: "));
209 if (nt_time_is_set((NTTIME
*)&i1
->max_password_age
)) {
210 time_t t
= nt_time_to_unix_abs((NTTIME
*)&i1
->max_password_age
);
211 d_printf(_("%d seconds\n"), (int)t
);
213 d_printf(_("not set\n"));
216 d_printf(_("Bad logon attempts: %d\n"), i12
->lockout_threshold
);
218 if (i12
->lockout_threshold
!= 0) {
220 d_printf(_("Account lockout duration: "));
221 if (nt_time_is_set(&i12
->lockout_duration
)) {
222 time_t t
= nt_time_to_unix_abs(&i12
->lockout_duration
);
223 d_printf(_("%d seconds\n"), (int)t
);
225 d_printf(_("not set\n"));
228 d_printf(_("Bad password count reset after: "));
229 if (nt_time_is_set(&i12
->lockout_window
)) {
230 time_t t
= nt_time_to_unix_abs(&i12
->lockout_window
);
231 d_printf(_("%d seconds\n"), (int)t
);
233 d_printf(_("not set\n"));
237 d_printf(_("Disconnect users when logon hours expire: %s\n"),
238 nt_time_is_zero(&i3
->force_logoff_time
) ? _("yes") : _("no"));
240 d_printf(_("User must logon to change password: %s\n"),
241 (i1
->password_properties
& 0x2) ? _("yes") : _("no"));
243 return 0; /* Don't save */
246 static NTSTATUS
rpc_sh_acct_pol_show(struct net_context
*c
,
248 struct rpc_sh_ctx
*ctx
,
249 struct rpc_pipe_client
*pipe_hnd
,
250 int argc
, const char **argv
) {
251 return rpc_sh_acct_do(c
, mem_ctx
, ctx
, pipe_hnd
, argc
, argv
,
255 static int account_set_badpw(struct net_context
*c
,
256 TALLOC_CTX
*mem_ctx
, struct rpc_sh_ctx
*ctx
,
257 struct samr_DomInfo1
*i1
,
258 struct samr_DomInfo3
*i3
,
259 struct samr_DomInfo12
*i12
,
260 int argc
, const char **argv
)
263 d_fprintf(stderr
, "%s %s <count>\n", _("Usage:"), ctx
->whoami
);
267 i12
->lockout_threshold
= atoi(argv
[0]);
268 d_printf(_("Setting bad password count to %d\n"),
269 i12
->lockout_threshold
);
274 static NTSTATUS
rpc_sh_acct_set_badpw(struct net_context
*c
,
276 struct rpc_sh_ctx
*ctx
,
277 struct rpc_pipe_client
*pipe_hnd
,
278 int argc
, const char **argv
)
280 return rpc_sh_acct_do(c
, mem_ctx
, ctx
, pipe_hnd
, argc
, argv
,
284 static int account_set_lockduration(struct net_context
*c
,
286 struct rpc_sh_ctx
*ctx
,
287 struct samr_DomInfo1
*i1
,
288 struct samr_DomInfo3
*i3
,
289 struct samr_DomInfo12
*i12
,
290 int argc
, const char **argv
)
293 d_fprintf(stderr
, _("Usage: %s <count>\n"), ctx
->whoami
);
297 unix_to_nt_time_abs(&i12
->lockout_duration
, atoi(argv
[0]));
298 d_printf(_("Setting lockout duration to %d seconds\n"),
299 (int)nt_time_to_unix_abs(&i12
->lockout_duration
));
304 static NTSTATUS
rpc_sh_acct_set_lockduration(struct net_context
*c
,
306 struct rpc_sh_ctx
*ctx
,
307 struct rpc_pipe_client
*pipe_hnd
,
308 int argc
, const char **argv
)
310 return rpc_sh_acct_do(c
, mem_ctx
, ctx
, pipe_hnd
, argc
, argv
,
311 account_set_lockduration
);
314 static int account_set_resetduration(struct net_context
*c
,
316 struct rpc_sh_ctx
*ctx
,
317 struct samr_DomInfo1
*i1
,
318 struct samr_DomInfo3
*i3
,
319 struct samr_DomInfo12
*i12
,
320 int argc
, const char **argv
)
323 d_fprintf(stderr
, _("Usage: %s <count>\n"), ctx
->whoami
);
327 unix_to_nt_time_abs(&i12
->lockout_window
, atoi(argv
[0]));
328 d_printf(_("Setting bad password reset duration to %d seconds\n"),
329 (int)nt_time_to_unix_abs(&i12
->lockout_window
));
334 static NTSTATUS
rpc_sh_acct_set_resetduration(struct net_context
*c
,
336 struct rpc_sh_ctx
*ctx
,
337 struct rpc_pipe_client
*pipe_hnd
,
338 int argc
, const char **argv
)
340 return rpc_sh_acct_do(c
, mem_ctx
, ctx
, pipe_hnd
, argc
, argv
,
341 account_set_resetduration
);
344 static int account_set_minpwage(struct net_context
*c
,
346 struct rpc_sh_ctx
*ctx
,
347 struct samr_DomInfo1
*i1
,
348 struct samr_DomInfo3
*i3
,
349 struct samr_DomInfo12
*i12
,
350 int argc
, const char **argv
)
353 d_fprintf(stderr
, _("Usage: %s <count>\n"), ctx
->whoami
);
357 unix_to_nt_time_abs((NTTIME
*)&i1
->min_password_age
, atoi(argv
[0]));
358 d_printf(_("Setting minimum password age to %d seconds\n"),
359 (int)nt_time_to_unix_abs((NTTIME
*)&i1
->min_password_age
));
364 static NTSTATUS
rpc_sh_acct_set_minpwage(struct net_context
*c
,
366 struct rpc_sh_ctx
*ctx
,
367 struct rpc_pipe_client
*pipe_hnd
,
368 int argc
, const char **argv
)
370 return rpc_sh_acct_do(c
, mem_ctx
, ctx
, pipe_hnd
, argc
, argv
,
371 account_set_minpwage
);
374 static int account_set_maxpwage(struct net_context
*c
,
376 struct rpc_sh_ctx
*ctx
,
377 struct samr_DomInfo1
*i1
,
378 struct samr_DomInfo3
*i3
,
379 struct samr_DomInfo12
*i12
,
380 int argc
, const char **argv
)
383 d_fprintf(stderr
, _("Usage: %s <count>\n"), ctx
->whoami
);
387 unix_to_nt_time_abs((NTTIME
*)&i1
->max_password_age
, atoi(argv
[0]));
388 d_printf(_("Setting maximum password age to %d seconds\n"),
389 (int)nt_time_to_unix_abs((NTTIME
*)&i1
->max_password_age
));
394 static NTSTATUS
rpc_sh_acct_set_maxpwage(struct net_context
*c
,
396 struct rpc_sh_ctx
*ctx
,
397 struct rpc_pipe_client
*pipe_hnd
,
398 int argc
, const char **argv
)
400 return rpc_sh_acct_do(c
, mem_ctx
, ctx
, pipe_hnd
, argc
, argv
,
401 account_set_maxpwage
);
404 static int account_set_minpwlen(struct net_context
*c
,
406 struct rpc_sh_ctx
*ctx
,
407 struct samr_DomInfo1
*i1
,
408 struct samr_DomInfo3
*i3
,
409 struct samr_DomInfo12
*i12
,
410 int argc
, const char **argv
)
413 d_fprintf(stderr
, _("Usage: %s <count>\n"), ctx
->whoami
);
417 i1
->min_password_length
= atoi(argv
[0]);
418 d_printf(_("Setting minimum password length to %d\n"),
419 i1
->min_password_length
);
424 static NTSTATUS
rpc_sh_acct_set_minpwlen(struct net_context
*c
,
426 struct rpc_sh_ctx
*ctx
,
427 struct rpc_pipe_client
*pipe_hnd
,
428 int argc
, const char **argv
)
430 return rpc_sh_acct_do(c
, mem_ctx
, ctx
, pipe_hnd
, argc
, argv
,
431 account_set_minpwlen
);
434 static int account_set_pwhistlen(struct net_context
*c
,
436 struct rpc_sh_ctx
*ctx
,
437 struct samr_DomInfo1
*i1
,
438 struct samr_DomInfo3
*i3
,
439 struct samr_DomInfo12
*i12
,
440 int argc
, const char **argv
)
443 d_fprintf(stderr
, _("Usage: %s <count>\n"), ctx
->whoami
);
447 i1
->password_history_length
= atoi(argv
[0]);
448 d_printf(_("Setting password history length to %d\n"),
449 i1
->password_history_length
);
454 static NTSTATUS
rpc_sh_acct_set_pwhistlen(struct net_context
*c
,
456 struct rpc_sh_ctx
*ctx
,
457 struct rpc_pipe_client
*pipe_hnd
,
458 int argc
, const char **argv
)
460 return rpc_sh_acct_do(c
, mem_ctx
, ctx
, pipe_hnd
, argc
, argv
,
461 account_set_pwhistlen
);
464 struct rpc_sh_cmd
*net_rpc_acct_cmds(struct net_context
*c
, TALLOC_CTX
*mem_ctx
,
465 struct rpc_sh_ctx
*ctx
)
467 static struct rpc_sh_cmd cmds
[9] = {
468 { "show", NULL
, &ndr_table_samr
, rpc_sh_acct_pol_show
,
469 N_("Show current account policy settings") },
470 { "badpw", NULL
, &ndr_table_samr
, rpc_sh_acct_set_badpw
,
471 N_("Set bad password count before lockout") },
472 { "lockduration", NULL
, &ndr_table_samr
, rpc_sh_acct_set_lockduration
,
473 N_("Set account lockout duration") },
474 { "resetduration", NULL
, &ndr_table_samr
,
475 rpc_sh_acct_set_resetduration
,
476 N_("Set bad password count reset duration") },
477 { "minpwage", NULL
, &ndr_table_samr
, rpc_sh_acct_set_minpwage
,
478 N_("Set minimum password age") },
479 { "maxpwage", NULL
, &ndr_table_samr
, rpc_sh_acct_set_maxpwage
,
480 N_("Set maximum password age") },
481 { "minpwlen", NULL
, &ndr_table_samr
, rpc_sh_acct_set_minpwlen
,
482 N_("Set minimum password length") },
483 { "pwhistlen", NULL
, &ndr_table_samr
, rpc_sh_acct_set_pwhistlen
,
484 N_("Set the password history length") },
485 { NULL
, NULL
, 0, NULL
, NULL
}