2 Unix SMB/CIFS implementation.
3 passdb editing frontend
5 Copyright (C) Simo Sorce 2000
6 Copyright (C) Andrew Bartlett 2001
7 Copyright (C) Jelmer Vernooij 2002
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>.
25 #define BIT_BACKEND 0x00000004
26 #define BIT_VERBOSE 0x00000008
27 #define BIT_SPSTYLE 0x00000010
28 #define BIT_CAN_CHANGE 0x00000020
29 #define BIT_MUST_CHANGE 0x00000040
30 #define BIT_USERSIDS 0x00000080
31 #define BIT_FULLNAME 0x00000100
32 #define BIT_HOMEDIR 0x00000200
33 #define BIT_HDIRDRIVE 0x00000400
34 #define BIT_LOGSCRIPT 0x00000800
35 #define BIT_PROFILE 0x00001000
36 #define BIT_MACHINE 0x00002000
37 #define BIT_USERDOMAIN 0x00004000
38 #define BIT_USER 0x00008000
39 #define BIT_LIST 0x00010000
40 #define BIT_MODIFY 0x00020000
41 #define BIT_CREATE 0x00040000
42 #define BIT_DELETE 0x00080000
43 #define BIT_ACCPOLICY 0x00100000
44 #define BIT_ACCPOLVAL 0x00200000
45 #define BIT_ACCTCTRL 0x00400000
46 #define BIT_RESERV_7 0x00800000
47 #define BIT_IMPORT 0x01000000
48 #define BIT_EXPORT 0x02000000
49 #define BIT_FIX_INIT 0x04000000
50 #define BIT_BADPWRESET 0x08000000
51 #define BIT_LOGONHOURS 0x10000000
53 #define MASK_ALWAYS_GOOD 0x0000001F
54 #define MASK_USER_GOOD 0x00405FE0
56 /*********************************************************
57 Add all currently available users to another db
58 ********************************************************/
60 static int export_database (struct pdb_methods
*in
,
61 struct pdb_methods
*out
,
65 struct pdb_search
*u_search
;
66 struct samr_displayentry userentry
;
68 DEBUG(3, ("export_database: username=\"%s\"\n", username
? username
: "(NULL)"));
70 u_search
= pdb_search_init(PDB_USER_SEARCH
);
71 if (u_search
== NULL
) {
72 DEBUG(0, ("pdb_search_init failed\n"));
76 if (!in
->search_users(in
, u_search
, 0)) {
77 DEBUG(0, ("Could not start searching users\n"));
78 pdb_search_destroy(u_search
);
82 while (u_search
->next_entry(u_search
, &userentry
)) {
87 DEBUG(4, ("Processing account %s\n", userentry
.account_name
));
89 if ((username
!= NULL
)
90 && (strcmp(username
, userentry
.account_name
) != 0)) {
92 * ignore unwanted users
97 user
= samu_new(talloc_tos());
99 DEBUG(0, ("talloc failed\n"));
103 sid_compose(&user_sid
, get_global_sam_sid(), userentry
.rid
);
105 status
= in
->getsampwsid(in
, user
, &user_sid
);
107 if (!NT_STATUS_IS_OK(status
)) {
108 DEBUG(2, ("getsampwsid failed: %s\n",
114 account
= samu_new(NULL
);
115 if (account
== NULL
) {
116 fprintf(stderr
, "export_database: Memory allocation "
119 pdb_search_destroy(u_search
);
123 printf("Importing account for %s...", user
->username
);
124 status
= out
->getsampwnam(out
, account
, user
->username
);
126 if (NT_STATUS_IS_OK(status
)) {
127 status
= out
->update_sam_account( out
, user
);
129 status
= out
->add_sam_account(out
, user
);
132 if ( NT_STATUS_IS_OK(status
) ) {
138 TALLOC_FREE( account
);
142 pdb_search_destroy(u_search
);
147 /*********************************************************
148 Add all currently available group mappings to another db
149 ********************************************************/
151 static int export_groups (struct pdb_methods
*in
, struct pdb_methods
*out
)
153 GROUP_MAP
*maps
= NULL
;
154 size_t i
, entries
= 0;
157 status
= in
->enum_group_mapping(in
, get_global_sam_sid(),
158 SID_NAME_DOM_GRP
, &maps
, &entries
, False
);
160 if ( NT_STATUS_IS_ERR(status
) ) {
161 fprintf(stderr
, "Unable to enumerate group map entries.\n");
165 for (i
=0; i
<entries
; i
++) {
166 out
->add_group_mapping_entry(out
, &(maps
[i
]));
174 /*********************************************************
175 Reset account policies to their default values and remove marker
176 ********************************************************/
178 static int reinit_account_policies (void)
182 for (i
=1; decode_account_policy_name(i
) != NULL
; i
++) {
184 if (!account_policy_get_default(i
, &policy_value
)) {
185 fprintf(stderr
, "Can't get default account policy\n");
188 if (!account_policy_set(i
, policy_value
)) {
189 fprintf(stderr
, "Can't set account policy in tdb\n");
198 /*********************************************************
199 Add all currently available account policy from tdb to one backend
200 ********************************************************/
202 static int export_account_policies (struct pdb_methods
*in
, struct pdb_methods
*out
)
206 for ( i
=1; decode_account_policy_name(i
) != NULL
; i
++ ) {
210 status
= in
->get_account_policy(in
, i
, &policy_value
);
212 if ( NT_STATUS_IS_ERR(status
) ) {
213 fprintf(stderr
, "Unable to get account policy from %s\n", in
->name
);
217 status
= out
->set_account_policy(out
, i
, policy_value
);
219 if ( NT_STATUS_IS_ERR(status
) ) {
220 fprintf(stderr
, "Unable to migrate account policy to %s\n", out
->name
);
229 /*********************************************************
230 Print info from sam structure
231 **********************************************************/
233 static int print_sam_info (struct samu
*sam_pwent
, bool verbosity
, bool smbpwdstyle
)
238 /* TODO: chaeck if entry is a user or a workstation */
239 if (!sam_pwent
) return -1;
245 printf ("Unix username: %s\n", pdb_get_username(sam_pwent
));
246 printf ("NT username: %s\n", pdb_get_nt_username(sam_pwent
));
247 printf ("Account Flags: %s\n", pdb_encode_acct_ctrl(pdb_get_acct_ctrl(sam_pwent
), NEW_PW_FORMAT_SPACE_PADDED_LEN
));
248 printf ("User SID: %s\n",
249 sid_string_tos(pdb_get_user_sid(sam_pwent
)));
250 printf ("Primary Group SID: %s\n",
251 sid_string_tos(pdb_get_group_sid(sam_pwent
)));
252 printf ("Full Name: %s\n", pdb_get_fullname(sam_pwent
));
253 printf ("Home Directory: %s\n", pdb_get_homedir(sam_pwent
));
254 printf ("HomeDir Drive: %s\n", pdb_get_dir_drive(sam_pwent
));
255 printf ("Logon Script: %s\n", pdb_get_logon_script(sam_pwent
));
256 printf ("Profile Path: %s\n", pdb_get_profile_path(sam_pwent
));
257 printf ("Domain: %s\n", pdb_get_domain(sam_pwent
));
258 printf ("Account desc: %s\n", pdb_get_acct_desc(sam_pwent
));
259 printf ("Workstations: %s\n", pdb_get_workstations(sam_pwent
));
260 printf ("Munged dial: %s\n", pdb_get_munged_dial(sam_pwent
));
262 tmp
= pdb_get_logon_time(sam_pwent
);
263 printf ("Logon time: %s\n", tmp
? http_timestring(tmp
) : "0");
265 tmp
= pdb_get_logoff_time(sam_pwent
);
266 printf ("Logoff time: %s\n", tmp
? http_timestring(tmp
) : "0");
268 tmp
= pdb_get_kickoff_time(sam_pwent
);
269 printf ("Kickoff time: %s\n", tmp
? http_timestring(tmp
) : "0");
271 tmp
= pdb_get_pass_last_set_time(sam_pwent
);
272 printf ("Password last set: %s\n", tmp
? http_timestring(tmp
) : "0");
274 tmp
= pdb_get_pass_can_change_time(sam_pwent
);
275 printf ("Password can change: %s\n", tmp
? http_timestring(tmp
) : "0");
277 tmp
= pdb_get_pass_must_change_time(sam_pwent
);
278 printf ("Password must change: %s\n", tmp
? http_timestring(tmp
) : "0");
280 tmp
= pdb_get_bad_password_time(sam_pwent
);
281 printf ("Last bad password : %s\n", tmp
? http_timestring(tmp
) : "0");
282 printf ("Bad password count : %d\n",
283 pdb_get_bad_password_count(sam_pwent
));
285 hours
= pdb_get_hours(sam_pwent
);
286 pdb_sethexhours(temp
, hours
);
287 printf ("Logon hours : %s\n", temp
);
289 } else if (smbpwdstyle
) {
293 uid
= nametouid(pdb_get_username(sam_pwent
));
294 pdb_sethexpwd(lm_passwd
, pdb_get_lanman_passwd(sam_pwent
), pdb_get_acct_ctrl(sam_pwent
));
295 pdb_sethexpwd(nt_passwd
, pdb_get_nt_passwd(sam_pwent
), pdb_get_acct_ctrl(sam_pwent
));
297 printf("%s:%lu:%s:%s:%s:LCT-%08X:\n",
298 pdb_get_username(sam_pwent
),
302 pdb_encode_acct_ctrl(pdb_get_acct_ctrl(sam_pwent
),NEW_PW_FORMAT_SPACE_PADDED_LEN
),
303 (uint32
)convert_time_t_to_uint32(pdb_get_pass_last_set_time(sam_pwent
)));
305 uid
= nametouid(pdb_get_username(sam_pwent
));
306 printf ("%s:%lu:%s\n", pdb_get_username(sam_pwent
), (unsigned long)uid
,
307 pdb_get_fullname(sam_pwent
));
313 /*********************************************************
314 Get an Print User Info
315 **********************************************************/
317 static int print_user_info (struct pdb_methods
*in
, const char *username
, bool verbosity
, bool smbpwdstyle
)
319 struct samu
*sam_pwent
=NULL
;
322 if ( (sam_pwent
= samu_new( NULL
)) == NULL
) {
326 ret
= NT_STATUS_IS_OK(in
->getsampwnam (in
, sam_pwent
, username
));
329 fprintf (stderr
, "Username not found!\n");
330 TALLOC_FREE(sam_pwent
);
334 ret
=print_sam_info (sam_pwent
, verbosity
, smbpwdstyle
);
335 TALLOC_FREE(sam_pwent
);
340 /*********************************************************
342 **********************************************************/
343 static int print_users_list (struct pdb_methods
*in
, bool verbosity
, bool smbpwdstyle
)
345 struct pdb_search
*u_search
;
346 struct samr_displayentry userentry
;
348 u_search
= pdb_search_init(PDB_USER_SEARCH
);
349 if (u_search
== NULL
) {
350 DEBUG(0, ("pdb_search_init failed\n"));
354 if (!in
->search_users(in
, u_search
, 0)) {
355 DEBUG(0, ("Could not start searching users\n"));
356 pdb_search_destroy(u_search
);
360 while (u_search
->next_entry(u_search
, &userentry
)) {
361 struct samu
*sam_pwent
;
365 sam_pwent
= samu_new(talloc_tos());
366 if (sam_pwent
== NULL
) {
367 DEBUG(0, ("talloc failed\n"));
371 sid_compose(&user_sid
, get_global_sam_sid(), userentry
.rid
);
373 status
= in
->getsampwsid(in
, sam_pwent
, &user_sid
);
375 if (!NT_STATUS_IS_OK(status
)) {
376 DEBUG(2, ("getsampwsid failed: %s\n",
378 TALLOC_FREE(sam_pwent
);
383 printf ("---------------\n");
384 print_sam_info (sam_pwent
, verbosity
, smbpwdstyle
);
385 TALLOC_FREE(sam_pwent
);
387 pdb_search_destroy(u_search
);
392 /*********************************************************
393 Fix a list of Users for uninitialised passwords
394 **********************************************************/
395 static int fix_users_list (struct pdb_methods
*in
)
397 struct pdb_search
*u_search
;
398 struct samr_displayentry userentry
;
400 u_search
= pdb_search_init(PDB_USER_SEARCH
);
401 if (u_search
== NULL
) {
402 DEBUG(0, ("pdb_search_init failed\n"));
406 if (!in
->search_users(in
, u_search
, 0)) {
407 DEBUG(0, ("Could not start searching users\n"));
408 pdb_search_destroy(u_search
);
412 while (u_search
->next_entry(u_search
, &userentry
)) {
413 struct samu
*sam_pwent
;
417 sam_pwent
= samu_new(talloc_tos());
418 if (sam_pwent
== NULL
) {
419 DEBUG(0, ("talloc failed\n"));
423 sid_compose(&user_sid
, get_global_sam_sid(), userentry
.rid
);
425 status
= in
->getsampwsid(in
, sam_pwent
, &user_sid
);
427 if (!NT_STATUS_IS_OK(status
)) {
428 DEBUG(2, ("getsampwsid failed: %s\n",
430 TALLOC_FREE(sam_pwent
);
434 if (!NT_STATUS_IS_OK(pdb_update_sam_account(sam_pwent
))) {
435 printf("Update of user %s failed!\n",
436 pdb_get_username(sam_pwent
));
438 TALLOC_FREE(sam_pwent
);
440 pdb_search_destroy(u_search
);
444 /*********************************************************
446 **********************************************************/
448 static int set_user_info (struct pdb_methods
*in
, const char *username
,
449 const char *fullname
, const char *homedir
,
450 const char *acct_desc
,
451 const char *drive
, const char *script
,
452 const char *profile
, const char *account_control
,
453 const char *user_sid
, const char *user_domain
,
454 const bool badpw
, const bool hours
)
456 bool updated_autolock
= False
, updated_badpw
= False
;
457 struct samu
*sam_pwent
=NULL
;
460 if ( (sam_pwent
= samu_new( NULL
)) == NULL
) {
464 ret
= NT_STATUS_IS_OK(in
->getsampwnam (in
, sam_pwent
, username
));
466 fprintf (stderr
, "Username not found!\n");
467 TALLOC_FREE(sam_pwent
);
472 uint8 hours_array
[MAX_HOURS_LEN
];
475 hours_len
= pdb_get_hours_len(sam_pwent
);
476 memset(hours_array
, 0xff, hours_len
);
478 pdb_set_hours(sam_pwent
, hours_array
, PDB_CHANGED
);
481 if (!pdb_update_autolock_flag(sam_pwent
, &updated_autolock
)) {
482 DEBUG(2,("pdb_update_autolock_flag failed.\n"));
485 if (!pdb_update_bad_password_count(sam_pwent
, &updated_badpw
)) {
486 DEBUG(2,("pdb_update_bad_password_count failed.\n"));
490 pdb_set_fullname(sam_pwent
, fullname
, PDB_CHANGED
);
492 pdb_set_acct_desc(sam_pwent
, acct_desc
, PDB_CHANGED
);
494 pdb_set_homedir(sam_pwent
, homedir
, PDB_CHANGED
);
496 pdb_set_dir_drive(sam_pwent
,drive
, PDB_CHANGED
);
498 pdb_set_logon_script(sam_pwent
, script
, PDB_CHANGED
);
500 pdb_set_profile_path (sam_pwent
, profile
, PDB_CHANGED
);
502 pdb_set_domain(sam_pwent
, user_domain
, PDB_CHANGED
);
504 if (account_control
) {
505 uint32 not_settable
= ~(ACB_DISABLED
|ACB_HOMDIRREQ
|ACB_PWNOTREQ
|
506 ACB_PWNOEXP
|ACB_AUTOLOCK
);
508 uint32 newflag
= pdb_decode_acct_ctrl(account_control
);
510 if (newflag
& not_settable
) {
511 fprintf(stderr
, "Can only set [NDHLX] flags\n");
512 TALLOC_FREE(sam_pwent
);
516 pdb_set_acct_ctrl(sam_pwent
,
517 (pdb_get_acct_ctrl(sam_pwent
) & not_settable
) | newflag
,
522 if (!string_to_sid(&u_sid
, user_sid
)) {
523 /* not a complete sid, may be a RID, try building a SID */
526 if (sscanf(user_sid
, "%d", &u_rid
) != 1) {
527 fprintf(stderr
, "Error passed string is not a complete user SID or RID!\n");
530 sid_copy(&u_sid
, get_global_sam_sid());
531 sid_append_rid(&u_sid
, u_rid
);
533 pdb_set_user_sid (sam_pwent
, &u_sid
, PDB_CHANGED
);
537 pdb_set_bad_password_count(sam_pwent
, 0, PDB_CHANGED
);
538 pdb_set_bad_password_time(sam_pwent
, 0, PDB_CHANGED
);
541 if (NT_STATUS_IS_OK(in
->update_sam_account (in
, sam_pwent
)))
542 print_user_info (in
, username
, True
, False
);
544 fprintf (stderr
, "Unable to modify entry!\n");
545 TALLOC_FREE(sam_pwent
);
548 TALLOC_FREE(sam_pwent
);
552 /*********************************************************
554 **********************************************************/
555 static int new_user (struct pdb_methods
*in
, const char *username
,
556 const char *fullname
, const char *homedir
,
557 const char *drive
, const char *script
,
558 const char *profile
, char *user_sid
, bool stdin_get
)
560 struct samu
*sam_pwent
;
561 char *password1
, *password2
;
565 get_global_sam_sid();
567 if ( !(pwd
= getpwnam_alloc(talloc_autofree_context(), username
)) ) {
568 DEBUG(0,("Cannot locate Unix account for %s\n", username
));
572 if ( (sam_pwent
= samu_new( NULL
)) == NULL
) {
573 DEBUG(0, ("Memory allocation failure!\n"));
577 if (!NT_STATUS_IS_OK(samu_alloc_rid_unix(sam_pwent
, pwd
))) {
578 TALLOC_FREE( sam_pwent
);
580 DEBUG(0, ("could not create account to add new user %s\n", username
));
584 password1
= get_pass( "new password:", stdin_get
);
585 password2
= get_pass( "retype new password:", stdin_get
);
586 if ((rc_pwd_cmp
= strcmp (password1
, password2
))) {
587 fprintf (stderr
, "Passwords do not match!\n");
588 TALLOC_FREE(sam_pwent
);
590 pdb_set_plaintext_passwd(sam_pwent
, password1
);
593 memset(password1
, 0, strlen(password1
));
594 SAFE_FREE(password1
);
595 memset(password2
, 0, strlen(password2
));
596 SAFE_FREE(password2
);
598 /* pwds do _not_ match? */
603 pdb_set_fullname(sam_pwent
, fullname
, PDB_CHANGED
);
605 pdb_set_homedir (sam_pwent
, homedir
, PDB_CHANGED
);
607 pdb_set_dir_drive (sam_pwent
, drive
, PDB_CHANGED
);
609 pdb_set_logon_script(sam_pwent
, script
, PDB_CHANGED
);
611 pdb_set_profile_path (sam_pwent
, profile
, PDB_CHANGED
);
614 if (!string_to_sid(&u_sid
, user_sid
)) {
615 /* not a complete sid, may be a RID, try building a SID */
618 if (sscanf(user_sid
, "%d", &u_rid
) != 1) {
619 fprintf(stderr
, "Error passed string is not a complete user SID or RID!\n");
620 TALLOC_FREE(sam_pwent
);
623 sid_copy(&u_sid
, get_global_sam_sid());
624 sid_append_rid(&u_sid
, u_rid
);
626 pdb_set_user_sid (sam_pwent
, &u_sid
, PDB_CHANGED
);
629 pdb_set_acct_ctrl (sam_pwent
, ACB_NORMAL
, PDB_CHANGED
);
631 if (NT_STATUS_IS_OK(in
->add_sam_account (in
, sam_pwent
))) {
632 print_user_info (in
, username
, True
, False
);
634 fprintf (stderr
, "Unable to add user! (does it already exist?)\n");
635 TALLOC_FREE(sam_pwent
);
638 TALLOC_FREE(sam_pwent
);
642 /*********************************************************
644 **********************************************************/
646 static int new_machine (struct pdb_methods
*in
, const char *machine_in
)
648 struct samu
*sam_pwent
=NULL
;
650 fstring machineaccount
;
651 struct passwd
*pwd
= NULL
;
653 get_global_sam_sid();
655 if (strlen(machine_in
) == 0) {
656 fprintf(stderr
, "No machine name given\n");
660 fstrcpy(machinename
, machine_in
);
661 machinename
[15]= '\0';
663 if (machinename
[strlen (machinename
) -1] == '$')
664 machinename
[strlen (machinename
) -1] = '\0';
666 strlower_m(machinename
);
668 fstrcpy(machineaccount
, machinename
);
669 fstrcat(machineaccount
, "$");
671 if ( !(pwd
= getpwnam_alloc(talloc_autofree_context(), machineaccount
)) ) {
672 DEBUG(0,("Cannot locate Unix account for %s\n", machineaccount
));
676 if ( (sam_pwent
= samu_new( NULL
)) == NULL
) {
677 fprintf(stderr
, "Memory allocation error!\n");
682 if ( !NT_STATUS_IS_OK(samu_alloc_rid_unix(sam_pwent
, pwd
)) ) {
683 fprintf(stderr
, "Could not init sam from pw\n");
690 pdb_set_plaintext_passwd (sam_pwent
, machinename
);
691 pdb_set_username (sam_pwent
, machineaccount
, PDB_CHANGED
);
692 pdb_set_acct_ctrl (sam_pwent
, ACB_WSTRUST
, PDB_CHANGED
);
694 if (NT_STATUS_IS_OK(in
->add_sam_account (in
, sam_pwent
))) {
695 print_user_info (in
, machineaccount
, True
, False
);
697 fprintf (stderr
, "Unable to add machine! (does it already exist?)\n");
698 TALLOC_FREE(sam_pwent
);
701 TALLOC_FREE(sam_pwent
);
705 /*********************************************************
707 **********************************************************/
709 static int delete_user_entry (struct pdb_methods
*in
, const char *username
)
711 struct samu
*samaccount
= NULL
;
713 if ( (samaccount
= samu_new( NULL
)) == NULL
) {
717 if (!NT_STATUS_IS_OK(in
->getsampwnam(in
, samaccount
, username
))) {
718 fprintf (stderr
, "user %s does not exist in the passdb\n", username
);
722 if (!NT_STATUS_IS_OK(in
->delete_sam_account (in
, samaccount
))) {
723 fprintf (stderr
, "Unable to delete user %s\n", username
);
729 /*********************************************************
731 **********************************************************/
733 static int delete_machine_entry (struct pdb_methods
*in
, const char *machinename
)
736 struct samu
*samaccount
= NULL
;
738 if (strlen(machinename
) == 0) {
739 fprintf(stderr
, "No machine name given\n");
743 fstrcpy(name
, machinename
);
745 if (name
[strlen(name
)-1] != '$')
748 if ( (samaccount
= samu_new( NULL
)) == NULL
) {
752 if (!NT_STATUS_IS_OK(in
->getsampwnam(in
, samaccount
, name
))) {
753 fprintf (stderr
, "machine %s does not exist in the passdb\n", name
);
757 if (!NT_STATUS_IS_OK(in
->delete_sam_account (in
, samaccount
))) {
758 fprintf (stderr
, "Unable to delete machine %s\n", name
);
765 /*********************************************************
767 **********************************************************/
769 int main (int argc
, char **argv
)
771 static int list_users
= False
;
772 static int verbose
= False
;
773 static int spstyle
= False
;
774 static int machine
= False
;
775 static int add_user
= False
;
776 static int delete_user
= False
;
777 static int modify_user
= False
;
778 uint32 setparms
, checkparms
;
780 static char *full_name
= NULL
;
781 static char *acct_desc
= NULL
;
782 static const char *user_name
= NULL
;
783 static char *home_dir
= NULL
;
784 static char *home_drive
= NULL
;
785 static char *backend
= NULL
;
786 static char *backend_in
= NULL
;
787 static char *backend_out
= NULL
;
788 static int transfer_groups
= False
;
789 static int transfer_account_policies
= False
;
790 static int reset_account_policies
= False
;
791 static int force_initialised_password
= False
;
792 static char *logon_script
= NULL
;
793 static char *profile_path
= NULL
;
794 static char *user_domain
= NULL
;
795 static char *account_control
= NULL
;
796 static char *account_policy
= NULL
;
797 static char *user_sid
= NULL
;
798 static long int account_policy_value
= 0;
799 bool account_policy_value_set
= False
;
800 static int badpw_reset
= False
;
801 static int hours_reset
= False
;
802 static char *pwd_time_format
= NULL
;
803 static int pw_from_stdin
= False
;
804 struct pdb_methods
*bin
, *bout
, *bdef
;
805 char *configfile
= NULL
;
806 TALLOC_CTX
*frame
= talloc_stackframe();
808 struct poptOption long_options
[] = {
810 {"list", 'L', POPT_ARG_NONE
, &list_users
, 0, "list all users", NULL
},
811 {"verbose", 'v', POPT_ARG_NONE
, &verbose
, 0, "be verbose", NULL
},
812 {"smbpasswd-style", 'w',POPT_ARG_NONE
, &spstyle
, 0, "give output in smbpasswd style", NULL
},
813 {"user", 'u', POPT_ARG_STRING
, &user_name
, 0, "use username", "USER" },
814 {"account-desc", 'N', POPT_ARG_STRING
, &acct_desc
, 0, "set account description", NULL
},
815 {"fullname", 'f', POPT_ARG_STRING
, &full_name
, 0, "set full name", NULL
},
816 {"homedir", 'h', POPT_ARG_STRING
, &home_dir
, 0, "set home directory", NULL
},
817 {"drive", 'D', POPT_ARG_STRING
, &home_drive
, 0, "set home drive", NULL
},
818 {"script", 'S', POPT_ARG_STRING
, &logon_script
, 0, "set logon script", NULL
},
819 {"profile", 'p', POPT_ARG_STRING
, &profile_path
, 0, "set profile path", NULL
},
820 {"domain", 'I', POPT_ARG_STRING
, &user_domain
, 0, "set a users' domain", NULL
},
821 {"user SID", 'U', POPT_ARG_STRING
, &user_sid
, 0, "set user SID or RID", NULL
},
822 {"create", 'a', POPT_ARG_NONE
, &add_user
, 0, "create user", NULL
},
823 {"modify", 'r', POPT_ARG_NONE
, &modify_user
, 0, "modify user", NULL
},
824 {"machine", 'm', POPT_ARG_NONE
, &machine
, 0, "account is a machine account", NULL
},
825 {"delete", 'x', POPT_ARG_NONE
, &delete_user
, 0, "delete user", NULL
},
826 {"backend", 'b', POPT_ARG_STRING
, &backend
, 0, "use different passdb backend as default backend", NULL
},
827 {"import", 'i', POPT_ARG_STRING
, &backend_in
, 0, "import user accounts from this backend", NULL
},
828 {"export", 'e', POPT_ARG_STRING
, &backend_out
, 0, "export user accounts to this backend", NULL
},
829 {"group", 'g', POPT_ARG_NONE
, &transfer_groups
, 0, "use -i and -e for groups", NULL
},
830 {"policies", 'y', POPT_ARG_NONE
, &transfer_account_policies
, 0, "use -i and -e to move account policies between backends", NULL
},
831 {"policies-reset", 0, POPT_ARG_NONE
, &reset_account_policies
, 0, "restore default policies", NULL
},
832 {"account-policy", 'P', POPT_ARG_STRING
, &account_policy
, 0,"value of an account policy (like maximum password age)",NULL
},
833 {"value", 'C', POPT_ARG_LONG
, &account_policy_value
, 'C',"set the account policy to this value", NULL
},
834 {"account-control", 'c', POPT_ARG_STRING
, &account_control
, 0, "Values of account control", NULL
},
835 {"force-initialized-passwords", 0, POPT_ARG_NONE
, &force_initialised_password
, 0, "Force initialization of corrupt password strings in a passdb backend", NULL
},
836 {"bad-password-count-reset", 'z', POPT_ARG_NONE
, &badpw_reset
, 0, "reset bad password count", NULL
},
837 {"logon-hours-reset", 'Z', POPT_ARG_NONE
, &hours_reset
, 0, "reset logon hours", NULL
},
838 {"time-format", 0, POPT_ARG_STRING
, &pwd_time_format
, 0, "The time format for time parameters", NULL
},
839 {"password-from-stdin", 't', POPT_ARG_NONE
, &pw_from_stdin
, 0, "get password from standard in", NULL
},
844 /* we shouldn't have silly checks like this */
846 d_fprintf(stderr
, "You must be root to use pdbedit\n");
851 bin
= bout
= bdef
= NULL
;
855 setup_logging("pdbedit", True
);
857 pc
= poptGetContext(NULL
, argc
, (const char **) argv
, long_options
,
858 POPT_CONTEXT_KEEP_FIRST
);
860 while((opt
= poptGetNextOpt(pc
)) != -1) {
863 account_policy_value_set
= True
;
871 poptGetArg(pc
); /* Drop argv[0], the program name */
873 if (user_name
== NULL
)
874 user_name
= poptGetArg(pc
);
876 if (!lp_load(get_dyn_CONFIGFILE(),True
,False
,False
,True
)) {
877 fprintf(stderr
, "Can't load %s - run testparm to debug it\n", get_dyn_CONFIGFILE());
881 if(!initialize_password_db(False
, NULL
))
887 setparms
= (backend
? BIT_BACKEND
: 0) +
888 (verbose
? BIT_VERBOSE
: 0) +
889 (spstyle
? BIT_SPSTYLE
: 0) +
890 (full_name
? BIT_FULLNAME
: 0) +
891 (home_dir
? BIT_HOMEDIR
: 0) +
892 (home_drive
? BIT_HDIRDRIVE
: 0) +
893 (logon_script
? BIT_LOGSCRIPT
: 0) +
894 (profile_path
? BIT_PROFILE
: 0) +
895 (user_domain
? BIT_USERDOMAIN
: 0) +
896 (machine
? BIT_MACHINE
: 0) +
897 (user_name
? BIT_USER
: 0) +
898 (list_users
? BIT_LIST
: 0) +
899 (force_initialised_password
? BIT_FIX_INIT
: 0) +
900 (user_sid
? BIT_USERSIDS
: 0) +
901 (modify_user
? BIT_MODIFY
: 0) +
902 (add_user
? BIT_CREATE
: 0) +
903 (delete_user
? BIT_DELETE
: 0) +
904 (account_control
? BIT_ACCTCTRL
: 0) +
905 (account_policy
? BIT_ACCPOLICY
: 0) +
906 (account_policy_value_set
? BIT_ACCPOLVAL
: 0) +
907 (backend_in
? BIT_IMPORT
: 0) +
908 (backend_out
? BIT_EXPORT
: 0) +
909 (badpw_reset
? BIT_BADPWRESET
: 0) +
910 (hours_reset
? BIT_LOGONHOURS
: 0);
912 if (setparms
& BIT_BACKEND
) {
913 if (!NT_STATUS_IS_OK(make_pdb_method_name( &bdef
, backend
))) {
914 fprintf(stderr
, "Can't initialize passdb backend.\n");
918 if (!NT_STATUS_IS_OK(make_pdb_method_name(&bdef
, lp_passdb_backend()))) {
919 fprintf(stderr
, "Can't initialize passdb backend.\n");
924 /* the lowest bit options are always accepted */
925 checkparms
= setparms
& ~MASK_ALWAYS_GOOD
;
927 if (checkparms
& BIT_FIX_INIT
) {
928 return fix_users_list(bdef
);
931 /* account policy operations */
932 if ((checkparms
& BIT_ACCPOLICY
) && !(checkparms
& ~(BIT_ACCPOLICY
+ BIT_ACCPOLVAL
))) {
934 int field
= account_policy_name_to_fieldnum(account_policy
);
939 account_policy_names_list(&names
, &count
);
940 fprintf(stderr
, "No account policy by that name!\n");
942 fprintf(stderr
, "Account policy names are:\n");
943 for (i
= 0; i
< count
; i
++) {
944 d_fprintf(stderr
, "%s\n", names
[i
]);
950 if (!pdb_get_account_policy(field
, &value
)) {
951 fprintf(stderr
, "valid account policy, but unable to fetch value!\n");
952 if (!account_policy_value_set
)
955 printf("account policy \"%s\" description: %s\n", account_policy
, account_policy_get_desc(field
));
956 if (account_policy_value_set
) {
957 printf("account policy \"%s\" value was: %u\n", account_policy
, value
);
958 if (!pdb_set_account_policy(field
, account_policy_value
)) {
959 fprintf(stderr
, "valid account policy, but unable to set value!\n");
962 printf("account policy \"%s\" value is now: %lu\n", account_policy
, account_policy_value
);
965 printf("account policy \"%s\" value is: %u\n", account_policy
, value
);
970 if (reset_account_policies
) {
971 if (!reinit_account_policies()) {
978 /* import and export operations */
980 if ( ((checkparms
& BIT_IMPORT
)
981 || (checkparms
& BIT_EXPORT
))
982 && !(checkparms
& ~(BIT_IMPORT
+BIT_EXPORT
+BIT_USER
)) )
989 status
= make_pdb_method_name(&bin
, backend_in
);
991 if ( !NT_STATUS_IS_OK(status
) ) {
992 fprintf(stderr
, "Unable to initialize %s.\n", backend_in
);
998 status
= make_pdb_method_name(&bout
, backend_out
);
1000 if ( !NT_STATUS_IS_OK(status
) ) {
1001 fprintf(stderr
, "Unable to initialize %s.\n", backend_out
);
1006 if (transfer_account_policies
) {
1008 if (!(checkparms
& BIT_USER
))
1009 return export_account_policies(bin
, bout
);
1011 } else if (transfer_groups
) {
1013 if (!(checkparms
& BIT_USER
))
1014 return export_groups(bin
, bout
);
1017 return export_database(bin
, bout
,
1018 (checkparms
& BIT_USER
) ? user_name
: NULL
);
1022 /* if BIT_USER is defined but nothing else then threat it as -l -u for compatibility */
1023 /* fake up BIT_LIST if only BIT_USER is defined */
1024 if ((checkparms
& BIT_USER
) && !(checkparms
& ~BIT_USER
)) {
1025 checkparms
+= BIT_LIST
;
1028 /* modify flag is optional to maintain backwards compatibility */
1029 /* fake up BIT_MODIFY if BIT_USER and at least one of MASK_USER_GOOD is defined */
1030 if (!((checkparms
& ~MASK_USER_GOOD
) & ~BIT_USER
) && (checkparms
& MASK_USER_GOOD
)) {
1031 checkparms
+= BIT_MODIFY
;
1034 /* list users operations */
1035 if (checkparms
& BIT_LIST
) {
1036 if (!(checkparms
& ~BIT_LIST
)) {
1037 return print_users_list (bdef
, verbose
, spstyle
);
1039 if (!(checkparms
& ~(BIT_USER
+ BIT_LIST
))) {
1040 return print_user_info (bdef
, user_name
, verbose
, spstyle
);
1044 /* mask out users options */
1045 checkparms
&= ~MASK_USER_GOOD
;
1047 /* if bad password count is reset, we must be modifying */
1048 if (checkparms
& BIT_BADPWRESET
) {
1049 checkparms
|= BIT_MODIFY
;
1050 checkparms
&= ~BIT_BADPWRESET
;
1053 /* if logon hours is reset, must modify */
1054 if (checkparms
& BIT_LOGONHOURS
) {
1055 checkparms
|= BIT_MODIFY
;
1056 checkparms
&= ~BIT_LOGONHOURS
;
1059 /* account operation */
1060 if ((checkparms
& BIT_CREATE
) || (checkparms
& BIT_MODIFY
) || (checkparms
& BIT_DELETE
)) {
1061 /* check use of -u option */
1062 if (!(checkparms
& BIT_USER
)) {
1063 fprintf (stderr
, "Username not specified! (use -u option)\n");
1067 /* account creation operations */
1068 if (!(checkparms
& ~(BIT_CREATE
+ BIT_USER
+ BIT_MACHINE
))) {
1069 if (checkparms
& BIT_MACHINE
) {
1070 return new_machine (bdef
, user_name
);
1072 return new_user (bdef
, user_name
, full_name
, home_dir
,
1073 home_drive
, logon_script
, profile_path
, user_sid
, pw_from_stdin
);
1077 /* account deletion operations */
1078 if (!(checkparms
& ~(BIT_DELETE
+ BIT_USER
+ BIT_MACHINE
))) {
1079 if (checkparms
& BIT_MACHINE
) {
1080 return delete_machine_entry (bdef
, user_name
);
1082 return delete_user_entry (bdef
, user_name
);
1086 /* account modification operations */
1087 if (!(checkparms
& ~(BIT_MODIFY
+ BIT_USER
))) {
1088 return set_user_info (bdef
, user_name
, full_name
, home_dir
,
1089 acct_desc
, home_drive
, logon_script
, profile_path
, account_control
,
1090 user_sid
, user_domain
, badpw_reset
, hours_reset
);
1094 if (setparms
>= 0x20) {
1095 fprintf (stderr
, "Incompatible or insufficient options on command line!\n");
1097 poptPrintHelp(pc
, stderr
, 0);