2 Unix SMB/CIFS implementation.
3 LDAP protocol helper functions for SAMBA
4 Copyright (C) Jean François Micouleau 1998
5 Copyright (C) Gerald Carter 2001-2003
6 Copyright (C) Shahms King 2001
7 Copyright (C) Andrew Bartlett 2002-2003
8 Copyright (C) Stefan (metze) Metzmacher 2002-2003
9 Copyright (C) Simo Sorce 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 * persistent connections: if using NSS LDAP, many connections are made
28 * however, using only one within Samba would be nice
30 * Clean up SSL stuff, compile on OpenLDAP 1.x, 2.x, and Netscape SDK
32 * Other LDAP based login attributes: accountExpires, etc.
33 * (should be the domain of Samba proper, but the sam_password/struct samu
34 * structures don't have fields for some of these attributes)
36 * SSL is done, but can't get the certificate based authentication to work
37 * against on my test platform (Linux 2.4, OpenLDAP 2.x)
40 /* NOTE: this will NOT work against an Active Directory server
41 * due to the fact that the two password fields cannot be retrieved
42 * from a server; recommend using security = domain in this situation
47 #include "../libcli/auth/libcli_auth.h"
50 #define DBGC_CLASS DBGC_PASSDB
56 * Work around versions of the LDAP client libs that don't have the OIDs
57 * defined, or have them defined under the old name.
58 * This functionality is really a factor of the server, not the client
62 #if defined(LDAP_EXOP_X_MODIFY_PASSWD) && !defined(LDAP_EXOP_MODIFY_PASSWD)
63 #define LDAP_EXOP_MODIFY_PASSWD LDAP_EXOP_X_MODIFY_PASSWD
64 #elif !defined(LDAP_EXOP_MODIFY_PASSWD)
65 #define LDAP_EXOP_MODIFY_PASSWD "1.3.6.1.4.1.4203.1.11.1"
68 #if defined(LDAP_EXOP_X_MODIFY_PASSWD_ID) && !defined(LDAP_EXOP_MODIFY_PASSWD_ID)
69 #define LDAP_TAG_EXOP_MODIFY_PASSWD_ID LDAP_EXOP_X_MODIFY_PASSWD_ID
70 #elif !defined(LDAP_EXOP_MODIFY_PASSWD_ID)
71 #define LDAP_TAG_EXOP_MODIFY_PASSWD_ID ((ber_tag_t) 0x80U)
74 #if defined(LDAP_EXOP_X_MODIFY_PASSWD_NEW) && !defined(LDAP_EXOP_MODIFY_PASSWD_NEW)
75 #define LDAP_TAG_EXOP_MODIFY_PASSWD_NEW LDAP_EXOP_X_MODIFY_PASSWD_NEW
76 #elif !defined(LDAP_EXOP_MODIFY_PASSWD_NEW)
77 #define LDAP_TAG_EXOP_MODIFY_PASSWD_NEW ((ber_tag_t) 0x82U)
83 /**********************************************************************
84 Simple helper function to make stuff better readable
85 **********************************************************************/
87 static LDAP *priv2ld(struct ldapsam_privates *priv)
89 return priv->smbldap_state->ldap_struct;
92 /**********************************************************************
93 Get the attribute name given a user schame version.
94 **********************************************************************/
96 static const char* get_userattr_key2string( int schema_ver, int key )
98 switch ( schema_ver ) {
99 case SCHEMAVER_SAMBAACCOUNT:
100 return get_attr_key2string( attrib_map_v22, key );
102 case SCHEMAVER_SAMBASAMACCOUNT:
103 return get_attr_key2string( attrib_map_v30, key );
106 DEBUG(0,("get_userattr_key2string: unknown schema version specified\n"));
112 /**********************************************************************
113 Return the list of attribute names given a user schema version.
114 **********************************************************************/
116 const char** get_userattr_list( TALLOC_CTX *mem_ctx, int schema_ver )
118 switch ( schema_ver ) {
119 case SCHEMAVER_SAMBAACCOUNT:
120 return get_attr_list( mem_ctx, attrib_map_v22 );
122 case SCHEMAVER_SAMBASAMACCOUNT:
123 return get_attr_list( mem_ctx, attrib_map_v30 );
125 DEBUG(0,("get_userattr_list: unknown schema version specified!\n"));
132 /**************************************************************************
133 Return the list of attribute names to delete given a user schema version.
134 **************************************************************************/
136 static const char** get_userattr_delete_list( TALLOC_CTX *mem_ctx,
139 switch ( schema_ver ) {
140 case SCHEMAVER_SAMBAACCOUNT:
141 return get_attr_list( mem_ctx,
142 attrib_map_to_delete_v22 );
144 case SCHEMAVER_SAMBASAMACCOUNT:
145 return get_attr_list( mem_ctx,
146 attrib_map_to_delete_v30 );
148 DEBUG(0,("get_userattr_delete_list: unknown schema version specified!\n"));
156 /*******************************************************************
157 Generate the LDAP search filter for the objectclass based on the
158 version of the schema we are using.
159 ******************************************************************/
161 static const char* get_objclass_filter( int schema_ver )
163 fstring objclass_filter;
166 switch( schema_ver ) {
167 case SCHEMAVER_SAMBAACCOUNT:
168 fstr_sprintf( objclass_filter, "(objectclass=%s)", LDAP_OBJ_SAMBAACCOUNT );
170 case SCHEMAVER_SAMBASAMACCOUNT:
171 fstr_sprintf( objclass_filter, "(objectclass=%s)", LDAP_OBJ_SAMBASAMACCOUNT );
174 DEBUG(0,("get_objclass_filter: Invalid schema version specified!\n"));
175 objclass_filter[0] = '\0';
179 result = talloc_strdup(talloc_tos(), objclass_filter);
180 SMB_ASSERT(result != NULL);
184 /*****************************************************************
185 Scan a sequence number off OpenLDAP's syncrepl contextCSN
186 ******************************************************************/
188 static NTSTATUS ldapsam_get_seq_num(struct pdb_methods *my_methods, time_t *seq_num)
190 struct ldapsam_privates *ldap_state = (struct ldapsam_privates *)my_methods->private_data;
191 NTSTATUS ntstatus = NT_STATUS_UNSUCCESSFUL;
192 LDAPMessage *msg = NULL;
193 LDAPMessage *entry = NULL;
195 char **values = NULL;
196 int rc, num_result, num_values, rid;
202 /* Unfortunatly there is no proper way to detect syncrepl-support in
203 * smbldap_connect_system(). The syncrepl OIDs are submitted for publication
204 * but do not show up in the root-DSE yet. Neither we can query the
205 * subschema-context for the syncProviderSubentry or syncConsumerSubentry
206 * objectclass. Currently we require lp_ldap_suffix() to show up as
207 * namingContext. - Guenther
210 if (!lp_parm_bool(-1, "ldapsam", "syncrepl_seqnum", False)) {
215 DEBUG(3,("ldapsam_get_seq_num: no sequence_number\n"));
219 if (!smbldap_has_naming_context(ldap_state->smbldap_state->ldap_struct, lp_ldap_suffix())) {
220 DEBUG(3,("ldapsam_get_seq_num: DIT not configured to hold %s "
221 "as top-level namingContext\n", lp_ldap_suffix()));
225 mem_ctx = talloc_init("ldapsam_get_seq_num");
228 return NT_STATUS_NO_MEMORY;
230 if ((attrs = TALLOC_ARRAY(mem_ctx, const char *, 2)) == NULL) {
231 ntstatus = NT_STATUS_NO_MEMORY;
235 /* if we got a syncrepl-rid (up to three digits long) we speak with a consumer */
236 rid = lp_parm_int(-1, "ldapsam", "syncrepl_rid", -1);
239 /* consumer syncreplCookie: */
240 /* csn=20050126161620Z#0000001#00#00000 */
241 attrs[0] = talloc_strdup(mem_ctx, "syncreplCookie");
243 suffix = talloc_asprintf(mem_ctx,
244 "cn=syncrepl%d,%s", rid, lp_ldap_suffix());
246 ntstatus = NT_STATUS_NO_MEMORY;
251 /* provider contextCSN */
252 /* 20050126161620Z#000009#00#000000 */
253 attrs[0] = talloc_strdup(mem_ctx, "contextCSN");
255 suffix = talloc_asprintf(mem_ctx,
256 "cn=ldapsync,%s", lp_ldap_suffix());
259 ntstatus = NT_STATUS_NO_MEMORY;
264 rc = smbldap_search(ldap_state->smbldap_state, suffix,
265 LDAP_SCOPE_BASE, "(objectclass=*)", attrs, 0, &msg);
267 if (rc != LDAP_SUCCESS) {
271 num_result = ldap_count_entries(ldap_state->smbldap_state->ldap_struct, msg);
272 if (num_result != 1) {
273 DEBUG(3,("ldapsam_get_seq_num: Expected one entry, got %d\n", num_result));
277 entry = ldap_first_entry(ldap_state->smbldap_state->ldap_struct, msg);
279 DEBUG(3,("ldapsam_get_seq_num: Could not retrieve entry\n"));
283 values = ldap_get_values(ldap_state->smbldap_state->ldap_struct, entry, attrs[0]);
284 if (values == NULL) {
285 DEBUG(3,("ldapsam_get_seq_num: no values\n"));
289 num_values = ldap_count_values(values);
290 if (num_values == 0) {
291 DEBUG(3,("ldapsam_get_seq_num: not a single value\n"));
296 if (!next_token_talloc(mem_ctx, &p, &tok, "#")) {
297 DEBUG(0,("ldapsam_get_seq_num: failed to parse sequence number\n"));
302 if (!strncmp(p, "csn=", strlen("csn=")))
305 DEBUG(10,("ldapsam_get_seq_num: got %s: %s\n", attrs[0], p));
307 *seq_num = generalized_to_unix_time(p);
309 /* very basic sanity check */
311 DEBUG(3,("ldapsam_get_seq_num: invalid sequence number: %d\n",
316 ntstatus = NT_STATUS_OK;
320 ldap_value_free(values);
324 talloc_destroy(mem_ctx);
329 /*******************************************************************
330 Run the search by name.
331 ******************************************************************/
333 int ldapsam_search_suffix_by_name(struct ldapsam_privates *ldap_state,
335 LDAPMessage ** result,
339 char *escape_user = escape_ldap_string(talloc_tos(), user);
343 return LDAP_NO_MEMORY;
347 * in the filter expression, replace %u with the real name
348 * so in ldap filter, %u MUST exist :-)
350 filter = talloc_asprintf(talloc_tos(), "(&%s%s)", "(uid=%u)",
351 get_objclass_filter(ldap_state->schema_ver));
353 TALLOC_FREE(escape_user);
354 return LDAP_NO_MEMORY;
357 * have to use this here because $ is filtered out
361 filter = talloc_all_string_sub(talloc_tos(),
362 filter, "%u", escape_user);
363 TALLOC_FREE(escape_user);
365 return LDAP_NO_MEMORY;
368 ret = smbldap_search_suffix(ldap_state->smbldap_state,
369 filter, attr, result);
374 /*******************************************************************
375 Run the search by rid.
376 ******************************************************************/
378 static int ldapsam_search_suffix_by_rid (struct ldapsam_privates *ldap_state,
379 uint32 rid, LDAPMessage ** result,
385 filter = talloc_asprintf(talloc_tos(), "(&(rid=%i)%s)", rid,
386 get_objclass_filter(ldap_state->schema_ver));
388 return LDAP_NO_MEMORY;
391 rc = smbldap_search_suffix(ldap_state->smbldap_state,
392 filter, attr, result);
397 /*******************************************************************
398 Run the search by SID.
399 ******************************************************************/
401 static int ldapsam_search_suffix_by_sid (struct ldapsam_privates *ldap_state,
402 const DOM_SID *sid, LDAPMessage ** result,
409 filter = talloc_asprintf(talloc_tos(), "(&(%s=%s)%s)",
410 get_userattr_key2string(ldap_state->schema_ver,
412 sid_to_fstring(sid_string, sid),
413 get_objclass_filter(ldap_state->schema_ver));
415 return LDAP_NO_MEMORY;
418 rc = smbldap_search_suffix(ldap_state->smbldap_state,
419 filter, attr, result);
425 /*******************************************************************
426 Delete complete object or objectclass and attrs from
427 object found in search_result depending on lp_ldap_delete_dn
428 ******************************************************************/
430 static int ldapsam_delete_entry(struct ldapsam_privates *priv,
433 const char *objectclass,
436 LDAPMod **mods = NULL;
439 BerElement *ptr = NULL;
441 dn = smbldap_talloc_dn(mem_ctx, priv2ld(priv), entry);
443 return LDAP_NO_MEMORY;
446 if (lp_ldap_delete_dn()) {
447 return smbldap_delete(priv->smbldap_state, dn);
450 /* Ok, delete only the SAM attributes */
452 for (name = ldap_first_attribute(priv2ld(priv), entry, &ptr);
454 name = ldap_next_attribute(priv2ld(priv), entry, ptr)) {
457 /* We are only allowed to delete the attributes that
460 for (attrib = attrs; *attrib != NULL; attrib++) {
461 if (strequal(*attrib, name)) {
462 DEBUG(10, ("ldapsam_delete_entry: deleting "
463 "attribute %s\n", name));
464 smbldap_set_mod(&mods, LDAP_MOD_DELETE, name,
475 smbldap_set_mod(&mods, LDAP_MOD_DELETE, "objectClass", objectclass);
476 talloc_autofree_ldapmod(mem_ctx, mods);
478 return smbldap_modify(priv->smbldap_state, dn, mods);
481 static time_t ldapsam_get_entry_timestamp( struct ldapsam_privates *ldap_state, LDAPMessage * entry)
486 temp = smbldap_talloc_single_attribute(ldap_state->smbldap_state->ldap_struct, entry,
487 get_userattr_key2string(ldap_state->schema_ver,LDAP_ATTR_MOD_TIMESTAMP),
493 if ( !strptime(temp, "%Y%m%d%H%M%SZ", &tm)) {
494 DEBUG(2,("ldapsam_get_entry_timestamp: strptime failed on: %s\n",
504 /**********************************************************************
505 Initialize struct samu from an LDAP query.
506 (Based on init_sam_from_buffer in pdb_tdb.c)
507 *********************************************************************/
509 static bool init_sam_from_ldap(struct ldapsam_privates *ldap_state,
510 struct samu * sampass,
517 pass_can_change_time,
518 pass_must_change_time,
521 char *username = NULL,
527 *logon_script = NULL,
528 *profile_path = NULL,
530 *workstations = NULL,
533 uint8 smblmpwd[LM_HASH_LEN],
534 smbntpwd[NT_HASH_LEN];
535 bool use_samba_attrs = True;
536 uint32 acct_ctrl = 0;
538 uint16 bad_password_count = 0,
541 uint8 hours[MAX_HOURS_LEN];
543 LOGIN_CACHE *cache_entry = NULL;
545 bool expand_explicit = lp_passdb_expand_explicit();
547 TALLOC_CTX *ctx = talloc_init("init_sam_from_ldap");
552 if (sampass == NULL || ldap_state == NULL || entry == NULL) {
553 DEBUG(0, ("init_sam_from_ldap: NULL parameters found!\n"));
557 if (priv2ld(ldap_state) == NULL) {
558 DEBUG(0, ("init_sam_from_ldap: ldap_state->smbldap_state->"
559 "ldap_struct is NULL!\n"));
563 if (!(username = smbldap_talloc_first_attribute(priv2ld(ldap_state),
567 DEBUG(1, ("init_sam_from_ldap: No uid attribute found for "
572 DEBUG(2, ("init_sam_from_ldap: Entry found for user: %s\n", username));
574 nt_username = talloc_strdup(ctx, username);
579 domain = talloc_strdup(ctx, ldap_state->domain_name);
584 pdb_set_username(sampass, username, PDB_SET);
586 pdb_set_domain(sampass, domain, PDB_DEFAULT);
587 pdb_set_nt_username(sampass, nt_username, PDB_SET);
589 /* deal with different attributes between the schema first */
591 if ( ldap_state->schema_ver == SCHEMAVER_SAMBASAMACCOUNT ) {
592 if ((temp = smbldap_talloc_single_attribute(
593 ldap_state->smbldap_state->ldap_struct,
595 get_userattr_key2string(ldap_state->schema_ver,
598 pdb_set_user_sid_from_string(sampass, temp, PDB_SET);
601 if ((temp = smbldap_talloc_single_attribute(
602 ldap_state->smbldap_state->ldap_struct,
604 get_userattr_key2string(ldap_state->schema_ver,
607 user_rid = (uint32)atol(temp);
608 pdb_set_user_sid_from_rid(sampass, user_rid, PDB_SET);
612 if (IS_SAM_DEFAULT(sampass, PDB_USERSID)) {
613 DEBUG(1, ("init_sam_from_ldap: no %s or %s attribute found for this user %s\n",
614 get_userattr_key2string(ldap_state->schema_ver,
616 get_userattr_key2string(ldap_state->schema_ver,
622 temp = smbldap_talloc_single_attribute(
623 ldap_state->smbldap_state->ldap_struct,
625 get_userattr_key2string(ldap_state->schema_ver,
626 LDAP_ATTR_PWD_LAST_SET),
629 pass_last_set_time = (time_t) atol(temp);
630 pdb_set_pass_last_set_time(sampass,
631 pass_last_set_time, PDB_SET);
634 temp = smbldap_talloc_single_attribute(
635 ldap_state->smbldap_state->ldap_struct,
637 get_userattr_key2string(ldap_state->schema_ver,
638 LDAP_ATTR_LOGON_TIME),
641 logon_time = (time_t) atol(temp);
642 pdb_set_logon_time(sampass, logon_time, PDB_SET);
645 temp = smbldap_talloc_single_attribute(
646 ldap_state->smbldap_state->ldap_struct,
648 get_userattr_key2string(ldap_state->schema_ver,
649 LDAP_ATTR_LOGOFF_TIME),
652 logoff_time = (time_t) atol(temp);
653 pdb_set_logoff_time(sampass, logoff_time, PDB_SET);
656 temp = smbldap_talloc_single_attribute(
657 ldap_state->smbldap_state->ldap_struct,
659 get_userattr_key2string(ldap_state->schema_ver,
660 LDAP_ATTR_KICKOFF_TIME),
663 kickoff_time = (time_t) atol(temp);
664 pdb_set_kickoff_time(sampass, kickoff_time, PDB_SET);
667 temp = smbldap_talloc_single_attribute(
668 ldap_state->smbldap_state->ldap_struct,
670 get_userattr_key2string(ldap_state->schema_ver,
671 LDAP_ATTR_PWD_CAN_CHANGE),
674 pass_can_change_time = (time_t) atol(temp);
675 pdb_set_pass_can_change_time(sampass,
676 pass_can_change_time, PDB_SET);
679 temp = smbldap_talloc_single_attribute(
680 ldap_state->smbldap_state->ldap_struct,
682 get_userattr_key2string(ldap_state->schema_ver,
683 LDAP_ATTR_PWD_MUST_CHANGE),
686 pass_must_change_time = (time_t) atol(temp);
687 pdb_set_pass_must_change_time(sampass,
688 pass_must_change_time, PDB_SET);
691 /* recommend that 'gecos' and 'displayName' should refer to the same
692 * attribute OID. userFullName depreciated, only used by Samba
693 * primary rules of LDAP: don't make a new attribute when one is already defined
694 * that fits your needs; using cn then displayName rather than 'userFullName'
697 fullname = smbldap_talloc_single_attribute(
698 ldap_state->smbldap_state->ldap_struct,
700 get_userattr_key2string(ldap_state->schema_ver,
701 LDAP_ATTR_DISPLAY_NAME),
704 pdb_set_fullname(sampass, fullname, PDB_SET);
706 fullname = smbldap_talloc_single_attribute(
707 ldap_state->smbldap_state->ldap_struct,
709 get_userattr_key2string(ldap_state->schema_ver,
713 pdb_set_fullname(sampass, fullname, PDB_SET);
717 dir_drive = smbldap_talloc_single_attribute(
718 ldap_state->smbldap_state->ldap_struct,
720 get_userattr_key2string(ldap_state->schema_ver,
721 LDAP_ATTR_HOME_DRIVE),
724 pdb_set_dir_drive(sampass, dir_drive, PDB_SET);
726 pdb_set_dir_drive( sampass, lp_logon_drive(), PDB_DEFAULT );
729 homedir = smbldap_talloc_single_attribute(
730 ldap_state->smbldap_state->ldap_struct,
732 get_userattr_key2string(ldap_state->schema_ver,
733 LDAP_ATTR_HOME_PATH),
736 if (expand_explicit) {
737 homedir = talloc_sub_basic(ctx,
745 pdb_set_homedir(sampass, homedir, PDB_SET);
747 pdb_set_homedir(sampass,
748 talloc_sub_basic(ctx, username, domain,
753 logon_script = smbldap_talloc_single_attribute(
754 ldap_state->smbldap_state->ldap_struct,
756 get_userattr_key2string(ldap_state->schema_ver,
757 LDAP_ATTR_LOGON_SCRIPT),
760 if (expand_explicit) {
761 logon_script = talloc_sub_basic(ctx,
769 pdb_set_logon_script(sampass, logon_script, PDB_SET);
771 pdb_set_logon_script(sampass,
772 talloc_sub_basic(ctx, username, domain,
777 profile_path = smbldap_talloc_single_attribute(
778 ldap_state->smbldap_state->ldap_struct,
780 get_userattr_key2string(ldap_state->schema_ver,
781 LDAP_ATTR_PROFILE_PATH),
784 if (expand_explicit) {
785 profile_path = talloc_sub_basic(ctx,
793 pdb_set_profile_path(sampass, profile_path, PDB_SET);
795 pdb_set_profile_path(sampass,
796 talloc_sub_basic(ctx, username, domain,
801 acct_desc = smbldap_talloc_single_attribute(
802 ldap_state->smbldap_state->ldap_struct,
804 get_userattr_key2string(ldap_state->schema_ver,
808 pdb_set_acct_desc(sampass, acct_desc, PDB_SET);
811 workstations = smbldap_talloc_single_attribute(
812 ldap_state->smbldap_state->ldap_struct,
814 get_userattr_key2string(ldap_state->schema_ver,
818 pdb_set_workstations(sampass, workstations, PDB_SET);
821 munged_dial = smbldap_talloc_single_attribute(
822 ldap_state->smbldap_state->ldap_struct,
824 get_userattr_key2string(ldap_state->schema_ver,
825 LDAP_ATTR_MUNGED_DIAL),
828 pdb_set_munged_dial(sampass, munged_dial, PDB_SET);
831 /* FIXME: hours stuff should be cleaner */
835 memset(hours, 0xff, hours_len);
837 if (ldap_state->is_nds_ldap) {
840 char clear_text_pw[512];
842 /* Make call to Novell eDirectory ldap extension to get clear text password.
843 NOTE: This will only work if we have an SSL connection to eDirectory. */
844 user_dn = smbldap_talloc_dn(ctx, ldap_state->smbldap_state->ldap_struct, entry);
845 if (user_dn != NULL) {
846 DEBUG(3, ("init_sam_from_ldap: smbldap_talloc_dn(ctx, %s) returned '%s'\n", username, user_dn));
848 pwd_len = sizeof(clear_text_pw);
849 if (pdb_nds_get_password(ldap_state->smbldap_state, user_dn, &pwd_len, clear_text_pw) == LDAP_SUCCESS) {
850 nt_lm_owf_gen(clear_text_pw, smbntpwd, smblmpwd);
851 if (!pdb_set_lanman_passwd(sampass, smblmpwd, PDB_SET)) {
852 TALLOC_FREE(user_dn);
855 ZERO_STRUCT(smblmpwd);
856 if (!pdb_set_nt_passwd(sampass, smbntpwd, PDB_SET)) {
857 TALLOC_FREE(user_dn);
860 ZERO_STRUCT(smbntpwd);
861 use_samba_attrs = False;
864 TALLOC_FREE(user_dn);
867 DEBUG(0, ("init_sam_from_ldap: failed to get user_dn for '%s'\n", username));
871 if (use_samba_attrs) {
872 temp = smbldap_talloc_single_attribute(
873 ldap_state->smbldap_state->ldap_struct,
875 get_userattr_key2string(ldap_state->schema_ver,
879 pdb_gethexpwd(temp, smblmpwd);
880 memset((char *)temp, '\0', strlen(temp)+1);
881 if (!pdb_set_lanman_passwd(sampass, smblmpwd, PDB_SET)) {
884 ZERO_STRUCT(smblmpwd);
887 temp = smbldap_talloc_single_attribute(
888 ldap_state->smbldap_state->ldap_struct,
890 get_userattr_key2string(ldap_state->schema_ver,
894 pdb_gethexpwd(temp, smbntpwd);
895 memset((char *)temp, '\0', strlen(temp)+1);
896 if (!pdb_set_nt_passwd(sampass, smbntpwd, PDB_SET)) {
899 ZERO_STRUCT(smbntpwd);
905 pdb_get_account_policy(PDB_POLICY_PASSWORD_HISTORY, &pwHistLen);
907 uint8 *pwhist = NULL;
909 char *history_string = TALLOC_ARRAY(ctx, char,
910 MAX_PW_HISTORY_LEN*64);
912 if (!history_string) {
916 pwHistLen = MIN(pwHistLen, MAX_PW_HISTORY_LEN);
918 pwhist = TALLOC_ARRAY(ctx, uint8,
919 pwHistLen * PW_HISTORY_ENTRY_LEN);
920 if (pwhist == NULL) {
921 DEBUG(0, ("init_sam_from_ldap: talloc failed!\n"));
924 memset(pwhist, '\0', pwHistLen * PW_HISTORY_ENTRY_LEN);
926 if (smbldap_get_single_attribute(
927 ldap_state->smbldap_state->ldap_struct,
929 get_userattr_key2string(ldap_state->schema_ver,
930 LDAP_ATTR_PWD_HISTORY),
932 MAX_PW_HISTORY_LEN*64)) {
933 bool hex_failed = false;
934 for (i = 0; i < pwHistLen; i++){
935 /* Get the 16 byte salt. */
936 if (!pdb_gethexpwd(&history_string[i*64],
937 &pwhist[i*PW_HISTORY_ENTRY_LEN])) {
941 /* Get the 16 byte MD5 hash of salt+passwd. */
942 if (!pdb_gethexpwd(&history_string[(i*64)+32],
943 &pwhist[(i*PW_HISTORY_ENTRY_LEN)+
944 PW_HISTORY_SALT_LEN])) {
950 DEBUG(2,("init_sam_from_ldap: Failed to get password history for user %s\n",
952 memset(pwhist, '\0', pwHistLen * PW_HISTORY_ENTRY_LEN);
955 if (!pdb_set_pw_history(sampass, pwhist, pwHistLen, PDB_SET)){
960 temp = smbldap_talloc_single_attribute(
961 ldap_state->smbldap_state->ldap_struct,
963 get_userattr_key2string(ldap_state->schema_ver,
967 acct_ctrl = pdb_decode_acct_ctrl(temp);
969 if (acct_ctrl == 0) {
970 acct_ctrl |= ACB_NORMAL;
973 pdb_set_acct_ctrl(sampass, acct_ctrl, PDB_SET);
975 acct_ctrl |= ACB_NORMAL;
978 pdb_set_hours_len(sampass, hours_len, PDB_SET);
979 pdb_set_logon_divs(sampass, logon_divs, PDB_SET);
981 temp = smbldap_talloc_single_attribute(
982 ldap_state->smbldap_state->ldap_struct,
984 get_userattr_key2string(ldap_state->schema_ver,
985 LDAP_ATTR_BAD_PASSWORD_COUNT),
988 bad_password_count = (uint32) atol(temp);
989 pdb_set_bad_password_count(sampass,
990 bad_password_count, PDB_SET);
993 temp = smbldap_talloc_single_attribute(
994 ldap_state->smbldap_state->ldap_struct,
996 get_userattr_key2string(ldap_state->schema_ver,
997 LDAP_ATTR_BAD_PASSWORD_TIME),
1000 bad_password_time = (time_t) atol(temp);
1001 pdb_set_bad_password_time(sampass, bad_password_time, PDB_SET);
1005 temp = smbldap_talloc_single_attribute(
1006 ldap_state->smbldap_state->ldap_struct,
1008 get_userattr_key2string(ldap_state->schema_ver,
1009 LDAP_ATTR_LOGON_COUNT),
1012 logon_count = (uint32) atol(temp);
1013 pdb_set_logon_count(sampass, logon_count, PDB_SET);
1016 /* pdb_set_unknown_6(sampass, unknown6, PDB_SET); */
1018 temp = smbldap_talloc_single_attribute(
1019 ldap_state->smbldap_state->ldap_struct,
1021 get_userattr_key2string(ldap_state->schema_ver,
1022 LDAP_ATTR_LOGON_HOURS),
1025 pdb_gethexhours(temp, hours);
1026 memset((char *)temp, '\0', strlen(temp) +1);
1027 pdb_set_hours(sampass, hours, PDB_SET);
1031 if (lp_parm_bool(-1, "ldapsam", "trusted", False)) {
1032 struct passwd unix_pw;
1033 bool have_uid = false;
1034 bool have_gid = false;
1035 DOM_SID mapped_gsid;
1036 const DOM_SID *primary_gsid;
1038 ZERO_STRUCT(unix_pw);
1040 unix_pw.pw_name = username;
1041 unix_pw.pw_passwd = discard_const_p(char, "x");
1043 temp = smbldap_talloc_single_attribute(
1044 priv2ld(ldap_state),
1049 /* We've got a uid, feed the cache */
1050 unix_pw.pw_uid = strtoul(temp, NULL, 10);
1053 temp = smbldap_talloc_single_attribute(
1054 priv2ld(ldap_state),
1059 /* We've got a uid, feed the cache */
1060 unix_pw.pw_gid = strtoul(temp, NULL, 10);
1063 unix_pw.pw_gecos = smbldap_talloc_single_attribute(
1064 priv2ld(ldap_state),
1068 if (unix_pw.pw_gecos) {
1069 unix_pw.pw_gecos = fullname;
1071 unix_pw.pw_dir = smbldap_talloc_single_attribute(
1072 priv2ld(ldap_state),
1076 if (unix_pw.pw_dir) {
1077 unix_pw.pw_dir = discard_const_p(char, "");
1079 unix_pw.pw_shell = smbldap_talloc_single_attribute(
1080 priv2ld(ldap_state),
1084 if (unix_pw.pw_shell) {
1085 unix_pw.pw_shell = discard_const_p(char, "");
1088 if (have_uid && have_gid) {
1089 sampass->unix_pw = tcopy_passwd(sampass, &unix_pw);
1091 sampass->unix_pw = Get_Pwnam_alloc(sampass, unix_pw.pw_name);
1094 if (sampass->unix_pw == NULL) {
1095 DEBUG(0,("init_sam_from_ldap: Failed to find Unix account for %s\n",
1096 pdb_get_username(sampass)));
1100 store_uid_sid_cache(pdb_get_user_sid(sampass),
1101 sampass->unix_pw->pw_uid);
1102 idmap_cache_set_sid2uid(pdb_get_user_sid(sampass),
1103 sampass->unix_pw->pw_uid);
1105 gid_to_sid(&mapped_gsid, sampass->unix_pw->pw_gid);
1106 primary_gsid = pdb_get_group_sid(sampass);
1107 if (primary_gsid && sid_equal(primary_gsid, &mapped_gsid)) {
1108 store_gid_sid_cache(primary_gsid,
1109 sampass->unix_pw->pw_gid);
1110 idmap_cache_set_sid2uid(primary_gsid,
1111 sampass->unix_pw->pw_gid);
1115 /* check the timestamp of the cache vs ldap entry */
1116 if (!(ldap_entry_time = ldapsam_get_entry_timestamp(ldap_state,
1122 /* see if we have newer updates */
1123 if (!(cache_entry = login_cache_read(sampass))) {
1124 DEBUG (9, ("No cache entry, bad count = %u, bad time = %u\n",
1125 (unsigned int)pdb_get_bad_password_count(sampass),
1126 (unsigned int)pdb_get_bad_password_time(sampass)));
1131 DEBUG(7, ("ldap time is %u, cache time is %u, bad time = %u\n",
1132 (unsigned int)ldap_entry_time,
1133 (unsigned int)cache_entry->entry_timestamp,
1134 (unsigned int)cache_entry->bad_password_time));
1136 if (ldap_entry_time > cache_entry->entry_timestamp) {
1137 /* cache is older than directory , so
1138 we need to delete the entry but allow the
1139 fields to be written out */
1140 login_cache_delentry(sampass);
1143 pdb_set_acct_ctrl(sampass,
1144 pdb_get_acct_ctrl(sampass) |
1145 (cache_entry->acct_ctrl & ACB_AUTOLOCK),
1147 pdb_set_bad_password_count(sampass,
1148 cache_entry->bad_password_count,
1150 pdb_set_bad_password_time(sampass,
1151 cache_entry->bad_password_time,
1160 SAFE_FREE(cache_entry);
1164 /**********************************************************************
1165 Initialize the ldap db from a struct samu. Called on update.
1166 (Based on init_buffer_from_sam in pdb_tdb.c)
1167 *********************************************************************/
1169 static bool init_ldap_from_sam (struct ldapsam_privates *ldap_state,
1170 LDAPMessage *existing,
1171 LDAPMod *** mods, struct samu * sampass,
1172 bool (*need_update)(const struct samu *,
1178 if (mods == NULL || sampass == NULL) {
1179 DEBUG(0, ("init_ldap_from_sam: NULL parameters found!\n"));
1186 * took out adding "objectclass: sambaAccount"
1187 * do this on a per-mod basis
1189 if (need_update(sampass, PDB_USERNAME)) {
1190 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1191 "uid", pdb_get_username(sampass));
1192 if (ldap_state->is_nds_ldap) {
1193 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1194 "cn", pdb_get_username(sampass));
1195 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1196 "sn", pdb_get_username(sampass));
1200 DEBUG(2, ("init_ldap_from_sam: Setting entry for user: %s\n", pdb_get_username(sampass)));
1202 /* only update the RID if we actually need to */
1203 if (need_update(sampass, PDB_USERSID)) {
1205 const DOM_SID *user_sid = pdb_get_user_sid(sampass);
1207 switch ( ldap_state->schema_ver ) {
1208 case SCHEMAVER_SAMBAACCOUNT:
1209 if (!sid_peek_check_rid(&ldap_state->domain_sid, user_sid, &rid)) {
1210 DEBUG(1, ("init_ldap_from_sam: User's SID (%s) is not for this domain (%s), cannot add to LDAP!\n",
1211 sid_string_dbg(user_sid),
1213 &ldap_state->domain_sid)));
1216 if (asprintf(&temp, "%i", rid) < 0) {
1219 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1220 get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_USER_RID),
1225 case SCHEMAVER_SAMBASAMACCOUNT:
1226 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1227 get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_USER_SID),
1228 sid_to_fstring(sid_string, user_sid));
1232 DEBUG(0,("init_ldap_from_sam: unknown schema version specified\n"));
1237 /* we don't need to store the primary group RID - so leaving it
1238 'free' to hang off the unix primary group makes life easier */
1240 if (need_update(sampass, PDB_GROUPSID)) {
1242 const DOM_SID *group_sid = pdb_get_group_sid(sampass);
1244 switch ( ldap_state->schema_ver ) {
1245 case SCHEMAVER_SAMBAACCOUNT:
1246 if (!sid_peek_check_rid(&ldap_state->domain_sid, group_sid, &rid)) {
1247 DEBUG(1, ("init_ldap_from_sam: User's Primary Group SID (%s) is not for this domain (%s), cannot add to LDAP!\n",
1248 sid_string_dbg(group_sid),
1250 &ldap_state->domain_sid)));
1254 if (asprintf(&temp, "%i", rid) < 0) {
1257 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1258 get_userattr_key2string(ldap_state->schema_ver,
1259 LDAP_ATTR_PRIMARY_GROUP_RID), temp);
1263 case SCHEMAVER_SAMBASAMACCOUNT:
1264 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1265 get_userattr_key2string(ldap_state->schema_ver,
1266 LDAP_ATTR_PRIMARY_GROUP_SID), sid_to_fstring(sid_string, group_sid));
1270 DEBUG(0,("init_ldap_from_sam: unknown schema version specified\n"));
1276 /* displayName, cn, and gecos should all be the same
1277 * most easily accomplished by giving them the same OID
1278 * gecos isn't set here b/c it should be handled by the
1280 * We change displayName only and fall back to cn if
1281 * it does not exist.
1284 if (need_update(sampass, PDB_FULLNAME))
1285 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1286 get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_DISPLAY_NAME),
1287 pdb_get_fullname(sampass));
1289 if (need_update(sampass, PDB_ACCTDESC))
1290 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1291 get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_DESC),
1292 pdb_get_acct_desc(sampass));
1294 if (need_update(sampass, PDB_WORKSTATIONS))
1295 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1296 get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_USER_WKS),
1297 pdb_get_workstations(sampass));
1299 if (need_update(sampass, PDB_MUNGEDDIAL))
1300 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1301 get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_MUNGED_DIAL),
1302 pdb_get_munged_dial(sampass));
1304 if (need_update(sampass, PDB_SMBHOME))
1305 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1306 get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_HOME_PATH),
1307 pdb_get_homedir(sampass));
1309 if (need_update(sampass, PDB_DRIVE))
1310 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1311 get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_HOME_DRIVE),
1312 pdb_get_dir_drive(sampass));
1314 if (need_update(sampass, PDB_LOGONSCRIPT))
1315 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1316 get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_LOGON_SCRIPT),
1317 pdb_get_logon_script(sampass));
1319 if (need_update(sampass, PDB_PROFILE))
1320 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1321 get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_PROFILE_PATH),
1322 pdb_get_profile_path(sampass));
1324 if (asprintf(&temp, "%li", (long int)pdb_get_logon_time(sampass)) < 0) {
1327 if (need_update(sampass, PDB_LOGONTIME))
1328 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1329 get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_LOGON_TIME), temp);
1332 if (asprintf(&temp, "%li", (long int)pdb_get_logoff_time(sampass)) < 0) {
1335 if (need_update(sampass, PDB_LOGOFFTIME))
1336 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1337 get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_LOGOFF_TIME), temp);
1340 if (asprintf(&temp, "%li", (long int)pdb_get_kickoff_time(sampass)) < 0) {
1343 if (need_update(sampass, PDB_KICKOFFTIME))
1344 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1345 get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_KICKOFF_TIME), temp);
1348 if (asprintf(&temp, "%li", (long int)pdb_get_pass_can_change_time_noncalc(sampass)) < 0) {
1351 if (need_update(sampass, PDB_CANCHANGETIME))
1352 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1353 get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_PWD_CAN_CHANGE), temp);
1356 if (asprintf(&temp, "%li", (long int)pdb_get_pass_must_change_time(sampass)) < 0) {
1359 if (need_update(sampass, PDB_MUSTCHANGETIME))
1360 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1361 get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_PWD_MUST_CHANGE), temp);
1364 if ((pdb_get_acct_ctrl(sampass)&(ACB_WSTRUST|ACB_SVRTRUST|ACB_DOMTRUST))
1365 || (lp_ldap_passwd_sync()!=LDAP_PASSWD_SYNC_ONLY)) {
1367 if (need_update(sampass, PDB_LMPASSWD)) {
1368 const uchar *lm_pw = pdb_get_lanman_passwd(sampass);
1371 pdb_sethexpwd(pwstr, lm_pw,
1372 pdb_get_acct_ctrl(sampass));
1373 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1374 get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_LMPW),
1377 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1378 get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_LMPW),
1382 if (need_update(sampass, PDB_NTPASSWD)) {
1383 const uchar *nt_pw = pdb_get_nt_passwd(sampass);
1386 pdb_sethexpwd(pwstr, nt_pw,
1387 pdb_get_acct_ctrl(sampass));
1388 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1389 get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_NTPW),
1392 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1393 get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_NTPW),
1398 if (need_update(sampass, PDB_PWHISTORY)) {
1400 uint32 pwHistLen = 0;
1401 pdb_get_account_policy(PDB_POLICY_PASSWORD_HISTORY, &pwHistLen);
1403 pwstr = SMB_MALLOC_ARRAY(char, 1024);
1407 if (pwHistLen == 0) {
1408 /* Remove any password history from the LDAP store. */
1409 memset(pwstr, '0', 64); /* NOTE !!!! '0' *NOT '\0' */
1413 uint32 currHistLen = 0;
1414 const uint8 *pwhist = pdb_get_pw_history(sampass, &currHistLen);
1415 if (pwhist != NULL) {
1416 /* We can only store (1024-1/64 password history entries. */
1417 pwHistLen = MIN(pwHistLen, ((1024-1)/64));
1418 for (i=0; i< pwHistLen && i < currHistLen; i++) {
1419 /* Store the salt. */
1420 pdb_sethexpwd(&pwstr[i*64], &pwhist[i*PW_HISTORY_ENTRY_LEN], 0);
1421 /* Followed by the md5 hash of salt + md4 hash */
1422 pdb_sethexpwd(&pwstr[(i*64)+32],
1423 &pwhist[(i*PW_HISTORY_ENTRY_LEN)+PW_HISTORY_SALT_LEN], 0);
1424 DEBUG(100, ("pwstr=%s\n", pwstr));
1428 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1429 get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_PWD_HISTORY),
1434 if (need_update(sampass, PDB_PASSLASTSET)) {
1435 if (asprintf(&temp, "%li",
1436 (long int)pdb_get_pass_last_set_time(sampass)) < 0) {
1439 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1440 get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_PWD_LAST_SET),
1446 if (need_update(sampass, PDB_HOURS)) {
1447 const uint8 *hours = pdb_get_hours(sampass);
1450 pdb_sethexhours(hourstr, hours);
1451 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct,
1454 get_userattr_key2string(ldap_state->schema_ver,
1455 LDAP_ATTR_LOGON_HOURS),
1460 if (need_update(sampass, PDB_ACCTCTRL))
1461 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1462 get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_ACB_INFO),
1463 pdb_encode_acct_ctrl (pdb_get_acct_ctrl(sampass), NEW_PW_FORMAT_SPACE_PADDED_LEN));
1465 /* password lockout cache:
1466 - If we are now autolocking or clearing, we write to ldap
1467 - If we are clearing, we delete the cache entry
1468 - If the count is > 0, we update the cache
1470 This even means when autolocking, we cache, just in case the
1471 update doesn't work, and we have to cache the autolock flag */
1473 if (need_update(sampass, PDB_BAD_PASSWORD_COUNT)) /* &&
1474 need_update(sampass, PDB_BAD_PASSWORD_TIME)) */ {
1475 uint16 badcount = pdb_get_bad_password_count(sampass);
1476 time_t badtime = pdb_get_bad_password_time(sampass);
1478 pdb_get_account_policy(PDB_POLICY_BAD_ATTEMPT_LOCKOUT, &pol);
1480 DEBUG(3, ("updating bad password fields, policy=%u, count=%u, time=%u\n",
1481 (unsigned int)pol, (unsigned int)badcount, (unsigned int)badtime));
1483 if ((badcount >= pol) || (badcount == 0)) {
1484 DEBUG(7, ("making mods to update ldap, count=%u, time=%u\n",
1485 (unsigned int)badcount, (unsigned int)badtime));
1486 if (asprintf(&temp, "%li", (long)badcount) < 0) {
1490 ldap_state->smbldap_state->ldap_struct,
1492 get_userattr_key2string(
1493 ldap_state->schema_ver,
1494 LDAP_ATTR_BAD_PASSWORD_COUNT),
1498 if (asprintf(&temp, "%li", (long int)badtime) < 0) {
1502 ldap_state->smbldap_state->ldap_struct,
1504 get_userattr_key2string(
1505 ldap_state->schema_ver,
1506 LDAP_ATTR_BAD_PASSWORD_TIME),
1510 if (badcount == 0) {
1511 DEBUG(7, ("bad password count is reset, deleting login cache entry for %s\n", pdb_get_nt_username(sampass)));
1512 login_cache_delentry(sampass);
1514 LOGIN_CACHE cache_entry;
1516 cache_entry.entry_timestamp = time(NULL);
1517 cache_entry.acct_ctrl = pdb_get_acct_ctrl(sampass);
1518 cache_entry.bad_password_count = badcount;
1519 cache_entry.bad_password_time = badtime;
1521 DEBUG(7, ("Updating bad password count and time in login cache\n"));
1522 login_cache_write(sampass, cache_entry);
1529 /**********************************************************************
1530 End enumeration of the LDAP password list.
1531 *********************************************************************/
1533 static void ldapsam_endsampwent(struct pdb_methods *my_methods)
1535 struct ldapsam_privates *ldap_state = (struct ldapsam_privates *)my_methods->private_data;
1536 if (ldap_state->result) {
1537 ldap_msgfree(ldap_state->result);
1538 ldap_state->result = NULL;
1542 static void append_attr(TALLOC_CTX *mem_ctx, const char ***attr_list,
1543 const char *new_attr)
1547 if (new_attr == NULL) {
1551 for (i=0; (*attr_list)[i] != NULL; i++) {
1555 (*attr_list) = TALLOC_REALLOC_ARRAY(mem_ctx, (*attr_list),
1557 SMB_ASSERT((*attr_list) != NULL);
1558 (*attr_list)[i] = talloc_strdup((*attr_list), new_attr);
1559 (*attr_list)[i+1] = NULL;
1562 static void ldapsam_add_unix_attributes(TALLOC_CTX *mem_ctx,
1563 const char ***attr_list)
1565 append_attr(mem_ctx, attr_list, "uidNumber");
1566 append_attr(mem_ctx, attr_list, "gidNumber");
1567 append_attr(mem_ctx, attr_list, "homeDirectory");
1568 append_attr(mem_ctx, attr_list, "loginShell");
1569 append_attr(mem_ctx, attr_list, "gecos");
1572 /**********************************************************************
1573 Get struct samu entry from LDAP by username.
1574 *********************************************************************/
1576 static NTSTATUS ldapsam_getsampwnam(struct pdb_methods *my_methods, struct samu *user, const char *sname)
1578 NTSTATUS ret = NT_STATUS_UNSUCCESSFUL;
1579 struct ldapsam_privates *ldap_state = (struct ldapsam_privates *)my_methods->private_data;
1580 LDAPMessage *result = NULL;
1581 LDAPMessage *entry = NULL;
1583 const char ** attr_list;
1586 attr_list = get_userattr_list( user, ldap_state->schema_ver );
1587 append_attr(user, &attr_list,
1588 get_userattr_key2string(ldap_state->schema_ver,
1589 LDAP_ATTR_MOD_TIMESTAMP));
1590 ldapsam_add_unix_attributes(user, &attr_list);
1591 rc = ldapsam_search_suffix_by_name(ldap_state, sname, &result,
1593 TALLOC_FREE( attr_list );
1595 if ( rc != LDAP_SUCCESS )
1596 return NT_STATUS_NO_SUCH_USER;
1598 count = ldap_count_entries(ldap_state->smbldap_state->ldap_struct, result);
1601 DEBUG(4, ("ldapsam_getsampwnam: Unable to locate user [%s] count=%d\n", sname, count));
1602 ldap_msgfree(result);
1603 return NT_STATUS_NO_SUCH_USER;
1604 } else if (count > 1) {
1605 DEBUG(1, ("ldapsam_getsampwnam: Duplicate entries for this user [%s] Failing. count=%d\n", sname, count));
1606 ldap_msgfree(result);
1607 return NT_STATUS_NO_SUCH_USER;
1610 entry = ldap_first_entry(ldap_state->smbldap_state->ldap_struct, result);
1612 if (!init_sam_from_ldap(ldap_state, user, entry)) {
1613 DEBUG(1,("ldapsam_getsampwnam: init_sam_from_ldap failed for user '%s'!\n", sname));
1614 ldap_msgfree(result);
1615 return NT_STATUS_NO_SUCH_USER;
1617 pdb_set_backend_private_data(user, result, NULL,
1618 my_methods, PDB_CHANGED);
1619 talloc_autofree_ldapmsg(user, result);
1622 ldap_msgfree(result);
1627 static int ldapsam_get_ldap_user_by_sid(struct ldapsam_privates *ldap_state,
1628 const DOM_SID *sid, LDAPMessage **result)
1631 const char ** attr_list;
1634 switch ( ldap_state->schema_ver ) {
1635 case SCHEMAVER_SAMBASAMACCOUNT: {
1636 TALLOC_CTX *tmp_ctx = talloc_new(NULL);
1637 if (tmp_ctx == NULL) {
1638 return LDAP_NO_MEMORY;
1641 attr_list = get_userattr_list(tmp_ctx,
1642 ldap_state->schema_ver);
1643 append_attr(tmp_ctx, &attr_list,
1644 get_userattr_key2string(
1645 ldap_state->schema_ver,
1646 LDAP_ATTR_MOD_TIMESTAMP));
1647 ldapsam_add_unix_attributes(tmp_ctx, &attr_list);
1648 rc = ldapsam_search_suffix_by_sid(ldap_state, sid,
1650 TALLOC_FREE(tmp_ctx);
1652 if ( rc != LDAP_SUCCESS )
1657 case SCHEMAVER_SAMBAACCOUNT:
1658 if (!sid_peek_check_rid(&ldap_state->domain_sid, sid, &rid)) {
1662 attr_list = get_userattr_list(NULL,
1663 ldap_state->schema_ver);
1664 rc = ldapsam_search_suffix_by_rid(ldap_state, rid, result, attr_list );
1665 TALLOC_FREE( attr_list );
1667 if ( rc != LDAP_SUCCESS )
1674 /**********************************************************************
1675 Get struct samu entry from LDAP by SID.
1676 *********************************************************************/
1678 static NTSTATUS ldapsam_getsampwsid(struct pdb_methods *my_methods, struct samu * user, const DOM_SID *sid)
1680 struct ldapsam_privates *ldap_state = (struct ldapsam_privates *)my_methods->private_data;
1681 LDAPMessage *result = NULL;
1682 LDAPMessage *entry = NULL;
1686 rc = ldapsam_get_ldap_user_by_sid(ldap_state,
1688 if (rc != LDAP_SUCCESS)
1689 return NT_STATUS_NO_SUCH_USER;
1691 count = ldap_count_entries(ldap_state->smbldap_state->ldap_struct, result);
1694 DEBUG(4, ("ldapsam_getsampwsid: Unable to locate SID [%s] "
1695 "count=%d\n", sid_string_dbg(sid), count));
1696 ldap_msgfree(result);
1697 return NT_STATUS_NO_SUCH_USER;
1698 } else if (count > 1) {
1699 DEBUG(1, ("ldapsam_getsampwsid: More than one user with SID "
1700 "[%s]. Failing. count=%d\n", sid_string_dbg(sid),
1702 ldap_msgfree(result);
1703 return NT_STATUS_NO_SUCH_USER;
1706 entry = ldap_first_entry(ldap_state->smbldap_state->ldap_struct, result);
1708 ldap_msgfree(result);
1709 return NT_STATUS_NO_SUCH_USER;
1712 if (!init_sam_from_ldap(ldap_state, user, entry)) {
1713 DEBUG(1,("ldapsam_getsampwsid: init_sam_from_ldap failed!\n"));
1714 ldap_msgfree(result);
1715 return NT_STATUS_NO_SUCH_USER;
1718 pdb_set_backend_private_data(user, result, NULL,
1719 my_methods, PDB_CHANGED);
1720 talloc_autofree_ldapmsg(user, result);
1721 return NT_STATUS_OK;
1724 /********************************************************************
1725 Do the actual modification - also change a plaintext passord if
1727 **********************************************************************/
1729 static NTSTATUS ldapsam_modify_entry(struct pdb_methods *my_methods,
1730 struct samu *newpwd, char *dn,
1731 LDAPMod **mods, int ldap_op,
1732 bool (*need_update)(const struct samu *, enum pdb_elements))
1734 struct ldapsam_privates *ldap_state = (struct ldapsam_privates *)my_methods->private_data;
1737 if (!newpwd || !dn) {
1738 return NT_STATUS_INVALID_PARAMETER;
1742 DEBUG(5,("ldapsam_modify_entry: mods is empty: nothing to modify\n"));
1743 /* may be password change below however */
1747 if (ldap_state->is_nds_ldap) {
1748 smbldap_set_mod(&mods, LDAP_MOD_ADD,
1752 smbldap_set_mod(&mods, LDAP_MOD_ADD,
1756 rc = smbldap_add(ldap_state->smbldap_state,
1759 case LDAP_MOD_REPLACE:
1760 rc = smbldap_modify(ldap_state->smbldap_state,
1764 DEBUG(0,("ldapsam_modify_entry: Wrong LDAP operation type: %d!\n",
1766 return NT_STATUS_INVALID_PARAMETER;
1769 if (rc!=LDAP_SUCCESS) {
1770 return NT_STATUS_UNSUCCESSFUL;
1774 if (!(pdb_get_acct_ctrl(newpwd)&(ACB_WSTRUST|ACB_SVRTRUST|ACB_DOMTRUST)) &&
1775 (lp_ldap_passwd_sync() != LDAP_PASSWD_SYNC_OFF) &&
1776 need_update(newpwd, PDB_PLAINTEXT_PW) &&
1777 (pdb_get_plaintext_passwd(newpwd)!=NULL)) {
1780 char *retoid = NULL;
1781 struct berval *retdata = NULL;
1782 char *utf8_password;
1784 size_t converted_size;
1787 if (!ldap_state->is_nds_ldap) {
1789 if (!smbldap_has_extension(ldap_state->smbldap_state->ldap_struct,
1790 LDAP_EXOP_MODIFY_PASSWD)) {
1791 DEBUG(2, ("ldap password change requested, but LDAP "
1792 "server does not support it -- ignoring\n"));
1793 return NT_STATUS_OK;
1797 if (!push_utf8_talloc(talloc_tos(), &utf8_password,
1798 pdb_get_plaintext_passwd(newpwd),
1801 return NT_STATUS_NO_MEMORY;
1804 if (!push_utf8_talloc(talloc_tos(), &utf8_dn, dn, &converted_size)) {
1805 TALLOC_FREE(utf8_password);
1806 return NT_STATUS_NO_MEMORY;
1809 if ((ber = ber_alloc_t(LBER_USE_DER))==NULL) {
1810 DEBUG(0,("ber_alloc_t returns NULL\n"));
1811 TALLOC_FREE(utf8_password);
1812 TALLOC_FREE(utf8_dn);
1813 return NT_STATUS_UNSUCCESSFUL;
1816 if ((ber_printf (ber, "{") < 0) ||
1817 (ber_printf (ber, "ts", LDAP_TAG_EXOP_MODIFY_PASSWD_ID,
1819 DEBUG(0,("ldapsam_modify_entry: ber_printf returns a "
1822 TALLOC_FREE(utf8_dn);
1823 TALLOC_FREE(utf8_password);
1824 return NT_STATUS_UNSUCCESSFUL;
1827 if ((utf8_password != NULL) && (*utf8_password != '\0')) {
1828 ret = ber_printf(ber, "ts}",
1829 LDAP_TAG_EXOP_MODIFY_PASSWD_NEW,
1832 ret = ber_printf(ber, "}");
1836 DEBUG(0,("ldapsam_modify_entry: ber_printf returns a "
1839 TALLOC_FREE(utf8_dn);
1840 TALLOC_FREE(utf8_password);
1841 return NT_STATUS_UNSUCCESSFUL;
1844 if ((rc = ber_flatten (ber, &bv))<0) {
1845 DEBUG(0,("ldapsam_modify_entry: ber_flatten returns a value <0\n"));
1847 TALLOC_FREE(utf8_dn);
1848 TALLOC_FREE(utf8_password);
1849 return NT_STATUS_UNSUCCESSFUL;
1852 TALLOC_FREE(utf8_dn);
1853 TALLOC_FREE(utf8_password);
1856 if (!ldap_state->is_nds_ldap) {
1857 rc = smbldap_extended_operation(ldap_state->smbldap_state,
1858 LDAP_EXOP_MODIFY_PASSWD,
1859 bv, NULL, NULL, &retoid,
1862 rc = pdb_nds_set_password(ldap_state->smbldap_state, dn,
1863 pdb_get_plaintext_passwd(newpwd));
1865 if (rc != LDAP_SUCCESS) {
1866 char *ld_error = NULL;
1868 if (rc == LDAP_OBJECT_CLASS_VIOLATION) {
1869 DEBUG(3, ("Could not set userPassword "
1870 "attribute due to an objectClass "
1871 "violation -- ignoring\n"));
1873 return NT_STATUS_OK;
1876 ldap_get_option(ldap_state->smbldap_state->ldap_struct, LDAP_OPT_ERROR_STRING,
1878 DEBUG(0,("ldapsam_modify_entry: LDAP Password could not be changed for user %s: %s\n\t%s\n",
1879 pdb_get_username(newpwd), ldap_err2string(rc), ld_error?ld_error:"unknown"));
1880 SAFE_FREE(ld_error);
1882 #if defined(LDAP_CONSTRAINT_VIOLATION)
1883 if (rc == LDAP_CONSTRAINT_VIOLATION)
1884 return NT_STATUS_PASSWORD_RESTRICTION;
1886 return NT_STATUS_UNSUCCESSFUL;
1888 DEBUG(3,("ldapsam_modify_entry: LDAP Password changed for user %s\n",pdb_get_username(newpwd)));
1889 #ifdef DEBUG_PASSWORD
1890 DEBUG(100,("ldapsam_modify_entry: LDAP Password changed to %s\n",pdb_get_plaintext_passwd(newpwd)));
1893 ber_bvfree(retdata);
1895 ldap_memfree(retoid);
1899 return NT_STATUS_OK;
1902 /**********************************************************************
1903 Delete entry from LDAP for username.
1904 *********************************************************************/
1906 static NTSTATUS ldapsam_delete_sam_account(struct pdb_methods *my_methods,
1907 struct samu * sam_acct)
1909 struct ldapsam_privates *priv =
1910 (struct ldapsam_privates *)my_methods->private_data;
1913 LDAPMessage *msg, *entry;
1914 NTSTATUS result = NT_STATUS_NO_MEMORY;
1915 const char **attr_list;
1916 TALLOC_CTX *mem_ctx;
1919 DEBUG(0, ("ldapsam_delete_sam_account: sam_acct was NULL!\n"));
1920 return NT_STATUS_INVALID_PARAMETER;
1923 sname = pdb_get_username(sam_acct);
1925 DEBUG(3, ("ldapsam_delete_sam_account: Deleting user %s from "
1928 mem_ctx = talloc_new(NULL);
1929 if (mem_ctx == NULL) {
1930 DEBUG(0, ("talloc_new failed\n"));
1934 attr_list = get_userattr_delete_list(mem_ctx, priv->schema_ver );
1935 if (attr_list == NULL) {
1939 rc = ldapsam_search_suffix_by_name(priv, sname, &msg, attr_list);
1941 if ((rc != LDAP_SUCCESS) ||
1942 (ldap_count_entries(priv2ld(priv), msg) != 1) ||
1943 ((entry = ldap_first_entry(priv2ld(priv), msg)) == NULL)) {
1944 DEBUG(5, ("Could not find user %s\n", sname));
1945 result = NT_STATUS_NO_SUCH_USER;
1949 rc = ldapsam_delete_entry(
1950 priv, mem_ctx, entry,
1951 priv->schema_ver == SCHEMAVER_SAMBASAMACCOUNT ?
1952 LDAP_OBJ_SAMBASAMACCOUNT : LDAP_OBJ_SAMBAACCOUNT,
1955 result = (rc == LDAP_SUCCESS) ?
1956 NT_STATUS_OK : NT_STATUS_ACCESS_DENIED;
1959 TALLOC_FREE(mem_ctx);
1963 /**********************************************************************
1964 Helper function to determine for update_sam_account whether
1965 we need LDAP modification.
1966 *********************************************************************/
1968 static bool element_is_changed(const struct samu *sampass,
1969 enum pdb_elements element)
1971 return IS_SAM_CHANGED(sampass, element);
1974 /**********************************************************************
1976 *********************************************************************/
1978 static NTSTATUS ldapsam_update_sam_account(struct pdb_methods *my_methods, struct samu * newpwd)
1980 NTSTATUS ret = NT_STATUS_UNSUCCESSFUL;
1981 struct ldapsam_privates *ldap_state = (struct ldapsam_privates *)my_methods->private_data;
1984 LDAPMessage *result = NULL;
1985 LDAPMessage *entry = NULL;
1986 LDAPMod **mods = NULL;
1987 const char **attr_list;
1989 result = (LDAPMessage *)pdb_get_backend_private_data(newpwd, my_methods);
1991 attr_list = get_userattr_list(NULL, ldap_state->schema_ver);
1992 if (pdb_get_username(newpwd) == NULL) {
1993 return NT_STATUS_INVALID_PARAMETER;
1995 rc = ldapsam_search_suffix_by_name(ldap_state, pdb_get_username(newpwd), &result, attr_list );
1996 TALLOC_FREE( attr_list );
1997 if (rc != LDAP_SUCCESS) {
1998 return NT_STATUS_UNSUCCESSFUL;
2000 pdb_set_backend_private_data(newpwd, result, NULL,
2001 my_methods, PDB_CHANGED);
2002 talloc_autofree_ldapmsg(newpwd, result);
2005 if (ldap_count_entries(ldap_state->smbldap_state->ldap_struct, result) == 0) {
2006 DEBUG(0, ("ldapsam_update_sam_account: No user to modify!\n"));
2007 return NT_STATUS_UNSUCCESSFUL;
2010 entry = ldap_first_entry(ldap_state->smbldap_state->ldap_struct, result);
2011 dn = smbldap_talloc_dn(talloc_tos(), ldap_state->smbldap_state->ldap_struct, entry);
2013 return NT_STATUS_UNSUCCESSFUL;
2016 DEBUG(4, ("ldapsam_update_sam_account: user %s to be modified has dn: %s\n", pdb_get_username(newpwd), dn));
2018 if (!init_ldap_from_sam(ldap_state, entry, &mods, newpwd,
2019 element_is_changed)) {
2020 DEBUG(0, ("ldapsam_update_sam_account: init_ldap_from_sam failed!\n"));
2023 ldap_mods_free(mods,True);
2024 return NT_STATUS_UNSUCCESSFUL;
2027 if ((lp_ldap_passwd_sync() != LDAP_PASSWD_SYNC_ONLY)
2028 && (mods == NULL)) {
2029 DEBUG(4,("ldapsam_update_sam_account: mods is empty: nothing to update for user: %s\n",
2030 pdb_get_username(newpwd)));
2032 return NT_STATUS_OK;
2035 ret = ldapsam_modify_entry(my_methods,newpwd,dn,mods,LDAP_MOD_REPLACE, element_is_changed);
2038 ldap_mods_free(mods,True);
2044 * We need to set the backend private data to NULL here. For example
2045 * setuserinfo level 25 does a pdb_update_sam_account twice on the
2046 * same one, and with the explicit delete / add logic for attribute
2047 * values the second time we would use the wrong "old" value which
2048 * does not exist in LDAP anymore. Thus the LDAP server would refuse
2050 * The existing LDAPMessage is still being auto-freed by the
2053 pdb_set_backend_private_data(newpwd, NULL, NULL, my_methods,
2056 if (!NT_STATUS_IS_OK(ret)) {
2060 DEBUG(2, ("ldapsam_update_sam_account: successfully modified uid = %s in the LDAP database\n",
2061 pdb_get_username(newpwd)));
2062 return NT_STATUS_OK;
2065 /***************************************************************************
2066 Renames a struct samu
2067 - The "rename user script" has full responsibility for changing everything
2068 ***************************************************************************/
2070 static NTSTATUS ldapsam_del_groupmem(struct pdb_methods *my_methods,
2071 TALLOC_CTX *tmp_ctx,
2075 static NTSTATUS ldapsam_enum_group_memberships(struct pdb_methods *methods,
2076 TALLOC_CTX *mem_ctx,
2080 size_t *p_num_groups);
2082 static NTSTATUS ldapsam_rename_sam_account(struct pdb_methods *my_methods,
2083 struct samu *old_acct,
2084 const char *newname)
2086 const char *oldname;
2088 char *rename_script = NULL;
2089 fstring oldname_lower, newname_lower;
2092 DEBUG(0, ("ldapsam_rename_sam_account: old_acct was NULL!\n"));
2093 return NT_STATUS_INVALID_PARAMETER;
2096 DEBUG(0, ("ldapsam_rename_sam_account: newname was NULL!\n"));
2097 return NT_STATUS_INVALID_PARAMETER;
2100 oldname = pdb_get_username(old_acct);
2102 /* rename the posix user */
2103 rename_script = SMB_STRDUP(lp_renameuser_script());
2104 if (rename_script == NULL) {
2105 return NT_STATUS_NO_MEMORY;
2108 if (!(*rename_script)) {
2109 SAFE_FREE(rename_script);
2110 return NT_STATUS_ACCESS_DENIED;
2113 DEBUG (3, ("ldapsam_rename_sam_account: Renaming user %s to %s.\n",
2116 /* We have to allow the account name to end with a '$'.
2117 Also, follow the semantics in _samr_create_user() and lower case the
2118 posix name but preserve the case in passdb */
2120 fstrcpy( oldname_lower, oldname );
2121 strlower_m( oldname_lower );
2122 fstrcpy( newname_lower, newname );
2123 strlower_m( newname_lower );
2124 rename_script = realloc_string_sub2(rename_script,
2129 if (!rename_script) {
2130 return NT_STATUS_NO_MEMORY;
2132 rename_script = realloc_string_sub2(rename_script,
2137 rc = smbrun(rename_script, NULL);
2139 DEBUG(rc ? 0 : 3,("Running the command `%s' gave %d\n",
2140 rename_script, rc));
2142 SAFE_FREE(rename_script);
2145 smb_nscd_flush_user_cache();
2149 return NT_STATUS_UNSUCCESSFUL;
2151 return NT_STATUS_OK;
2154 /**********************************************************************
2155 Helper function to determine for update_sam_account whether
2156 we need LDAP modification.
2157 *********************************************************************/
2159 static bool element_is_set_or_changed(const struct samu *sampass,
2160 enum pdb_elements element)
2162 return (IS_SAM_SET(sampass, element) ||
2163 IS_SAM_CHANGED(sampass, element));
2166 /**********************************************************************
2167 Add struct samu to LDAP.
2168 *********************************************************************/
2170 static NTSTATUS ldapsam_add_sam_account(struct pdb_methods *my_methods, struct samu * newpwd)
2172 NTSTATUS ret = NT_STATUS_UNSUCCESSFUL;
2173 struct ldapsam_privates *ldap_state = (struct ldapsam_privates *)my_methods->private_data;
2175 LDAPMessage *result = NULL;
2176 LDAPMessage *entry = NULL;
2177 LDAPMod **mods = NULL;
2178 int ldap_op = LDAP_MOD_REPLACE;
2180 const char **attr_list;
2181 char *escape_user = NULL;
2182 const char *username = pdb_get_username(newpwd);
2183 const DOM_SID *sid = pdb_get_user_sid(newpwd);
2184 char *filter = NULL;
2186 NTSTATUS status = NT_STATUS_UNSUCCESSFUL;
2187 TALLOC_CTX *ctx = talloc_init("ldapsam_add_sam_account");
2190 return NT_STATUS_NO_MEMORY;
2193 if (!username || !*username) {
2194 DEBUG(0, ("ldapsam_add_sam_account: Cannot add user without a username!\n"));
2195 status = NT_STATUS_INVALID_PARAMETER;
2199 /* free this list after the second search or in case we exit on failure */
2200 attr_list = get_userattr_list(ctx, ldap_state->schema_ver);
2202 rc = ldapsam_search_suffix_by_name (ldap_state, username, &result, attr_list);
2204 if (rc != LDAP_SUCCESS) {
2208 if (ldap_count_entries(ldap_state->smbldap_state->ldap_struct, result) != 0) {
2209 DEBUG(0,("ldapsam_add_sam_account: User '%s' already in the base, with samba attributes\n",
2213 ldap_msgfree(result);
2216 if (element_is_set_or_changed(newpwd, PDB_USERSID)) {
2217 rc = ldapsam_get_ldap_user_by_sid(ldap_state,
2219 if (rc == LDAP_SUCCESS) {
2220 if (ldap_count_entries(ldap_state->smbldap_state->ldap_struct, result) != 0) {
2221 DEBUG(0,("ldapsam_add_sam_account: SID '%s' "
2222 "already in the base, with samba "
2223 "attributes\n", sid_string_dbg(sid)));
2226 ldap_msgfree(result);
2231 /* does the entry already exist but without a samba attributes?
2232 we need to return the samba attributes here */
2234 escape_user = escape_ldap_string(talloc_tos(), username);
2235 filter = talloc_strdup(attr_list, "(uid=%u)");
2237 status = NT_STATUS_NO_MEMORY;
2240 filter = talloc_all_string_sub(attr_list, filter, "%u", escape_user);
2241 TALLOC_FREE(escape_user);
2243 status = NT_STATUS_NO_MEMORY;
2247 rc = smbldap_search_suffix(ldap_state->smbldap_state,
2248 filter, attr_list, &result);
2249 if ( rc != LDAP_SUCCESS ) {
2253 num_result = ldap_count_entries(ldap_state->smbldap_state->ldap_struct, result);
2255 if (num_result > 1) {
2256 DEBUG (0, ("ldapsam_add_sam_account: More than one user with that uid exists: bailing out!\n"));
2260 /* Check if we need to update an existing entry */
2261 if (num_result == 1) {
2262 DEBUG(3,("ldapsam_add_sam_account: User exists without samba attributes: adding them\n"));
2263 ldap_op = LDAP_MOD_REPLACE;
2264 entry = ldap_first_entry (ldap_state->smbldap_state->ldap_struct, result);
2265 dn = smbldap_talloc_dn(ctx, ldap_state->smbldap_state->ldap_struct, entry);
2267 status = NT_STATUS_NO_MEMORY;
2271 } else if (ldap_state->schema_ver == SCHEMAVER_SAMBASAMACCOUNT) {
2273 /* There might be a SID for this account already - say an idmap entry */
2275 filter = talloc_asprintf(ctx,
2276 "(&(%s=%s)(|(objectClass=%s)(objectClass=%s)))",
2277 get_userattr_key2string(ldap_state->schema_ver,
2278 LDAP_ATTR_USER_SID),
2279 sid_string_talloc(ctx, sid),
2280 LDAP_OBJ_IDMAP_ENTRY,
2281 LDAP_OBJ_SID_ENTRY);
2283 status = NT_STATUS_NO_MEMORY;
2287 /* free old result before doing a new search */
2288 if (result != NULL) {
2289 ldap_msgfree(result);
2292 rc = smbldap_search_suffix(ldap_state->smbldap_state,
2293 filter, attr_list, &result);
2295 if ( rc != LDAP_SUCCESS ) {
2299 num_result = ldap_count_entries(ldap_state->smbldap_state->ldap_struct, result);
2301 if (num_result > 1) {
2302 DEBUG (0, ("ldapsam_add_sam_account: More than one user with specified Sid exists: bailing out!\n"));
2306 /* Check if we need to update an existing entry */
2307 if (num_result == 1) {
2309 DEBUG(3,("ldapsam_add_sam_account: User exists without samba attributes: adding them\n"));
2310 ldap_op = LDAP_MOD_REPLACE;
2311 entry = ldap_first_entry (ldap_state->smbldap_state->ldap_struct, result);
2312 dn = smbldap_talloc_dn (ctx, ldap_state->smbldap_state->ldap_struct, entry);
2314 status = NT_STATUS_NO_MEMORY;
2320 if (num_result == 0) {
2321 char *escape_username;
2322 /* Check if we need to add an entry */
2323 DEBUG(3,("ldapsam_add_sam_account: Adding new user\n"));
2324 ldap_op = LDAP_MOD_ADD;
2326 escape_username = escape_rdn_val_string_alloc(username);
2327 if (!escape_username) {
2328 status = NT_STATUS_NO_MEMORY;
2332 if (username[strlen(username)-1] == '$') {
2333 dn = talloc_asprintf(ctx,
2336 lp_ldap_machine_suffix());
2338 dn = talloc_asprintf(ctx,
2341 lp_ldap_user_suffix());
2344 SAFE_FREE(escape_username);
2346 status = NT_STATUS_NO_MEMORY;
2351 if (!init_ldap_from_sam(ldap_state, entry, &mods, newpwd,
2352 element_is_set_or_changed)) {
2353 DEBUG(0, ("ldapsam_add_sam_account: init_ldap_from_sam failed!\n"));
2355 ldap_mods_free(mods, true);
2361 DEBUG(0,("ldapsam_add_sam_account: mods is empty: nothing to add for user: %s\n",pdb_get_username(newpwd)));
2364 switch ( ldap_state->schema_ver ) {
2365 case SCHEMAVER_SAMBAACCOUNT:
2366 smbldap_set_mod(&mods, LDAP_MOD_ADD, "objectclass", LDAP_OBJ_SAMBAACCOUNT);
2368 case SCHEMAVER_SAMBASAMACCOUNT:
2369 smbldap_set_mod(&mods, LDAP_MOD_ADD, "objectclass", LDAP_OBJ_SAMBASAMACCOUNT);
2372 DEBUG(0,("ldapsam_add_sam_account: invalid schema version specified\n"));
2376 ret = ldapsam_modify_entry(my_methods,newpwd,dn,mods,ldap_op, element_is_set_or_changed);
2377 if (!NT_STATUS_IS_OK(ret)) {
2378 DEBUG(0,("ldapsam_add_sam_account: failed to modify/add user with uid = %s (dn = %s)\n",
2379 pdb_get_username(newpwd),dn));
2380 ldap_mods_free(mods, true);
2384 DEBUG(2,("ldapsam_add_sam_account: added: uid == %s in the LDAP database\n", pdb_get_username(newpwd)));
2385 ldap_mods_free(mods, true);
2387 status = NT_STATUS_OK;
2393 ldap_msgfree(result);
2398 /**********************************************************************
2399 *********************************************************************/
2401 static int ldapsam_search_one_group (struct ldapsam_privates *ldap_state,
2403 LDAPMessage ** result)
2405 int scope = LDAP_SCOPE_SUBTREE;
2407 const char **attr_list;
2409 attr_list = get_attr_list(NULL, groupmap_attr_list);
2410 rc = smbldap_search(ldap_state->smbldap_state,
2411 lp_ldap_suffix (), scope,
2412 filter, attr_list, 0, result);
2413 TALLOC_FREE(attr_list);
2418 /**********************************************************************
2419 *********************************************************************/
2421 static bool init_group_from_ldap(struct ldapsam_privates *ldap_state,
2422 GROUP_MAP *map, LDAPMessage *entry)
2425 TALLOC_CTX *ctx = talloc_init("init_group_from_ldap");
2427 if (ldap_state == NULL || map == NULL || entry == NULL ||
2428 ldap_state->smbldap_state->ldap_struct == NULL) {
2429 DEBUG(0, ("init_group_from_ldap: NULL parameters found!\n"));
2434 temp = smbldap_talloc_single_attribute(
2435 ldap_state->smbldap_state->ldap_struct,
2437 get_attr_key2string(groupmap_attr_list,
2438 LDAP_ATTR_GIDNUMBER),
2441 DEBUG(0, ("init_group_from_ldap: Mandatory attribute %s not found\n",
2442 get_attr_key2string( groupmap_attr_list, LDAP_ATTR_GIDNUMBER)));
2446 DEBUG(2, ("init_group_from_ldap: Entry found for group: %s\n", temp));
2448 map->gid = (gid_t)atol(temp);
2451 temp = smbldap_talloc_single_attribute(
2452 ldap_state->smbldap_state->ldap_struct,
2454 get_attr_key2string(groupmap_attr_list,
2455 LDAP_ATTR_GROUP_SID),
2458 DEBUG(0, ("init_group_from_ldap: Mandatory attribute %s not found\n",
2459 get_attr_key2string( groupmap_attr_list, LDAP_ATTR_GROUP_SID)));
2464 if (!string_to_sid(&map->sid, temp)) {
2465 DEBUG(1, ("SID string [%s] could not be read as a valid SID\n", temp));
2471 temp = smbldap_talloc_single_attribute(
2472 ldap_state->smbldap_state->ldap_struct,
2474 get_attr_key2string(groupmap_attr_list,
2475 LDAP_ATTR_GROUP_TYPE),
2478 DEBUG(0, ("init_group_from_ldap: Mandatory attribute %s not found\n",
2479 get_attr_key2string( groupmap_attr_list, LDAP_ATTR_GROUP_TYPE)));
2483 map->sid_name_use = (enum lsa_SidType)atol(temp);
2485 if ((map->sid_name_use < SID_NAME_USER) ||
2486 (map->sid_name_use > SID_NAME_UNKNOWN)) {
2487 DEBUG(0, ("init_group_from_ldap: Unknown Group type: %d\n", map->sid_name_use));
2493 temp = smbldap_talloc_single_attribute(
2494 ldap_state->smbldap_state->ldap_struct,
2496 get_attr_key2string(groupmap_attr_list,
2497 LDAP_ATTR_DISPLAY_NAME),
2500 temp = smbldap_talloc_single_attribute(
2501 ldap_state->smbldap_state->ldap_struct,
2503 get_attr_key2string(groupmap_attr_list,
2507 DEBUG(0, ("init_group_from_ldap: Attributes cn not found either \
2508 for gidNumber(%lu)\n",(unsigned long)map->gid));
2513 fstrcpy(map->nt_name, temp);
2516 temp = smbldap_talloc_single_attribute(
2517 ldap_state->smbldap_state->ldap_struct,
2519 get_attr_key2string(groupmap_attr_list,
2523 temp = talloc_strdup(ctx, "");
2529 fstrcpy(map->comment, temp);
2531 if (lp_parm_bool(-1, "ldapsam", "trusted", false)) {
2532 store_gid_sid_cache(&map->sid, map->gid);
2533 idmap_cache_set_sid2gid(&map->sid, map->gid);
2540 /**********************************************************************
2541 *********************************************************************/
2543 static NTSTATUS ldapsam_getgroup(struct pdb_methods *methods,
2547 struct ldapsam_privates *ldap_state =
2548 (struct ldapsam_privates *)methods->private_data;
2549 LDAPMessage *result = NULL;
2550 LDAPMessage *entry = NULL;
2553 if (ldapsam_search_one_group(ldap_state, filter, &result)
2555 return NT_STATUS_NO_SUCH_GROUP;
2558 count = ldap_count_entries(priv2ld(ldap_state), result);
2561 DEBUG(4, ("ldapsam_getgroup: Did not find group, filter was "
2563 ldap_msgfree(result);
2564 return NT_STATUS_NO_SUCH_GROUP;
2568 DEBUG(1, ("ldapsam_getgroup: Duplicate entries for filter %s: "
2569 "count=%d\n", filter, count));
2570 ldap_msgfree(result);
2571 return NT_STATUS_NO_SUCH_GROUP;
2574 entry = ldap_first_entry(priv2ld(ldap_state), result);
2577 ldap_msgfree(result);
2578 return NT_STATUS_UNSUCCESSFUL;
2581 if (!init_group_from_ldap(ldap_state, map, entry)) {
2582 DEBUG(1, ("ldapsam_getgroup: init_group_from_ldap failed for "
2583 "group filter %s\n", filter));
2584 ldap_msgfree(result);
2585 return NT_STATUS_NO_SUCH_GROUP;
2588 ldap_msgfree(result);
2589 return NT_STATUS_OK;
2592 /**********************************************************************
2593 *********************************************************************/
2595 static NTSTATUS ldapsam_getgrsid(struct pdb_methods *methods, GROUP_MAP *map,
2598 char *filter = NULL;
2602 if (asprintf(&filter, "(&(objectClass=%s)(%s=%s))",
2604 get_attr_key2string(groupmap_attr_list, LDAP_ATTR_GROUP_SID),
2605 sid_to_fstring(tmp, &sid)) < 0) {
2606 return NT_STATUS_NO_MEMORY;
2609 status = ldapsam_getgroup(methods, filter, map);
2614 /**********************************************************************
2615 *********************************************************************/
2617 static NTSTATUS ldapsam_getgrgid(struct pdb_methods *methods, GROUP_MAP *map,
2620 char *filter = NULL;
2623 if (asprintf(&filter, "(&(objectClass=%s)(%s=%lu))",
2625 get_attr_key2string(groupmap_attr_list, LDAP_ATTR_GIDNUMBER),
2626 (unsigned long)gid) < 0) {
2627 return NT_STATUS_NO_MEMORY;
2630 status = ldapsam_getgroup(methods, filter, map);
2635 /**********************************************************************
2636 *********************************************************************/
2638 static NTSTATUS ldapsam_getgrnam(struct pdb_methods *methods, GROUP_MAP *map,
2641 char *filter = NULL;
2642 char *escape_name = escape_ldap_string(talloc_tos(), name);
2646 return NT_STATUS_NO_MEMORY;
2649 if (asprintf(&filter, "(&(objectClass=%s)(|(%s=%s)(%s=%s)))",
2651 get_attr_key2string(groupmap_attr_list, LDAP_ATTR_DISPLAY_NAME), escape_name,
2652 get_attr_key2string(groupmap_attr_list, LDAP_ATTR_CN),
2654 TALLOC_FREE(escape_name);
2655 return NT_STATUS_NO_MEMORY;
2658 TALLOC_FREE(escape_name);
2659 status = ldapsam_getgroup(methods, filter, map);
2664 static bool ldapsam_extract_rid_from_entry(LDAP *ldap_struct,
2666 const DOM_SID *domain_sid,
2672 if (!smbldap_get_single_attribute(ldap_struct, entry, "sambaSID",
2673 str, sizeof(str)-1)) {
2674 DEBUG(10, ("Could not find sambaSID attribute\n"));
2678 if (!string_to_sid(&sid, str)) {
2679 DEBUG(10, ("Could not convert string %s to sid\n", str));
2683 if (sid_compare_domain(&sid, domain_sid) != 0) {
2684 DEBUG(10, ("SID %s is not in expected domain %s\n",
2685 str, sid_string_dbg(domain_sid)));
2689 if (!sid_peek_rid(&sid, rid)) {
2690 DEBUG(10, ("Could not peek into RID\n"));
2697 static NTSTATUS ldapsam_enum_group_members(struct pdb_methods *methods,
2698 TALLOC_CTX *mem_ctx,
2699 const DOM_SID *group,
2700 uint32 **pp_member_rids,
2701 size_t *p_num_members)
2703 struct ldapsam_privates *ldap_state =
2704 (struct ldapsam_privates *)methods->private_data;
2705 struct smbldap_state *conn = ldap_state->smbldap_state;
2706 const char *id_attrs[] = { "memberUid", "gidNumber", NULL };
2707 const char *sid_attrs[] = { "sambaSID", NULL };
2708 NTSTATUS ret = NT_STATUS_UNSUCCESSFUL;
2709 LDAPMessage *result = NULL;
2712 char **values = NULL;
2717 *pp_member_rids = NULL;
2720 filter = talloc_asprintf(mem_ctx,
2721 "(&(objectClass=%s)"
2724 LDAP_OBJ_POSIXGROUP,
2726 sid_string_talloc(mem_ctx, group));
2727 if (filter == NULL) {
2728 ret = NT_STATUS_NO_MEMORY;
2732 rc = smbldap_search(conn, lp_ldap_suffix(),
2733 LDAP_SCOPE_SUBTREE, filter, id_attrs, 0,
2736 if (rc != LDAP_SUCCESS)
2739 talloc_autofree_ldapmsg(mem_ctx, result);
2741 count = ldap_count_entries(conn->ldap_struct, result);
2744 DEBUG(1, ("Found more than one groupmap entry for %s\n",
2745 sid_string_dbg(group)));
2746 ret = NT_STATUS_INTERNAL_DB_CORRUPTION;
2751 ret = NT_STATUS_NO_SUCH_GROUP;
2755 entry = ldap_first_entry(conn->ldap_struct, result);
2759 gidstr = smbldap_talloc_single_attribute(priv2ld(ldap_state), entry, "gidNumber", mem_ctx);
2761 DEBUG (0, ("ldapsam_enum_group_members: Unable to find the group's gid!\n"));
2762 ret = NT_STATUS_INTERNAL_DB_CORRUPTION;
2766 values = ldap_get_values(conn->ldap_struct, entry, "memberUid");
2768 if ((values != NULL) && (values[0] != NULL)) {
2770 filter = talloc_asprintf(mem_ctx, "(&(objectClass=%s)(|", LDAP_OBJ_SAMBASAMACCOUNT);
2771 if (filter == NULL) {
2772 ret = NT_STATUS_NO_MEMORY;
2776 for (memberuid = values; *memberuid != NULL; memberuid += 1) {
2777 char *escape_memberuid;
2779 escape_memberuid = escape_ldap_string(talloc_tos(),
2781 if (escape_memberuid == NULL) {
2782 ret = NT_STATUS_NO_MEMORY;
2786 filter = talloc_asprintf_append_buffer(filter, "(uid=%s)", escape_memberuid);
2787 TALLOC_FREE(escape_memberuid);
2788 if (filter == NULL) {
2789 ret = NT_STATUS_NO_MEMORY;
2794 filter = talloc_asprintf_append_buffer(filter, "))");
2795 if (filter == NULL) {
2796 ret = NT_STATUS_NO_MEMORY;
2800 rc = smbldap_search(conn, lp_ldap_suffix(),
2801 LDAP_SCOPE_SUBTREE, filter, sid_attrs, 0,
2804 if (rc != LDAP_SUCCESS)
2807 count = ldap_count_entries(conn->ldap_struct, result);
2808 DEBUG(10,("ldapsam_enum_group_members: found %d accounts\n", count));
2810 talloc_autofree_ldapmsg(mem_ctx, result);
2812 for (entry = ldap_first_entry(conn->ldap_struct, result);
2814 entry = ldap_next_entry(conn->ldap_struct, entry))
2820 sidstr = smbldap_talloc_single_attribute(conn->ldap_struct,
2824 DEBUG(0, ("Severe DB error, %s can't miss the sambaSID"
2825 "attribute\n", LDAP_OBJ_SAMBASAMACCOUNT));
2826 ret = NT_STATUS_INTERNAL_DB_CORRUPTION;
2830 if (!string_to_sid(&sid, sidstr))
2833 if (!sid_check_is_in_our_domain(&sid)) {
2834 DEBUG(0, ("Inconsistent SAM -- group member uid not "
2835 "in our domain\n"));
2836 ret = NT_STATUS_INTERNAL_DB_CORRUPTION;
2840 sid_peek_rid(&sid, &rid);
2842 if (!add_rid_to_array_unique(mem_ctx, rid, pp_member_rids,
2844 ret = NT_STATUS_NO_MEMORY;
2850 filter = talloc_asprintf(mem_ctx,
2851 "(&(objectClass=%s)"
2853 LDAP_OBJ_SAMBASAMACCOUNT,
2856 rc = smbldap_search(conn, lp_ldap_suffix(),
2857 LDAP_SCOPE_SUBTREE, filter, sid_attrs, 0,
2860 if (rc != LDAP_SUCCESS)
2863 talloc_autofree_ldapmsg(mem_ctx, result);
2865 for (entry = ldap_first_entry(conn->ldap_struct, result);
2867 entry = ldap_next_entry(conn->ldap_struct, entry))
2871 if (!ldapsam_extract_rid_from_entry(conn->ldap_struct,
2873 get_global_sam_sid(),
2875 DEBUG(0, ("Severe DB error, %s can't miss the samba SID" "attribute\n", LDAP_OBJ_SAMBASAMACCOUNT));
2876 ret = NT_STATUS_INTERNAL_DB_CORRUPTION;
2880 if (!add_rid_to_array_unique(mem_ctx, rid, pp_member_rids,
2882 ret = NT_STATUS_NO_MEMORY;
2892 ldap_value_free(values);
2897 static NTSTATUS ldapsam_enum_group_memberships(struct pdb_methods *methods,
2898 TALLOC_CTX *mem_ctx,
2902 size_t *p_num_groups)
2904 struct ldapsam_privates *ldap_state =
2905 (struct ldapsam_privates *)methods->private_data;
2906 struct smbldap_state *conn = ldap_state->smbldap_state;
2908 const char *attrs[] = { "gidNumber", "sambaSID", NULL };
2911 LDAPMessage *result = NULL;
2913 NTSTATUS ret = NT_STATUS_UNSUCCESSFUL;
2914 size_t num_sids, num_gids;
2916 gid_t primary_gid = -1;
2921 if (pdb_get_username(user) == NULL) {
2922 return NT_STATUS_INVALID_PARAMETER;
2925 escape_name = escape_ldap_string(talloc_tos(), pdb_get_username(user));
2926 if (escape_name == NULL)
2927 return NT_STATUS_NO_MEMORY;
2929 if (user->unix_pw) {
2930 primary_gid = user->unix_pw->pw_gid;
2932 /* retrieve the users primary gid */
2933 filter = talloc_asprintf(mem_ctx,
2934 "(&(objectClass=%s)(uid=%s))",
2935 LDAP_OBJ_SAMBASAMACCOUNT,
2937 if (filter == NULL) {
2938 ret = NT_STATUS_NO_MEMORY;
2942 rc = smbldap_search(conn, lp_ldap_suffix(),
2943 LDAP_SCOPE_SUBTREE, filter, attrs, 0, &result);
2945 if (rc != LDAP_SUCCESS)
2948 talloc_autofree_ldapmsg(mem_ctx, result);
2950 count = ldap_count_entries(priv2ld(ldap_state), result);
2954 DEBUG(1, ("User account [%s] not found!\n", pdb_get_username(user)));
2955 ret = NT_STATUS_NO_SUCH_USER;
2958 entry = ldap_first_entry(priv2ld(ldap_state), result);
2960 gidstr = smbldap_talloc_single_attribute(priv2ld(ldap_state), entry, "gidNumber", mem_ctx);
2962 DEBUG (1, ("Unable to find the member's gid!\n"));
2963 ret = NT_STATUS_INTERNAL_DB_CORRUPTION;
2966 primary_gid = strtoul(gidstr, NULL, 10);
2969 DEBUG(1, ("found more than one account with the same user name ?!\n"));
2970 ret = NT_STATUS_INTERNAL_DB_CORRUPTION;
2975 filter = talloc_asprintf(mem_ctx,
2976 "(&(objectClass=%s)(|(memberUid=%s)(gidNumber=%u)))",
2977 LDAP_OBJ_POSIXGROUP, escape_name, (unsigned int)primary_gid);
2978 if (filter == NULL) {
2979 ret = NT_STATUS_NO_MEMORY;
2983 rc = smbldap_search(conn, lp_ldap_suffix(),
2984 LDAP_SCOPE_SUBTREE, filter, attrs, 0, &result);
2986 if (rc != LDAP_SUCCESS)
2989 talloc_autofree_ldapmsg(mem_ctx, result);
2997 /* We need to add the primary group as the first gid/sid */
2999 if (!add_gid_to_array_unique(mem_ctx, primary_gid, pp_gids, &num_gids)) {
3000 ret = NT_STATUS_NO_MEMORY;
3004 /* This sid will be replaced later */
3006 ret = add_sid_to_array_unique(mem_ctx, &global_sid_NULL, pp_sids,