2 Unix SMB/CIFS implementation.
3 Password and authentication handling
4 Copyright (C) Jeremy Allison 1996-2001
5 Copyright (C) Luke Kenneth Casson Leighton 1996-1998
6 Copyright (C) Gerald (Jerry) Carter 2000-2006
7 Copyright (C) Andrew Bartlett 2001-2002
8 Copyright (C) Simo Sorce 2003
9 Copyright (C) Volker Lendecke 2006
11 This program is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 3 of the License, or
14 (at your option) any later version.
16 This program is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
21 You should have received a copy of the GNU General Public License
22 along with this program. If not, see <http://www.gnu.org/licenses/>.
27 #include "system/passwd.h"
28 #include "../libcli/auth/libcli_auth.h"
30 #include "../libcli/security/security.h"
31 #include "../lib/util/util_pw.h"
35 #define DBGC_CLASS DBGC_PASSDB
37 /******************************************************************
38 Get the default domain/netbios name to be used when
39 testing authentication.
41 LEGACY: this function provides the legacy domain mapping used with
42 the lp_map_untrusted_to_domain() parameter
43 ******************************************************************/
45 const char *my_sam_name(void)
47 /* Standalone servers can only use the local netbios name */
48 if ( lp_server_role() == ROLE_STANDALONE
)
49 return lp_netbios_name();
51 /* Default to the DOMAIN name when not specified */
52 return lp_workgroup();
55 /**********************************************************************
56 ***********************************************************************/
58 static int samu_destroy(struct samu
*user
)
60 data_blob_clear_free( &user
->lm_pw
);
61 data_blob_clear_free( &user
->nt_pw
);
63 if ( user
->plaintext_pw
)
64 memset( user
->plaintext_pw
, 0x0, strlen(user
->plaintext_pw
) );
69 /**********************************************************************
70 generate a new struct samuser
71 ***********************************************************************/
73 struct samu
*samu_new( TALLOC_CTX
*ctx
)
77 if ( !(user
= talloc_zero( ctx
, struct samu
)) ) {
78 DEBUG(0,("samuser_new: Talloc failed!\n"));
82 talloc_set_destructor( user
, samu_destroy
);
84 /* no initial methods */
88 /* Don't change these timestamp settings without a good reason.
89 They are important for NT member server compatibility. */
91 user
->logon_time
= (time_t)0;
92 user
->pass_last_set_time
= (time_t)0;
93 user
->pass_can_change_time
= (time_t)0;
94 user
->logoff_time
= get_time_t_max();
95 user
->kickoff_time
= get_time_t_max();
96 user
->fields_present
= 0x00ffffff;
97 user
->logon_divs
= 168; /* hours per week */
98 user
->hours_len
= 21; /* 21 times 8 bits = 168 */
99 memset(user
->hours
, 0xff, user
->hours_len
); /* available at all hours */
100 user
->bad_password_count
= 0;
101 user
->logon_count
= 0;
102 user
->unknown_6
= 0x000004ec; /* don't know */
104 /* Some parts of samba strlen their pdb_get...() returns,
105 so this keeps the interface unchanged for now. */
109 user
->nt_username
= "";
110 user
->full_name
= "";
112 user
->logon_script
= "";
113 user
->profile_path
= "";
114 user
->acct_desc
= "";
115 user
->workstations
= "";
117 user
->munged_dial
= "";
119 user
->plaintext_pw
= NULL
;
121 /* Unless we know otherwise have a Account Control Bit
122 value of 'normal user'. This helps User Manager, which
123 asks for a filtered list of users. */
125 user
->acct_ctrl
= ACB_NORMAL
;
130 static int count_commas(const char *str
)
133 const char *comma
= str
;
135 while ((comma
= strchr(comma
, ',')) != NULL
) {
142 /*********************************************************************
143 Initialize a struct samu from a struct passwd including the user
144 and group SIDs. The *user structure is filled out with the Unix
145 attributes and a user SID.
146 *********************************************************************/
148 static NTSTATUS
samu_set_unix_internal(struct pdb_methods
*methods
,
149 struct samu
*user
, const struct passwd
*pwd
, bool create
)
151 const char *guest_account
= lp_guestaccount();
152 const char *domain
= lp_netbios_name();
157 return NT_STATUS_NO_SUCH_USER
;
160 /* Basic properties based upon the Unix account information */
162 pdb_set_username(user
, pwd
->pw_name
, PDB_SET
);
166 if (count_commas(pwd
->pw_gecos
) == 3) {
168 * Heuristic: This seems to be a gecos field that has been
169 * edited by chfn(1). Only use the part before the first
170 * comma. Fixes bug 5198.
172 fullname
= talloc_strndup(
173 talloc_tos(), pwd
->pw_gecos
,
174 strchr(pwd
->pw_gecos
, ',') - pwd
->pw_gecos
);
177 if (fullname
!= NULL
) {
178 pdb_set_fullname(user
, fullname
, PDB_SET
);
180 pdb_set_fullname(user
, pwd
->pw_gecos
, PDB_SET
);
182 TALLOC_FREE(fullname
);
184 pdb_set_domain (user
, get_global_sam_name(), PDB_DEFAULT
);
186 /* This can lead to a primary group of S-1-22-2-XX which
187 will be rejected by other parts of the Samba code.
188 Rely on pdb_get_group_sid() to "Do The Right Thing" (TM)
191 gid_to_sid(&group_sid
, pwd
->pw_gid
);
192 pdb_set_group_sid(user
, &group_sid
, PDB_SET
);
195 /* save the password structure for later use */
197 user
->unix_pw
= tcopy_passwd( user
, pwd
);
199 /* Special case for the guest account which must have a RID of 501 */
201 if ( strequal( pwd
->pw_name
, guest_account
) ) {
202 if ( !pdb_set_user_sid_from_rid(user
, DOMAIN_RID_GUEST
, PDB_DEFAULT
)) {
203 return NT_STATUS_NO_SUCH_USER
;
208 /* Non-guest accounts...Check for a workstation or user account */
210 if (pwd
->pw_name
[strlen(pwd
->pw_name
)-1] == '$') {
213 if (!pdb_set_acct_ctrl(user
, ACB_WSTRUST
, PDB_DEFAULT
)) {
214 DEBUG(1, ("Failed to set 'workstation account' flags for user %s.\n",
216 return NT_STATUS_INVALID_COMPUTER_NAME
;
222 if (!pdb_set_acct_ctrl(user
, ACB_NORMAL
, PDB_DEFAULT
)) {
223 DEBUG(1, ("Failed to set 'normal account' flags for user %s.\n",
225 return NT_STATUS_INVALID_ACCOUNT_NAME
;
228 /* set some basic attributes */
230 pdb_set_profile_path(user
, talloc_sub_specified(user
,
231 lp_logon_path(), pwd
->pw_name
, domain
, pwd
->pw_uid
, pwd
->pw_gid
),
233 pdb_set_homedir(user
, talloc_sub_specified(user
,
234 lp_logon_home(), pwd
->pw_name
, domain
, pwd
->pw_uid
, pwd
->pw_gid
),
236 pdb_set_dir_drive(user
, talloc_sub_specified(user
,
237 lp_logon_drive(), pwd
->pw_name
, domain
, pwd
->pw_uid
, pwd
->pw_gid
),
239 pdb_set_logon_script(user
, talloc_sub_specified(user
,
240 lp_logon_script(), pwd
->pw_name
, domain
, pwd
->pw_uid
, pwd
->pw_gid
),
244 /* Now deal with the user SID. If we have a backend that can generate
245 RIDs, then do so. But sometimes the caller just wanted a structure
246 initialized and will fill in these fields later (such as from a
247 netr_SamInfo3 structure) */
249 if ( create
&& (methods
->capabilities(methods
) & PDB_CAP_STORE_RIDS
)) {
251 struct dom_sid user_sid
;
253 if ( !methods
->new_rid(methods
, &user_rid
) ) {
254 DEBUG(3, ("Could not allocate a new RID\n"));
255 return NT_STATUS_ACCESS_DENIED
;
258 sid_compose(&user_sid
, get_global_sam_sid(), user_rid
);
260 if ( !pdb_set_user_sid(user
, &user_sid
, PDB_SET
) ) {
261 DEBUG(3, ("pdb_set_user_sid failed\n"));
262 return NT_STATUS_INTERNAL_ERROR
;
268 /* generate a SID for the user with the RID algorithm */
270 urid
= algorithmic_pdb_uid_to_user_rid( user
->unix_pw
->pw_uid
);
272 if ( !pdb_set_user_sid_from_rid( user
, urid
, PDB_SET
) ) {
273 return NT_STATUS_INTERNAL_ERROR
;
279 /********************************************************************
280 Set the Unix user attributes
281 ********************************************************************/
283 NTSTATUS
samu_set_unix(struct samu
*user
, const struct passwd
*pwd
)
285 return samu_set_unix_internal( NULL
, user
, pwd
, False
);
288 NTSTATUS
samu_alloc_rid_unix(struct pdb_methods
*methods
,
289 struct samu
*user
, const struct passwd
*pwd
)
291 return samu_set_unix_internal( methods
, user
, pwd
, True
);
294 /**********************************************************
295 Encode the account control bits into a string.
296 length = length of string to encode into (including terminating
297 null). length *MUST BE MORE THAN 2* !
298 **********************************************************/
300 char *pdb_encode_acct_ctrl(uint32_t acct_ctrl
, size_t length
)
307 SMB_ASSERT(length
<= sizeof(acct_str
));
311 if (acct_ctrl
& ACB_PWNOTREQ
) acct_str
[i
++] = 'N';
312 if (acct_ctrl
& ACB_DISABLED
) acct_str
[i
++] = 'D';
313 if (acct_ctrl
& ACB_HOMDIRREQ
) acct_str
[i
++] = 'H';
314 if (acct_ctrl
& ACB_TEMPDUP
) acct_str
[i
++] = 'T';
315 if (acct_ctrl
& ACB_NORMAL
) acct_str
[i
++] = 'U';
316 if (acct_ctrl
& ACB_MNS
) acct_str
[i
++] = 'M';
317 if (acct_ctrl
& ACB_WSTRUST
) acct_str
[i
++] = 'W';
318 if (acct_ctrl
& ACB_SVRTRUST
) acct_str
[i
++] = 'S';
319 if (acct_ctrl
& ACB_AUTOLOCK
) acct_str
[i
++] = 'L';
320 if (acct_ctrl
& ACB_PWNOEXP
) acct_str
[i
++] = 'X';
321 if (acct_ctrl
& ACB_DOMTRUST
) acct_str
[i
++] = 'I';
323 for ( ; i
< length
- 2 ; i
++ )
328 acct_str
[i
++] = '\0';
330 result
= talloc_strdup(talloc_tos(), acct_str
);
331 SMB_ASSERT(result
!= NULL
);
335 /**********************************************************
336 Decode the account control bits from a string.
337 **********************************************************/
339 uint32_t pdb_decode_acct_ctrl(const char *p
)
341 uint32_t acct_ctrl
= 0;
342 bool finished
= false;
345 * Check if the account type bits have been encoded after the
346 * NT password (in the form [NDHTUWSLXI]).
352 for (p
++; *p
&& !finished
; p
++) {
354 case 'N': { acct_ctrl
|= ACB_PWNOTREQ
; break; /* 'N'o password. */ }
355 case 'D': { acct_ctrl
|= ACB_DISABLED
; break; /* 'D'isabled. */ }
356 case 'H': { acct_ctrl
|= ACB_HOMDIRREQ
; break; /* 'H'omedir required. */ }
357 case 'T': { acct_ctrl
|= ACB_TEMPDUP
; break; /* 'T'emp account. */ }
358 case 'U': { acct_ctrl
|= ACB_NORMAL
; break; /* 'U'ser account (normal). */ }
359 case 'M': { acct_ctrl
|= ACB_MNS
; break; /* 'M'NS logon user account. What is this ? */ }
360 case 'W': { acct_ctrl
|= ACB_WSTRUST
; break; /* 'W'orkstation account. */ }
361 case 'S': { acct_ctrl
|= ACB_SVRTRUST
; break; /* 'S'erver account. */ }
362 case 'L': { acct_ctrl
|= ACB_AUTOLOCK
; break; /* 'L'ocked account. */ }
363 case 'X': { acct_ctrl
|= ACB_PWNOEXP
; break; /* No 'X'piry on password */ }
364 case 'I': { acct_ctrl
|= ACB_DOMTRUST
; break; /* 'I'nterdomain trust account. */ }
370 default: { finished
= true; }
377 /*************************************************************
378 Routine to set 32 hex password characters from a 16 byte array.
379 **************************************************************/
381 void pdb_sethexpwd(char p
[33], const unsigned char *pwd
, uint32_t acct_ctrl
)
384 hex_encode_buf(p
, pwd
, 16);
386 if (acct_ctrl
& ACB_PWNOTREQ
)
387 strlcpy(p
, "NO PASSWORDXXXXXXXXXXXXXXXXXXXXX", 33);
389 strlcpy(p
, "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", 33);
393 /*************************************************************
394 Routine to get the 32 hex characters and turn them
395 into a 16 byte array.
396 **************************************************************/
398 bool pdb_gethexpwd(const char *p
, unsigned char *pwd
)
401 unsigned char lonybble
, hinybble
;
402 const char *hexchars
= "0123456789ABCDEF";
408 for (i
= 0; i
< 32; i
+= 2) {
409 hinybble
= toupper_m(p
[i
]);
410 lonybble
= toupper_m(p
[i
+ 1]);
412 p1
= strchr(hexchars
, hinybble
);
413 p2
= strchr(hexchars
, lonybble
);
418 hinybble
= PTR_DIFF(p1
, hexchars
);
419 lonybble
= PTR_DIFF(p2
, hexchars
);
421 pwd
[i
/ 2] = (hinybble
<< 4) | lonybble
;
426 /*************************************************************
427 Routine to set 42 hex hours characters from a 21 byte array.
428 **************************************************************/
430 void pdb_sethexhours(char *p
, const unsigned char *hours
)
433 hex_encode_buf(p
, hours
, 21);
435 strlcpy(p
, "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF", 44);
439 /*************************************************************
440 Routine to get the 42 hex characters and turn them
441 into a 21 byte array.
442 **************************************************************/
444 bool pdb_gethexhours(const char *p
, unsigned char *hours
)
447 unsigned char lonybble
, hinybble
;
448 const char *hexchars
= "0123456789ABCDEF";
455 for (i
= 0; i
< 42; i
+= 2) {
456 hinybble
= toupper_m(p
[i
]);
457 lonybble
= toupper_m(p
[i
+ 1]);
459 p1
= strchr(hexchars
, hinybble
);
460 p2
= strchr(hexchars
, lonybble
);
466 hinybble
= PTR_DIFF(p1
, hexchars
);
467 lonybble
= PTR_DIFF(p2
, hexchars
);
469 hours
[i
/ 2] = (hinybble
<< 4) | lonybble
;
474 /********************************************************************
475 ********************************************************************/
477 int algorithmic_rid_base(void)
481 rid_offset
= lp_algorithmic_rid_base();
483 if (rid_offset
< BASE_RID
) {
484 /* Try to prevent admin foot-shooting, we can't put algorithmic
485 rids below 1000, that's the 'well known RIDs' on NT */
486 DEBUG(0, ("'algorithmic rid base' must be equal to or above %ld\n", BASE_RID
));
487 rid_offset
= BASE_RID
;
489 if (rid_offset
& 1) {
490 DEBUG(0, ("algorithmic rid base must be even\n"));
496 /*******************************************************************
497 Converts NT user RID to a UNIX uid.
498 ********************************************************************/
500 uid_t
algorithmic_pdb_user_rid_to_uid(uint32_t user_rid
)
502 int rid_offset
= algorithmic_rid_base();
503 return (uid_t
)(((user_rid
& (~USER_RID_TYPE
)) - rid_offset
)/RID_MULTIPLIER
);
506 uid_t
max_algorithmic_uid(void)
508 return algorithmic_pdb_user_rid_to_uid(0xfffffffe);
511 /*******************************************************************
512 converts UNIX uid to an NT User RID.
513 ********************************************************************/
515 uint32_t algorithmic_pdb_uid_to_user_rid(uid_t uid
)
517 int rid_offset
= algorithmic_rid_base();
518 return (((((uint32_t)uid
)*RID_MULTIPLIER
) + rid_offset
) | USER_RID_TYPE
);
521 /*******************************************************************
522 Converts NT group RID to a UNIX gid.
523 ********************************************************************/
525 gid_t
pdb_group_rid_to_gid(uint32_t group_rid
)
527 int rid_offset
= algorithmic_rid_base();
528 return (gid_t
)(((group_rid
& (~GROUP_RID_TYPE
))- rid_offset
)/RID_MULTIPLIER
);
531 gid_t
max_algorithmic_gid(void)
533 return pdb_group_rid_to_gid(0xffffffff);
536 /*******************************************************************
537 converts NT Group RID to a UNIX uid.
539 warning: you must not call that function only
540 you must do a call to the group mapping first.
541 there is not anymore a direct link between the gid and the rid.
542 ********************************************************************/
544 uint32_t algorithmic_pdb_gid_to_group_rid(gid_t gid
)
546 int rid_offset
= algorithmic_rid_base();
547 return (((((uint32_t)gid
)*RID_MULTIPLIER
) + rid_offset
) | GROUP_RID_TYPE
);
550 /*******************************************************************
551 Decides if a RID is a well known RID.
552 ********************************************************************/
554 static bool rid_is_well_known(uint32_t rid
)
556 /* Not using rid_offset here, because this is the actual
557 NT fixed value (1000) */
559 return (rid
< BASE_RID
);
562 /*******************************************************************
563 Decides if a RID is a user or group RID.
564 ********************************************************************/
566 bool algorithmic_pdb_rid_is_user(uint32_t rid
)
568 if ( rid_is_well_known(rid
) ) {
570 * The only well known user RIDs are DOMAIN_RID_ADMINISTRATOR
571 * and DOMAIN_RID_GUEST.
573 if(rid
== DOMAIN_RID_ADMINISTRATOR
|| rid
== DOMAIN_RID_GUEST
)
575 } else if((rid
& RID_TYPE_MASK
) == USER_RID_TYPE
) {
581 /*******************************************************************
582 Convert a name into a SID. Used in the lookup name rpc.
583 ********************************************************************/
585 bool lookup_global_sam_name(const char *name
, int flags
, uint32_t *rid
,
586 enum lsa_SidType
*type
)
591 /* Windows treats "MACHINE\None" as a special name for
592 rid 513 on non-DCs. You cannot create a user or group
593 name "None" on Windows. You will get an error that
594 the group already exists. */
596 if ( strequal( name
, "None" ) ) {
597 *rid
= DOMAIN_RID_USERS
;
598 *type
= SID_NAME_DOM_GRP
;
603 /* LOOKUP_NAME_GROUP is a hack to allow valid users = @foo to work
604 * correctly in the case where foo also exists as a user. If the flag
605 * is set, don't look for users at all. */
607 if ((flags
& LOOKUP_NAME_GROUP
) == 0) {
608 struct samu
*sam_account
= NULL
;
609 struct dom_sid user_sid
;
611 if ( !(sam_account
= samu_new( NULL
)) ) {
616 ret
= pdb_getsampwnam(sam_account
, name
);
620 sid_copy(&user_sid
, pdb_get_user_sid(sam_account
));
623 TALLOC_FREE(sam_account
);
626 if (!sid_check_is_in_our_sam(&user_sid
)) {
627 DEBUG(0, ("User %s with invalid SID %s in passdb\n",
628 name
, sid_string_dbg(&user_sid
)));
632 sid_peek_rid(&user_sid
, rid
);
633 *type
= SID_NAME_USER
;
639 * Maybe it is a group ?
642 map
= talloc_zero(NULL
, GROUP_MAP
);
648 ret
= pdb_getgrnam(map
, name
);
656 /* BUILTIN groups are looked up elsewhere */
657 if (!sid_check_is_in_our_sam(&map
->sid
)) {
658 DEBUG(10, ("Found group %s (%s) not in our domain -- "
659 "ignoring.", name
, sid_string_dbg(&map
->sid
)));
664 /* yes it's a mapped group */
665 sid_peek_rid(&map
->sid
, rid
);
666 *type
= map
->sid_name_use
;
671 /*************************************************************
672 Change a password entry in the local passdb backend.
675 - always called as root
676 - ignores the account type except when adding a new account
677 - will create/delete the unix account if the relative
678 add/delete user script is configured
680 *************************************************************/
682 NTSTATUS
local_password_change(const char *user_name
,
684 const char *new_passwd
,
689 struct samu
*sam_pass
;
699 tosctx
= talloc_tos();
701 sam_pass
= samu_new(tosctx
);
703 result
= NT_STATUS_NO_MEMORY
;
707 /* Get the smb passwd entry for this user */
708 user_exists
= pdb_getsampwnam(sam_pass
, user_name
);
710 /* Check delete first, we don't need to do anything else if we
711 * are going to delete the acocunt */
712 if (user_exists
&& (local_flags
& LOCAL_DELETE_USER
)) {
714 result
= pdb_delete_user(tosctx
, sam_pass
);
715 if (!NT_STATUS_IS_OK(result
)) {
716 ret
= asprintf(pp_err_str
,
717 "Failed to delete entry for user %s.\n",
722 result
= NT_STATUS_UNSUCCESSFUL
;
724 ret
= asprintf(pp_msg_str
,
725 "Deleted user %s.\n",
734 if (user_exists
&& (local_flags
& LOCAL_ADD_USER
)) {
735 /* the entry already existed */
736 local_flags
&= ~LOCAL_ADD_USER
;
739 if (!user_exists
&& !(local_flags
& LOCAL_ADD_USER
)) {
740 ret
= asprintf(pp_err_str
,
741 "Failed to find entry for user %s.\n",
746 result
= NT_STATUS_NO_SUCH_USER
;
750 /* First thing add the new user if we are required to do so */
751 if (local_flags
& LOCAL_ADD_USER
) {
753 if (local_flags
& LOCAL_TRUST_ACCOUNT
) {
755 } else if (local_flags
& LOCAL_INTERDOM_ACCOUNT
) {
761 result
= pdb_create_user(tosctx
, user_name
, acb
, &rid
);
762 if (!NT_STATUS_IS_OK(result
)) {
763 ret
= asprintf(pp_err_str
,
764 "Failed to add entry for user %s.\n",
769 result
= NT_STATUS_UNSUCCESSFUL
;
773 sam_pass
= samu_new(tosctx
);
775 result
= NT_STATUS_NO_MEMORY
;
779 /* Now get back the smb passwd entry for this new user */
780 user_exists
= pdb_getsampwnam(sam_pass
, user_name
);
782 ret
= asprintf(pp_err_str
,
783 "Failed to add entry for user %s.\n",
788 result
= NT_STATUS_UNSUCCESSFUL
;
793 acb
= pdb_get_acct_ctrl(sam_pass
);
796 * We are root - just write the new password
797 * and the valid last change time.
799 if ((local_flags
& LOCAL_SET_NO_PASSWORD
) && !(acb
& ACB_PWNOTREQ
)) {
801 if (!pdb_set_acct_ctrl(sam_pass
, acb
, PDB_CHANGED
)) {
802 ret
= asprintf(pp_err_str
,
803 "Failed to set 'no password required' "
804 "flag for user %s.\n", user_name
);
808 result
= NT_STATUS_UNSUCCESSFUL
;
813 if (local_flags
& LOCAL_SET_PASSWORD
) {
815 * If we're dealing with setting a completely empty user account
816 * ie. One with a password of 'XXXX', but not set disabled (like
817 * an account created from scratch) then if the old password was
818 * 'XX's then getsmbpwent will have set the ACB_DISABLED flag.
819 * We remove that as we're giving this user their first password
820 * and the decision hasn't really been made to disable them (ie.
821 * don't create them disabled). JRA.
823 if ((pdb_get_lanman_passwd(sam_pass
) == NULL
) &&
824 (acb
& ACB_DISABLED
)) {
825 acb
&= (~ACB_DISABLED
);
826 if (!pdb_set_acct_ctrl(sam_pass
, acb
, PDB_CHANGED
)) {
827 ret
= asprintf(pp_err_str
,
828 "Failed to unset 'disabled' "
829 "flag for user %s.\n",
834 result
= NT_STATUS_UNSUCCESSFUL
;
839 acb
&= (~ACB_PWNOTREQ
);
840 if (!pdb_set_acct_ctrl(sam_pass
, acb
, PDB_CHANGED
)) {
841 ret
= asprintf(pp_err_str
,
842 "Failed to unset 'no password required'"
843 " flag for user %s.\n", user_name
);
847 result
= NT_STATUS_UNSUCCESSFUL
;
851 if (!pdb_set_plaintext_passwd(sam_pass
, new_passwd
)) {
852 ret
= asprintf(pp_err_str
,
853 "Failed to set password for "
854 "user %s.\n", user_name
);
858 result
= NT_STATUS_UNSUCCESSFUL
;
863 if ((local_flags
& LOCAL_DISABLE_USER
) && !(acb
& ACB_DISABLED
)) {
865 if (!pdb_set_acct_ctrl(sam_pass
, acb
, PDB_CHANGED
)) {
866 ret
= asprintf(pp_err_str
,
867 "Failed to set 'disabled' flag for "
868 "user %s.\n", user_name
);
872 result
= NT_STATUS_UNSUCCESSFUL
;
877 if ((local_flags
& LOCAL_ENABLE_USER
) && (acb
& ACB_DISABLED
)) {
878 acb
&= (~ACB_DISABLED
);
879 if (!pdb_set_acct_ctrl(sam_pass
, acb
, PDB_CHANGED
)) {
880 ret
= asprintf(pp_err_str
,
881 "Failed to unset 'disabled' flag for "
882 "user %s.\n", user_name
);
886 result
= NT_STATUS_UNSUCCESSFUL
;
891 /* now commit changes if any */
892 result
= pdb_update_sam_account(sam_pass
);
893 if (!NT_STATUS_IS_OK(result
)) {
894 ret
= asprintf(pp_err_str
,
895 "Failed to modify entry for user %s.\n",
903 if (local_flags
& LOCAL_ADD_USER
) {
904 ret
= asprintf(pp_msg_str
, "Added user %s.\n", user_name
);
905 } else if (local_flags
& LOCAL_DISABLE_USER
) {
906 ret
= asprintf(pp_msg_str
, "Disabled user %s.\n", user_name
);
907 } else if (local_flags
& LOCAL_ENABLE_USER
) {
908 ret
= asprintf(pp_msg_str
, "Enabled user %s.\n", user_name
);
909 } else if (local_flags
& LOCAL_SET_NO_PASSWORD
) {
910 ret
= asprintf(pp_msg_str
,
911 "User %s password set to none.\n", user_name
);
918 result
= NT_STATUS_OK
;
921 TALLOC_FREE(sam_pass
);
925 /**********************************************************************
926 Marshall/unmarshall struct samu structs.
927 *********************************************************************/
929 #define SAMU_BUFFER_FORMAT_V0 "ddddddBBBBBBBBBBBBddBBwdwdBwwd"
930 #define SAMU_BUFFER_FORMAT_V1 "dddddddBBBBBBBBBBBBddBBwdwdBwwd"
931 #define SAMU_BUFFER_FORMAT_V2 "dddddddBBBBBBBBBBBBddBBBwwdBwwd"
932 #define SAMU_BUFFER_FORMAT_V3 "dddddddBBBBBBBBBBBBddBBBdwdBwwd"
933 /* nothing changed between V3 and V4 */
935 /*********************************************************************
936 *********************************************************************/
938 static bool init_samu_from_buffer_v0(struct samu
*sampass
, uint8_t *buf
, uint32_t buflen
)
941 /* times are stored as 32bit integer
942 take care on system with 64bit wide time_t
948 pass_can_change_time
,
949 pass_must_change_time
;
950 char *username
= NULL
;
952 char *nt_username
= NULL
;
953 char *dir_drive
= NULL
;
954 char *unknown_str
= NULL
;
955 char *munged_dial
= NULL
;
956 char *fullname
= NULL
;
957 char *homedir
= NULL
;
958 char *logon_script
= NULL
;
959 char *profile_path
= NULL
;
960 char *acct_desc
= NULL
;
961 char *workstations
= NULL
;
962 uint32_t username_len
, domain_len
, nt_username_len
,
963 dir_drive_len
, unknown_str_len
, munged_dial_len
,
964 fullname_len
, homedir_len
, logon_script_len
,
965 profile_path_len
, acct_desc_len
, workstations_len
;
967 uint32_t user_rid
, group_rid
, remove_me
, hours_len
, unknown_6
;
968 uint16_t acct_ctrl
, logon_divs
;
969 uint16_t bad_password_count
, logon_count
;
970 uint8_t *hours
= NULL
;
971 uint8_t *lm_pw_ptr
= NULL
, *nt_pw_ptr
= NULL
;
973 uint32_t lm_pw_len
, nt_pw_len
, hourslen
;
976 if(sampass
== NULL
|| buf
== NULL
) {
977 DEBUG(0, ("init_samu_from_buffer_v0: NULL parameters found!\n"));
981 /* SAMU_BUFFER_FORMAT_V0 "ddddddBBBBBBBBBBBBddBBwdwdBwwd" */
983 /* unpack the buffer into variables */
984 len
= tdb_unpack (buf
, buflen
, SAMU_BUFFER_FORMAT_V0
,
986 &logoff_time
, /* d */
987 &kickoff_time
, /* d */
988 &pass_last_set_time
, /* d */
989 &pass_can_change_time
, /* d */
990 &pass_must_change_time
, /* d */
991 &username_len
, &username
, /* B */
992 &domain_len
, &domain
, /* B */
993 &nt_username_len
, &nt_username
, /* B */
994 &fullname_len
, &fullname
, /* B */
995 &homedir_len
, &homedir
, /* B */
996 &dir_drive_len
, &dir_drive
, /* B */
997 &logon_script_len
, &logon_script
, /* B */
998 &profile_path_len
, &profile_path
, /* B */
999 &acct_desc_len
, &acct_desc
, /* B */
1000 &workstations_len
, &workstations
, /* B */
1001 &unknown_str_len
, &unknown_str
, /* B */
1002 &munged_dial_len
, &munged_dial
, /* B */
1005 &lm_pw_len
, &lm_pw_ptr
, /* B */
1006 &nt_pw_len
, &nt_pw_ptr
, /* B */
1008 &remove_me
, /* remove on the next TDB_FORMAT upgarde */ /* d */
1009 &logon_divs
, /* w */
1011 &hourslen
, &hours
, /* B */
1012 &bad_password_count
, /* w */
1013 &logon_count
, /* w */
1014 &unknown_6
); /* d */
1016 if (len
== (uint32_t) -1) {
1021 pdb_set_logon_time(sampass
, logon_time
, PDB_SET
);
1022 pdb_set_logoff_time(sampass
, logoff_time
, PDB_SET
);
1023 pdb_set_kickoff_time(sampass
, kickoff_time
, PDB_SET
);
1024 pdb_set_pass_can_change_time(sampass
, pass_can_change_time
, PDB_SET
);
1025 pdb_set_pass_last_set_time(sampass
, pass_last_set_time
, PDB_SET
);
1027 pdb_set_username(sampass
, username
, PDB_SET
);
1028 pdb_set_domain(sampass
, domain
, PDB_SET
);
1029 pdb_set_nt_username(sampass
, nt_username
, PDB_SET
);
1030 pdb_set_fullname(sampass
, fullname
, PDB_SET
);
1033 pdb_set_homedir(sampass
, homedir
, PDB_SET
);
1036 pdb_set_homedir(sampass
,
1037 talloc_sub_basic(sampass
, username
, domain
,
1043 pdb_set_dir_drive(sampass
, dir_drive
, PDB_SET
);
1045 pdb_set_dir_drive(sampass
,
1046 talloc_sub_basic(sampass
, username
, domain
,
1052 pdb_set_logon_script(sampass
, logon_script
, PDB_SET
);
1054 pdb_set_logon_script(sampass
,
1055 talloc_sub_basic(sampass
, username
, domain
,
1061 pdb_set_profile_path(sampass
, profile_path
, PDB_SET
);
1063 pdb_set_profile_path(sampass
,
1064 talloc_sub_basic(sampass
, username
, domain
,
1069 pdb_set_acct_desc(sampass
, acct_desc
, PDB_SET
);
1070 pdb_set_workstations(sampass
, workstations
, PDB_SET
);
1071 pdb_set_munged_dial(sampass
, munged_dial
, PDB_SET
);
1073 if (lm_pw_ptr
&& lm_pw_len
== LM_HASH_LEN
) {
1074 if (!pdb_set_lanman_passwd(sampass
, lm_pw_ptr
, PDB_SET
)) {
1080 if (nt_pw_ptr
&& nt_pw_len
== NT_HASH_LEN
) {
1081 if (!pdb_set_nt_passwd(sampass
, nt_pw_ptr
, PDB_SET
)) {
1087 pdb_set_pw_history(sampass
, NULL
, 0, PDB_SET
);
1088 pdb_set_user_sid_from_rid(sampass
, user_rid
, PDB_SET
);
1089 pdb_set_group_sid_from_rid(sampass
, group_rid
, PDB_SET
);
1090 pdb_set_hours_len(sampass
, hours_len
, PDB_SET
);
1091 pdb_set_bad_password_count(sampass
, bad_password_count
, PDB_SET
);
1092 pdb_set_logon_count(sampass
, logon_count
, PDB_SET
);
1093 pdb_set_unknown_6(sampass
, unknown_6
, PDB_SET
);
1094 pdb_set_acct_ctrl(sampass
, acct_ctrl
, PDB_SET
);
1095 pdb_set_logon_divs(sampass
, logon_divs
, PDB_SET
);
1096 pdb_set_hours(sampass
, hours
, hours_len
, PDB_SET
);
1100 SAFE_FREE(username
);
1102 SAFE_FREE(nt_username
);
1103 SAFE_FREE(fullname
);
1105 SAFE_FREE(dir_drive
);
1106 SAFE_FREE(logon_script
);
1107 SAFE_FREE(profile_path
);
1108 SAFE_FREE(acct_desc
);
1109 SAFE_FREE(workstations
);
1110 SAFE_FREE(munged_dial
);
1111 SAFE_FREE(unknown_str
);
1112 SAFE_FREE(lm_pw_ptr
);
1113 SAFE_FREE(nt_pw_ptr
);
1119 /*********************************************************************
1120 *********************************************************************/
1122 static bool init_samu_from_buffer_v1(struct samu
*sampass
, uint8_t *buf
, uint32_t buflen
)
1125 /* times are stored as 32bit integer
1126 take care on system with 64bit wide time_t
1128 uint32_t logon_time
,
1133 pass_can_change_time
,
1134 pass_must_change_time
;
1135 char *username
= NULL
;
1136 char *domain
= NULL
;
1137 char *nt_username
= NULL
;
1138 char *dir_drive
= NULL
;
1139 char *unknown_str
= NULL
;
1140 char *munged_dial
= NULL
;
1141 char *fullname
= NULL
;
1142 char *homedir
= NULL
;
1143 char *logon_script
= NULL
;
1144 char *profile_path
= NULL
;
1145 char *acct_desc
= NULL
;
1146 char *workstations
= NULL
;
1147 uint32_t username_len
, domain_len
, nt_username_len
,
1148 dir_drive_len
, unknown_str_len
, munged_dial_len
,
1149 fullname_len
, homedir_len
, logon_script_len
,
1150 profile_path_len
, acct_desc_len
, workstations_len
;
1152 uint32_t user_rid
, group_rid
, remove_me
, hours_len
, unknown_6
;
1153 uint16_t acct_ctrl
, logon_divs
;
1154 uint16_t bad_password_count
, logon_count
;
1155 uint8_t *hours
= NULL
;
1156 uint8_t *lm_pw_ptr
= NULL
, *nt_pw_ptr
= NULL
;
1158 uint32_t lm_pw_len
, nt_pw_len
, hourslen
;
1161 if(sampass
== NULL
|| buf
== NULL
) {
1162 DEBUG(0, ("init_samu_from_buffer_v1: NULL parameters found!\n"));
1166 /* SAMU_BUFFER_FORMAT_V1 "dddddddBBBBBBBBBBBBddBBwdwdBwwd" */
1168 /* unpack the buffer into variables */
1169 len
= tdb_unpack (buf
, buflen
, SAMU_BUFFER_FORMAT_V1
,
1170 &logon_time
, /* d */
1171 &logoff_time
, /* d */
1172 &kickoff_time
, /* d */
1173 /* Change from V0 is addition of bad_password_time field. */
1174 &bad_password_time
, /* d */
1175 &pass_last_set_time
, /* d */
1176 &pass_can_change_time
, /* d */
1177 &pass_must_change_time
, /* d */
1178 &username_len
, &username
, /* B */
1179 &domain_len
, &domain
, /* B */
1180 &nt_username_len
, &nt_username
, /* B */
1181 &fullname_len
, &fullname
, /* B */
1182 &homedir_len
, &homedir
, /* B */
1183 &dir_drive_len
, &dir_drive
, /* B */
1184 &logon_script_len
, &logon_script
, /* B */
1185 &profile_path_len
, &profile_path
, /* B */
1186 &acct_desc_len
, &acct_desc
, /* B */
1187 &workstations_len
, &workstations
, /* B */
1188 &unknown_str_len
, &unknown_str
, /* B */
1189 &munged_dial_len
, &munged_dial
, /* B */
1192 &lm_pw_len
, &lm_pw_ptr
, /* B */
1193 &nt_pw_len
, &nt_pw_ptr
, /* B */
1196 &logon_divs
, /* w */
1198 &hourslen
, &hours
, /* B */
1199 &bad_password_count
, /* w */
1200 &logon_count
, /* w */
1201 &unknown_6
); /* d */
1203 if (len
== (uint32_t) -1) {
1208 pdb_set_logon_time(sampass
, logon_time
, PDB_SET
);
1209 pdb_set_logoff_time(sampass
, logoff_time
, PDB_SET
);
1210 pdb_set_kickoff_time(sampass
, kickoff_time
, PDB_SET
);
1212 /* Change from V0 is addition of bad_password_time field. */
1213 pdb_set_bad_password_time(sampass
, bad_password_time
, PDB_SET
);
1214 pdb_set_pass_can_change_time(sampass
, pass_can_change_time
, PDB_SET
);
1215 pdb_set_pass_last_set_time(sampass
, pass_last_set_time
, PDB_SET
);
1217 pdb_set_username(sampass
, username
, PDB_SET
);
1218 pdb_set_domain(sampass
, domain
, PDB_SET
);
1219 pdb_set_nt_username(sampass
, nt_username
, PDB_SET
);
1220 pdb_set_fullname(sampass
, fullname
, PDB_SET
);
1223 pdb_set_homedir(sampass
, homedir
, PDB_SET
);
1226 pdb_set_homedir(sampass
,
1227 talloc_sub_basic(sampass
, username
, domain
,
1233 pdb_set_dir_drive(sampass
, dir_drive
, PDB_SET
);
1235 pdb_set_dir_drive(sampass
,
1236 talloc_sub_basic(sampass
, username
, domain
,
1242 pdb_set_logon_script(sampass
, logon_script
, PDB_SET
);
1244 pdb_set_logon_script(sampass
,
1245 talloc_sub_basic(sampass
, username
, domain
,
1251 pdb_set_profile_path(sampass
, profile_path
, PDB_SET
);
1253 pdb_set_profile_path(sampass
,
1254 talloc_sub_basic(sampass
, username
, domain
,
1259 pdb_set_acct_desc(sampass
, acct_desc
, PDB_SET
);
1260 pdb_set_workstations(sampass
, workstations
, PDB_SET
);
1261 pdb_set_munged_dial(sampass
, munged_dial
, PDB_SET
);
1263 if (lm_pw_ptr
&& lm_pw_len
== LM_HASH_LEN
) {
1264 if (!pdb_set_lanman_passwd(sampass
, lm_pw_ptr
, PDB_SET
)) {
1270 if (nt_pw_ptr
&& nt_pw_len
== NT_HASH_LEN
) {
1271 if (!pdb_set_nt_passwd(sampass
, nt_pw_ptr
, PDB_SET
)) {
1277 pdb_set_pw_history(sampass
, NULL
, 0, PDB_SET
);
1279 pdb_set_user_sid_from_rid(sampass
, user_rid
, PDB_SET
);
1280 pdb_set_group_sid_from_rid(sampass
, group_rid
, PDB_SET
);
1281 pdb_set_hours_len(sampass
, hours_len
, PDB_SET
);
1282 pdb_set_bad_password_count(sampass
, bad_password_count
, PDB_SET
);
1283 pdb_set_logon_count(sampass
, logon_count
, PDB_SET
);
1284 pdb_set_unknown_6(sampass
, unknown_6
, PDB_SET
);
1285 pdb_set_acct_ctrl(sampass
, acct_ctrl
, PDB_SET
);
1286 pdb_set_logon_divs(sampass
, logon_divs
, PDB_SET
);
1287 pdb_set_hours(sampass
, hours
, hours_len
, PDB_SET
);
1291 SAFE_FREE(username
);
1293 SAFE_FREE(nt_username
);
1294 SAFE_FREE(fullname
);
1296 SAFE_FREE(dir_drive
);
1297 SAFE_FREE(logon_script
);
1298 SAFE_FREE(profile_path
);
1299 SAFE_FREE(acct_desc
);
1300 SAFE_FREE(workstations
);
1301 SAFE_FREE(munged_dial
);
1302 SAFE_FREE(unknown_str
);
1303 SAFE_FREE(lm_pw_ptr
);
1304 SAFE_FREE(nt_pw_ptr
);
1310 static bool init_samu_from_buffer_v2(struct samu
*sampass
, uint8_t *buf
, uint32_t buflen
)
1313 /* times are stored as 32bit integer
1314 take care on system with 64bit wide time_t
1316 uint32_t logon_time
,
1321 pass_can_change_time
,
1322 pass_must_change_time
;
1323 char *username
= NULL
;
1324 char *domain
= NULL
;
1325 char *nt_username
= NULL
;
1326 char *dir_drive
= NULL
;
1327 char *unknown_str
= NULL
;
1328 char *munged_dial
= NULL
;
1329 char *fullname
= NULL
;
1330 char *homedir
= NULL
;
1331 char *logon_script
= NULL
;
1332 char *profile_path
= NULL
;
1333 char *acct_desc
= NULL
;
1334 char *workstations
= NULL
;
1335 uint32_t username_len
, domain_len
, nt_username_len
,
1336 dir_drive_len
, unknown_str_len
, munged_dial_len
,
1337 fullname_len
, homedir_len
, logon_script_len
,
1338 profile_path_len
, acct_desc_len
, workstations_len
;
1340 uint32_t user_rid
, group_rid
, hours_len
, unknown_6
;
1341 uint16_t acct_ctrl
, logon_divs
;
1342 uint16_t bad_password_count
, logon_count
;
1343 uint8_t *hours
= NULL
;
1344 uint8_t *lm_pw_ptr
= NULL
, *nt_pw_ptr
= NULL
, *nt_pw_hist_ptr
= NULL
;
1346 uint32_t lm_pw_len
, nt_pw_len
, nt_pw_hist_len
, hourslen
;
1347 uint32_t pwHistLen
= 0;
1350 bool expand_explicit
= lp_passdb_expand_explicit();
1352 if(sampass
== NULL
|| buf
== NULL
) {
1353 DEBUG(0, ("init_samu_from_buffer_v2: NULL parameters found!\n"));
1357 /* SAMU_BUFFER_FORMAT_V2 "dddddddBBBBBBBBBBBBddBBBwwdBwwd" */
1359 /* unpack the buffer into variables */
1360 len
= tdb_unpack (buf
, buflen
, SAMU_BUFFER_FORMAT_V2
,
1361 &logon_time
, /* d */
1362 &logoff_time
, /* d */
1363 &kickoff_time
, /* d */
1364 &bad_password_time
, /* d */
1365 &pass_last_set_time
, /* d */
1366 &pass_can_change_time
, /* d */
1367 &pass_must_change_time
, /* d */
1368 &username_len
, &username
, /* B */
1369 &domain_len
, &domain
, /* B */
1370 &nt_username_len
, &nt_username
, /* B */
1371 &fullname_len
, &fullname
, /* B */
1372 &homedir_len
, &homedir
, /* B */
1373 &dir_drive_len
, &dir_drive
, /* B */
1374 &logon_script_len
, &logon_script
, /* B */
1375 &profile_path_len
, &profile_path
, /* B */
1376 &acct_desc_len
, &acct_desc
, /* B */
1377 &workstations_len
, &workstations
, /* B */
1378 &unknown_str_len
, &unknown_str
, /* B */
1379 &munged_dial_len
, &munged_dial
, /* B */
1382 &lm_pw_len
, &lm_pw_ptr
, /* B */
1383 &nt_pw_len
, &nt_pw_ptr
, /* B */
1384 /* Change from V1 is addition of password history field. */
1385 &nt_pw_hist_len
, &nt_pw_hist_ptr
, /* B */
1387 /* Also "remove_me" field was removed. */
1388 &logon_divs
, /* w */
1390 &hourslen
, &hours
, /* B */
1391 &bad_password_count
, /* w */
1392 &logon_count
, /* w */
1393 &unknown_6
); /* d */
1395 if (len
== (uint32_t) -1) {
1400 pdb_set_logon_time(sampass
, logon_time
, PDB_SET
);
1401 pdb_set_logoff_time(sampass
, logoff_time
, PDB_SET
);
1402 pdb_set_kickoff_time(sampass
, kickoff_time
, PDB_SET
);
1403 pdb_set_bad_password_time(sampass
, bad_password_time
, PDB_SET
);
1404 pdb_set_pass_can_change_time(sampass
, pass_can_change_time
, PDB_SET
);
1405 pdb_set_pass_last_set_time(sampass
, pass_last_set_time
, PDB_SET
);
1407 pdb_set_username(sampass
, username
, PDB_SET
);
1408 pdb_set_domain(sampass
, domain
, PDB_SET
);
1409 pdb_set_nt_username(sampass
, nt_username
, PDB_SET
);
1410 pdb_set_fullname(sampass
, fullname
, PDB_SET
);
1413 fstrcpy( tmp_string
, homedir
);
1414 if (expand_explicit
) {
1415 standard_sub_basic( username
, domain
, tmp_string
,
1416 sizeof(tmp_string
) );
1418 pdb_set_homedir(sampass
, tmp_string
, PDB_SET
);
1421 pdb_set_homedir(sampass
,
1422 talloc_sub_basic(sampass
, username
, domain
,
1428 pdb_set_dir_drive(sampass
, dir_drive
, PDB_SET
);
1430 pdb_set_dir_drive(sampass
, lp_logon_drive(), PDB_DEFAULT
);
1433 fstrcpy( tmp_string
, logon_script
);
1434 if (expand_explicit
) {
1435 standard_sub_basic( username
, domain
, tmp_string
,
1436 sizeof(tmp_string
) );
1438 pdb_set_logon_script(sampass
, tmp_string
, PDB_SET
);
1441 pdb_set_logon_script(sampass
,
1442 talloc_sub_basic(sampass
, username
, domain
,
1448 fstrcpy( tmp_string
, profile_path
);
1449 if (expand_explicit
) {
1450 standard_sub_basic( username
, domain
, tmp_string
,
1451 sizeof(tmp_string
) );
1453 pdb_set_profile_path(sampass
, tmp_string
, PDB_SET
);
1456 pdb_set_profile_path(sampass
,
1457 talloc_sub_basic(sampass
, username
, domain
,
1462 pdb_set_acct_desc(sampass
, acct_desc
, PDB_SET
);
1463 pdb_set_workstations(sampass
, workstations
, PDB_SET
);
1464 pdb_set_munged_dial(sampass
, munged_dial
, PDB_SET
);
1466 if (lm_pw_ptr
&& lm_pw_len
== LM_HASH_LEN
) {
1467 if (!pdb_set_lanman_passwd(sampass
, lm_pw_ptr
, PDB_SET
)) {
1473 if (nt_pw_ptr
&& nt_pw_len
== NT_HASH_LEN
) {
1474 if (!pdb_set_nt_passwd(sampass
, nt_pw_ptr
, PDB_SET
)) {
1480 /* Change from V1 is addition of password history field. */
1481 pdb_get_account_policy(PDB_POLICY_PASSWORD_HISTORY
, &pwHistLen
);
1483 uint8_t *pw_hist
= SMB_MALLOC_ARRAY(uint8_t, pwHistLen
* PW_HISTORY_ENTRY_LEN
);
1488 memset(pw_hist
, '\0', pwHistLen
* PW_HISTORY_ENTRY_LEN
);
1489 if (nt_pw_hist_ptr
&& nt_pw_hist_len
) {
1491 SMB_ASSERT((nt_pw_hist_len
% PW_HISTORY_ENTRY_LEN
) == 0);
1492 nt_pw_hist_len
/= PW_HISTORY_ENTRY_LEN
;
1493 for (i
= 0; (i
< pwHistLen
) && (i
< nt_pw_hist_len
); i
++) {
1494 memcpy(&pw_hist
[i
*PW_HISTORY_ENTRY_LEN
],
1495 &nt_pw_hist_ptr
[i
*PW_HISTORY_ENTRY_LEN
],
1496 PW_HISTORY_ENTRY_LEN
);
1499 if (!pdb_set_pw_history(sampass
, pw_hist
, pwHistLen
, PDB_SET
)) {
1506 pdb_set_pw_history(sampass
, NULL
, 0, PDB_SET
);
1509 pdb_set_user_sid_from_rid(sampass
, user_rid
, PDB_SET
);
1510 pdb_set_group_sid_from_rid(sampass
, group_rid
, PDB_SET
);
1511 pdb_set_hours_len(sampass
, hours_len
, PDB_SET
);
1512 pdb_set_bad_password_count(sampass
, bad_password_count
, PDB_SET
);
1513 pdb_set_logon_count(sampass
, logon_count
, PDB_SET
);
1514 pdb_set_unknown_6(sampass
, unknown_6
, PDB_SET
);
1515 pdb_set_acct_ctrl(sampass
, acct_ctrl
, PDB_SET
);
1516 pdb_set_logon_divs(sampass
, logon_divs
, PDB_SET
);
1517 pdb_set_hours(sampass
, hours
, hours_len
, PDB_SET
);
1521 SAFE_FREE(username
);
1523 SAFE_FREE(nt_username
);
1524 SAFE_FREE(fullname
);
1526 SAFE_FREE(dir_drive
);
1527 SAFE_FREE(logon_script
);
1528 SAFE_FREE(profile_path
);
1529 SAFE_FREE(acct_desc
);
1530 SAFE_FREE(workstations
);
1531 SAFE_FREE(munged_dial
);
1532 SAFE_FREE(unknown_str
);
1533 SAFE_FREE(lm_pw_ptr
);
1534 SAFE_FREE(nt_pw_ptr
);
1535 SAFE_FREE(nt_pw_hist_ptr
);
1541 /*********************************************************************
1542 *********************************************************************/
1544 static bool init_samu_from_buffer_v3(struct samu
*sampass
, uint8_t *buf
, uint32_t buflen
)
1547 /* times are stored as 32bit integer
1548 take care on system with 64bit wide time_t
1550 uint32_t logon_time
,
1555 pass_can_change_time
,
1556 pass_must_change_time
;
1557 char *username
= NULL
;
1558 char *domain
= NULL
;
1559 char *nt_username
= NULL
;
1560 char *dir_drive
= NULL
;
1561 char *comment
= NULL
;
1562 char *munged_dial
= NULL
;
1563 char *fullname
= NULL
;
1564 char *homedir
= NULL
;
1565 char *logon_script
= NULL
;
1566 char *profile_path
= NULL
;
1567 char *acct_desc
= NULL
;
1568 char *workstations
= NULL
;
1569 uint32_t username_len
, domain_len
, nt_username_len
,
1570 dir_drive_len
, comment_len
, munged_dial_len
,
1571 fullname_len
, homedir_len
, logon_script_len
,
1572 profile_path_len
, acct_desc_len
, workstations_len
;
1574 uint32_t user_rid
, group_rid
, hours_len
, unknown_6
, acct_ctrl
;
1575 uint16_t logon_divs
;
1576 uint16_t bad_password_count
, logon_count
;
1577 uint8_t *hours
= NULL
;
1578 uint8_t *lm_pw_ptr
= NULL
, *nt_pw_ptr
= NULL
, *nt_pw_hist_ptr
= NULL
;
1580 uint32_t lm_pw_len
, nt_pw_len
, nt_pw_hist_len
, hourslen
;
1581 uint32_t pwHistLen
= 0;
1584 bool expand_explicit
= lp_passdb_expand_explicit();
1586 if(sampass
== NULL
|| buf
== NULL
) {
1587 DEBUG(0, ("init_samu_from_buffer_v3: NULL parameters found!\n"));
1591 /* SAMU_BUFFER_FORMAT_V3 "dddddddBBBBBBBBBBBBddBBBdwdBwwd" */
1593 /* unpack the buffer into variables */
1594 len
= tdb_unpack (buf
, buflen
, SAMU_BUFFER_FORMAT_V3
,
1595 &logon_time
, /* d */
1596 &logoff_time
, /* d */
1597 &kickoff_time
, /* d */
1598 &bad_password_time
, /* d */
1599 &pass_last_set_time
, /* d */
1600 &pass_can_change_time
, /* d */
1601 &pass_must_change_time
, /* d */
1602 &username_len
, &username
, /* B */
1603 &domain_len
, &domain
, /* B */
1604 &nt_username_len
, &nt_username
, /* B */
1605 &fullname_len
, &fullname
, /* B */
1606 &homedir_len
, &homedir
, /* B */
1607 &dir_drive_len
, &dir_drive
, /* B */
1608 &logon_script_len
, &logon_script
, /* B */
1609 &profile_path_len
, &profile_path
, /* B */
1610 &acct_desc_len
, &acct_desc
, /* B */
1611 &workstations_len
, &workstations
, /* B */
1612 &comment_len
, &comment
, /* B */
1613 &munged_dial_len
, &munged_dial
, /* B */
1616 &lm_pw_len
, &lm_pw_ptr
, /* B */
1617 &nt_pw_len
, &nt_pw_ptr
, /* B */
1618 /* Change from V1 is addition of password history field. */
1619 &nt_pw_hist_len
, &nt_pw_hist_ptr
, /* B */
1620 /* Change from V2 is the uint32_t acb_mask */
1622 /* Also "remove_me" field was removed. */
1623 &logon_divs
, /* w */
1625 &hourslen
, &hours
, /* B */
1626 &bad_password_count
, /* w */
1627 &logon_count
, /* w */
1628 &unknown_6
); /* d */
1630 if (len
== (uint32_t) -1) {
1635 pdb_set_logon_time(sampass
, convert_uint32_t_to_time_t(logon_time
), PDB_SET
);
1636 pdb_set_logoff_time(sampass
, convert_uint32_t_to_time_t(logoff_time
), PDB_SET
);
1637 pdb_set_kickoff_time(sampass
, convert_uint32_t_to_time_t(kickoff_time
), PDB_SET
);
1638 pdb_set_bad_password_time(sampass
, convert_uint32_t_to_time_t(bad_password_time
), PDB_SET
);
1639 pdb_set_pass_can_change_time(sampass
, convert_uint32_t_to_time_t(pass_can_change_time
), PDB_SET
);
1640 pdb_set_pass_last_set_time(sampass
, convert_uint32_t_to_time_t(pass_last_set_time
), PDB_SET
);
1642 pdb_set_username(sampass
, username
, PDB_SET
);
1643 pdb_set_domain(sampass
, domain
, PDB_SET
);
1644 pdb_set_nt_username(sampass
, nt_username
, PDB_SET
);
1645 pdb_set_fullname(sampass
, fullname
, PDB_SET
);
1648 fstrcpy( tmp_string
, homedir
);
1649 if (expand_explicit
) {
1650 standard_sub_basic( username
, domain
, tmp_string
,
1651 sizeof(tmp_string
) );
1653 pdb_set_homedir(sampass
, tmp_string
, PDB_SET
);
1656 pdb_set_homedir(sampass
,
1657 talloc_sub_basic(sampass
, username
, domain
,
1663 pdb_set_dir_drive(sampass
, dir_drive
, PDB_SET
);
1665 pdb_set_dir_drive(sampass
, lp_logon_drive(), PDB_DEFAULT
);
1668 fstrcpy( tmp_string
, logon_script
);
1669 if (expand_explicit
) {
1670 standard_sub_basic( username
, domain
, tmp_string
,
1671 sizeof(tmp_string
) );
1673 pdb_set_logon_script(sampass
, tmp_string
, PDB_SET
);
1676 pdb_set_logon_script(sampass
,
1677 talloc_sub_basic(sampass
, username
, domain
,
1683 fstrcpy( tmp_string
, profile_path
);
1684 if (expand_explicit
) {
1685 standard_sub_basic( username
, domain
, tmp_string
,
1686 sizeof(tmp_string
) );
1688 pdb_set_profile_path(sampass
, tmp_string
, PDB_SET
);
1691 pdb_set_profile_path(sampass
,
1692 talloc_sub_basic(sampass
, username
, domain
, lp_logon_path()),
1696 pdb_set_acct_desc(sampass
, acct_desc
, PDB_SET
);
1697 pdb_set_comment(sampass
, comment
, PDB_SET
);
1698 pdb_set_workstations(sampass
, workstations
, PDB_SET
);
1699 pdb_set_munged_dial(sampass
, munged_dial
, PDB_SET
);
1701 if (lm_pw_ptr
&& lm_pw_len
== LM_HASH_LEN
) {
1702 if (!pdb_set_lanman_passwd(sampass
, lm_pw_ptr
, PDB_SET
)) {
1708 if (nt_pw_ptr
&& nt_pw_len
== NT_HASH_LEN
) {
1709 if (!pdb_set_nt_passwd(sampass
, nt_pw_ptr
, PDB_SET
)) {
1715 pdb_get_account_policy(PDB_POLICY_PASSWORD_HISTORY
, &pwHistLen
);
1717 uint8_t *pw_hist
= (uint8_t *)SMB_MALLOC(pwHistLen
* PW_HISTORY_ENTRY_LEN
);
1722 memset(pw_hist
, '\0', pwHistLen
* PW_HISTORY_ENTRY_LEN
);
1723 if (nt_pw_hist_ptr
&& nt_pw_hist_len
) {
1725 SMB_ASSERT((nt_pw_hist_len
% PW_HISTORY_ENTRY_LEN
) == 0);
1726 nt_pw_hist_len
/= PW_HISTORY_ENTRY_LEN
;
1727 for (i
= 0; (i
< pwHistLen
) && (i
< nt_pw_hist_len
); i
++) {
1728 memcpy(&pw_hist
[i
*PW_HISTORY_ENTRY_LEN
],
1729 &nt_pw_hist_ptr
[i
*PW_HISTORY_ENTRY_LEN
],
1730 PW_HISTORY_ENTRY_LEN
);
1733 if (!pdb_set_pw_history(sampass
, pw_hist
, pwHistLen
, PDB_SET
)) {
1740 pdb_set_pw_history(sampass
, NULL
, 0, PDB_SET
);
1743 pdb_set_user_sid_from_rid(sampass
, user_rid
, PDB_SET
);
1744 pdb_set_hours_len(sampass
, hours_len
, PDB_SET
);
1745 pdb_set_bad_password_count(sampass
, bad_password_count
, PDB_SET
);
1746 pdb_set_logon_count(sampass
, logon_count
, PDB_SET
);
1747 pdb_set_unknown_6(sampass
, unknown_6
, PDB_SET
);
1748 /* Change from V2 is the uint32_t acct_ctrl */
1749 pdb_set_acct_ctrl(sampass
, acct_ctrl
, PDB_SET
);
1750 pdb_set_logon_divs(sampass
, logon_divs
, PDB_SET
);
1751 pdb_set_hours(sampass
, hours
, hours_len
, PDB_SET
);
1755 SAFE_FREE(username
);
1757 SAFE_FREE(nt_username
);
1758 SAFE_FREE(fullname
);
1760 SAFE_FREE(dir_drive
);
1761 SAFE_FREE(logon_script
);
1762 SAFE_FREE(profile_path
);
1763 SAFE_FREE(acct_desc
);
1764 SAFE_FREE(workstations
);
1765 SAFE_FREE(munged_dial
);
1767 SAFE_FREE(lm_pw_ptr
);
1768 SAFE_FREE(nt_pw_ptr
);
1769 SAFE_FREE(nt_pw_hist_ptr
);
1775 /*********************************************************************
1776 *********************************************************************/
1778 static uint32_t init_buffer_from_samu_v3 (uint8_t **buf
, struct samu
*sampass
, bool size_only
)
1782 /* times are stored as 32bit integer
1783 take care on system with 64bit wide time_t
1785 uint32_t logon_time
,
1790 pass_can_change_time
,
1791 pass_must_change_time
;
1793 uint32_t user_rid
, group_rid
;
1795 const char *username
;
1797 const char *nt_username
;
1798 const char *dir_drive
;
1799 const char *comment
;
1800 const char *munged_dial
;
1801 const char *fullname
;
1802 const char *homedir
;
1803 const char *logon_script
;
1804 const char *profile_path
;
1805 const char *acct_desc
;
1806 const char *workstations
;
1807 uint32_t username_len
, domain_len
, nt_username_len
,
1808 dir_drive_len
, comment_len
, munged_dial_len
,
1809 fullname_len
, homedir_len
, logon_script_len
,
1810 profile_path_len
, acct_desc_len
, workstations_len
;
1812 const uint8_t *lm_pw
;
1813 const uint8_t *nt_pw
;
1814 const uint8_t *nt_pw_hist
;
1815 uint32_t lm_pw_len
= 16;
1816 uint32_t nt_pw_len
= 16;
1817 uint32_t nt_pw_hist_len
;
1818 uint32_t pwHistLen
= 0;
1823 logon_time
= convert_time_t_to_uint32_t(pdb_get_logon_time(sampass
));
1824 logoff_time
= convert_time_t_to_uint32_t(pdb_get_logoff_time(sampass
));
1825 kickoff_time
= convert_time_t_to_uint32_t(pdb_get_kickoff_time(sampass
));
1826 bad_password_time
= convert_time_t_to_uint32_t(pdb_get_bad_password_time(sampass
));
1827 pass_can_change_time
= convert_time_t_to_uint32_t(pdb_get_pass_can_change_time_noncalc(sampass
));
1828 pass_must_change_time
= convert_time_t_to_uint32_t(pdb_get_pass_must_change_time(sampass
));
1829 pass_last_set_time
= convert_time_t_to_uint32_t(pdb_get_pass_last_set_time(sampass
));
1831 user_rid
= pdb_get_user_rid(sampass
);
1832 group_rid
= pdb_get_group_rid(sampass
);
1834 username
= pdb_get_username(sampass
);
1836 username_len
= strlen(username
) +1;
1841 domain
= pdb_get_domain(sampass
);
1843 domain_len
= strlen(domain
) +1;
1848 nt_username
= pdb_get_nt_username(sampass
);
1850 nt_username_len
= strlen(nt_username
) +1;
1852 nt_username_len
= 0;
1855 fullname
= pdb_get_fullname(sampass
);
1857 fullname_len
= strlen(fullname
) +1;
1863 * Only updates fields which have been set (not defaults from smb.conf)
1866 if (!IS_SAM_DEFAULT(sampass
, PDB_DRIVE
)) {
1867 dir_drive
= pdb_get_dir_drive(sampass
);
1872 dir_drive_len
= strlen(dir_drive
) +1;
1877 if (!IS_SAM_DEFAULT(sampass
, PDB_SMBHOME
)) {
1878 homedir
= pdb_get_homedir(sampass
);
1883 homedir_len
= strlen(homedir
) +1;
1888 if (!IS_SAM_DEFAULT(sampass
, PDB_LOGONSCRIPT
)) {
1889 logon_script
= pdb_get_logon_script(sampass
);
1891 logon_script
= NULL
;
1894 logon_script_len
= strlen(logon_script
) +1;
1896 logon_script_len
= 0;
1899 if (!IS_SAM_DEFAULT(sampass
, PDB_PROFILE
)) {
1900 profile_path
= pdb_get_profile_path(sampass
);
1902 profile_path
= NULL
;
1905 profile_path_len
= strlen(profile_path
) +1;
1907 profile_path_len
= 0;
1910 lm_pw
= pdb_get_lanman_passwd(sampass
);
1915 nt_pw
= pdb_get_nt_passwd(sampass
);
1920 pdb_get_account_policy(PDB_POLICY_PASSWORD_HISTORY
, &pwHistLen
);
1921 nt_pw_hist
= pdb_get_pw_history(sampass
, &nt_pw_hist_len
);
1922 if (pwHistLen
&& nt_pw_hist
&& nt_pw_hist_len
) {
1923 nt_pw_hist_len
*= PW_HISTORY_ENTRY_LEN
;
1928 acct_desc
= pdb_get_acct_desc(sampass
);
1930 acct_desc_len
= strlen(acct_desc
) +1;
1935 workstations
= pdb_get_workstations(sampass
);
1937 workstations_len
= strlen(workstations
) +1;
1939 workstations_len
= 0;
1942 comment
= pdb_get_comment(sampass
);
1944 comment_len
= strlen(comment
) +1;
1949 munged_dial
= pdb_get_munged_dial(sampass
);
1951 munged_dial_len
= strlen(munged_dial
) +1;
1953 munged_dial_len
= 0;
1956 /* SAMU_BUFFER_FORMAT_V3 "dddddddBBBBBBBBBBBBddBBBdwdBwwd" */
1958 /* one time to get the size needed */
1959 len
= tdb_pack(NULL
, 0, SAMU_BUFFER_FORMAT_V3
,
1961 logoff_time
, /* d */
1962 kickoff_time
, /* d */
1963 bad_password_time
, /* d */
1964 pass_last_set_time
, /* d */
1965 pass_can_change_time
, /* d */
1966 pass_must_change_time
, /* d */
1967 username_len
, username
, /* B */
1968 domain_len
, domain
, /* B */
1969 nt_username_len
, nt_username
, /* B */
1970 fullname_len
, fullname
, /* B */
1971 homedir_len
, homedir
, /* B */
1972 dir_drive_len
, dir_drive
, /* B */
1973 logon_script_len
, logon_script
, /* B */
1974 profile_path_len
, profile_path
, /* B */
1975 acct_desc_len
, acct_desc
, /* B */
1976 workstations_len
, workstations
, /* B */
1977 comment_len
, comment
, /* B */
1978 munged_dial_len
, munged_dial
, /* B */
1981 lm_pw_len
, lm_pw
, /* B */
1982 nt_pw_len
, nt_pw
, /* B */
1983 nt_pw_hist_len
, nt_pw_hist
, /* B */
1984 pdb_get_acct_ctrl(sampass
), /* d */
1985 pdb_get_logon_divs(sampass
), /* w */
1986 pdb_get_hours_len(sampass
), /* d */
1987 MAX_HOURS_LEN
, pdb_get_hours(sampass
), /* B */
1988 pdb_get_bad_password_count(sampass
), /* w */
1989 pdb_get_logon_count(sampass
), /* w */
1990 pdb_get_unknown_6(sampass
)); /* d */
1996 /* malloc the space needed */
1997 if ( (*buf
=(uint8_t*)SMB_MALLOC(len
)) == NULL
) {
1998 DEBUG(0,("init_buffer_from_samu_v3: Unable to malloc() memory for buffer!\n"));
2002 /* now for the real call to tdb_pack() */
2003 buflen
= tdb_pack(*buf
, len
, SAMU_BUFFER_FORMAT_V3
,
2005 logoff_time
, /* d */
2006 kickoff_time
, /* d */
2007 bad_password_time
, /* d */
2008 pass_last_set_time
, /* d */
2009 pass_can_change_time
, /* d */
2010 pass_must_change_time
, /* d */
2011 username_len
, username
, /* B */
2012 domain_len
, domain
, /* B */
2013 nt_username_len
, nt_username
, /* B */
2014 fullname_len
, fullname
, /* B */
2015 homedir_len
, homedir
, /* B */
2016 dir_drive_len
, dir_drive
, /* B */
2017 logon_script_len
, logon_script
, /* B */
2018 profile_path_len
, profile_path
, /* B */
2019 acct_desc_len
, acct_desc
, /* B */
2020 workstations_len
, workstations
, /* B */
2021 comment_len
, comment
, /* B */
2022 munged_dial_len
, munged_dial
, /* B */
2025 lm_pw_len
, lm_pw
, /* B */
2026 nt_pw_len
, nt_pw
, /* B */
2027 nt_pw_hist_len
, nt_pw_hist
, /* B */
2028 pdb_get_acct_ctrl(sampass
), /* d */
2029 pdb_get_logon_divs(sampass
), /* w */
2030 pdb_get_hours_len(sampass
), /* d */
2031 MAX_HOURS_LEN
, pdb_get_hours(sampass
), /* B */
2032 pdb_get_bad_password_count(sampass
), /* w */
2033 pdb_get_logon_count(sampass
), /* w */
2034 pdb_get_unknown_6(sampass
)); /* d */
2036 /* check to make sure we got it correct */
2037 if (buflen
!= len
) {
2038 DEBUG(0, ("init_buffer_from_samu_v3: somthing odd is going on here: bufflen (%lu) != len (%lu) in tdb_pack operations!\n",
2039 (unsigned long)buflen
, (unsigned long)len
));
2048 static bool init_samu_from_buffer_v4(struct samu
*sampass
, uint8_t *buf
, uint32_t buflen
)
2050 /* nothing changed between V3 and V4 */
2051 return init_samu_from_buffer_v3(sampass
, buf
, buflen
);
2054 static uint32_t init_buffer_from_samu_v4(uint8_t **buf
, struct samu
*sampass
, bool size_only
)
2056 /* nothing changed between V3 and V4 */
2057 return init_buffer_from_samu_v3(buf
, sampass
, size_only
);
2060 /**********************************************************************
2061 Intialize a struct samu struct from a BYTE buffer of size len
2062 *********************************************************************/
2064 bool init_samu_from_buffer(struct samu
*sampass
, uint32_t level
,
2065 uint8_t *buf
, uint32_t buflen
)
2068 case SAMU_BUFFER_V0
:
2069 return init_samu_from_buffer_v0(sampass
, buf
, buflen
);
2070 case SAMU_BUFFER_V1
:
2071 return init_samu_from_buffer_v1(sampass
, buf
, buflen
);
2072 case SAMU_BUFFER_V2
:
2073 return init_samu_from_buffer_v2(sampass
, buf
, buflen
);
2074 case SAMU_BUFFER_V3
:
2075 return init_samu_from_buffer_v3(sampass
, buf
, buflen
);
2076 case SAMU_BUFFER_V4
:
2077 return init_samu_from_buffer_v4(sampass
, buf
, buflen
);
2083 /**********************************************************************
2084 Intialize a BYTE buffer from a struct samu struct
2085 *********************************************************************/
2087 uint32_t init_buffer_from_samu (uint8_t **buf
, struct samu
*sampass
, bool size_only
)
2089 return init_buffer_from_samu_v4(buf
, sampass
, size_only
);
2092 /*********************************************************************
2093 *********************************************************************/
2095 bool pdb_copy_sam_account(struct samu
*dst
, struct samu
*src
)
2097 uint8_t *buf
= NULL
;
2100 len
= init_buffer_from_samu(&buf
, src
, False
);
2101 if (len
== -1 || !buf
) {
2106 if (!init_samu_from_buffer( dst
, SAMU_BUFFER_LATEST
, buf
, len
)) {
2111 dst
->methods
= src
->methods
;
2113 if ( src
->unix_pw
) {
2114 dst
->unix_pw
= tcopy_passwd( dst
, src
->unix_pw
);
2115 if (!dst
->unix_pw
) {
2121 if (src
->group_sid
) {
2122 pdb_set_group_sid(dst
, src
->group_sid
, PDB_SET
);
2129 /*********************************************************************
2130 Update the bad password count checking the PDB_POLICY_RESET_COUNT_TIME
2131 *********************************************************************/
2133 bool pdb_update_bad_password_count(struct samu
*sampass
, bool *updated
)
2135 time_t LastBadPassword
;
2136 uint16_t BadPasswordCount
;
2140 BadPasswordCount
= pdb_get_bad_password_count(sampass
);
2141 if (!BadPasswordCount
) {
2142 DEBUG(9, ("No bad password attempts.\n"));
2147 res
= pdb_get_account_policy(PDB_POLICY_RESET_COUNT_TIME
, &resettime
);
2151 DEBUG(0, ("pdb_update_bad_password_count: pdb_get_account_policy failed.\n"));
2155 /* First, check if there is a reset time to compare */
2156 if ((resettime
== (uint32_t) -1) || (resettime
== 0)) {
2157 DEBUG(9, ("No reset time, can't reset bad pw count\n"));
2161 LastBadPassword
= pdb_get_bad_password_time(sampass
);
2162 DEBUG(7, ("LastBadPassword=%d, resettime=%d, current time=%d.\n",
2163 (uint32_t) LastBadPassword
, resettime
, (uint32_t)time(NULL
)));
2164 if (time(NULL
) > (LastBadPassword
+ convert_uint32_t_to_time_t(resettime
)*60)){
2165 pdb_set_bad_password_count(sampass
, 0, PDB_CHANGED
);
2166 pdb_set_bad_password_time(sampass
, 0, PDB_CHANGED
);
2175 /*********************************************************************
2176 Update the ACB_AUTOLOCK flag checking the PDB_POLICY_LOCK_ACCOUNT_DURATION
2177 *********************************************************************/
2179 bool pdb_update_autolock_flag(struct samu
*sampass
, bool *updated
)
2182 time_t LastBadPassword
;
2185 if (!(pdb_get_acct_ctrl(sampass
) & ACB_AUTOLOCK
)) {
2186 DEBUG(9, ("pdb_update_autolock_flag: Account %s not autolocked, no check needed\n",
2187 pdb_get_username(sampass
)));
2192 res
= pdb_get_account_policy(PDB_POLICY_LOCK_ACCOUNT_DURATION
, &duration
);
2196 DEBUG(0, ("pdb_update_autolock_flag: pdb_get_account_policy failed.\n"));
2200 /* First, check if there is a duration to compare */
2201 if ((duration
== (uint32_t) -1) || (duration
== 0)) {
2202 DEBUG(9, ("pdb_update_autolock_flag: No reset duration, can't reset autolock\n"));
2206 LastBadPassword
= pdb_get_bad_password_time(sampass
);
2207 DEBUG(7, ("pdb_update_autolock_flag: Account %s, LastBadPassword=%d, duration=%d, current time =%d.\n",
2208 pdb_get_username(sampass
), (uint32_t)LastBadPassword
, duration
*60, (uint32_t)time(NULL
)));
2210 if (LastBadPassword
== (time_t)0) {
2211 DEBUG(1,("pdb_update_autolock_flag: Account %s "
2212 "administratively locked out with no bad password "
2213 "time. Leaving locked out.\n",
2214 pdb_get_username(sampass
) ));
2218 if ((time(NULL
) > (LastBadPassword
+ convert_uint32_t_to_time_t(duration
) * 60))) {
2219 pdb_set_acct_ctrl(sampass
,
2220 pdb_get_acct_ctrl(sampass
) & ~ACB_AUTOLOCK
,
2222 pdb_set_bad_password_count(sampass
, 0, PDB_CHANGED
);
2223 pdb_set_bad_password_time(sampass
, 0, PDB_CHANGED
);
2232 /*********************************************************************
2233 Increment the bad_password_count
2234 *********************************************************************/
2236 bool pdb_increment_bad_password_count(struct samu
*sampass
)
2238 uint32_t account_policy_lockout
;
2239 bool autolock_updated
= False
, badpw_updated
= False
;
2242 /* Retrieve the account lockout policy */
2244 ret
= pdb_get_account_policy(PDB_POLICY_BAD_ATTEMPT_LOCKOUT
, &account_policy_lockout
);
2247 DEBUG(0, ("pdb_increment_bad_password_count: pdb_get_account_policy failed.\n"));
2251 /* If there is no policy, we don't need to continue checking */
2252 if (!account_policy_lockout
) {
2253 DEBUG(9, ("No lockout policy, don't track bad passwords\n"));
2257 /* Check if the autolock needs to be cleared */
2258 if (!pdb_update_autolock_flag(sampass
, &autolock_updated
))
2261 /* Check if the badpw count needs to be reset */
2262 if (!pdb_update_bad_password_count(sampass
, &badpw_updated
))
2266 Ok, now we can assume that any resetting that needs to be
2267 done has been done, and just get on with incrementing
2268 and autolocking if necessary
2271 pdb_set_bad_password_count(sampass
,
2272 pdb_get_bad_password_count(sampass
)+1,
2274 pdb_set_bad_password_time(sampass
, time(NULL
), PDB_CHANGED
);
2277 if (pdb_get_bad_password_count(sampass
) < account_policy_lockout
)
2280 if (!pdb_set_acct_ctrl(sampass
,
2281 pdb_get_acct_ctrl(sampass
) | ACB_AUTOLOCK
,
2283 DEBUG(1, ("pdb_increment_bad_password_count:failed to set 'autolock' flag. \n"));
2290 bool is_dc_trusted_domain_situation(const char *domain_name
)
2292 return IS_DC
&& !strequal(domain_name
, lp_workgroup());
2295 /*******************************************************************
2296 Wrapper around retrieving the clear text trust account password.
2297 appropriate account name is stored in account_name.
2298 Caller must free password, but not account_name.
2299 *******************************************************************/
2301 bool get_trust_pw_clear(const char *domain
, char **ret_pwd
,
2302 const char **account_name
,
2303 enum netr_SchannelType
*channel
)
2306 time_t last_set_time
;
2308 /* if we are a DC and this is not our domain, then lookup an account
2309 * for the domain trust */
2311 if (is_dc_trusted_domain_situation(domain
)) {
2312 if (!lp_allow_trusted_domains()) {
2316 if (!pdb_get_trusteddom_pw(domain
, ret_pwd
, NULL
,
2319 DEBUG(0, ("get_trust_pw: could not fetch trust "
2320 "account password for trusted domain %s\n",
2325 if (channel
!= NULL
) {
2326 *channel
= SEC_CHAN_DOMAIN
;
2329 if (account_name
!= NULL
) {
2330 *account_name
= lp_workgroup();
2337 * Since we can only be member of one single domain, we are now
2338 * in a member situation:
2340 * - Either we are a DC (selfjoined) and the domain is our
2342 * - Or we are on a member and the domain is our own or some
2343 * other (potentially trusted) domain.
2345 * In both cases, we can only get the machine account password
2346 * for our own domain to connect to our own dc. (For a member,
2347 * request to trusted domains are performed through our dc.)
2349 * So we simply use our own domain name to retrieve the
2350 * machine account passowrd and ignore the request domain here.
2353 pwd
= secrets_fetch_machine_password(lp_workgroup(), &last_set_time
, channel
);
2357 if (account_name
!= NULL
) {
2358 *account_name
= lp_netbios_name();
2364 DEBUG(5, ("get_trust_pw_clear: could not fetch clear text trust "
2365 "account password for domain %s\n", domain
));
2369 /*******************************************************************
2370 Wrapper around retrieving the trust account password.
2371 appropriate account name is stored in account_name.
2372 *******************************************************************/
2374 bool get_trust_pw_hash(const char *domain
, uint8_t ret_pwd
[16],
2375 const char **account_name
,
2376 enum netr_SchannelType
*channel
)
2379 time_t last_set_time
;
2381 if (get_trust_pw_clear(domain
, &pwd
, account_name
, channel
)) {
2382 E_md4hash(pwd
, ret_pwd
);
2385 } else if (is_dc_trusted_domain_situation(domain
)) {
2389 /* as a fallback, try to get the hashed pwd directly from the tdb... */
2391 if (secrets_fetch_trust_account_password_legacy(domain
, ret_pwd
,
2395 if (account_name
!= NULL
) {
2396 *account_name
= lp_netbios_name();
2402 DEBUG(5, ("get_trust_pw_hash: could not fetch trust account "
2403 "password for domain %s\n", domain
));