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
49 #define DBGC_CLASS DBGC_PASSDB
55 * Work around versions of the LDAP client libs that don't have the OIDs
56 * defined, or have them defined under the old name.
57 * This functionality is really a factor of the server, not the client
61 #if defined(LDAP_EXOP_X_MODIFY_PASSWD) && !defined(LDAP_EXOP_MODIFY_PASSWD)
62 #define LDAP_EXOP_MODIFY_PASSWD LDAP_EXOP_X_MODIFY_PASSWD
63 #elif !defined(LDAP_EXOP_MODIFY_PASSWD)
64 #define LDAP_EXOP_MODIFY_PASSWD "1.3.6.1.4.1.4203.1.11.1"
67 #if defined(LDAP_EXOP_X_MODIFY_PASSWD_ID) && !defined(LDAP_EXOP_MODIFY_PASSWD_ID)
68 #define LDAP_TAG_EXOP_MODIFY_PASSWD_ID LDAP_EXOP_X_MODIFY_PASSWD_ID
69 #elif !defined(LDAP_EXOP_MODIFY_PASSWD_ID)
70 #define LDAP_TAG_EXOP_MODIFY_PASSWD_ID ((ber_tag_t) 0x80U)
73 #if defined(LDAP_EXOP_X_MODIFY_PASSWD_NEW) && !defined(LDAP_EXOP_MODIFY_PASSWD_NEW)
74 #define LDAP_TAG_EXOP_MODIFY_PASSWD_NEW LDAP_EXOP_X_MODIFY_PASSWD_NEW
75 #elif !defined(LDAP_EXOP_MODIFY_PASSWD_NEW)
76 #define LDAP_TAG_EXOP_MODIFY_PASSWD_NEW ((ber_tag_t) 0x82U)
82 /**********************************************************************
83 Simple helper function to make stuff better readable
84 **********************************************************************/
86 static LDAP
*priv2ld(struct ldapsam_privates
*priv
)
88 return priv
->smbldap_state
->ldap_struct
;
91 /**********************************************************************
92 Get the attribute name given a user schame version.
93 **********************************************************************/
95 static const char* get_userattr_key2string( int schema_ver
, int key
)
97 switch ( schema_ver
) {
98 case SCHEMAVER_SAMBAACCOUNT
:
99 return get_attr_key2string( attrib_map_v22
, key
);
101 case SCHEMAVER_SAMBASAMACCOUNT
:
102 return get_attr_key2string( attrib_map_v30
, key
);
105 DEBUG(0,("get_userattr_key2string: unknown schema version specified\n"));
111 /**********************************************************************
112 Return the list of attribute names given a user schema version.
113 **********************************************************************/
115 const char** get_userattr_list( TALLOC_CTX
*mem_ctx
, int schema_ver
)
117 switch ( schema_ver
) {
118 case SCHEMAVER_SAMBAACCOUNT
:
119 return get_attr_list( mem_ctx
, attrib_map_v22
);
121 case SCHEMAVER_SAMBASAMACCOUNT
:
122 return get_attr_list( mem_ctx
, attrib_map_v30
);
124 DEBUG(0,("get_userattr_list: unknown schema version specified!\n"));
131 /**************************************************************************
132 Return the list of attribute names to delete given a user schema version.
133 **************************************************************************/
135 static const char** get_userattr_delete_list( TALLOC_CTX
*mem_ctx
,
138 switch ( schema_ver
) {
139 case SCHEMAVER_SAMBAACCOUNT
:
140 return get_attr_list( mem_ctx
,
141 attrib_map_to_delete_v22
);
143 case SCHEMAVER_SAMBASAMACCOUNT
:
144 return get_attr_list( mem_ctx
,
145 attrib_map_to_delete_v30
);
147 DEBUG(0,("get_userattr_delete_list: unknown schema version specified!\n"));
155 /*******************************************************************
156 Generate the LDAP search filter for the objectclass based on the
157 version of the schema we are using.
158 ******************************************************************/
160 static const char* get_objclass_filter( int schema_ver
)
162 fstring objclass_filter
;
165 switch( schema_ver
) {
166 case SCHEMAVER_SAMBAACCOUNT
:
167 fstr_sprintf( objclass_filter
, "(objectclass=%s)", LDAP_OBJ_SAMBAACCOUNT
);
169 case SCHEMAVER_SAMBASAMACCOUNT
:
170 fstr_sprintf( objclass_filter
, "(objectclass=%s)", LDAP_OBJ_SAMBASAMACCOUNT
);
173 DEBUG(0,("get_objclass_filter: Invalid schema version specified!\n"));
174 objclass_filter
[0] = '\0';
178 result
= talloc_strdup(talloc_tos(), objclass_filter
);
179 SMB_ASSERT(result
!= NULL
);
183 /*****************************************************************
184 Scan a sequence number off OpenLDAP's syncrepl contextCSN
185 ******************************************************************/
187 static NTSTATUS
ldapsam_get_seq_num(struct pdb_methods
*my_methods
, time_t *seq_num
)
189 struct ldapsam_privates
*ldap_state
= (struct ldapsam_privates
*)my_methods
->private_data
;
190 NTSTATUS ntstatus
= NT_STATUS_UNSUCCESSFUL
;
191 LDAPMessage
*msg
= NULL
;
192 LDAPMessage
*entry
= NULL
;
194 char **values
= NULL
;
195 int rc
, num_result
, num_values
, rid
;
201 /* Unfortunatly there is no proper way to detect syncrepl-support in
202 * smbldap_connect_system(). The syncrepl OIDs are submitted for publication
203 * but do not show up in the root-DSE yet. Neither we can query the
204 * subschema-context for the syncProviderSubentry or syncConsumerSubentry
205 * objectclass. Currently we require lp_ldap_suffix() to show up as
206 * namingContext. - Guenther
209 if (!lp_parm_bool(-1, "ldapsam", "syncrepl_seqnum", False
)) {
214 DEBUG(3,("ldapsam_get_seq_num: no sequence_number\n"));
218 if (!smbldap_has_naming_context(ldap_state
->smbldap_state
->ldap_struct
, lp_ldap_suffix())) {
219 DEBUG(3,("ldapsam_get_seq_num: DIT not configured to hold %s "
220 "as top-level namingContext\n", lp_ldap_suffix()));
224 mem_ctx
= talloc_init("ldapsam_get_seq_num");
227 return NT_STATUS_NO_MEMORY
;
229 if ((attrs
= TALLOC_ARRAY(mem_ctx
, const char *, 2)) == NULL
) {
230 ntstatus
= NT_STATUS_NO_MEMORY
;
234 /* if we got a syncrepl-rid (up to three digits long) we speak with a consumer */
235 rid
= lp_parm_int(-1, "ldapsam", "syncrepl_rid", -1);
238 /* consumer syncreplCookie: */
239 /* csn=20050126161620Z#0000001#00#00000 */
240 attrs
[0] = talloc_strdup(mem_ctx
, "syncreplCookie");
242 suffix
= talloc_asprintf(mem_ctx
,
243 "cn=syncrepl%d,%s", rid
, lp_ldap_suffix());
245 ntstatus
= NT_STATUS_NO_MEMORY
;
250 /* provider contextCSN */
251 /* 20050126161620Z#000009#00#000000 */
252 attrs
[0] = talloc_strdup(mem_ctx
, "contextCSN");
254 suffix
= talloc_asprintf(mem_ctx
,
255 "cn=ldapsync,%s", lp_ldap_suffix());
258 ntstatus
= NT_STATUS_NO_MEMORY
;
263 rc
= smbldap_search(ldap_state
->smbldap_state
, suffix
,
264 LDAP_SCOPE_BASE
, "(objectclass=*)", attrs
, 0, &msg
);
266 if (rc
!= LDAP_SUCCESS
) {
270 num_result
= ldap_count_entries(ldap_state
->smbldap_state
->ldap_struct
, msg
);
271 if (num_result
!= 1) {
272 DEBUG(3,("ldapsam_get_seq_num: Expected one entry, got %d\n", num_result
));
276 entry
= ldap_first_entry(ldap_state
->smbldap_state
->ldap_struct
, msg
);
278 DEBUG(3,("ldapsam_get_seq_num: Could not retrieve entry\n"));
282 values
= ldap_get_values(ldap_state
->smbldap_state
->ldap_struct
, entry
, attrs
[0]);
283 if (values
== NULL
) {
284 DEBUG(3,("ldapsam_get_seq_num: no values\n"));
288 num_values
= ldap_count_values(values
);
289 if (num_values
== 0) {
290 DEBUG(3,("ldapsam_get_seq_num: not a single value\n"));
295 if (!next_token_talloc(mem_ctx
, &p
, &tok
, "#")) {
296 DEBUG(0,("ldapsam_get_seq_num: failed to parse sequence number\n"));
301 if (!strncmp(p
, "csn=", strlen("csn=")))
304 DEBUG(10,("ldapsam_get_seq_num: got %s: %s\n", attrs
[0], p
));
306 *seq_num
= generalized_to_unix_time(p
);
308 /* very basic sanity check */
310 DEBUG(3,("ldapsam_get_seq_num: invalid sequence number: %d\n",
315 ntstatus
= NT_STATUS_OK
;
319 ldap_value_free(values
);
323 talloc_destroy(mem_ctx
);
328 /*******************************************************************
329 Run the search by name.
330 ******************************************************************/
332 int ldapsam_search_suffix_by_name(struct ldapsam_privates
*ldap_state
,
334 LDAPMessage
** result
,
338 char *escape_user
= escape_ldap_string_alloc(user
);
342 return LDAP_NO_MEMORY
;
346 * in the filter expression, replace %u with the real name
347 * so in ldap filter, %u MUST exist :-)
349 filter
= talloc_asprintf(talloc_tos(), "(&%s%s)", "(uid=%u)",
350 get_objclass_filter(ldap_state
->schema_ver
));
352 return LDAP_NO_MEMORY
;
355 * have to use this here because $ is filtered out
359 filter
= talloc_all_string_sub(talloc_tos(),
360 filter
, "%u", escape_user
);
362 return LDAP_NO_MEMORY
;
364 SAFE_FREE(escape_user
);
366 ret
= smbldap_search_suffix(ldap_state
->smbldap_state
,
367 filter
, attr
, result
);
372 /*******************************************************************
373 Run the search by rid.
374 ******************************************************************/
376 static int ldapsam_search_suffix_by_rid (struct ldapsam_privates
*ldap_state
,
377 uint32 rid
, LDAPMessage
** result
,
383 filter
= talloc_asprintf(talloc_tos(), "(&(rid=%i)%s)", rid
,
384 get_objclass_filter(ldap_state
->schema_ver
));
386 return LDAP_NO_MEMORY
;
389 rc
= smbldap_search_suffix(ldap_state
->smbldap_state
,
390 filter
, attr
, result
);
395 /*******************************************************************
396 Run the search by SID.
397 ******************************************************************/
399 static int ldapsam_search_suffix_by_sid (struct ldapsam_privates
*ldap_state
,
400 const DOM_SID
*sid
, LDAPMessage
** result
,
407 filter
= talloc_asprintf(talloc_tos(), "(&(%s=%s)%s)",
408 get_userattr_key2string(ldap_state
->schema_ver
,
410 sid_to_fstring(sid_string
, sid
),
411 get_objclass_filter(ldap_state
->schema_ver
));
413 return LDAP_NO_MEMORY
;
416 rc
= smbldap_search_suffix(ldap_state
->smbldap_state
,
417 filter
, attr
, result
);
423 /*******************************************************************
424 Delete complete object or objectclass and attrs from
425 object found in search_result depending on lp_ldap_delete_dn
426 ******************************************************************/
428 static int ldapsam_delete_entry(struct ldapsam_privates
*priv
,
431 const char *objectclass
,
434 LDAPMod
**mods
= NULL
;
437 BerElement
*ptr
= NULL
;
439 dn
= smbldap_talloc_dn(mem_ctx
, priv2ld(priv
), entry
);
441 return LDAP_NO_MEMORY
;
444 if (lp_ldap_delete_dn()) {
445 return smbldap_delete(priv
->smbldap_state
, dn
);
448 /* Ok, delete only the SAM attributes */
450 for (name
= ldap_first_attribute(priv2ld(priv
), entry
, &ptr
);
452 name
= ldap_next_attribute(priv2ld(priv
), entry
, ptr
)) {
455 /* We are only allowed to delete the attributes that
458 for (attrib
= attrs
; *attrib
!= NULL
; attrib
++) {
459 if (strequal(*attrib
, name
)) {
460 DEBUG(10, ("ldapsam_delete_entry: deleting "
461 "attribute %s\n", name
));
462 smbldap_set_mod(&mods
, LDAP_MOD_DELETE
, name
,
473 smbldap_set_mod(&mods
, LDAP_MOD_DELETE
, "objectClass", objectclass
);
474 talloc_autofree_ldapmod(mem_ctx
, mods
);
476 return smbldap_modify(priv
->smbldap_state
, dn
, mods
);
479 static time_t ldapsam_get_entry_timestamp( struct ldapsam_privates
*ldap_state
, LDAPMessage
* entry
)
484 temp
= smbldap_talloc_single_attribute(ldap_state
->smbldap_state
->ldap_struct
, entry
,
485 get_userattr_key2string(ldap_state
->schema_ver
,LDAP_ATTR_MOD_TIMESTAMP
),
491 if ( !strptime(temp
, "%Y%m%d%H%M%SZ", &tm
)) {
492 DEBUG(2,("ldapsam_get_entry_timestamp: strptime failed on: %s\n",
502 /**********************************************************************
503 Initialize struct samu from an LDAP query.
504 (Based on init_sam_from_buffer in pdb_tdb.c)
505 *********************************************************************/
507 static bool init_sam_from_ldap(struct ldapsam_privates
*ldap_state
,
508 struct samu
* sampass
,
515 pass_can_change_time
,
516 pass_must_change_time
,
519 char *username
= NULL
,
525 *logon_script
= NULL
,
526 *profile_path
= NULL
,
528 *workstations
= NULL
,
531 uint8 smblmpwd
[LM_HASH_LEN
],
532 smbntpwd
[NT_HASH_LEN
];
533 bool use_samba_attrs
= True
;
534 uint32 acct_ctrl
= 0;
536 uint16 bad_password_count
= 0,
539 uint8 hours
[MAX_HOURS_LEN
];
541 LOGIN_CACHE
*cache_entry
= NULL
;
543 bool expand_explicit
= lp_passdb_expand_explicit();
545 TALLOC_CTX
*ctx
= talloc_init("init_sam_from_ldap");
550 if (sampass
== NULL
|| ldap_state
== NULL
|| entry
== NULL
) {
551 DEBUG(0, ("init_sam_from_ldap: NULL parameters found!\n"));
555 if (priv2ld(ldap_state
) == NULL
) {
556 DEBUG(0, ("init_sam_from_ldap: ldap_state->smbldap_state->"
557 "ldap_struct is NULL!\n"));
561 if (!(username
= smbldap_talloc_single_attribute(priv2ld(ldap_state
),
565 DEBUG(1, ("init_sam_from_ldap: No uid attribute found for "
570 DEBUG(2, ("init_sam_from_ldap: Entry found for user: %s\n", username
));
572 nt_username
= talloc_strdup(ctx
, username
);
577 domain
= talloc_strdup(ctx
, ldap_state
->domain_name
);
582 pdb_set_username(sampass
, username
, PDB_SET
);
584 pdb_set_domain(sampass
, domain
, PDB_DEFAULT
);
585 pdb_set_nt_username(sampass
, nt_username
, PDB_SET
);
587 /* deal with different attributes between the schema first */
589 if ( ldap_state
->schema_ver
== SCHEMAVER_SAMBASAMACCOUNT
) {
590 if ((temp
= smbldap_talloc_single_attribute(
591 ldap_state
->smbldap_state
->ldap_struct
,
593 get_userattr_key2string(ldap_state
->schema_ver
,
596 pdb_set_user_sid_from_string(sampass
, temp
, PDB_SET
);
599 if ((temp
= smbldap_talloc_single_attribute(
600 ldap_state
->smbldap_state
->ldap_struct
,
602 get_userattr_key2string(ldap_state
->schema_ver
,
605 user_rid
= (uint32
)atol(temp
);
606 pdb_set_user_sid_from_rid(sampass
, user_rid
, PDB_SET
);
610 if (pdb_get_init_flags(sampass
,PDB_USERSID
) == PDB_DEFAULT
) {
611 DEBUG(1, ("init_sam_from_ldap: no %s or %s attribute found for this user %s\n",
612 get_userattr_key2string(ldap_state
->schema_ver
,
614 get_userattr_key2string(ldap_state
->schema_ver
,
620 temp
= smbldap_talloc_single_attribute(
621 ldap_state
->smbldap_state
->ldap_struct
,
623 get_userattr_key2string(ldap_state
->schema_ver
,
624 LDAP_ATTR_PWD_LAST_SET
),
627 pass_last_set_time
= (time_t) atol(temp
);
628 pdb_set_pass_last_set_time(sampass
,
629 pass_last_set_time
, PDB_SET
);
632 temp
= smbldap_talloc_single_attribute(
633 ldap_state
->smbldap_state
->ldap_struct
,
635 get_userattr_key2string(ldap_state
->schema_ver
,
636 LDAP_ATTR_LOGON_TIME
),
639 logon_time
= (time_t) atol(temp
);
640 pdb_set_logon_time(sampass
, logon_time
, PDB_SET
);
643 temp
= smbldap_talloc_single_attribute(
644 ldap_state
->smbldap_state
->ldap_struct
,
646 get_userattr_key2string(ldap_state
->schema_ver
,
647 LDAP_ATTR_LOGOFF_TIME
),
650 logoff_time
= (time_t) atol(temp
);
651 pdb_set_logoff_time(sampass
, logoff_time
, PDB_SET
);
654 temp
= smbldap_talloc_single_attribute(
655 ldap_state
->smbldap_state
->ldap_struct
,
657 get_userattr_key2string(ldap_state
->schema_ver
,
658 LDAP_ATTR_KICKOFF_TIME
),
661 kickoff_time
= (time_t) atol(temp
);
662 pdb_set_kickoff_time(sampass
, kickoff_time
, PDB_SET
);
665 temp
= smbldap_talloc_single_attribute(
666 ldap_state
->smbldap_state
->ldap_struct
,
668 get_userattr_key2string(ldap_state
->schema_ver
,
669 LDAP_ATTR_PWD_CAN_CHANGE
),
672 pass_can_change_time
= (time_t) atol(temp
);
673 pdb_set_pass_can_change_time(sampass
,
674 pass_can_change_time
, PDB_SET
);
677 temp
= smbldap_talloc_single_attribute(
678 ldap_state
->smbldap_state
->ldap_struct
,
680 get_userattr_key2string(ldap_state
->schema_ver
,
681 LDAP_ATTR_PWD_MUST_CHANGE
),
684 pass_must_change_time
= (time_t) atol(temp
);
685 pdb_set_pass_must_change_time(sampass
,
686 pass_must_change_time
, PDB_SET
);
689 /* recommend that 'gecos' and 'displayName' should refer to the same
690 * attribute OID. userFullName depreciated, only used by Samba
691 * primary rules of LDAP: don't make a new attribute when one is already defined
692 * that fits your needs; using cn then displayName rather than 'userFullName'
695 fullname
= smbldap_talloc_single_attribute(
696 ldap_state
->smbldap_state
->ldap_struct
,
698 get_userattr_key2string(ldap_state
->schema_ver
,
699 LDAP_ATTR_DISPLAY_NAME
),
702 pdb_set_fullname(sampass
, fullname
, PDB_SET
);
704 fullname
= smbldap_talloc_single_attribute(
705 ldap_state
->smbldap_state
->ldap_struct
,
707 get_userattr_key2string(ldap_state
->schema_ver
,
711 pdb_set_fullname(sampass
, fullname
, PDB_SET
);
715 dir_drive
= smbldap_talloc_single_attribute(
716 ldap_state
->smbldap_state
->ldap_struct
,
718 get_userattr_key2string(ldap_state
->schema_ver
,
719 LDAP_ATTR_HOME_DRIVE
),
722 pdb_set_dir_drive(sampass
, dir_drive
, PDB_SET
);
724 pdb_set_dir_drive( sampass
, lp_logon_drive(), PDB_DEFAULT
);
727 homedir
= smbldap_talloc_single_attribute(
728 ldap_state
->smbldap_state
->ldap_struct
,
730 get_userattr_key2string(ldap_state
->schema_ver
,
731 LDAP_ATTR_HOME_PATH
),
734 if (expand_explicit
) {
735 homedir
= talloc_sub_basic(ctx
,
743 pdb_set_homedir(sampass
, homedir
, PDB_SET
);
745 pdb_set_homedir(sampass
,
746 talloc_sub_basic(ctx
, username
, domain
,
751 logon_script
= smbldap_talloc_single_attribute(
752 ldap_state
->smbldap_state
->ldap_struct
,
754 get_userattr_key2string(ldap_state
->schema_ver
,
755 LDAP_ATTR_LOGON_SCRIPT
),
758 if (expand_explicit
) {
759 logon_script
= talloc_sub_basic(ctx
,
767 pdb_set_logon_script(sampass
, logon_script
, PDB_SET
);
769 pdb_set_logon_script(sampass
,
770 talloc_sub_basic(ctx
, username
, domain
,
775 profile_path
= smbldap_talloc_single_attribute(
776 ldap_state
->smbldap_state
->ldap_struct
,
778 get_userattr_key2string(ldap_state
->schema_ver
,
779 LDAP_ATTR_PROFILE_PATH
),
782 if (expand_explicit
) {
783 profile_path
= talloc_sub_basic(ctx
,
791 pdb_set_profile_path(sampass
, profile_path
, PDB_SET
);
793 pdb_set_profile_path(sampass
,
794 talloc_sub_basic(ctx
, username
, domain
,
799 acct_desc
= smbldap_talloc_single_attribute(
800 ldap_state
->smbldap_state
->ldap_struct
,
802 get_userattr_key2string(ldap_state
->schema_ver
,
806 pdb_set_acct_desc(sampass
, acct_desc
, PDB_SET
);
809 workstations
= smbldap_talloc_single_attribute(
810 ldap_state
->smbldap_state
->ldap_struct
,
812 get_userattr_key2string(ldap_state
->schema_ver
,
816 pdb_set_workstations(sampass
, workstations
, PDB_SET
);
819 munged_dial
= smbldap_talloc_single_attribute(
820 ldap_state
->smbldap_state
->ldap_struct
,
822 get_userattr_key2string(ldap_state
->schema_ver
,
823 LDAP_ATTR_MUNGED_DIAL
),
826 pdb_set_munged_dial(sampass
, munged_dial
, PDB_SET
);
829 /* FIXME: hours stuff should be cleaner */
833 memset(hours
, 0xff, hours_len
);
835 if (ldap_state
->is_nds_ldap
) {
838 char clear_text_pw
[512];
840 /* Make call to Novell eDirectory ldap extension to get clear text password.
841 NOTE: This will only work if we have an SSL connection to eDirectory. */
842 user_dn
= smbldap_get_dn(ldap_state
->smbldap_state
->ldap_struct
, entry
);
843 if (user_dn
!= NULL
) {
844 DEBUG(3, ("init_sam_from_ldap: smbldap_get_dn(%s) returned '%s'\n", username
, user_dn
));
846 pwd_len
= sizeof(clear_text_pw
);
847 if (pdb_nds_get_password(ldap_state
->smbldap_state
, user_dn
, &pwd_len
, clear_text_pw
) == LDAP_SUCCESS
) {
848 nt_lm_owf_gen(clear_text_pw
, smbntpwd
, smblmpwd
);
849 if (!pdb_set_lanman_passwd(sampass
, smblmpwd
, PDB_SET
)) {
853 ZERO_STRUCT(smblmpwd
);
854 if (!pdb_set_nt_passwd(sampass
, smbntpwd
, PDB_SET
)) {
858 ZERO_STRUCT(smbntpwd
);
859 use_samba_attrs
= False
;
865 DEBUG(0, ("init_sam_from_ldap: failed to get user_dn for '%s'\n", username
));
869 if (use_samba_attrs
) {
870 temp
= smbldap_talloc_single_attribute(
871 ldap_state
->smbldap_state
->ldap_struct
,
873 get_userattr_key2string(ldap_state
->schema_ver
,
877 pdb_gethexpwd(temp
, smblmpwd
);
878 memset((char *)temp
, '\0', strlen(temp
)+1);
879 if (!pdb_set_lanman_passwd(sampass
, smblmpwd
, PDB_SET
)) {
882 ZERO_STRUCT(smblmpwd
);
885 temp
= smbldap_talloc_single_attribute(
886 ldap_state
->smbldap_state
->ldap_struct
,
888 get_userattr_key2string(ldap_state
->schema_ver
,
892 pdb_gethexpwd(temp
, smbntpwd
);
893 memset((char *)temp
, '\0', strlen(temp
)+1);
894 if (!pdb_set_nt_passwd(sampass
, smbntpwd
, PDB_SET
)) {
897 ZERO_STRUCT(smbntpwd
);
903 pdb_get_account_policy(AP_PASSWORD_HISTORY
, &pwHistLen
);
905 uint8
*pwhist
= NULL
;
907 char *history_string
= TALLOC_ARRAY(ctx
, char,
908 MAX_PW_HISTORY_LEN
*64);
910 if (!history_string
) {
914 pwHistLen
= MIN(pwHistLen
, MAX_PW_HISTORY_LEN
);
916 if ((pwhist
= TALLOC_ARRAY(ctx
, uint8
,
917 pwHistLen
* PW_HISTORY_ENTRY_LEN
)) ==
919 DEBUG(0, ("init_sam_from_ldap: talloc failed!\n"));
922 memset(pwhist
, '\0', pwHistLen
* PW_HISTORY_ENTRY_LEN
);
924 if (smbldap_get_single_attribute(
925 ldap_state
->smbldap_state
->ldap_struct
,
927 get_userattr_key2string(ldap_state
->schema_ver
,
928 LDAP_ATTR_PWD_HISTORY
),
930 MAX_PW_HISTORY_LEN
*64)) {
931 bool hex_failed
= false;
932 for (i
= 0; i
< pwHistLen
; i
++){
933 /* Get the 16 byte salt. */
934 if (!pdb_gethexpwd(&history_string
[i
*64],
935 &pwhist
[i
*PW_HISTORY_ENTRY_LEN
])) {
939 /* Get the 16 byte MD5 hash of salt+passwd. */
940 if (!pdb_gethexpwd(&history_string
[(i
*64)+32],
941 &pwhist
[(i
*PW_HISTORY_ENTRY_LEN
)+
942 PW_HISTORY_SALT_LEN
])) {
948 DEBUG(0,("init_sam_from_ldap: Failed to get password history for user %s\n",
950 memset(pwhist
, '\0', pwHistLen
* PW_HISTORY_ENTRY_LEN
);
953 if (!pdb_set_pw_history(sampass
, pwhist
, pwHistLen
, PDB_SET
)){
958 temp
= smbldap_talloc_single_attribute(
959 ldap_state
->smbldap_state
->ldap_struct
,
961 get_userattr_key2string(ldap_state
->schema_ver
,
965 acct_ctrl
= pdb_decode_acct_ctrl(temp
);
967 if (acct_ctrl
== 0) {
968 acct_ctrl
|= ACB_NORMAL
;
971 pdb_set_acct_ctrl(sampass
, acct_ctrl
, PDB_SET
);
973 acct_ctrl
|= ACB_NORMAL
;
976 pdb_set_hours_len(sampass
, hours_len
, PDB_SET
);
977 pdb_set_logon_divs(sampass
, logon_divs
, PDB_SET
);
979 temp
= smbldap_talloc_single_attribute(
980 ldap_state
->smbldap_state
->ldap_struct
,
982 get_userattr_key2string(ldap_state
->schema_ver
,
983 LDAP_ATTR_BAD_PASSWORD_COUNT
),
986 bad_password_count
= (uint32
) atol(temp
);
987 pdb_set_bad_password_count(sampass
,
988 bad_password_count
, PDB_SET
);
991 temp
= smbldap_talloc_single_attribute(
992 ldap_state
->smbldap_state
->ldap_struct
,
994 get_userattr_key2string(ldap_state
->schema_ver
,
995 LDAP_ATTR_BAD_PASSWORD_TIME
),
998 bad_password_time
= (time_t) atol(temp
);
999 pdb_set_bad_password_time(sampass
, bad_password_time
, PDB_SET
);
1003 temp
= smbldap_talloc_single_attribute(
1004 ldap_state
->smbldap_state
->ldap_struct
,
1006 get_userattr_key2string(ldap_state
->schema_ver
,
1007 LDAP_ATTR_LOGON_COUNT
),
1010 logon_count
= (uint32
) atol(temp
);
1011 pdb_set_logon_count(sampass
, logon_count
, PDB_SET
);
1014 /* pdb_set_unknown_6(sampass, unknown6, PDB_SET); */
1016 temp
= smbldap_talloc_single_attribute(
1017 ldap_state
->smbldap_state
->ldap_struct
,
1019 get_userattr_key2string(ldap_state
->schema_ver
,
1020 LDAP_ATTR_LOGON_HOURS
),
1023 pdb_gethexhours(temp
, hours
);
1024 memset((char *)temp
, '\0', strlen(temp
) +1);
1025 pdb_set_hours(sampass
, hours
, PDB_SET
);
1029 if (lp_parm_bool(-1, "ldapsam", "trusted", False
)) {
1030 temp
= smbldap_talloc_single_attribute(
1031 priv2ld(ldap_state
),
1036 /* We've got a uid, feed the cache */
1037 uid_t uid
= strtoul(temp
, NULL
, 10);
1038 store_uid_sid_cache(pdb_get_user_sid(sampass
), uid
);
1042 /* check the timestamp of the cache vs ldap entry */
1043 if (!(ldap_entry_time
= ldapsam_get_entry_timestamp(ldap_state
,
1049 /* see if we have newer updates */
1050 if (!(cache_entry
= login_cache_read(sampass
))) {
1051 DEBUG (9, ("No cache entry, bad count = %u, bad time = %u\n",
1052 (unsigned int)pdb_get_bad_password_count(sampass
),
1053 (unsigned int)pdb_get_bad_password_time(sampass
)));
1058 DEBUG(7, ("ldap time is %u, cache time is %u, bad time = %u\n",
1059 (unsigned int)ldap_entry_time
,
1060 (unsigned int)cache_entry
->entry_timestamp
,
1061 (unsigned int)cache_entry
->bad_password_time
));
1063 if (ldap_entry_time
> cache_entry
->entry_timestamp
) {
1064 /* cache is older than directory , so
1065 we need to delete the entry but allow the
1066 fields to be written out */
1067 login_cache_delentry(sampass
);
1070 pdb_set_acct_ctrl(sampass
,
1071 pdb_get_acct_ctrl(sampass
) |
1072 (cache_entry
->acct_ctrl
& ACB_AUTOLOCK
),
1074 pdb_set_bad_password_count(sampass
,
1075 cache_entry
->bad_password_count
,
1077 pdb_set_bad_password_time(sampass
,
1078 cache_entry
->bad_password_time
,
1087 SAFE_FREE(cache_entry
);
1091 /**********************************************************************
1092 Initialize the ldap db from a struct samu. Called on update.
1093 (Based on init_buffer_from_sam in pdb_tdb.c)
1094 *********************************************************************/
1096 static bool init_ldap_from_sam (struct ldapsam_privates
*ldap_state
,
1097 LDAPMessage
*existing
,
1098 LDAPMod
*** mods
, struct samu
* sampass
,
1099 bool (*need_update
)(const struct samu
*,
1105 if (mods
== NULL
|| sampass
== NULL
) {
1106 DEBUG(0, ("init_ldap_from_sam: NULL parameters found!\n"));
1113 * took out adding "objectclass: sambaAccount"
1114 * do this on a per-mod basis
1116 if (need_update(sampass
, PDB_USERNAME
)) {
1117 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, existing
, mods
,
1118 "uid", pdb_get_username(sampass
));
1119 if (ldap_state
->is_nds_ldap
) {
1120 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, existing
, mods
,
1121 "cn", pdb_get_username(sampass
));
1122 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, existing
, mods
,
1123 "sn", pdb_get_username(sampass
));
1127 DEBUG(2, ("init_ldap_from_sam: Setting entry for user: %s\n", pdb_get_username(sampass
)));
1129 /* only update the RID if we actually need to */
1130 if (need_update(sampass
, PDB_USERSID
)) {
1132 const DOM_SID
*user_sid
= pdb_get_user_sid(sampass
);
1134 switch ( ldap_state
->schema_ver
) {
1135 case SCHEMAVER_SAMBAACCOUNT
:
1136 if (!sid_peek_check_rid(&ldap_state
->domain_sid
, user_sid
, &rid
)) {
1137 DEBUG(1, ("init_ldap_from_sam: User's SID (%s) is not for this domain (%s), cannot add to LDAP!\n",
1138 sid_string_dbg(user_sid
),
1140 &ldap_state
->domain_sid
)));
1143 if (asprintf(&temp
, "%i", rid
) < 0) {
1146 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, existing
, mods
,
1147 get_userattr_key2string(ldap_state
->schema_ver
, LDAP_ATTR_USER_RID
),
1152 case SCHEMAVER_SAMBASAMACCOUNT
:
1153 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, existing
, mods
,
1154 get_userattr_key2string(ldap_state
->schema_ver
, LDAP_ATTR_USER_SID
),
1155 sid_to_fstring(sid_string
, user_sid
));
1159 DEBUG(0,("init_ldap_from_sam: unknown schema version specified\n"));
1164 /* we don't need to store the primary group RID - so leaving it
1165 'free' to hang off the unix primary group makes life easier */
1167 if (need_update(sampass
, PDB_GROUPSID
)) {
1169 const DOM_SID
*group_sid
= pdb_get_group_sid(sampass
);
1171 switch ( ldap_state
->schema_ver
) {
1172 case SCHEMAVER_SAMBAACCOUNT
:
1173 if (!sid_peek_check_rid(&ldap_state
->domain_sid
, group_sid
, &rid
)) {
1174 DEBUG(1, ("init_ldap_from_sam: User's Primary Group SID (%s) is not for this domain (%s), cannot add to LDAP!\n",
1175 sid_string_dbg(group_sid
),
1177 &ldap_state
->domain_sid
)));
1181 if (asprintf(&temp
, "%i", rid
) < 0) {
1184 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, existing
, mods
,
1185 get_userattr_key2string(ldap_state
->schema_ver
,
1186 LDAP_ATTR_PRIMARY_GROUP_RID
), temp
);
1190 case SCHEMAVER_SAMBASAMACCOUNT
:
1191 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, existing
, mods
,
1192 get_userattr_key2string(ldap_state
->schema_ver
,
1193 LDAP_ATTR_PRIMARY_GROUP_SID
), sid_to_fstring(sid_string
, group_sid
));
1197 DEBUG(0,("init_ldap_from_sam: unknown schema version specified\n"));
1203 /* displayName, cn, and gecos should all be the same
1204 * most easily accomplished by giving them the same OID
1205 * gecos isn't set here b/c it should be handled by the
1207 * We change displayName only and fall back to cn if
1208 * it does not exist.
1211 if (need_update(sampass
, PDB_FULLNAME
))
1212 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, existing
, mods
,
1213 get_userattr_key2string(ldap_state
->schema_ver
, LDAP_ATTR_DISPLAY_NAME
),
1214 pdb_get_fullname(sampass
));
1216 if (need_update(sampass
, PDB_ACCTDESC
))
1217 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, existing
, mods
,
1218 get_userattr_key2string(ldap_state
->schema_ver
, LDAP_ATTR_DESC
),
1219 pdb_get_acct_desc(sampass
));
1221 if (need_update(sampass
, PDB_WORKSTATIONS
))
1222 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, existing
, mods
,
1223 get_userattr_key2string(ldap_state
->schema_ver
, LDAP_ATTR_USER_WKS
),
1224 pdb_get_workstations(sampass
));
1226 if (need_update(sampass
, PDB_MUNGEDDIAL
))
1227 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, existing
, mods
,
1228 get_userattr_key2string(ldap_state
->schema_ver
, LDAP_ATTR_MUNGED_DIAL
),
1229 pdb_get_munged_dial(sampass
));
1231 if (need_update(sampass
, PDB_SMBHOME
))
1232 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, existing
, mods
,
1233 get_userattr_key2string(ldap_state
->schema_ver
, LDAP_ATTR_HOME_PATH
),
1234 pdb_get_homedir(sampass
));
1236 if (need_update(sampass
, PDB_DRIVE
))
1237 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, existing
, mods
,
1238 get_userattr_key2string(ldap_state
->schema_ver
, LDAP_ATTR_HOME_DRIVE
),
1239 pdb_get_dir_drive(sampass
));
1241 if (need_update(sampass
, PDB_LOGONSCRIPT
))
1242 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, existing
, mods
,
1243 get_userattr_key2string(ldap_state
->schema_ver
, LDAP_ATTR_LOGON_SCRIPT
),
1244 pdb_get_logon_script(sampass
));
1246 if (need_update(sampass
, PDB_PROFILE
))
1247 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, existing
, mods
,
1248 get_userattr_key2string(ldap_state
->schema_ver
, LDAP_ATTR_PROFILE_PATH
),
1249 pdb_get_profile_path(sampass
));
1251 if (asprintf(&temp
, "%li", pdb_get_logon_time(sampass
)) < 0) {
1254 if (need_update(sampass
, PDB_LOGONTIME
))
1255 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, existing
, mods
,
1256 get_userattr_key2string(ldap_state
->schema_ver
, LDAP_ATTR_LOGON_TIME
), temp
);
1259 if (asprintf(&temp
, "%li", pdb_get_logoff_time(sampass
)) < 0) {
1262 if (need_update(sampass
, PDB_LOGOFFTIME
))
1263 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, existing
, mods
,
1264 get_userattr_key2string(ldap_state
->schema_ver
, LDAP_ATTR_LOGOFF_TIME
), temp
);
1267 if (asprintf(&temp
, "%li", pdb_get_kickoff_time(sampass
)) < 0) {
1270 if (need_update(sampass
, PDB_KICKOFFTIME
))
1271 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, existing
, mods
,
1272 get_userattr_key2string(ldap_state
->schema_ver
, LDAP_ATTR_KICKOFF_TIME
), temp
);
1275 if (asprintf(&temp
, "%li", pdb_get_pass_can_change_time_noncalc(sampass
)) < 0) {
1278 if (need_update(sampass
, PDB_CANCHANGETIME
))
1279 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, existing
, mods
,
1280 get_userattr_key2string(ldap_state
->schema_ver
, LDAP_ATTR_PWD_CAN_CHANGE
), temp
);
1283 if (asprintf(&temp
, "%li", pdb_get_pass_must_change_time(sampass
)) < 0) {
1286 if (need_update(sampass
, PDB_MUSTCHANGETIME
))
1287 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, existing
, mods
,
1288 get_userattr_key2string(ldap_state
->schema_ver
, LDAP_ATTR_PWD_MUST_CHANGE
), temp
);
1291 if ((pdb_get_acct_ctrl(sampass
)&(ACB_WSTRUST
|ACB_SVRTRUST
|ACB_DOMTRUST
))
1292 || (lp_ldap_passwd_sync()!=LDAP_PASSWD_SYNC_ONLY
)) {
1294 if (need_update(sampass
, PDB_LMPASSWD
)) {
1295 const uchar
*lm_pw
= pdb_get_lanman_passwd(sampass
);
1298 pdb_sethexpwd(pwstr
, lm_pw
,
1299 pdb_get_acct_ctrl(sampass
));
1300 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, existing
, mods
,
1301 get_userattr_key2string(ldap_state
->schema_ver
, LDAP_ATTR_LMPW
),
1304 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, existing
, mods
,
1305 get_userattr_key2string(ldap_state
->schema_ver
, LDAP_ATTR_LMPW
),
1309 if (need_update(sampass
, PDB_NTPASSWD
)) {
1310 const uchar
*nt_pw
= pdb_get_nt_passwd(sampass
);
1313 pdb_sethexpwd(pwstr
, nt_pw
,
1314 pdb_get_acct_ctrl(sampass
));
1315 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, existing
, mods
,
1316 get_userattr_key2string(ldap_state
->schema_ver
, LDAP_ATTR_NTPW
),
1319 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, existing
, mods
,
1320 get_userattr_key2string(ldap_state
->schema_ver
, LDAP_ATTR_NTPW
),
1325 if (need_update(sampass
, PDB_PWHISTORY
)) {
1327 uint32 pwHistLen
= 0;
1328 pdb_get_account_policy(AP_PASSWORD_HISTORY
, &pwHistLen
);
1330 pwstr
= SMB_MALLOC_ARRAY(char, 1024);
1334 if (pwHistLen
== 0) {
1335 /* Remove any password history from the LDAP store. */
1336 memset(pwstr
, '0', 64); /* NOTE !!!! '0' *NOT '\0' */
1340 uint32 currHistLen
= 0;
1341 const uint8
*pwhist
= pdb_get_pw_history(sampass
, &currHistLen
);
1342 if (pwhist
!= NULL
) {
1343 /* We can only store (1024-1/64 password history entries. */
1344 pwHistLen
= MIN(pwHistLen
, ((1024-1)/64));
1345 for (i
=0; i
< pwHistLen
&& i
< currHistLen
; i
++) {
1346 /* Store the salt. */
1347 pdb_sethexpwd(&pwstr
[i
*64], &pwhist
[i
*PW_HISTORY_ENTRY_LEN
], 0);
1348 /* Followed by the md5 hash of salt + md4 hash */
1349 pdb_sethexpwd(&pwstr
[(i
*64)+32],
1350 &pwhist
[(i
*PW_HISTORY_ENTRY_LEN
)+PW_HISTORY_SALT_LEN
], 0);
1351 DEBUG(100, ("pwstr=%s\n", pwstr
));
1355 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, existing
, mods
,
1356 get_userattr_key2string(ldap_state
->schema_ver
, LDAP_ATTR_PWD_HISTORY
),
1361 if (need_update(sampass
, PDB_PASSLASTSET
)) {
1362 if (asprintf(&temp
, "%li",
1363 pdb_get_pass_last_set_time(sampass
)) < 0) {
1366 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, existing
, mods
,
1367 get_userattr_key2string(ldap_state
->schema_ver
, LDAP_ATTR_PWD_LAST_SET
),
1373 if (need_update(sampass
, PDB_HOURS
)) {
1374 const uint8
*hours
= pdb_get_hours(sampass
);
1377 pdb_sethexhours(hourstr
, hours
);
1378 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
,
1381 get_userattr_key2string(ldap_state
->schema_ver
,
1382 LDAP_ATTR_LOGON_HOURS
),
1387 if (need_update(sampass
, PDB_ACCTCTRL
))
1388 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, existing
, mods
,
1389 get_userattr_key2string(ldap_state
->schema_ver
, LDAP_ATTR_ACB_INFO
),
1390 pdb_encode_acct_ctrl (pdb_get_acct_ctrl(sampass
), NEW_PW_FORMAT_SPACE_PADDED_LEN
));
1392 /* password lockout cache:
1393 - If we are now autolocking or clearing, we write to ldap
1394 - If we are clearing, we delete the cache entry
1395 - If the count is > 0, we update the cache
1397 This even means when autolocking, we cache, just in case the
1398 update doesn't work, and we have to cache the autolock flag */
1400 if (need_update(sampass
, PDB_BAD_PASSWORD_COUNT
)) /* &&
1401 need_update(sampass, PDB_BAD_PASSWORD_TIME)) */ {
1402 uint16 badcount
= pdb_get_bad_password_count(sampass
);
1403 time_t badtime
= pdb_get_bad_password_time(sampass
);
1405 pdb_get_account_policy(AP_BAD_ATTEMPT_LOCKOUT
, &pol
);
1407 DEBUG(3, ("updating bad password fields, policy=%u, count=%u, time=%u\n",
1408 (unsigned int)pol
, (unsigned int)badcount
, (unsigned int)badtime
));
1410 if ((badcount
>= pol
) || (badcount
== 0)) {
1411 DEBUG(7, ("making mods to update ldap, count=%u, time=%u\n",
1412 (unsigned int)badcount
, (unsigned int)badtime
));
1413 if (asprintf(&temp
, "%li", (long)badcount
) < 0) {
1417 ldap_state
->smbldap_state
->ldap_struct
,
1419 get_userattr_key2string(
1420 ldap_state
->schema_ver
,
1421 LDAP_ATTR_BAD_PASSWORD_COUNT
),
1425 if (asprintf(&temp
, "%li", badtime
) < 0) {
1429 ldap_state
->smbldap_state
->ldap_struct
,
1431 get_userattr_key2string(
1432 ldap_state
->schema_ver
,
1433 LDAP_ATTR_BAD_PASSWORD_TIME
),
1437 if (badcount
== 0) {
1438 DEBUG(7, ("bad password count is reset, deleting login cache entry for %s\n", pdb_get_nt_username(sampass
)));
1439 login_cache_delentry(sampass
);
1441 LOGIN_CACHE cache_entry
;
1443 cache_entry
.entry_timestamp
= time(NULL
);
1444 cache_entry
.acct_ctrl
= pdb_get_acct_ctrl(sampass
);
1445 cache_entry
.bad_password_count
= badcount
;
1446 cache_entry
.bad_password_time
= badtime
;
1448 DEBUG(7, ("Updating bad password count and time in login cache\n"));
1449 login_cache_write(sampass
, cache_entry
);
1456 /**********************************************************************
1457 End enumeration of the LDAP password list.
1458 *********************************************************************/
1460 static void ldapsam_endsampwent(struct pdb_methods
*my_methods
)
1462 struct ldapsam_privates
*ldap_state
= (struct ldapsam_privates
*)my_methods
->private_data
;
1463 if (ldap_state
->result
) {
1464 ldap_msgfree(ldap_state
->result
);
1465 ldap_state
->result
= NULL
;
1469 static void append_attr(TALLOC_CTX
*mem_ctx
, const char ***attr_list
,
1470 const char *new_attr
)
1474 if (new_attr
== NULL
) {
1478 for (i
=0; (*attr_list
)[i
] != NULL
; i
++) {
1482 (*attr_list
) = TALLOC_REALLOC_ARRAY(mem_ctx
, (*attr_list
),
1484 SMB_ASSERT((*attr_list
) != NULL
);
1485 (*attr_list
)[i
] = talloc_strdup((*attr_list
), new_attr
);
1486 (*attr_list
)[i
+1] = NULL
;
1489 /**********************************************************************
1490 Get struct samu entry from LDAP by username.
1491 *********************************************************************/
1493 static NTSTATUS
ldapsam_getsampwnam(struct pdb_methods
*my_methods
, struct samu
*user
, const char *sname
)
1495 NTSTATUS ret
= NT_STATUS_UNSUCCESSFUL
;
1496 struct ldapsam_privates
*ldap_state
= (struct ldapsam_privates
*)my_methods
->private_data
;
1497 LDAPMessage
*result
= NULL
;
1498 LDAPMessage
*entry
= NULL
;
1500 const char ** attr_list
;
1503 attr_list
= get_userattr_list( user
, ldap_state
->schema_ver
);
1504 append_attr(user
, &attr_list
,
1505 get_userattr_key2string(ldap_state
->schema_ver
,
1506 LDAP_ATTR_MOD_TIMESTAMP
));
1507 append_attr(user
, &attr_list
, "uidNumber");
1508 rc
= ldapsam_search_suffix_by_name(ldap_state
, sname
, &result
,
1510 TALLOC_FREE( attr_list
);
1512 if ( rc
!= LDAP_SUCCESS
)
1513 return NT_STATUS_NO_SUCH_USER
;
1515 count
= ldap_count_entries(ldap_state
->smbldap_state
->ldap_struct
, result
);
1518 DEBUG(4, ("ldapsam_getsampwnam: Unable to locate user [%s] count=%d\n", sname
, count
));
1519 ldap_msgfree(result
);
1520 return NT_STATUS_NO_SUCH_USER
;
1521 } else if (count
> 1) {
1522 DEBUG(1, ("ldapsam_getsampwnam: Duplicate entries for this user [%s] Failing. count=%d\n", sname
, count
));
1523 ldap_msgfree(result
);
1524 return NT_STATUS_NO_SUCH_USER
;
1527 entry
= ldap_first_entry(ldap_state
->smbldap_state
->ldap_struct
, result
);
1529 if (!init_sam_from_ldap(ldap_state
, user
, entry
)) {
1530 DEBUG(1,("ldapsam_getsampwnam: init_sam_from_ldap failed for user '%s'!\n", sname
));
1531 ldap_msgfree(result
);
1532 return NT_STATUS_NO_SUCH_USER
;
1534 pdb_set_backend_private_data(user
, result
, NULL
,
1535 my_methods
, PDB_CHANGED
);
1536 talloc_autofree_ldapmsg(user
, result
);
1539 ldap_msgfree(result
);
1544 static int ldapsam_get_ldap_user_by_sid(struct ldapsam_privates
*ldap_state
,
1545 const DOM_SID
*sid
, LDAPMessage
**result
)
1548 const char ** attr_list
;
1551 switch ( ldap_state
->schema_ver
) {
1552 case SCHEMAVER_SAMBASAMACCOUNT
: {
1553 TALLOC_CTX
*tmp_ctx
= talloc_new(NULL
);
1554 if (tmp_ctx
== NULL
) {
1555 return LDAP_NO_MEMORY
;
1558 attr_list
= get_userattr_list(tmp_ctx
,
1559 ldap_state
->schema_ver
);
1560 append_attr(tmp_ctx
, &attr_list
,
1561 get_userattr_key2string(
1562 ldap_state
->schema_ver
,
1563 LDAP_ATTR_MOD_TIMESTAMP
));
1564 append_attr(tmp_ctx
, &attr_list
, "uidNumber");
1565 rc
= ldapsam_search_suffix_by_sid(ldap_state
, sid
,
1567 TALLOC_FREE(tmp_ctx
);
1569 if ( rc
!= LDAP_SUCCESS
)
1574 case SCHEMAVER_SAMBAACCOUNT
:
1575 if (!sid_peek_check_rid(&ldap_state
->domain_sid
, sid
, &rid
)) {
1579 attr_list
= get_userattr_list(NULL
,
1580 ldap_state
->schema_ver
);
1581 rc
= ldapsam_search_suffix_by_rid(ldap_state
, rid
, result
, attr_list
);
1582 TALLOC_FREE( attr_list
);
1584 if ( rc
!= LDAP_SUCCESS
)
1591 /**********************************************************************
1592 Get struct samu entry from LDAP by SID.
1593 *********************************************************************/
1595 static NTSTATUS
ldapsam_getsampwsid(struct pdb_methods
*my_methods
, struct samu
* user
, const DOM_SID
*sid
)
1597 struct ldapsam_privates
*ldap_state
= (struct ldapsam_privates
*)my_methods
->private_data
;
1598 LDAPMessage
*result
= NULL
;
1599 LDAPMessage
*entry
= NULL
;
1603 rc
= ldapsam_get_ldap_user_by_sid(ldap_state
,
1605 if (rc
!= LDAP_SUCCESS
)
1606 return NT_STATUS_NO_SUCH_USER
;
1608 count
= ldap_count_entries(ldap_state
->smbldap_state
->ldap_struct
, result
);
1611 DEBUG(4, ("ldapsam_getsampwsid: Unable to locate SID [%s] "
1612 "count=%d\n", sid_string_dbg(sid
), count
));
1613 ldap_msgfree(result
);
1614 return NT_STATUS_NO_SUCH_USER
;
1615 } else if (count
> 1) {
1616 DEBUG(1, ("ldapsam_getsampwsid: More than one user with SID "
1617 "[%s]. Failing. count=%d\n", sid_string_dbg(sid
),
1619 ldap_msgfree(result
);
1620 return NT_STATUS_NO_SUCH_USER
;
1623 entry
= ldap_first_entry(ldap_state
->smbldap_state
->ldap_struct
, result
);
1625 ldap_msgfree(result
);
1626 return NT_STATUS_NO_SUCH_USER
;
1629 if (!init_sam_from_ldap(ldap_state
, user
, entry
)) {
1630 DEBUG(1,("ldapsam_getsampwsid: init_sam_from_ldap failed!\n"));
1631 ldap_msgfree(result
);
1632 return NT_STATUS_NO_SUCH_USER
;
1635 pdb_set_backend_private_data(user
, result
, NULL
,
1636 my_methods
, PDB_CHANGED
);
1637 talloc_autofree_ldapmsg(user
, result
);
1638 return NT_STATUS_OK
;
1641 /********************************************************************
1642 Do the actual modification - also change a plaintext passord if
1644 **********************************************************************/
1646 static NTSTATUS
ldapsam_modify_entry(struct pdb_methods
*my_methods
,
1647 struct samu
*newpwd
, char *dn
,
1648 LDAPMod
**mods
, int ldap_op
,
1649 bool (*need_update
)(const struct samu
*, enum pdb_elements
))
1651 struct ldapsam_privates
*ldap_state
= (struct ldapsam_privates
*)my_methods
->private_data
;
1654 if (!newpwd
|| !dn
) {
1655 return NT_STATUS_INVALID_PARAMETER
;
1659 DEBUG(5,("ldapsam_modify_entry: mods is empty: nothing to modify\n"));
1660 /* may be password change below however */
1664 if (ldap_state
->is_nds_ldap
) {
1665 smbldap_set_mod(&mods
, LDAP_MOD_ADD
,
1669 smbldap_set_mod(&mods
, LDAP_MOD_ADD
,
1673 rc
= smbldap_add(ldap_state
->smbldap_state
,
1676 case LDAP_MOD_REPLACE
:
1677 rc
= smbldap_modify(ldap_state
->smbldap_state
,
1681 DEBUG(0,("ldapsam_modify_entry: Wrong LDAP operation type: %d!\n",
1683 return NT_STATUS_INVALID_PARAMETER
;
1686 if (rc
!=LDAP_SUCCESS
) {
1687 return NT_STATUS_UNSUCCESSFUL
;
1691 if (!(pdb_get_acct_ctrl(newpwd
)&(ACB_WSTRUST
|ACB_SVRTRUST
|ACB_DOMTRUST
)) &&
1692 (lp_ldap_passwd_sync() != LDAP_PASSWD_SYNC_OFF
) &&
1693 need_update(newpwd
, PDB_PLAINTEXT_PW
) &&
1694 (pdb_get_plaintext_passwd(newpwd
)!=NULL
)) {
1697 char *retoid
= NULL
;
1698 struct berval
*retdata
= NULL
;
1699 char *utf8_password
;
1702 if (!ldap_state
->is_nds_ldap
) {
1704 if (!smbldap_has_extension(ldap_state
->smbldap_state
->ldap_struct
,
1705 LDAP_EXOP_MODIFY_PASSWD
)) {
1706 DEBUG(2, ("ldap password change requested, but LDAP "
1707 "server does not support it -- ignoring\n"));
1708 return NT_STATUS_OK
;
1712 if (push_utf8_allocate(&utf8_password
, pdb_get_plaintext_passwd(newpwd
)) == (size_t)-1) {
1713 return NT_STATUS_NO_MEMORY
;
1716 if (push_utf8_allocate(&utf8_dn
, dn
) == (size_t)-1) {
1717 SAFE_FREE(utf8_password
);
1718 return NT_STATUS_NO_MEMORY
;
1721 if ((ber
= ber_alloc_t(LBER_USE_DER
))==NULL
) {
1722 DEBUG(0,("ber_alloc_t returns NULL\n"));
1723 SAFE_FREE(utf8_password
);
1725 return NT_STATUS_UNSUCCESSFUL
;
1728 ber_printf (ber
, "{");
1729 ber_printf (ber
, "ts", LDAP_TAG_EXOP_MODIFY_PASSWD_ID
, utf8_dn
);
1730 ber_printf (ber
, "ts", LDAP_TAG_EXOP_MODIFY_PASSWD_NEW
, utf8_password
);
1731 ber_printf (ber
, "n}");
1733 if ((rc
= ber_flatten (ber
, &bv
))<0) {
1734 DEBUG(0,("ldapsam_modify_entry: ber_flatten returns a value <0\n"));
1737 SAFE_FREE(utf8_password
);
1738 return NT_STATUS_UNSUCCESSFUL
;
1742 SAFE_FREE(utf8_password
);
1745 if (!ldap_state
->is_nds_ldap
) {
1746 rc
= smbldap_extended_operation(ldap_state
->smbldap_state
,
1747 LDAP_EXOP_MODIFY_PASSWD
,
1748 bv
, NULL
, NULL
, &retoid
,
1751 rc
= pdb_nds_set_password(ldap_state
->smbldap_state
, dn
,
1752 pdb_get_plaintext_passwd(newpwd
));
1754 if (rc
!= LDAP_SUCCESS
) {
1755 char *ld_error
= NULL
;
1757 if (rc
== LDAP_OBJECT_CLASS_VIOLATION
) {
1758 DEBUG(3, ("Could not set userPassword "
1759 "attribute due to an objectClass "
1760 "violation -- ignoring\n"));
1762 return NT_STATUS_OK
;
1765 ldap_get_option(ldap_state
->smbldap_state
->ldap_struct
, LDAP_OPT_ERROR_STRING
,
1767 DEBUG(0,("ldapsam_modify_entry: LDAP Password could not be changed for user %s: %s\n\t%s\n",
1768 pdb_get_username(newpwd
), ldap_err2string(rc
), ld_error
?ld_error
:"unknown"));
1769 SAFE_FREE(ld_error
);
1771 #if defined(LDAP_CONSTRAINT_VIOLATION)
1772 if (rc
== LDAP_CONSTRAINT_VIOLATION
)
1773 return NT_STATUS_PASSWORD_RESTRICTION
;
1775 return NT_STATUS_UNSUCCESSFUL
;
1777 DEBUG(3,("ldapsam_modify_entry: LDAP Password changed for user %s\n",pdb_get_username(newpwd
)));
1778 #ifdef DEBUG_PASSWORD
1779 DEBUG(100,("ldapsam_modify_entry: LDAP Password changed to %s\n",pdb_get_plaintext_passwd(newpwd
)));
1782 ber_bvfree(retdata
);
1784 ldap_memfree(retoid
);
1788 return NT_STATUS_OK
;
1791 /**********************************************************************
1792 Delete entry from LDAP for username.
1793 *********************************************************************/
1795 static NTSTATUS
ldapsam_delete_sam_account(struct pdb_methods
*my_methods
,
1796 struct samu
* sam_acct
)
1798 struct ldapsam_privates
*priv
=
1799 (struct ldapsam_privates
*)my_methods
->private_data
;
1802 LDAPMessage
*msg
, *entry
;
1803 NTSTATUS result
= NT_STATUS_NO_MEMORY
;
1804 const char **attr_list
;
1805 TALLOC_CTX
*mem_ctx
;
1808 DEBUG(0, ("ldapsam_delete_sam_account: sam_acct was NULL!\n"));
1809 return NT_STATUS_INVALID_PARAMETER
;
1812 sname
= pdb_get_username(sam_acct
);
1814 DEBUG(3, ("ldapsam_delete_sam_account: Deleting user %s from "
1817 mem_ctx
= talloc_new(NULL
);
1818 if (mem_ctx
== NULL
) {
1819 DEBUG(0, ("talloc_new failed\n"));
1823 attr_list
= get_userattr_delete_list(mem_ctx
, priv
->schema_ver
);
1824 if (attr_list
== NULL
) {
1828 rc
= ldapsam_search_suffix_by_name(priv
, sname
, &msg
, attr_list
);
1830 if ((rc
!= LDAP_SUCCESS
) ||
1831 (ldap_count_entries(priv2ld(priv
), msg
) != 1) ||
1832 ((entry
= ldap_first_entry(priv2ld(priv
), msg
)) == NULL
)) {
1833 DEBUG(5, ("Could not find user %s\n", sname
));
1834 result
= NT_STATUS_NO_SUCH_USER
;
1838 rc
= ldapsam_delete_entry(
1839 priv
, mem_ctx
, entry
,
1840 priv
->schema_ver
== SCHEMAVER_SAMBASAMACCOUNT
?
1841 LDAP_OBJ_SAMBASAMACCOUNT
: LDAP_OBJ_SAMBAACCOUNT
,
1844 result
= (rc
== LDAP_SUCCESS
) ?
1845 NT_STATUS_OK
: NT_STATUS_ACCESS_DENIED
;
1848 TALLOC_FREE(mem_ctx
);
1852 /**********************************************************************
1853 Helper function to determine for update_sam_account whether
1854 we need LDAP modification.
1855 *********************************************************************/
1857 static bool element_is_changed(const struct samu
*sampass
,
1858 enum pdb_elements element
)
1860 return IS_SAM_CHANGED(sampass
, element
);
1863 /**********************************************************************
1865 *********************************************************************/
1867 static NTSTATUS
ldapsam_update_sam_account(struct pdb_methods
*my_methods
, struct samu
* newpwd
)
1869 NTSTATUS ret
= NT_STATUS_UNSUCCESSFUL
;
1870 struct ldapsam_privates
*ldap_state
= (struct ldapsam_privates
*)my_methods
->private_data
;
1873 LDAPMessage
*result
= NULL
;
1874 LDAPMessage
*entry
= NULL
;
1875 LDAPMod
**mods
= NULL
;
1876 const char **attr_list
;
1878 result
= (LDAPMessage
*)pdb_get_backend_private_data(newpwd
, my_methods
);
1880 attr_list
= get_userattr_list(NULL
, ldap_state
->schema_ver
);
1881 if (pdb_get_username(newpwd
) == NULL
) {
1882 return NT_STATUS_INVALID_PARAMETER
;
1884 rc
= ldapsam_search_suffix_by_name(ldap_state
, pdb_get_username(newpwd
), &result
, attr_list
);
1885 TALLOC_FREE( attr_list
);
1886 if (rc
!= LDAP_SUCCESS
) {
1887 return NT_STATUS_UNSUCCESSFUL
;
1889 pdb_set_backend_private_data(newpwd
, result
, NULL
,
1890 my_methods
, PDB_CHANGED
);
1891 talloc_autofree_ldapmsg(newpwd
, result
);
1894 if (ldap_count_entries(ldap_state
->smbldap_state
->ldap_struct
, result
) == 0) {
1895 DEBUG(0, ("ldapsam_update_sam_account: No user to modify!\n"));
1896 return NT_STATUS_UNSUCCESSFUL
;
1899 entry
= ldap_first_entry(ldap_state
->smbldap_state
->ldap_struct
, result
);
1900 dn
= smbldap_get_dn(ldap_state
->smbldap_state
->ldap_struct
, entry
);
1902 return NT_STATUS_UNSUCCESSFUL
;
1905 DEBUG(4, ("ldapsam_update_sam_account: user %s to be modified has dn: %s\n", pdb_get_username(newpwd
), dn
));
1907 if (!init_ldap_from_sam(ldap_state
, entry
, &mods
, newpwd
,
1908 element_is_changed
)) {
1909 DEBUG(0, ("ldapsam_update_sam_account: init_ldap_from_sam failed!\n"));
1912 ldap_mods_free(mods
,True
);
1913 return NT_STATUS_UNSUCCESSFUL
;
1917 DEBUG(4,("ldapsam_update_sam_account: mods is empty: nothing to update for user: %s\n",
1918 pdb_get_username(newpwd
)));
1920 return NT_STATUS_OK
;
1923 ret
= ldapsam_modify_entry(my_methods
,newpwd
,dn
,mods
,LDAP_MOD_REPLACE
, element_is_changed
);
1924 ldap_mods_free(mods
,True
);
1928 * We need to set the backend private data to NULL here. For example
1929 * setuserinfo level 25 does a pdb_update_sam_account twice on the
1930 * same one, and with the explicit delete / add logic for attribute
1931 * values the second time we would use the wrong "old" value which
1932 * does not exist in LDAP anymore. Thus the LDAP server would refuse
1934 * The existing LDAPMessage is still being auto-freed by the
1937 pdb_set_backend_private_data(newpwd
, NULL
, NULL
, my_methods
,
1940 if (!NT_STATUS_IS_OK(ret
)) {
1944 DEBUG(2, ("ldapsam_update_sam_account: successfully modified uid = %s in the LDAP database\n",
1945 pdb_get_username(newpwd
)));
1946 return NT_STATUS_OK
;
1949 /***************************************************************************
1950 Renames a struct samu
1951 - The "rename user script" has full responsibility for changing everything
1952 ***************************************************************************/
1954 static NTSTATUS
ldapsam_rename_sam_account(struct pdb_methods
*my_methods
,
1955 struct samu
*old_acct
,
1956 const char *newname
)
1958 const char *oldname
;
1960 char *rename_script
= NULL
;
1961 fstring oldname_lower
, newname_lower
;
1964 DEBUG(0, ("ldapsam_rename_sam_account: old_acct was NULL!\n"));
1965 return NT_STATUS_INVALID_PARAMETER
;
1968 DEBUG(0, ("ldapsam_rename_sam_account: newname was NULL!\n"));
1969 return NT_STATUS_INVALID_PARAMETER
;
1972 oldname
= pdb_get_username(old_acct
);
1974 /* rename the posix user */
1975 rename_script
= SMB_STRDUP(lp_renameuser_script());
1976 if (rename_script
== NULL
) {
1977 return NT_STATUS_NO_MEMORY
;
1980 if (!(*rename_script
)) {
1981 SAFE_FREE(rename_script
);
1982 return NT_STATUS_ACCESS_DENIED
;
1985 DEBUG (3, ("ldapsam_rename_sam_account: Renaming user %s to %s.\n",
1988 /* We have to allow the account name to end with a '$'.
1989 Also, follow the semantics in _samr_create_user() and lower case the
1990 posix name but preserve the case in passdb */
1992 fstrcpy( oldname_lower
, oldname
);
1993 strlower_m( oldname_lower
);
1994 fstrcpy( newname_lower
, newname
);
1995 strlower_m( newname_lower
);
1996 rename_script
= realloc_string_sub2(rename_script
,
2001 if (rename_script
) {
2002 return NT_STATUS_NO_MEMORY
;
2004 rename_script
= realloc_string_sub2(rename_script
,
2009 rc
= smbrun(rename_script
, NULL
);
2011 DEBUG(rc
? 0 : 3,("Running the command `%s' gave %d\n",
2012 rename_script
, rc
));
2014 SAFE_FREE(rename_script
);
2017 smb_nscd_flush_user_cache();
2021 return NT_STATUS_UNSUCCESSFUL
;
2023 return NT_STATUS_OK
;
2026 /**********************************************************************
2027 Helper function to determine for update_sam_account whether
2028 we need LDAP modification.
2029 *********************************************************************/
2031 static bool element_is_set_or_changed(const struct samu
*sampass
,
2032 enum pdb_elements element
)
2034 return (IS_SAM_SET(sampass
, element
) ||
2035 IS_SAM_CHANGED(sampass
, element
));
2038 /**********************************************************************
2039 Add struct samu to LDAP.
2040 *********************************************************************/
2042 static NTSTATUS
ldapsam_add_sam_account(struct pdb_methods
*my_methods
, struct samu
* newpwd
)
2044 NTSTATUS ret
= NT_STATUS_UNSUCCESSFUL
;
2045 struct ldapsam_privates
*ldap_state
= (struct ldapsam_privates
*)my_methods
->private_data
;
2047 LDAPMessage
*result
= NULL
;
2048 LDAPMessage
*entry
= NULL
;
2049 LDAPMod
**mods
= NULL
;
2050 int ldap_op
= LDAP_MOD_REPLACE
;
2052 const char **attr_list
;
2053 char *escape_user
= NULL
;
2054 const char *username
= pdb_get_username(newpwd
);
2055 const DOM_SID
*sid
= pdb_get_user_sid(newpwd
);
2056 char *filter
= NULL
;
2058 NTSTATUS status
= NT_STATUS_UNSUCCESSFUL
;
2059 TALLOC_CTX
*ctx
= talloc_init("ldapsam_add_sam_account");
2062 return NT_STATUS_NO_MEMORY
;
2065 if (!username
|| !*username
) {
2066 DEBUG(0, ("ldapsam_add_sam_account: Cannot add user without a username!\n"));
2067 status
= NT_STATUS_INVALID_PARAMETER
;
2071 /* free this list after the second search or in case we exit on failure */
2072 attr_list
= get_userattr_list(ctx
, ldap_state
->schema_ver
);
2074 rc
= ldapsam_search_suffix_by_name (ldap_state
, username
, &result
, attr_list
);
2076 if (rc
!= LDAP_SUCCESS
) {
2080 if (ldap_count_entries(ldap_state
->smbldap_state
->ldap_struct
, result
) != 0) {
2081 DEBUG(0,("ldapsam_add_sam_account: User '%s' already in the base, with samba attributes\n",
2085 ldap_msgfree(result
);
2088 if (element_is_set_or_changed(newpwd
, PDB_USERSID
)) {
2089 rc
= ldapsam_get_ldap_user_by_sid(ldap_state
,
2091 if (rc
== LDAP_SUCCESS
) {
2092 if (ldap_count_entries(ldap_state
->smbldap_state
->ldap_struct
, result
) != 0) {
2093 DEBUG(0,("ldapsam_add_sam_account: SID '%s' "
2094 "already in the base, with samba "
2095 "attributes\n", sid_string_dbg(sid
)));
2098 ldap_msgfree(result
);
2103 /* does the entry already exist but without a samba attributes?
2104 we need to return the samba attributes here */
2106 escape_user
= escape_ldap_string_alloc( username
);
2107 filter
= talloc_strdup(attr_list
, "(uid=%u)");
2109 status
= NT_STATUS_NO_MEMORY
;
2112 filter
= talloc_all_string_sub(attr_list
, filter
, "%u", escape_user
);
2114 status
= NT_STATUS_NO_MEMORY
;
2117 SAFE_FREE(escape_user
);
2119 rc
= smbldap_search_suffix(ldap_state
->smbldap_state
,
2120 filter
, attr_list
, &result
);
2121 if ( rc
!= LDAP_SUCCESS
) {
2125 num_result
= ldap_count_entries(ldap_state
->smbldap_state
->ldap_struct
, result
);
2127 if (num_result
> 1) {
2128 DEBUG (0, ("ldapsam_add_sam_account: More than one user with that uid exists: bailing out!\n"));
2132 /* Check if we need to update an existing entry */
2133 if (num_result
== 1) {
2136 DEBUG(3,("ldapsam_add_sam_account: User exists without samba attributes: adding them\n"));
2137 ldap_op
= LDAP_MOD_REPLACE
;
2138 entry
= ldap_first_entry (ldap_state
->smbldap_state
->ldap_struct
, result
);
2139 tmp
= smbldap_get_dn(ldap_state
->smbldap_state
->ldap_struct
, entry
);
2143 dn
= talloc_asprintf(ctx
, "%s", tmp
);
2146 status
= NT_STATUS_NO_MEMORY
;
2150 } else if (ldap_state
->schema_ver
== SCHEMAVER_SAMBASAMACCOUNT
) {
2152 /* There might be a SID for this account already - say an idmap entry */
2154 filter
= talloc_asprintf(ctx
,
2155 "(&(%s=%s)(|(objectClass=%s)(objectClass=%s)))",
2156 get_userattr_key2string(ldap_state
->schema_ver
,
2157 LDAP_ATTR_USER_SID
),
2158 sid_string_talloc(ctx
, sid
),
2159 LDAP_OBJ_IDMAP_ENTRY
,
2160 LDAP_OBJ_SID_ENTRY
);
2162 status
= NT_STATUS_NO_MEMORY
;
2166 /* free old result before doing a new search */
2167 if (result
!= NULL
) {
2168 ldap_msgfree(result
);
2171 rc
= smbldap_search_suffix(ldap_state
->smbldap_state
,
2172 filter
, attr_list
, &result
);
2174 if ( rc
!= LDAP_SUCCESS
) {
2178 num_result
= ldap_count_entries(ldap_state
->smbldap_state
->ldap_struct
, result
);
2180 if (num_result
> 1) {
2181 DEBUG (0, ("ldapsam_add_sam_account: More than one user with specified Sid exists: bailing out!\n"));
2185 /* Check if we need to update an existing entry */
2186 if (num_result
== 1) {
2189 DEBUG(3,("ldapsam_add_sam_account: User exists without samba attributes: adding them\n"));
2190 ldap_op
= LDAP_MOD_REPLACE
;
2191 entry
= ldap_first_entry (ldap_state
->smbldap_state
->ldap_struct
, result
);
2192 tmp
= smbldap_get_dn (ldap_state
->smbldap_state
->ldap_struct
, entry
);
2196 dn
= talloc_asprintf(ctx
, "%s", tmp
);
2199 status
= NT_STATUS_NO_MEMORY
;
2205 if (num_result
== 0) {
2206 char *escape_username
;
2207 /* Check if we need to add an entry */
2208 DEBUG(3,("ldapsam_add_sam_account: Adding new user\n"));
2209 ldap_op
= LDAP_MOD_ADD
;
2211 escape_username
= escape_rdn_val_string_alloc(username
);
2212 if (!escape_username
) {
2213 status
= NT_STATUS_NO_MEMORY
;
2217 if (username
[strlen(username
)-1] == '$') {
2218 dn
= talloc_asprintf(ctx
,
2221 lp_ldap_machine_suffix());
2223 dn
= talloc_asprintf(ctx
,
2226 lp_ldap_user_suffix());
2229 SAFE_FREE(escape_username
);
2231 status
= NT_STATUS_NO_MEMORY
;
2236 if (!init_ldap_from_sam(ldap_state
, entry
, &mods
, newpwd
,
2237 element_is_set_or_changed
)) {
2238 DEBUG(0, ("ldapsam_add_sam_account: init_ldap_from_sam failed!\n"));
2240 ldap_mods_free(mods
, true);
2246 DEBUG(0,("ldapsam_add_sam_account: mods is empty: nothing to add for user: %s\n",pdb_get_username(newpwd
)));
2249 switch ( ldap_state
->schema_ver
) {
2250 case SCHEMAVER_SAMBAACCOUNT
:
2251 smbldap_set_mod(&mods
, LDAP_MOD_ADD
, "objectclass", LDAP_OBJ_SAMBAACCOUNT
);
2253 case SCHEMAVER_SAMBASAMACCOUNT
:
2254 smbldap_set_mod(&mods
, LDAP_MOD_ADD
, "objectclass", LDAP_OBJ_SAMBASAMACCOUNT
);
2257 DEBUG(0,("ldapsam_add_sam_account: invalid schema version specified\n"));
2261 ret
= ldapsam_modify_entry(my_methods
,newpwd
,dn
,mods
,ldap_op
, element_is_set_or_changed
);
2262 if (!NT_STATUS_IS_OK(ret
)) {
2263 DEBUG(0,("ldapsam_add_sam_account: failed to modify/add user with uid = %s (dn = %s)\n",
2264 pdb_get_username(newpwd
),dn
));
2265 ldap_mods_free(mods
, true);
2269 DEBUG(2,("ldapsam_add_sam_account: added: uid == %s in the LDAP database\n", pdb_get_username(newpwd
)));
2270 ldap_mods_free(mods
, true);
2272 status
= NT_STATUS_OK
;
2277 SAFE_FREE(escape_user
);
2279 ldap_msgfree(result
);
2284 /**********************************************************************
2285 *********************************************************************/
2287 static int ldapsam_search_one_group (struct ldapsam_privates
*ldap_state
,
2289 LDAPMessage
** result
)
2291 int scope
= LDAP_SCOPE_SUBTREE
;
2293 const char **attr_list
;
2295 attr_list
= get_attr_list(NULL
, groupmap_attr_list
);
2296 rc
= smbldap_search(ldap_state
->smbldap_state
,
2297 lp_ldap_group_suffix (), scope
,
2298 filter
, attr_list
, 0, result
);
2299 TALLOC_FREE(attr_list
);
2304 /**********************************************************************
2305 *********************************************************************/
2307 static bool init_group_from_ldap(struct ldapsam_privates
*ldap_state
,
2308 GROUP_MAP
*map
, LDAPMessage
*entry
)
2311 TALLOC_CTX
*ctx
= talloc_init("init_group_from_ldap");
2313 if (ldap_state
== NULL
|| map
== NULL
|| entry
== NULL
||
2314 ldap_state
->smbldap_state
->ldap_struct
== NULL
) {
2315 DEBUG(0, ("init_group_from_ldap: NULL parameters found!\n"));
2320 temp
= smbldap_talloc_single_attribute(
2321 ldap_state
->smbldap_state
->ldap_struct
,
2323 get_attr_key2string(groupmap_attr_list
,
2324 LDAP_ATTR_GIDNUMBER
),
2327 DEBUG(0, ("init_group_from_ldap: Mandatory attribute %s not found\n",
2328 get_attr_key2string( groupmap_attr_list
, LDAP_ATTR_GIDNUMBER
)));
2332 DEBUG(2, ("init_group_from_ldap: Entry found for group: %s\n", temp
));
2334 map
->gid
= (gid_t
)atol(temp
);
2337 temp
= smbldap_talloc_single_attribute(
2338 ldap_state
->smbldap_state
->ldap_struct
,
2340 get_attr_key2string(groupmap_attr_list
,
2341 LDAP_ATTR_GROUP_SID
),
2344 DEBUG(0, ("init_group_from_ldap: Mandatory attribute %s not found\n",
2345 get_attr_key2string( groupmap_attr_list
, LDAP_ATTR_GROUP_SID
)));
2350 if (!string_to_sid(&map
->sid
, temp
)) {
2351 DEBUG(1, ("SID string [%s] could not be read as a valid SID\n", temp
));
2357 temp
= smbldap_talloc_single_attribute(
2358 ldap_state
->smbldap_state
->ldap_struct
,
2360 get_attr_key2string(groupmap_attr_list
,
2361 LDAP_ATTR_GROUP_TYPE
),
2364 DEBUG(0, ("init_group_from_ldap: Mandatory attribute %s not found\n",
2365 get_attr_key2string( groupmap_attr_list
, LDAP_ATTR_GROUP_TYPE
)));
2369 map
->sid_name_use
= (enum lsa_SidType
)atol(temp
);
2371 if ((map
->sid_name_use
< SID_NAME_USER
) ||
2372 (map
->sid_name_use
> SID_NAME_UNKNOWN
)) {
2373 DEBUG(0, ("init_group_from_ldap: Unknown Group type: %d\n", map
->sid_name_use
));
2379 temp
= smbldap_talloc_single_attribute(
2380 ldap_state
->smbldap_state
->ldap_struct
,
2382 get_attr_key2string(groupmap_attr_list
,
2383 LDAP_ATTR_DISPLAY_NAME
),
2386 temp
= smbldap_talloc_single_attribute(
2387 ldap_state
->smbldap_state
->ldap_struct
,
2389 get_attr_key2string(groupmap_attr_list
,
2393 DEBUG(0, ("init_group_from_ldap: Attributes cn not found either \
2394 for gidNumber(%lu)\n",(unsigned long)map
->gid
));
2399 fstrcpy(map
->nt_name
, temp
);
2402 temp
= smbldap_talloc_single_attribute(
2403 ldap_state
->smbldap_state
->ldap_struct
,
2405 get_attr_key2string(groupmap_attr_list
,
2409 temp
= talloc_strdup(ctx
, "");
2415 fstrcpy(map
->comment
, temp
);
2417 if (lp_parm_bool(-1, "ldapsam", "trusted", false)) {
2418 store_gid_sid_cache(&map
->sid
, map
->gid
);
2425 /**********************************************************************
2426 *********************************************************************/
2428 static NTSTATUS
ldapsam_getgroup(struct pdb_methods
*methods
,
2432 struct ldapsam_privates
*ldap_state
=
2433 (struct ldapsam_privates
*)methods
->private_data
;
2434 LDAPMessage
*result
= NULL
;
2435 LDAPMessage
*entry
= NULL
;
2438 if (ldapsam_search_one_group(ldap_state
, filter
, &result
)
2440 return NT_STATUS_NO_SUCH_GROUP
;
2443 count
= ldap_count_entries(priv2ld(ldap_state
), result
);
2446 DEBUG(4, ("ldapsam_getgroup: Did not find group, filter was "
2448 ldap_msgfree(result
);
2449 return NT_STATUS_NO_SUCH_GROUP
;
2453 DEBUG(1, ("ldapsam_getgroup: Duplicate entries for filter %s: "
2454 "count=%d\n", filter
, count
));
2455 ldap_msgfree(result
);
2456 return NT_STATUS_NO_SUCH_GROUP
;
2459 entry
= ldap_first_entry(priv2ld(ldap_state
), result
);
2462 ldap_msgfree(result
);
2463 return NT_STATUS_UNSUCCESSFUL
;
2466 if (!init_group_from_ldap(ldap_state
, map
, entry
)) {
2467 DEBUG(1, ("ldapsam_getgroup: init_group_from_ldap failed for "
2468 "group filter %s\n", filter
));
2469 ldap_msgfree(result
);
2470 return NT_STATUS_NO_SUCH_GROUP
;
2473 ldap_msgfree(result
);
2474 return NT_STATUS_OK
;
2477 /**********************************************************************
2478 *********************************************************************/
2480 static NTSTATUS
ldapsam_getgrsid(struct pdb_methods
*methods
, GROUP_MAP
*map
,
2483 char *filter
= NULL
;
2487 if (asprintf(&filter
, "(&(objectClass=%s)(%s=%s))",
2489 get_attr_key2string(groupmap_attr_list
, LDAP_ATTR_GROUP_SID
),
2490 sid_to_fstring(tmp
, &sid
)) < 0) {
2491 return NT_STATUS_NO_MEMORY
;
2494 status
= ldapsam_getgroup(methods
, filter
, map
);
2499 /**********************************************************************
2500 *********************************************************************/
2502 static NTSTATUS
ldapsam_getgrgid(struct pdb_methods
*methods
, GROUP_MAP
*map
,
2505 char *filter
= NULL
;
2508 if (asprintf(&filter
, "(&(objectClass=%s)(%s=%lu))",
2510 get_attr_key2string(groupmap_attr_list
, LDAP_ATTR_GIDNUMBER
),
2511 (unsigned long)gid
) < 0) {
2512 return NT_STATUS_NO_MEMORY
;
2515 status
= ldapsam_getgroup(methods
, filter
, map
);
2520 /**********************************************************************
2521 *********************************************************************/
2523 static NTSTATUS
ldapsam_getgrnam(struct pdb_methods
*methods
, GROUP_MAP
*map
,
2526 char *filter
= NULL
;
2527 char *escape_name
= escape_ldap_string_alloc(name
);
2531 return NT_STATUS_NO_MEMORY
;
2534 if (asprintf(&filter
, "(&(objectClass=%s)(|(%s=%s)(%s=%s)))",
2536 get_attr_key2string(groupmap_attr_list
, LDAP_ATTR_DISPLAY_NAME
), escape_name
,
2537 get_attr_key2string(groupmap_attr_list
, LDAP_ATTR_CN
),
2539 SAFE_FREE(escape_name
);
2540 return NT_STATUS_NO_MEMORY
;
2543 SAFE_FREE(escape_name
);
2544 status
= ldapsam_getgroup(methods
, filter
, map
);
2549 static bool ldapsam_extract_rid_from_entry(LDAP
*ldap_struct
,
2551 const DOM_SID
*domain_sid
,
2557 if (!smbldap_get_single_attribute(ldap_struct
, entry
, "sambaSID",
2558 str
, sizeof(str
)-1)) {
2559 DEBUG(10, ("Could not find sambaSID attribute\n"));
2563 if (!string_to_sid(&sid
, str
)) {
2564 DEBUG(10, ("Could not convert string %s to sid\n", str
));
2568 if (sid_compare_domain(&sid
, domain_sid
) != 0) {
2569 DEBUG(10, ("SID %s is not in expected domain %s\n",
2570 str
, sid_string_dbg(domain_sid
)));
2574 if (!sid_peek_rid(&sid
, rid
)) {
2575 DEBUG(10, ("Could not peek into RID\n"));
2582 static NTSTATUS
ldapsam_enum_group_members(struct pdb_methods
*methods
,
2583 TALLOC_CTX
*mem_ctx
,
2584 const DOM_SID
*group
,
2585 uint32
**pp_member_rids
,
2586 size_t *p_num_members
)
2588 struct ldapsam_privates
*ldap_state
=
2589 (struct ldapsam_privates
*)methods
->private_data
;
2590 struct smbldap_state
*conn
= ldap_state
->smbldap_state
;
2591 const char *id_attrs
[] = { "memberUid", "gidNumber", NULL
};
2592 const char *sid_attrs
[] = { "sambaSID", NULL
};
2593 NTSTATUS ret
= NT_STATUS_UNSUCCESSFUL
;
2594 LDAPMessage
*result
= NULL
;
2597 char **values
= NULL
;
2602 *pp_member_rids
= NULL
;
2605 filter
= talloc_asprintf(mem_ctx
,
2606 "(&(objectClass=%s)"
2609 LDAP_OBJ_POSIXGROUP
,
2611 sid_string_talloc(mem_ctx
, group
));
2612 if (filter
== NULL
) {
2613 ret
= NT_STATUS_NO_MEMORY
;
2617 rc
= smbldap_search(conn
, lp_ldap_group_suffix(),
2618 LDAP_SCOPE_SUBTREE
, filter
, id_attrs
, 0,
2621 if (rc
!= LDAP_SUCCESS
)
2624 talloc_autofree_ldapmsg(mem_ctx
, result
);
2626 count
= ldap_count_entries(conn
->ldap_struct
, result
);
2629 DEBUG(1, ("Found more than one groupmap entry for %s\n",
2630 sid_string_dbg(group
)));
2631 ret
= NT_STATUS_INTERNAL_DB_CORRUPTION
;
2636 ret
= NT_STATUS_NO_SUCH_GROUP
;
2640 entry
= ldap_first_entry(conn
->ldap_struct
, result
);
2644 gidstr
= smbldap_talloc_single_attribute(priv2ld(ldap_state
), entry
, "gidNumber", mem_ctx
);
2646 DEBUG (0, ("ldapsam_enum_group_members: Unable to find the group's gid!\n"));
2647 ret
= NT_STATUS_INTERNAL_DB_CORRUPTION
;
2651 values
= ldap_get_values(conn
->ldap_struct
, entry
, "memberUid");
2655 filter
= talloc_asprintf(mem_ctx
, "(&(objectClass=%s)(|", LDAP_OBJ_SAMBASAMACCOUNT
);
2656 if (filter
== NULL
) {
2657 ret
= NT_STATUS_NO_MEMORY
;
2661 for (memberuid
= values
; *memberuid
!= NULL
; memberuid
+= 1) {
2662 char *escape_memberuid
;
2664 escape_memberuid
= escape_ldap_string_alloc(*memberuid
);
2665 if (escape_memberuid
== NULL
) {
2666 ret
= NT_STATUS_NO_MEMORY
;
2670 filter
= talloc_asprintf_append_buffer(filter
, "(uid=%s)", escape_memberuid
);
2671 if (filter
== NULL
) {
2672 SAFE_FREE(escape_memberuid
);
2673 ret
= NT_STATUS_NO_MEMORY
;
2677 SAFE_FREE(escape_memberuid
);
2680 filter
= talloc_asprintf_append_buffer(filter
, "))");
2681 if (filter
== NULL
) {
2682 ret
= NT_STATUS_NO_MEMORY
;
2686 rc
= smbldap_search(conn
, lp_ldap_suffix(),
2687 LDAP_SCOPE_SUBTREE
, filter
, sid_attrs
, 0,
2690 if (rc
!= LDAP_SUCCESS
)
2693 count
= ldap_count_entries(conn
->ldap_struct
, result
);
2694 DEBUG(10,("ldapsam_enum_group_members: found %d accounts\n", count
));
2696 talloc_autofree_ldapmsg(mem_ctx
, result
);
2698 for (entry
= ldap_first_entry(conn
->ldap_struct
, result
);
2700 entry
= ldap_next_entry(conn
->ldap_struct
, entry
))
2706 sidstr
= smbldap_talloc_single_attribute(conn
->ldap_struct
,
2710 DEBUG(0, ("Severe DB error, sambaSamAccount can't miss "
2711 "the sambaSID attribute\n"));
2712 ret
= NT_STATUS_INTERNAL_DB_CORRUPTION
;
2716 if (!string_to_sid(&sid
, sidstr
))
2719 if (!sid_check_is_in_our_domain(&sid
)) {
2720 DEBUG(0, ("Inconsistent SAM -- group member uid not "
2721 "in our domain\n"));
2722 ret
= NT_STATUS_INTERNAL_DB_CORRUPTION
;
2726 sid_peek_rid(&sid
, &rid
);
2728 if (!add_rid_to_array_unique(mem_ctx
, rid
, pp_member_rids
,
2730 ret
= NT_STATUS_NO_MEMORY
;
2736 filter
= talloc_asprintf(mem_ctx
,
2737 "(&(objectClass=%s)"
2739 LDAP_OBJ_SAMBASAMACCOUNT
,
2742 rc
= smbldap_search(conn
, lp_ldap_suffix(),
2743 LDAP_SCOPE_SUBTREE
, filter
, sid_attrs
, 0,
2746 if (rc
!= LDAP_SUCCESS
)
2749 talloc_autofree_ldapmsg(mem_ctx
, result
);
2751 for (entry
= ldap_first_entry(conn
->ldap_struct
, result
);
2753 entry
= ldap_next_entry(conn
->ldap_struct
, entry
))
2757 if (!ldapsam_extract_rid_from_entry(conn
->ldap_struct
,
2759 get_global_sam_sid(),
2761 DEBUG(0, ("Severe DB error, sambaSamAccount can't miss "
2762 "the sambaSID attribute\n"));
2763 ret
= NT_STATUS_INTERNAL_DB_CORRUPTION
;
2767 if (!add_rid_to_array_unique(mem_ctx
, rid
, pp_member_rids
,
2769 ret
= NT_STATUS_NO_MEMORY
;
2779 ldap_value_free(values
);
2784 static NTSTATUS
ldapsam_enum_group_memberships(struct pdb_methods
*methods
,
2785 TALLOC_CTX
*mem_ctx
,
2789 size_t *p_num_groups
)
2791 struct ldapsam_privates
*ldap_state
=
2792 (struct ldapsam_privates
*)methods
->private_data
;
2793 struct smbldap_state
*conn
= ldap_state
->smbldap_state
;
2795 const char *attrs
[] = { "gidNumber", "sambaSID", NULL
};
2798 LDAPMessage
*result
= NULL
;
2800 NTSTATUS ret
= NT_STATUS_UNSUCCESSFUL
;
2801 size_t num_sids
, num_gids
;
2803 gid_t primary_gid
= -1;
2808 if (pdb_get_username(user
) == NULL
) {
2809 return NT_STATUS_INVALID_PARAMETER
;
2812 escape_name
= escape_ldap_string_alloc(pdb_get_username(user
));
2813 if (escape_name
== NULL
)
2814 return NT_STATUS_NO_MEMORY
;
2816 /* retrieve the users primary gid */
2817 filter
= talloc_asprintf(mem_ctx
,
2818 "(&(objectClass=%s)(uid=%s))",
2819 LDAP_OBJ_SAMBASAMACCOUNT
,
2821 if (filter
== NULL
) {
2822 ret
= NT_STATUS_NO_MEMORY
;
2826 rc
= smbldap_search(conn
, lp_ldap_suffix(),
2827 LDAP_SCOPE_SUBTREE
, filter
, attrs
, 0, &result
);
2829 if (rc
!= LDAP_SUCCESS
)
2832 talloc_autofree_ldapmsg(mem_ctx
, result
);
2834 count
= ldap_count_entries(priv2ld(ldap_state
), result
);
2838 DEBUG(1, ("User account [%s] not found!\n", pdb_get_username(user
)));
2839 ret
= NT_STATUS_NO_SUCH_USER
;
2842 entry
= ldap_first_entry(priv2ld(ldap_state
), result
);
2844 gidstr
= smbldap_talloc_single_attribute(priv2ld(ldap_state
), entry
, "gidNumber", mem_ctx
);
2846 DEBUG (1, ("Unable to find the member's gid!\n"));
2847 ret
= NT_STATUS_INTERNAL_DB_CORRUPTION
;
2850 primary_gid
= strtoul(gidstr
, NULL
, 10);
2853 DEBUG(1, ("found more than one account with the same user name ?!\n"));
2854 ret
= NT_STATUS_INTERNAL_DB_CORRUPTION
;
2858 filter
= talloc_asprintf(mem_ctx
,
2859 "(&(objectClass=%s)(|(memberUid=%s)(gidNumber=%d)))",
2860 LDAP_OBJ_POSIXGROUP
, escape_name
, primary_gid
);
2861 if (filter
== NULL
) {
2862 ret
= NT_STATUS_NO_MEMORY
;
2866 rc
= smbldap_search(conn
, lp_ldap_group_suffix(),
2867 LDAP_SCOPE_SUBTREE
, filter
, attrs
, 0, &result
);
2869 if (rc
!= LDAP_SUCCESS
)
2872 talloc_autofree_ldapmsg(mem_ctx
, result
);
2880 /* We need to add the primary group as the first gid/sid */
2882 if (!add_gid_to_array_unique(mem_ctx
, primary_gid
, pp_gids
, &num_gids
)) {
2883 ret
= NT_STATUS_NO_MEMORY
;
2887 /* This sid will be replaced later */
2889 ret
= add_sid_to_array_unique(mem_ctx
, &global_sid_NULL
, pp_sids
,
2891 if (!NT_STATUS_IS_OK(ret
)) {
2895 for (entry
= ldap_first_entry(conn
->ldap_struct
, result
);
2897 entry
= ldap_next_entry(conn
->ldap_struct
, entry
))
2904 if (!smbldap_get_single_attribute(conn
->ldap_struct
,
2906 str
, sizeof(str
)-1))
2909 if (!string_to_sid(&sid
, str
))
2912 if (!smbldap_get_single_attribute(conn
->ldap_struct
,
2914 str
, sizeof(str
)-1))
2917 gid
= strtoul(str
, &end
, 10);
2919 if (PTR_DIFF(end
, str
) != strlen(str
))
2922 if (gid
== primary_gid
) {
2923 sid_copy(&(*pp_sids
)[0], &sid
);
2925 if (!add_gid_to_array_unique(mem_ctx
, gid
, pp_gids
,
2927 ret
= NT_STATUS_NO_MEMORY
;
2930 ret
= add_sid_to_array_unique(mem_ctx
, &sid
, pp_sids
,
2932 if (!NT_STATUS_IS_OK(ret
)) {
2938 if (sid_compare(&global_sid_NULL
, &(*pp_sids
)[0]) == 0) {
2939 DEBUG(3, ("primary group of [%s] not found\n",
2940 pdb_get_username(user
)));
2944 *p_num_groups
= num_sids
;
2950 SAFE_FREE(escape_name
);
2954 /**********************************************************************
2955 * Augment a posixGroup object with a sambaGroupMapping domgroup
2956 *********************************************************************/
2958 static NTSTATUS
ldapsam_map_posixgroup(TALLOC_CTX
*mem_ctx
,
2959 struct ldapsam_privates
*ldap_state
,
2962 const char *filter
, *dn
;
2963 LDAPMessage
*msg
, *entry
;
2967 filter
= talloc_asprintf(mem_ctx
,
2968 "(&(objectClass=posixGroup)(gidNumber=%u))",
2970 if (filter
== NULL
) {
2971 return NT_STATUS_NO_MEMORY
;
2974 rc
= smbldap_search_suffix(ldap_state
->smbldap_state
, filter
,
2975 get_attr_list(mem_ctx
, groupmap_attr_list
),
2977 talloc_autofree_ldapmsg(mem_ctx
, msg
);
2979 if ((rc
!= LDAP_SUCCESS
) ||
2980 (ldap_count_entries(ldap_state
->smbldap_state
->ldap_struct
, msg
) != 1) ||
2981 ((entry
= ldap_first_entry(ldap_state
->smbldap_state
->ldap_struct
, msg
)) == NULL
)) {
2982 return NT_STATUS_NO_SUCH_GROUP
;
2985 dn
= smbldap_talloc_dn(mem_ctx
, ldap_state
->smbldap_state
->ldap_struct
, entry
);
2987 return NT_STATUS_NO_MEMORY
;
2991 smbldap_set_mod(&mods
, LDAP_MOD_ADD
, "objectClass",
2992 "sambaGroupMapping");
2993 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, entry
, &mods
, "sambaSid",
2994 sid_string_talloc(mem_ctx
, &map
->sid
));
2995 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, entry
, &mods
, "sambaGroupType",
2996 talloc_asprintf(mem_ctx
, "%d", map
->sid_name_use
));
2997 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, entry
, &mods
, "displayName",
2999 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, entry
, &mods
, "description",
3001 talloc_autofree_ldapmod(mem_ctx
, mods
);
3003 rc
= smbldap_modify(ldap_state
->smbldap_state
, dn
, mods
);
3004 if (rc
!= LDAP_SUCCESS
) {
3005 return NT_STATUS_ACCESS_DENIED
;
3008 return NT_STATUS_OK
;
3011 static NTSTATUS
ldapsam_add_group_mapping_entry(struct pdb_methods
*methods
,
3014 struct ldapsam_privates
*ldap_state
=
3015 (struct ldapsam_privates
*)methods
->private_data
;
3016 LDAPMessage
*msg
= NULL
;
3017 LDAPMod
**mods
= NULL
;
3018 const char *attrs
[] = { NULL
};
3022 TALLOC_CTX
*mem_ctx
;
3029 mem_ctx
= talloc_new(NULL
);
3030 if (mem_ctx
== NULL
) {
3031 DEBUG(0, ("talloc_new failed\n"));
3032 return NT_STATUS_NO_MEMORY
;
3035 filter
= talloc_asprintf(mem_ctx
, "(sambaSid=%s)",
3036 sid_string_talloc(mem_ctx
, &map
->sid
));
3037 if (filter
== NULL
) {
3038 result
= NT_STATUS_NO_MEMORY
;
3042 rc
= smbldap_search(ldap_state
->smbldap_state
, lp_ldap_suffix(),
3043 LDAP_SCOPE_SUBTREE
, filter
, attrs
, True
, &msg
);
3044 talloc_autofree_ldapmsg(mem_ctx
, msg
);
3046 if ((rc
== LDAP_SUCCESS
) &&
3047 (ldap_count_entries(ldap_state
->smbldap_state
->ldap_struct
, msg
) > 0)) {
3049 DEBUG(3, ("SID %s already present in LDAP, refusing to add "
3050 "group mapping entry\n", sid_string_dbg(&map
->sid
)));
3051 result
= NT_STATUS_GROUP_EXISTS
;
3055 switch (map
->sid_name_use
) {
3057 case SID_NAME_DOM_GRP
:
3058 /* To map a domain group we need to have a posix group
3060 result
= ldapsam_map_posixgroup(mem_ctx
, ldap_state
, map
);
3064 case SID_NAME_ALIAS
:
3065 if (!sid_check_is_in_our_domain(&map
->sid
)
3066 && !sid_check_is_in_builtin(&map
->sid
) )
3068 DEBUG(3, ("Refusing to map sid %s as an alias, not in our domain\n",
3069 sid_string_dbg(&map
->sid
)));
3070 result
= NT_STATUS_INVALID_PARAMETER
;
3076 DEBUG(3, ("Got invalid use '%s' for mapping\n",
3077 sid_type_lookup(map
->sid_name_use
)));
3078 result
= NT_STATUS_INVALID_PARAMETER
;
3082 /* Domain groups have been mapped in a separate routine, we have to
3083 * create an alias now */
3085 if (map
->gid
== -1) {
3086 DEBUG(10, ("Refusing to map gid==-1\n"));
3087 result
= NT_STATUS_INVALID_PARAMETER
;
3091 if (pdb_gid_to_sid(map
->gid
, &sid
)) {
3092 DEBUG(3, ("Gid %d is already mapped to SID %s, refusing to "
3093 "add\n", map
->gid
, sid_string_dbg(&sid
)));
3094 result
= NT_STATUS_GROUP_EXISTS
;
3098 /* Ok, enough checks done. It's still racy to go ahead now, but that's
3099 * the best we can get out of LDAP. */
3101 dn
= talloc_asprintf(mem_ctx
, "sambaSid=%s,%s",
3102 sid_string_talloc(mem_ctx
, &map
->sid
),
3103 lp_ldap_group_suffix());
3105 result
= NT_STATUS_NO_MEMORY
;
3111 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, NULL
, &mods
, "objectClass",
3113 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, NULL
, &mods
, "objectClass",
3114 "sambaGroupMapping");
3116 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, NULL
, &mods
, "sambaSid",
3117 sid_string_talloc(mem_ctx
, &map
->sid
));
3118 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, NULL
, &mods
, "sambaGroupType",
3119 talloc_asprintf(mem_ctx
, "%d", map
->sid_name_use
));
3120 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, NULL
, &mods
, "displayName",
3122 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, NULL
, &mods
, "description",
3124 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, NULL
, &mods
, "gidNumber",
3125 talloc_asprintf(mem_ctx
, "%u", map
->gid
));
3126 talloc_autofree_ldapmod(mem_ctx
, mods
);
3128 rc
= smbldap_add(ldap_state
->smbldap_state
, dn
, mods
);
3130 result
= (rc
== LDAP_SUCCESS
) ?
3131 NT_STATUS_OK
: NT_STATUS_ACCESS_DENIED
;
3134 TALLOC_FREE(mem_ctx
);
3138 /**********************************************************************
3139 * Update a group mapping entry. We're quite strict about what can be changed:
3140 * Only the description and displayname may be changed. It simply does not
3141 * make any sense to change the SID, gid or the type in a mapping.
3142 *********************************************************************/
3144 static NTSTATUS
ldapsam_update_group_mapping_entry(struct pdb_methods
*methods
,
3147 struct ldapsam_privates
*ldap_state
=
3148 (struct ldapsam_privates
*)methods
->private_data
;
3150 const char *filter
, *dn
;
3151 LDAPMessage
*msg
= NULL
;
3152 LDAPMessage
*entry
= NULL
;
3153 LDAPMod
**mods
= NULL
;
3154 TALLOC_CTX
*mem_ctx
;
3157 mem_ctx
= talloc_new(NULL
);
3158 if (mem_ctx
== NULL
) {
3159 DEBUG(0, ("talloc_new failed\n"));
3160 return NT_STATUS_NO_MEMORY
;
3163 /* Make 100% sure that sid, gid and type are not changed by looking up
3164 * exactly the values we're given in LDAP. */
3166 filter
= talloc_asprintf(mem_ctx
, "(&(objectClass=%s)"
3167 "(sambaSid=%s)(gidNumber=%u)"
3168 "(sambaGroupType=%d))",
3170 sid_string_talloc(mem_ctx
, &map
->sid
),
3171 map
->gid
, map
->sid_name_use
);
3172 if (filter
== NULL
) {
3173 result
= NT_STATUS_NO_MEMORY
;
3177 rc
= smbldap_search_suffix(ldap_state
->smbldap_state
, filter
,
3178 get_attr_list(mem_ctx
, groupmap_attr_list
),
3180 talloc_autofree_ldapmsg(mem_ctx
, msg
);
3182 if ((rc
!= LDAP_SUCCESS
) ||
3183 (ldap_count_entries(ldap_state
->smbldap_state
->ldap_struct
, msg
) != 1) ||
3184 ((entry
= ldap_first_entry(ldap_state
->smbldap_state
->ldap_struct
, msg
)) == NULL
)) {
3185 result
= NT_STATUS_NO_SUCH_GROUP
;
3189 dn
= smbldap_talloc_dn(mem_ctx
, ldap_state
->smbldap_state
->ldap_struct
, entry
);
3192 result
= NT_STATUS_NO_MEMORY
;
3197 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, entry
, &mods
, "displayName",
3199 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, entry
, &mods
, "description",
3201 talloc_autofree_ldapmod(mem_ctx
, mods
);
3204 DEBUG(4, ("ldapsam_update_group_mapping_entry: mods is empty: "
3205 "nothing to do\n"));
3206 result
= NT_STATUS_OK
;
3210 rc
= smbldap_modify(ldap_state
->smbldap_state
, dn
, mods
);
3212 if (rc
!= LDAP_SUCCESS
) {
3213 result
= NT_STATUS_ACCESS_DENIED
;
3217 DEBUG(2, ("ldapsam_update_group_mapping_entry: successfully modified "
3218 "group %lu in LDAP\n", (unsigned long)map
->gid
));
3220 result
= NT_STATUS_OK
;
3223 TALLOC_FREE(mem_ctx
);
3227 /**********************************************************************
3228 *********************************************************************/
3230 static NTSTATUS
ldapsam_delete_group_mapping_entry(struct pdb_methods
*methods
,
3233 struct ldapsam_privates
*priv
=
3234 (struct ldapsam_privates
*)methods
->private_data
;
3235 LDAPMessage
*msg
, *entry
;
3238 TALLOC_CTX
*mem_ctx
;
3241 mem_ctx
= talloc_new(NULL
);
3242 if (mem_ctx
== NULL
) {
3243 DEBUG(0, ("talloc_new failed\n"));
3244 return NT_STATUS_NO_MEMORY
;
3247 filter
= talloc_asprintf(mem_ctx
, "(&(objectClass=%s)(%s=%s))",
3248 LDAP_OBJ_GROUPMAP
, LDAP_ATTRIBUTE_SID
,
3249 sid_string_talloc(mem_ctx
, &sid
));
3250 if (filter
== NULL
) {
3251 result
= NT_STATUS_NO_MEMORY
;
3254 rc
= smbldap_search_suffix(priv
->smbldap_state
, filter
,
3255 get_attr_list(mem_ctx
, groupmap_attr_list
),
3257 talloc_autofree_ldapmsg(mem_ctx
, msg
);
3259 if ((rc
!= LDAP_SUCCESS
) ||
3260 (ldap_count_entries(priv2ld(priv
), msg
) != 1) ||
3261 ((entry
= ldap_first_entry(priv2ld(priv
), msg
)) == NULL
)) {
3262 result
= NT_STATUS_NO_SUCH_GROUP
;
3266 rc
= ldapsam_delete_entry(priv
, mem_ctx
, entry
, LDAP_OBJ_GROUPMAP
,
3267 get_attr_list(mem_ctx
,
3268 groupmap_attr_list_to_delete
));
3270 if ((rc
== LDAP_NAMING_VIOLATION
) ||
3271 (rc
== LDAP_OBJECT_CLASS_VIOLATION
)) {
3272 const char *attrs
[] = { "sambaGroupType", "description",
3273 "displayName", "sambaSIDList",
3276 /* Second try. Don't delete the sambaSID attribute, this is
3277 for "old" entries that are tacked on a winbind
3280 rc
= ldapsam_delete_entry(priv
, mem_ctx
, entry
,
3281 LDAP_OBJ_GROUPMAP
, attrs
);
3284 if ((rc
== LDAP_NAMING_VIOLATION
) ||
3285 (rc
== LDAP_OBJECT_CLASS_VIOLATION
)) {
3286 const char *attrs
[] = { "sambaGroupType", "description",
3287 "displayName", "sambaSIDList",
3288 "gidNumber", NULL
};
3290 /* Third try. This is a post-3.0.21 alias (containing only
3291 * sambaSidEntry and sambaGroupMapping classes), we also have
3292 * to delete the gidNumber attribute, only the sambaSidEntry
3295 rc
= ldapsam_delete_entry(priv
, mem_ctx
, entry
,
3296 LDAP_OBJ_GROUPMAP
, attrs
);
3299 result
= (rc
== LDAP_SUCCESS
) ? NT_STATUS_OK
: NT_STATUS_UNSUCCESSFUL
;
3302 TALLOC_FREE(mem_ctx
);
3306 /**********************************************************************
3307 *********************************************************************/
3309 static NTSTATUS
ldapsam_setsamgrent(struct pdb_methods
*my_methods
,
3312 struct ldapsam_privates
*ldap_state
=
3313 (struct ldapsam_privates
*)my_methods
->private_data
;
3314 char *filter
= NULL
;
3316 const char **attr_list
;
3318 filter
= talloc_asprintf(NULL
, "(objectclass=%s)", LDAP_OBJ_GROUPMAP
);
3320 return NT_STATUS_NO_MEMORY
;
3322 attr_list
= get_attr_list( NULL
, groupmap_attr_list
);
3323 rc
= smbldap_search(ldap_state
->smbldap_state
, lp_ldap_group_suffix(),
3324 LDAP_SCOPE_SUBTREE
, filter
,
3325 attr_list
, 0, &ldap_state
->result
);
3326 TALLOC_FREE(attr_list
);
3328 if (rc
!= LDAP_SUCCESS
) {
3329 DEBUG(0, ("ldapsam_setsamgrent: LDAP search failed: %s\n",
3330 ldap_err2string(rc
)));
3331 DEBUG(3, ("ldapsam_setsamgrent: Query was: %s, %s\n",
3332 lp_ldap_group_suffix(), filter
));
3333 ldap_msgfree(ldap_state
->result
);
3334 ldap_state
->result
= NULL
;
3335 TALLOC_FREE(filter
);
3336 return NT_STATUS_UNSUCCESSFUL
;
3339 TALLOC_FREE(filter
);
3341 DEBUG(2, ("ldapsam_setsamgrent: %d entries in the base!\n",
3342 ldap_count_entries(ldap_state
->smbldap_state
->ldap_struct
,
3343 ldap_state
->result
)));
3346 ldap_first_entry(ldap_state
->smbldap_state
->ldap_struct
,
3347 ldap_state
->result
);
3348 ldap_state
->index
= 0;
3350 return NT_STATUS_OK
;
3353 /**********************************************************************
3354 *********************************************************************/
3356 static void ldapsam_endsamgrent(struct pdb_methods
*my_methods
)
3358 ldapsam_endsampwent(my_methods
);
3361 /**********************************************************************
3362 *********************************************************************/
3364 static NTSTATUS
ldapsam_getsamgrent(struct pdb_methods
*my_methods
,
3367 NTSTATUS ret
= NT_STATUS_UNSUCCESSFUL
;
3368 struct ldapsam_privates
*ldap_state
=
3369 (struct ldapsam_privates
*)my_methods
->private_data
;
3373 if (!ldap_state
->entry
)
3376 ldap_state
->index
++;
3377 bret
= init_group_from_ldap(ldap_state
, map
,
3381 ldap_next_entry(ldap_state
->smbldap_state
->ldap_struct
,
3385 return NT_STATUS_OK
;
3388 /**********************************************************************
3389 *********************************************************************/
3391 static NTSTATUS
ldapsam_enum_group_mapping(struct pdb_methods
*methods
,
3392 const DOM_SID
*domsid
, enum lsa_SidType sid_name_use
,
3393 GROUP_MAP
**pp_rmap
,
3394 size_t *p_num_entries
,
3403 if (!NT_STATUS_IS_OK(ldapsam_setsamgrent(methods
, False
))) {
3404 DEBUG(0, ("ldapsam_enum_group_mapping: Unable to open "
3406 return NT_STATUS_ACCESS_DENIED
;
3409 while (NT_STATUS_IS_OK(ldapsam_getsamgrent(methods
, &map
))) {
3410 if (sid_name_use
!= SID_NAME_UNKNOWN
&&
3411 sid_name_use
!= map
.sid_name_use
) {
3412 DEBUG(11,("ldapsam_enum_group_mapping: group %s is "
3413 "not of the requested type\n", map
.nt_name
));
3416 if (unix_only
==ENUM_ONLY_MAPPED
&& map
.gid
==-1) {
3417 DEBUG(11,("ldapsam_enum_group_mapping: group %s is "
3418 "non mapped\n", map
.nt_name
));
3422 (*pp_rmap
)=SMB_REALLOC_ARRAY((*pp_rmap
), GROUP_MAP
, entries
+1);
3424 DEBUG(0,("ldapsam_enum_group_mapping: Unable to "
3425 "enlarge group map!\n"));
3426 return NT_STATUS_UNSUCCESSFUL
;
3429 (*pp_rmap
)[entries
] = map
;
3434 ldapsam_endsamgrent(methods
);
3436 *p_num_entries
= entries
;
3438 return NT_STATUS_OK
;
3441 static NTSTATUS
ldapsam_modify_aliasmem(struct pdb_methods
*methods
,
3442 const DOM_SID
*alias
,
3443 const DOM_SID
*member
,
3446 struct ldapsam_privates
*ldap_state
=
3447 (struct ldapsam_privates
*)methods
->private_data
;
3449 LDAPMessage
*result
= NULL
;
3450 LDAPMessage
*entry
= NULL
;
3452 LDAPMod
**mods
= NULL
;
3454 enum lsa_SidType type
= SID_NAME_USE_NONE
;
3457 char *filter
= NULL
;
3459 if (sid_check_is_in_builtin(alias
)) {
3460 type
= SID_NAME_ALIAS
;
3463 if (sid_check_is_in_our_domain(alias
)) {
3464 type
= SID_NAME_ALIAS
;
3467 if (type
== SID_NAME_USE_NONE
) {
3468 DEBUG(5, ("SID %s is neither in builtin nor in our domain!\n",
3469 sid_string_dbg(alias
)));
3470 return NT_STATUS_NO_SUCH_ALIAS
;
3473 if (asprintf(&filter
,
3474 "(&(objectClass=%s)(sambaSid=%s)(sambaGroupType=%d))",
3475 LDAP_OBJ_GROUPMAP
, sid_to_fstring(tmp
, alias
),
3477 return NT_STATUS_NO_MEMORY
;
3480 if (ldapsam_search_one_group(ldap_state
, filter
,
3481 &result
) != LDAP_SUCCESS
) {
3483 return NT_STATUS_NO_SUCH_ALIAS
;
3486 count
= ldap_count_entries(ldap_state
->smbldap_state
->ldap_struct
,
3490 DEBUG(4, ("ldapsam_modify_aliasmem: Did not find alias\n"));
3491 ldap_msgfree(result
);
3493 return NT_STATUS_NO_SUCH_ALIAS
;
3497 DEBUG(1, ("ldapsam_modify_aliasmem: Duplicate entries for "
3498 "filter %s: count=%d\n", filter
, count
));
3499 ldap_msgfree(result
);
3501 return NT_STATUS_NO_SUCH_ALIAS
;
3506 entry
= ldap_first_entry(ldap_state
->smbldap_state
->ldap_struct
,
3510 ldap_msgfree(result
);
3511 return NT_STATUS_UNSUCCESSFUL
;
3514 dn
= smbldap_get_dn(ldap_state
->smbldap_state
->ldap_struct
, entry
);
3516 ldap_msgfree(result
);
3517 return NT_STATUS_UNSUCCESSFUL
;
3520 smbldap_set_mod(&mods
, modop
,
3521 get_attr_key2string(groupmap_attr_list
,
3522 LDAP_ATTR_SID_LIST
),
3523 sid_to_fstring(tmp
, member
));
3525 rc
= smbldap_modify(ldap_state
->smbldap_state
, dn
, mods
);
3527 ldap_mods_free(mods
, True
);
3528 ldap_msgfree(result
);
3531 if (rc
== LDAP_TYPE_OR_VALUE_EXISTS
) {
3532 return NT_STATUS_MEMBER_IN_ALIAS
;
3535 if (rc
== LDAP_NO_SUCH_ATTRIBUTE
) {
3536 return NT_STATUS_MEMBER_NOT_IN_ALIAS
;
3539 if (rc
!= LDAP_SUCCESS
) {
3540 return NT_STATUS_UNSUCCESSFUL
;
3543 return NT_STATUS_OK
;
3546 static NTSTATUS
ldapsam_add_aliasmem(struct pdb_methods
*methods
,
3547 const DOM_SID
*alias
,
3548 const DOM_SID
*member
)
3550 return ldapsam_modify_aliasmem(methods
, alias
, member
, LDAP_MOD_ADD
);
3553 static NTSTATUS
ldapsam_del_aliasmem(struct pdb_methods
*methods
,
3554 const DOM_SID
*alias
,
3555 const DOM_SID
*member
)
3557 return ldapsam_modify_aliasmem(methods
, alias
, member
,
3561 static NTSTATUS
ldapsam_enum_aliasmem(struct pdb_methods
*methods
,
3562 const DOM_SID
*alias
,
3563 DOM_SID
**pp_members
,
3564 size_t *p_num_members
)
3566 struct ldapsam_privates
*ldap_state
=
3567 (struct ldapsam_privates
*)methods
->private_data
;
3568 LDAPMessage
*result
= NULL
;
3569 LDAPMessage
*entry
= NULL
;
3571 char **values
= NULL
;
3573 char *filter
= NULL
;
3574 size_t num_members
= 0;
3575 enum lsa_SidType type
= SID_NAME_USE_NONE
;
3581 if (sid_check_is_in_builtin(alias
)) {
3582 type
= SID_NAME_ALIAS
;
3585 if (sid_check_is_in_our_domain(alias
)) {
3586 type
= SID_NAME_ALIAS
;
3589 if (type
== SID_NAME_USE_NONE
) {
3590 DEBUG(5, ("SID %s is neither in builtin nor in our domain!\n",
3591 sid_string_dbg(alias
)));
3592 return NT_STATUS_NO_SUCH_ALIAS
;
3595 if (asprintf(&filter
,
3596 "(&(objectClass=%s)(sambaSid=%s)(sambaGroupType=%d))",
3597 LDAP_OBJ_GROUPMAP
, sid_to_fstring(tmp
, alias
),
3599 return NT_STATUS_NO_MEMORY
;
3602 if (ldapsam_search_one_group(ldap_state
, filter
,
3603 &result
) != LDAP_SUCCESS
) {
3605 return NT_STATUS_NO_SUCH_ALIAS
;
3608 count
= ldap_count_entries(ldap_state
->smbldap_state
->ldap_struct
,
3612 DEBUG(4, ("ldapsam_enum_aliasmem: Did not find alias\n"));
3613 ldap_msgfree(result
);
3615 return NT_STATUS_NO_SUCH_ALIAS
;
3619 DEBUG(1, ("ldapsam_enum_aliasmem: Duplicate entries for "
3620 "filter %s: count=%d\n", filter
, count
));
3621 ldap_msgfree(result
);
3623 return NT_STATUS_NO_SUCH_ALIAS
;
3628 entry
= ldap_first_entry(ldap_state
->smbldap_state
->ldap_struct
,
3632 ldap_msgfree(result
);
3633 return NT_STATUS_UNSUCCESSFUL
;
3636 values
= ldap_get_values(ldap_state
->smbldap_state
->ldap_struct
,
3638 get_attr_key2string(groupmap_attr_list
,
3639 LDAP_ATTR_SID_LIST
));
3641 if (values
== NULL
) {
3642 ldap_msgfree(result
);
3643 return NT_STATUS_OK
;
3646 count
= ldap_count_values(values
);
3648 for (i
=0; i
<count
; i
++) {
3652 if (!string_to_sid(&member
, values
[i
]))
3655 status
= add_sid_to_array(NULL
, &member
, pp_members
,
3657 if (!NT_STATUS_IS_OK(status
)) {
3658 ldap_value_free(values
);
3659 ldap_msgfree(result
);
3664 *p_num_members
= num_members
;
3665 ldap_value_free(values
);
3666 ldap_msgfree(result
);
3668 return NT_STATUS_OK
;
3671 static NTSTATUS
ldapsam_alias_memberships(struct pdb_methods
*methods
,
3672 TALLOC_CTX
*mem_ctx
,
3673 const DOM_SID
*domain_sid
,
3674 const DOM_SID
*members
,
3676 uint32
**pp_alias_rids
,
3677 size_t *p_num_alias_rids
)
3679 struct ldapsam_privates
*ldap_state
=
3680 (struct ldapsam_privates
*)methods
->private_data
;
3683 const char *attrs
[] = { LDAP_ATTRIBUTE_SID
, NULL
};
3685 LDAPMessage
*result
= NULL
;
3686 LDAPMessage
*entry
= NULL
;
3690 enum lsa_SidType type
= SID_NAME_USE_NONE
;
3692 if (sid_check_is_builtin(domain_sid
)) {
3693 type
= SID_NAME_ALIAS
;
3696 if (sid_check_is_domain(domain_sid
)) {
3697 type
= SID_NAME_ALIAS
;
3700 if (type
== SID_NAME_USE_NONE
) {
3701 DEBUG(5, ("SID %s is neither builtin nor domain!\n",
3702 sid_string_dbg(domain_sid
)));
3703 return NT_STATUS_UNSUCCESSFUL
;
3706 filter
= talloc_asprintf(mem_ctx
,
3707 "(&(|(objectclass=%s)(sambaGroupType=%d))(|",
3708 LDAP_OBJ_GROUPMAP
, type
);
3710 for (i
=0; i
<num_members
; i
++)
3711 filter
= talloc_asprintf(mem_ctx
, "%s(sambaSIDList=%s)",
3713 sid_string_talloc(mem_ctx
,
3716 filter
= talloc_asprintf(mem_ctx
, "%s))", filter
);
3718 if (filter
== NULL
) {
3719 return NT_STATUS_NO_MEMORY
;
3722 rc
= smbldap_search(ldap_state
->smbldap_state
, lp_ldap_group_suffix(),
3723 LDAP_SCOPE_SUBTREE
, filter
, attrs
, 0, &result
);
3725 if (rc
!= LDAP_SUCCESS
)
3726 return NT_STATUS_UNSUCCESSFUL
;
3728 ldap_struct
= ldap_state
->smbldap_state
->ldap_struct
;
3730 for (entry
= ldap_first_entry(ldap_struct
, result
);
3732 entry
= ldap_next_entry(ldap_struct
, entry
))
3738 if (!smbldap_get_single_attribute(ldap_struct
, entry
,
3744 if (!string_to_sid(&sid
, sid_str
))
3747 if (!sid_peek_check_rid(domain_sid
, &sid
, &rid
))
3750 if (!add_rid_to_array_unique(mem_ctx
, rid
, pp_alias_rids
,
3751 p_num_alias_rids
)) {
3752 ldap_msgfree(result
);
3753 return NT_STATUS_NO_MEMORY
;
3757 ldap_msgfree(result
);
3758 return NT_STATUS_OK
;
3761 static NTSTATUS
ldapsam_set_account_policy_in_ldap(struct pdb_methods
*methods
,
3765 NTSTATUS ntstatus
= NT_STATUS_UNSUCCESSFUL
;
3767 LDAPMod
**mods
= NULL
;
3768 fstring value_string
;
3769 const char *policy_attr
= NULL
;
3771 struct ldapsam_privates
*ldap_state
=
3772 (struct ldapsam_privates
*)methods
->private_data
;
3774 DEBUG(10,("ldapsam_set_account_policy_in_ldap\n"));
3776 if (!ldap_state
->domain_dn
) {
3777 return NT_STATUS_INVALID_PARAMETER
;
3780 policy_attr
= get_account_policy_attr(policy_index
);
3781 if (policy_attr
== NULL
) {
3782 DEBUG(0,("ldapsam_set_account_policy_in_ldap: invalid "
3787 slprintf(value_string
, sizeof(value_string
) - 1, "%i", value
);
3789 smbldap_set_mod(&mods
, LDAP_MOD_REPLACE
, policy_attr
, value_string
);
3791 rc
= smbldap_modify(ldap_state
->smbldap_state
, ldap_state
->domain_dn
,
3794 ldap_mods_free(mods
, True
);
3796 if (rc
!= LDAP_SUCCESS
) {
3800 if (!cache_account_policy_set(policy_index
, value
)) {
3801 DEBUG(0,("ldapsam_set_account_policy_in_ldap: failed to "
3802 "update local tdb cache\n"));
3806 return NT_STATUS_OK
;
3809 static NTSTATUS
ldapsam_set_account_policy(struct pdb_methods
*methods
,
3810 int policy_index
, uint32 value
)
3812 return ldapsam_set_account_policy_in_ldap(methods
, policy_index
,
3816 static NTSTATUS
ldapsam_get_account_policy_from_ldap(struct pdb_methods
*methods
,
3820 NTSTATUS ntstatus
= NT_STATUS_UNSUCCESSFUL
;
3821 LDAPMessage
*result
= NULL
;
3822 LDAPMessage
*entry
= NULL
;
3826 const char *policy_attr
= NULL
;
3828 struct ldapsam_privates
*ldap_state
=
3829 (struct ldapsam_privates
*)methods
->private_data
;
3831 const char *attrs
[2];
3833 DEBUG(10,("ldapsam_get_account_policy_from_ldap\n"));
3835 if (!ldap_state
->domain_dn
) {
3836 return NT_STATUS_INVALID_PARAMETER
;
3839 policy_attr
= get_account_policy_attr(policy_index
);
3841 DEBUG(0,("ldapsam_get_account_policy_from_ldap: invalid "
3842 "policy index: %d\n", policy_index
));
3846 attrs
[0] = policy_attr
;
3849 rc
= smbldap_search(ldap_state
->smbldap_state
, ldap_state
->domain_dn
,
3850 LDAP_SCOPE_BASE
, "(objectclass=*)", attrs
, 0,
3853 if (rc
!= LDAP_SUCCESS
) {
3857 count
= ldap_count_entries(priv2ld(ldap_state
), result
);
3862 entry
= ldap_first_entry(priv2ld(ldap_state
), result
);
3863 if (entry
== NULL
) {
3867 vals
= ldap_get_values(priv2ld(ldap_state
), entry
, policy_attr
);
3872 *value
= (uint32
)atol(vals
[0]);
3874 ntstatus
= NT_STATUS_OK
;
3878 ldap_value_free(vals
);
3879 ldap_msgfree(result
);
3884 /* wrapper around ldapsam_get_account_policy_from_ldap(), handles tdb as cache
3886 - if user hasn't decided to use account policies inside LDAP just reuse the
3889 - if there is a valid cache entry, return that
3890 - if there is an LDAP entry, update cache and return
3891 - otherwise set to default, update cache and return
3895 static NTSTATUS
ldapsam_get_account_policy(struct pdb_methods
*methods
,
3896 int policy_index
, uint32
*value
)
3898 NTSTATUS ntstatus
= NT_STATUS_UNSUCCESSFUL
;
3900 if (cache_account_policy_get(policy_index
, value
)) {
3901 DEBUG(11,("ldapsam_get_account_policy: got valid value from "
3903 return NT_STATUS_OK
;
3906 ntstatus
= ldapsam_get_account_policy_from_ldap(methods
, policy_index
,
3908 if (NT_STATUS_IS_OK(ntstatus
)) {
3912 DEBUG(10,("ldapsam_get_account_policy: failed to retrieve from "
3916 /* should we automagically migrate old tdb value here ? */
3917 if (account_policy_get(policy_index
, value
))
3920 DEBUG(10,("ldapsam_get_account_policy: no tdb for %d, trying "
3921 "default\n", policy_index
));
3924 if (!account_policy_get_default(policy_index
, value
)) {
3930 ntstatus
= ldapsam_set_account_policy(methods
, policy_index
, *value
);
3931 if (!NT_STATUS_IS_OK(ntstatus
)) {
3937 if (!cache_account_policy_set(policy_index
, *value
)) {
3938 DEBUG(0,("ldapsam_get_account_policy: failed to update local "
3939 "tdb as a cache\n"));
3940 return NT_STATUS_UNSUCCESSFUL
;
3943 return NT_STATUS_OK
;
3946 static NTSTATUS
ldapsam_lookup_rids(struct pdb_methods
*methods
,
3947 const DOM_SID
*domain_sid
,
3951 enum lsa_SidType
*attrs
)
3953 struct ldapsam_privates
*ldap_state
=
3954 (struct ldapsam_privates
*)methods
->private_data
;
3955 LDAPMessage
*msg
= NULL
;
3957 char *allsids
= NULL
;
3958 int i
, rc
, num_mapped
;
3959 NTSTATUS result
= NT_STATUS_NO_MEMORY
;
3960 TALLOC_CTX
*mem_ctx
;
3964 mem_ctx
= talloc_new(NULL
);
3965 if (mem_ctx
== NULL
) {
3966 DEBUG(0, ("talloc_new failed\n"));
3970 if (!sid_check_is_builtin(domain_sid
) &&
3971 !sid_check_is_domain(domain_sid
)) {
3972 result
= NT_STATUS_INVALID_PARAMETER
;
3976 for (i
=0; i
<num_rids
; i
++)
3977 attrs
[i
] = SID_NAME_UNKNOWN
;
3979 allsids
= talloc_strdup(mem_ctx
, "");
3980 if (allsids
== NULL
) {
3984 for (i
=0; i
<num_rids
; i
++) {
3986 sid_compose(&sid
, domain_sid
, rids
[i
]);
3987 allsids
= talloc_asprintf_append_buffer(
3988 allsids
, "(sambaSid=%s)",
3989 sid_string_talloc(mem_ctx
, &sid
));
3990 if (allsids
== NULL
) {
3995 /* First look for users */
3999 const char *ldap_attrs
[] = { "uid", "sambaSid", NULL
};
4001 filter
= talloc_asprintf(
4002 mem_ctx
, ("(&(objectClass=%s)(|%s))"),
4003 LDAP_OBJ_SAMBASAMACCOUNT
, allsids
);
4005 if (filter
== NULL
) {
4009 rc
= smbldap_search(ldap_state
->smbldap_state
,
4010 lp_ldap_user_suffix(),
4011 LDAP_SCOPE_SUBTREE
, filter
, ldap_attrs
, 0,
4013 talloc_autofree_ldapmsg(mem_ctx
, msg
);
4016 if (rc
!= LDAP_SUCCESS
)
4019 ld
= ldap_state
->smbldap_state
->ldap_struct
;
4022 for (entry
= ldap_first_entry(ld
, msg
);
4024 entry
= ldap_next_entry(ld
, entry
)) {
4029 if (!ldapsam_extract_rid_from_entry(ld
, entry
, domain_sid
,
4031 DEBUG(2, ("Could not find sid from ldap entry\n"));
4035 name
= smbldap_talloc_single_attribute(ld
, entry
, "uid",
4038 DEBUG(2, ("Could not retrieve uid attribute\n"));
4042 for (rid_index
= 0; rid_index
< num_rids
; rid_index
++) {
4043 if (rid
== rids
[rid_index
])
4047 if (rid_index
== num_rids
) {
4048 DEBUG(2, ("Got a RID not asked for: %d\n", rid
));
4052 attrs
[rid_index
] = SID_NAME_USER
;
4053 names
[rid_index
] = name
;
4057 if (num_mapped
== num_rids
) {
4058 /* No need to look for groups anymore -- we're done */
4059 result
= NT_STATUS_OK
;
4063 /* Same game for groups */
4067 const char *ldap_attrs
[] = { "cn", "displayName", "sambaSid",
4068 "sambaGroupType", NULL
};
4070 filter
= talloc_asprintf(
4071 mem_ctx
, "(&(objectClass=%s)(|%s))",
4072 LDAP_OBJ_GROUPMAP
, allsids
);
4073 if (filter
== NULL
) {
4077 rc
= smbldap_search(ldap_state
->smbldap_state
,
4078 lp_ldap_group_suffix(),
4079 LDAP_SCOPE_SUBTREE
, filter
, ldap_attrs
, 0,
4081 talloc_autofree_ldapmsg(mem_ctx
, msg
);
4084 if (rc
!= LDAP_SUCCESS
)
4087 /* ldap_struct might have changed due to a reconnect */
4089 ld
= ldap_state
->smbldap_state
->ldap_struct
;
4091 /* For consistency checks, we already checked we're only domain or builtin */
4093 is_builtin
= sid_check_is_builtin(domain_sid
);
4095 for (entry
= ldap_first_entry(ld
, msg
);
4097 entry
= ldap_next_entry(ld
, entry
))
4102 enum lsa_SidType type
;
4103 const char *dn
= smbldap_talloc_dn(mem_ctx
, ld
, entry
);
4105 attr
= smbldap_talloc_single_attribute(ld
, entry
, "sambaGroupType",
4108 DEBUG(2, ("Could not extract type from ldap entry %s\n",
4113 type
= (enum lsa_SidType
)atol(attr
);
4115 /* Consistency checks */
4116 if ((is_builtin
&& (type
!= SID_NAME_ALIAS
)) ||
4117 (!is_builtin
&& ((type
!= SID_NAME_ALIAS
) &&
4118 (type
!= SID_NAME_DOM_GRP
)))) {
4119 DEBUG(2, ("Rejecting invalid group mapping entry %s\n", dn
));
4122 if (!ldapsam_extract_rid_from_entry(ld
, entry
, domain_sid
,
4124 DEBUG(2, ("Could not find sid from ldap entry %s\n", dn
));
4128 attr
= smbldap_talloc_single_attribute(ld
, entry
, "displayName", names
);
4131 DEBUG(10, ("Could not retrieve 'displayName' attribute from %s\n",
4133 attr
= smbldap_talloc_single_attribute(ld
, entry
, "cn", names
);
4137 DEBUG(2, ("Could not retrieve naming attribute from %s\n",
4142 for (rid_index
= 0; rid_index
< num_rids
; rid_index
++) {
4143 if (rid
== rids
[rid_index
])
4147 if (rid_index
== num_rids
) {
4148 DEBUG(2, ("Got a RID not asked for: %d\n", rid
));
4152 attrs
[rid_index
] = type
;
4153 names
[rid_index
] = attr
;
4157 result
= NT_STATUS_NONE_MAPPED
;
4160 result
= (num_mapped
== num_rids
) ?
4161 NT_STATUS_OK
: STATUS_SOME_UNMAPPED
;
4163 TALLOC_FREE(mem_ctx
);
4167 static char *get_ldap_filter(TALLOC_CTX
*mem_ctx
, const char *username
)
4169 char *filter
= NULL
;
4170 char *escaped
= NULL
;
4171 char *result
= NULL
;
4173 asprintf(&filter
, "(&%s(objectclass=sambaSamAccount))",
4175 if (filter
== NULL
) goto done
;
4177 escaped
= escape_ldap_string_alloc(username
);
4178 if (escaped
== NULL
) goto done
;
4180 result
= talloc_string_sub(mem_ctx
, filter
, "%u", username
);
4189 const char **talloc_attrs(TALLOC_CTX
*mem_ctx
, ...)
4193 const char **result
;
4195 va_start(ap
, mem_ctx
);
4196 while (va_arg(ap
, const char *) != NULL
)
4200 if ((result
= TALLOC_ARRAY(mem_ctx
, const char *, num
+1)) == NULL
) {
4204 va_start(ap
, mem_ctx
);
4205 for (i
=0; i
<num
; i
++) {
4206 result
[i
] = talloc_strdup(result
, va_arg(ap
, const char*));
4207 if (result
[i
] == NULL
) {
4208 talloc_free(result
);
4218 struct ldap_search_state
{
4219 struct smbldap_state
*connection
;
4229 void *pagedresults_cookie
;
4231 LDAPMessage
*entries
, *current_entry
;
4232 bool (*ldap2displayentry
)(struct ldap_search_state
*state
,
4233 TALLOC_CTX
*mem_ctx
,
4234 LDAP
*ld
, LDAPMessage
*entry
,
4235 struct samr_displayentry
*result
);
4238 static bool ldapsam_search_firstpage(struct pdb_search
*search
)
4240 struct ldap_search_state
*state
=
4241 (struct ldap_search_state
*)search
->private_data
;
4243 int rc
= LDAP_OPERATIONS_ERROR
;
4245 state
->entries
= NULL
;
4247 if (state
->connection
->paged_results
) {
4248 rc
= smbldap_search_paged(state
->connection
, state
->base
,
4249 state
->scope
, state
->filter
,
4250 state
->attrs
, state
->attrsonly
,
4251 lp_ldap_page_size(), &state
->entries
,
4252 &state
->pagedresults_cookie
);
4255 if ((rc
!= LDAP_SUCCESS
) || (state
->entries
== NULL
)) {
4257 if (state
->entries
!= NULL
) {
4258 /* Left over from unsuccessful paged attempt */
4259 ldap_msgfree(state
->entries
);
4260 state
->entries
= NULL
;
4263 rc
= smbldap_search(state
->connection
, state
->base
,
4264 state
->scope
, state
->filter
, state
->attrs
,
4265 state
->attrsonly
, &state
->entries
);
4267 if ((rc
!= LDAP_SUCCESS
) || (state
->entries
== NULL
))
4270 /* Ok, the server was lying. It told us it could do paged
4271 * searches when it could not. */
4272 state
->connection
->paged_results
= False
;
4275 ld
= state
->connection
->ldap_struct
;
4277 DEBUG(5, ("Don't have an LDAP connection right after a "
4281 state
->current_entry
= ldap_first_entry(ld
, state
->entries
);
4283 if (state
->current_entry
== NULL
) {
4284 ldap_msgfree(state
->entries
);
4285 state
->entries
= NULL
;
4291 static bool ldapsam_search_nextpage(struct pdb_search
*search
)
4293 struct ldap_search_state
*state
=
4294 (struct ldap_search_state
*)search
->private_data
;
4297 if (!state
->connection
->paged_results
) {
4298 /* There is no next page when there are no paged results */
4302 rc
= smbldap_search_paged(state
->connection
, state
->base
,
4303 state
->scope
, state
->filter
, state
->attrs
,
4304 state
->attrsonly
, lp_ldap_page_size(),
4306 &state
->pagedresults_cookie
);
4308 if ((rc
!= LDAP_SUCCESS
) || (state
->entries
== NULL
))
4311 state
->current_entry
= ldap_first_entry(state
->connection
->ldap_struct
, state
->entries
);
4313 if (state
->current_entry
== NULL
) {
4314 ldap_msgfree(state
->entries
);
4315 state
->entries
= NULL
;
4321 static bool ldapsam_search_next_entry(struct pdb_search
*search
,
4322 struct samr_displayentry
*entry
)
4324 struct ldap_search_state
*state
=
4325 (struct ldap_search_state
*)search
->private_data
;
4329 if ((state
->entries
== NULL
) && (state
->pagedresults_cookie
== NULL
))
4332 if ((state
->entries
== NULL
) &&
4333 !ldapsam_search_nextpage(search
))
4336 result
= state
->ldap2displayentry(state
, search
->mem_ctx
, state
->connection
->ldap_struct
,
4337 state
->current_entry
, entry
);
4341 dn
= ldap_get_dn(state
->connection
->ldap_struct
, state
->current_entry
);
4342 DEBUG(5, ("Skipping entry %s\n", dn
!= NULL
? dn
: "<NULL>"));
4343 if (dn
!= NULL
) ldap_memfree(dn
);
4346 state
->current_entry
= ldap_next_entry(state
->connection
->ldap_struct
, state
->current_entry
);
4348 if (state
->current_entry
== NULL
) {
4349 ldap_msgfree(state
->entries
);
4350 state
->entries
= NULL
;
4353 if (!result
) goto retry
;
4358 static void ldapsam_search_end(struct pdb_search
*search
)
4360 struct ldap_search_state
*state
=
4361 (struct ldap_search_state
*)search
->private_data
;
4364 if (state
->pagedresults_cookie
== NULL
)
4367 if (state
->entries
!= NULL
)
4368 ldap_msgfree(state
->entries
);
4370 state
->entries
= NULL
;
4371 state
->current_entry
= NULL
;
4373 if (!state
->connection
->paged_results
)
4376 /* Tell the LDAP server we're not interested in the rest anymore. */
4378 rc
= smbldap_search_paged(state
->connection
, state
->base
, state
->scope
,
4379 state
->filter
, state
->attrs
,
4380 state
->attrsonly
, 0, &state
->entries
,
4381 &state
->pagedresults_cookie
);
4383 if (rc
!= LDAP_SUCCESS
)
4384 DEBUG(5, ("Could not end search properly\n"));
4389 static bool ldapuser2displayentry(struct ldap_search_state
*state
,
4390 TALLOC_CTX
*mem_ctx
,
4391 LDAP
*ld
, LDAPMessage
*entry
,
4392 struct samr_displayentry
*result
)
4398 vals
= ldap_get_values(ld
, entry
, "sambaAcctFlags");
4399 if ((vals
== NULL
) || (vals
[0] == NULL
)) {
4400 DEBUG(5, ("\"sambaAcctFlags\" not found\n"));
4403 acct_flags
= pdb_decode_acct_ctrl(vals
[0]);
4404 ldap_value_free(vals
);
4406 if ((state
->acct_flags
!= 0) &&
4407 ((state
->acct_flags
& acct_flags
) == 0))
4410 result
->acct_flags
= acct_flags
;
4411 result
->account_name
= "";
4412 result
->fullname
= "";
4413 result
->description
= "";
4415 vals
= ldap_get_values(ld
, entry
, "uid");
4416 if ((vals
== NULL
) || (vals
[0] == NULL
)) {
4417 DEBUG(5, ("\"uid\" not found\n"));
4420 pull_utf8_talloc(mem_ctx
,
4421 CONST_DISCARD(char **, &result
->account_name
),
4423 ldap_value_free(vals
);
4425 vals
= ldap_get_values(ld
, entry
, "displayName");
4426 if ((vals
== NULL
) || (vals
[0] == NULL
))
4427 DEBUG(8, ("\"displayName\" not found\n"));
4429 pull_utf8_talloc(mem_ctx
,
4430 CONST_DISCARD(char **, &result
->fullname
),
4432 ldap_value_free(vals
);
4434 vals
= ldap_get_values(ld
, entry
, "description");
4435 if ((vals
== NULL
) || (vals
[0] == NULL
))
4436 DEBUG(8, ("\"description\" not found\n"));
4438 pull_utf8_talloc(mem_ctx
,
4439 CONST_DISCARD(char **, &result
->description
),
4441 ldap_value_free(vals
);
4443 if ((result
->account_name
== NULL
) ||
4444 (result
->fullname
== NULL
) ||
4445 (result
->description
== NULL
)) {
4446 DEBUG(0, ("talloc failed\n"));
4450 vals
= ldap_get_values(ld
, entry
, "sambaSid");
4451 if ((vals
== NULL
) || (vals
[0] == NULL
)) {
4452 DEBUG(0, ("\"objectSid\" not found\n"));
4456 if (!string_to_sid(&sid
, vals
[0])) {
4457 DEBUG(0, ("Could not convert %s to SID\n", vals
[0]));
4458 ldap_value_free(vals
);
4461 ldap_value_free(vals
);
4463 if (!sid_peek_check_rid(get_global_sam_sid(), &sid
, &result
->rid
)) {
4464 DEBUG(0, ("sid %s does not belong to our domain\n",
4465 sid_string_dbg(&sid
)));
4473 static bool ldapsam_search_users(struct pdb_methods
*methods
,
4474 struct pdb_search
*search
,
4477 struct ldapsam_privates
*ldap_state
=
4478 (struct ldapsam_privates
*)methods
->private_data
;
4479 struct ldap_search_state
*state
;
4481 state
= TALLOC_P(search
->mem_ctx
, struct ldap_search_state
);
4482 if (state
== NULL
) {
4483 DEBUG(0, ("talloc failed\n"));
4487 state
->connection
= ldap_state
->smbldap_state
;
4489 if ((acct_flags
!= 0) && ((acct_flags
& ACB_NORMAL
) != 0))
4490 state
->base
= lp_ldap_user_suffix();
4491 else if ((acct_flags
!= 0) &&
4492 ((acct_flags
& (ACB_WSTRUST
|ACB_SVRTRUST
|ACB_DOMTRUST
)) != 0))
4493 state
->base
= lp_ldap_machine_suffix();
4495 state
->base
= lp_ldap_suffix();
4497 state
->acct_flags
= acct_flags
;
4498 state
->base
= talloc_strdup(search
->mem_ctx
, state
->base
);
4499 state
->scope
= LDAP_SCOPE_SUBTREE
;
4500 state
->filter
= get_ldap_filter(search
->mem_ctx
, "*");
4501 state
->attrs
= talloc_attrs(search
->mem_ctx
, "uid", "sambaSid",
4502 "displayName", "description",
4503 "sambaAcctFlags", NULL
);
4504 state
->attrsonly
= 0;
4505 state
->pagedresults_cookie
= NULL
;
4506 state
->entries
= NULL
;
4507 state
->ldap2displayentry
= ldapuser2displayentry
;
4509 if ((state
->filter
== NULL
) || (state
->attrs
== NULL
)) {
4510 DEBUG(0, ("talloc failed\n"));
4514 search
->private_data
= state
;
4515 search
->next_entry
= ldapsam_search_next_entry
;
4516 search
->search_end
= ldapsam_search_end
;
4518 return ldapsam_search_firstpage(search
);
4521 static bool ldapgroup2displayentry(struct ldap_search_state
*state
,
4522 TALLOC_CTX
*mem_ctx
,
4523 LDAP
*ld
, LDAPMessage
*entry
,
4524 struct samr_displayentry
*result
)
4530 result
->account_name
= "";
4531 result
->fullname
= "";
4532 result
->description
= "";
4535 vals
= ldap_get_values(ld
, entry
, "sambaGroupType");
4536 if ((vals
== NULL
) || (vals
[0] == NULL
)) {
4537 DEBUG(5, ("\"sambaGroupType\" not found\n"));
4539 ldap_value_free(vals
);
4544 group_type
= atoi(vals
[0]);
4546 if ((state
->group_type
!= 0) &&
4547 ((state
->group_type
!= group_type
))) {
4548 ldap_value_free(vals
);
4552 ldap_value_free(vals
);
4554 /* display name is the NT group name */
4556 vals
= ldap_get_values(ld
, entry
, "displayName");
4557 if ((vals
== NULL
) || (vals
[0] == NULL
)) {
4558 DEBUG(8, ("\"displayName\" not found\n"));
4560 /* fallback to the 'cn' attribute */
4561 vals
= ldap_get_values(ld
, entry
, "cn");
4562 if ((vals
== NULL
) || (vals
[0] == NULL
)) {
4563 DEBUG(5, ("\"cn\" not found\n"));
4566 pull_utf8_talloc(mem_ctx
,
4567 CONST_DISCARD(char **, &result
->account_name
),
4571 pull_utf8_talloc(mem_ctx
,
4572 CONST_DISCARD(char **, &result
->account_name
),
4576 ldap_value_free(vals
);
4578 vals
= ldap_get_values(ld
, entry
, "description");
4579 if ((vals
== NULL
) || (vals
[0] == NULL
))
4580 DEBUG(8, ("\"description\" not found\n"));
4582 pull_utf8_talloc(mem_ctx
,
4583 CONST_DISCARD(char **, &result
->description
),
4585 ldap_value_free(vals
);
4587 if ((result
->account_name
== NULL
) ||
4588 (result
->fullname
== NULL
) ||
4589 (result
->description
== NULL
)) {
4590 DEBUG(0, ("talloc failed\n"));
4594 vals
= ldap_get_values(ld
, entry
, "sambaSid");
4595 if ((vals
== NULL
) || (vals
[0] == NULL
)) {
4596 DEBUG(0, ("\"objectSid\" not found\n"));
4598 ldap_value_free(vals
);
4603 if (!string_to_sid(&sid
, vals
[0])) {
4604 DEBUG(0, ("Could not convert %s to SID\n", vals
[0]));
4608 ldap_value_free(vals
);
4610 switch (group_type
) {
4611 case SID_NAME_DOM_GRP
:
4612 case SID_NAME_ALIAS
:
4614 if (!sid_peek_check_rid(get_global_sam_sid(), &sid
, &result
->rid
)
4615 && !sid_peek_check_rid(&global_sid_Builtin
, &sid
, &result
->rid
))
4617 DEBUG(0, ("%s is not in our domain\n",
4618 sid_string_dbg(&sid
)));
4624 DEBUG(0,("unkown group type: %d\n", group_type
));
4631 static bool ldapsam_search_grouptype(struct pdb_methods
*methods
,
4632 struct pdb_search
*search
,
4634 enum lsa_SidType type
)
4636 struct ldapsam_privates
*ldap_state
=
4637 (struct ldapsam_privates
*)methods
->private_data
;
4638 struct ldap_search_state
*state
;
4641 state
= TALLOC_P(search
->mem_ctx
, struct ldap_search_state
);
4642 if (state
== NULL
) {
4643 DEBUG(0, ("talloc failed\n"));
4647 state
->connection
= ldap_state
->smbldap_state
;
4649 state
->base
= talloc_strdup(search
->mem_ctx
, lp_ldap_group_suffix());
4650 state
->connection
= ldap_state
->smbldap_state
;
4651 state
->scope
= LDAP_SCOPE_SUBTREE
;
4652 state
->filter
= talloc_asprintf(search
->mem_ctx
,
4653 "(&(objectclass=sambaGroupMapping)"
4654 "(sambaGroupType=%d)(sambaSID=%s*))",
4655 type
, sid_to_fstring(tmp
, sid
));
4656 state
->attrs
= talloc_attrs(search
->mem_ctx
, "cn", "sambaSid",
4657 "displayName", "description",
4658 "sambaGroupType", NULL
);
4659 state
->attrsonly
= 0;
4660 state
->pagedresults_cookie
= NULL
;
4661 state
->entries
= NULL
;
4662 state
->group_type
= type
;
4663 state
->ldap2displayentry
= ldapgroup2displayentry
;
4665 if ((state
->filter
== NULL
) || (state
->attrs
== NULL
)) {
4666 DEBUG(0, ("talloc failed\n"));
4670 search
->private_data
= state
;
4671 search
->next_entry
= ldapsam_search_next_entry
;
4672 search
->search_end
= ldapsam_search_end
;
4674 return ldapsam_search_firstpage(search
);
4677 static bool ldapsam_search_groups(struct pdb_methods
*methods
,
4678 struct pdb_search
*search
)
4680 return ldapsam_search_grouptype(methods
, search
, get_global_sam_sid(), SID_NAME_DOM_GRP
);
4683 static bool ldapsam_search_aliases(struct pdb_methods
*methods
,
4684 struct pdb_search
*search
,
4687 return ldapsam_search_grouptype(methods
, search
, sid
, SID_NAME_ALIAS
);
4690 static bool ldapsam_rid_algorithm(struct pdb_methods
*methods
)
4695 static NTSTATUS
ldapsam_get_new_rid(struct ldapsam_privates
*priv
,
4698 struct smbldap_state
*smbldap_state
= priv
->smbldap_state
;
4700 LDAPMessage
*result
= NULL
;
4701 LDAPMessage
*entry
= NULL
;
4702 LDAPMod
**mods
= NULL
;
4709 TALLOC_CTX
*mem_ctx
;
4711 mem_ctx
= talloc_new(NULL
);
4712 if (mem_ctx
== NULL
) {
4713 DEBUG(0, ("talloc_new failed\n"));
4714 return NT_STATUS_NO_MEMORY
;
4717 status
= smbldap_search_domain_info(smbldap_state
, &result
,
4718 get_global_sam_name(), False
);
4719 if (!NT_STATUS_IS_OK(status
)) {
4720 DEBUG(3, ("Could not get domain info: %s\n",
4721 nt_errstr(status
)));
4725 talloc_autofree_ldapmsg(mem_ctx
, result
);
4727 entry
= ldap_first_entry(priv2ld(priv
), result
);
4728 if (entry
== NULL
) {
4729 DEBUG(0, ("Could not get domain info entry\n"));
4730 status
= NT_STATUS_INTERNAL_DB_CORRUPTION
;
4734 /* Find the largest of the three attributes "sambaNextRid",
4735 "sambaNextGroupRid" and "sambaNextUserRid". I gave up on the
4736 concept of differentiating between user and group rids, and will
4737 use only "sambaNextRid" in the future. But for compatibility
4738 reasons I look if others have chosen different strategies -- VL */
4740 value
= smbldap_talloc_single_attribute(priv2ld(priv
), entry
,
4741 "sambaNextRid", mem_ctx
);
4742 if (value
!= NULL
) {
4743 uint32 tmp
= (uint32
)strtoul(value
, NULL
, 10);
4744 nextRid
= MAX(nextRid
, tmp
);
4747 value
= smbldap_talloc_single_attribute(priv2ld(priv
), entry
,
4748 "sambaNextUserRid", mem_ctx
);
4749 if (value
!= NULL
) {
4750 uint32 tmp
= (uint32
)strtoul(value
, NULL
, 10);
4751 nextRid
= MAX(nextRid
, tmp
);
4754 value
= smbldap_talloc_single_attribute(priv2ld(priv
), entry
,
4755 "sambaNextGroupRid", mem_ctx
);
4756 if (value
!= NULL
) {
4757 uint32 tmp
= (uint32
)strtoul(value
, NULL
, 10);
4758 nextRid
= MAX(nextRid
, tmp
);
4762 nextRid
= BASE_RID
-1;
4767 smbldap_make_mod(priv2ld(priv
), entry
, &mods
, "sambaNextRid",
4768 talloc_asprintf(mem_ctx
, "%d", nextRid
));
4769 talloc_autofree_ldapmod(mem_ctx
, mods
);
4771 if ((dn
= smbldap_talloc_dn(mem_ctx
, priv2ld(priv
), entry
)) == NULL
) {
4772 status
= NT_STATUS_NO_MEMORY
;
4776 rc
= smbldap_modify(smbldap_state
, dn
, mods
);
4778 /* ACCESS_DENIED is used as a placeholder for "the modify failed,
4781 status
= (rc
== LDAP_SUCCESS
) ? NT_STATUS_OK
: NT_STATUS_ACCESS_DENIED
;
4784 if (NT_STATUS_IS_OK(status
)) {
4788 TALLOC_FREE(mem_ctx
);
4792 static NTSTATUS
ldapsam_new_rid_internal(struct pdb_methods
*methods
, uint32
*rid
)
4796 for (i
=0; i
<10; i
++) {
4797 NTSTATUS result
= ldapsam_get_new_rid(
4798 (struct ldapsam_privates
*)methods
->private_data
, rid
);
4799 if (NT_STATUS_IS_OK(result
)) {
4803 if (!NT_STATUS_EQUAL(result
, NT_STATUS_ACCESS_DENIED
)) {
4807 /* The ldap update failed (maybe a race condition), retry */
4810 /* Tried 10 times, fail. */
4811 return NT_STATUS_ACCESS_DENIED
;
4814 static bool ldapsam_new_rid(struct pdb_methods
*methods
, uint32
*rid
)
4816 NTSTATUS result
= ldapsam_new_rid_internal(methods
, rid
);
4817 return NT_STATUS_IS_OK(result
) ? True
: False
;
4820 static bool ldapsam_sid_to_id(struct pdb_methods
*methods
,
4822 union unid_t
*id
, enum lsa_SidType
*type
)
4824 struct ldapsam_privates
*priv
=
4825 (struct ldapsam_privates
*)methods
->private_data
;
4827 const char *attrs
[] = { "sambaGroupType", "gidNumber", "uidNumber",
4829 LDAPMessage
*result
= NULL
;
4830 LDAPMessage
*entry
= NULL
;
4835 TALLOC_CTX
*mem_ctx
;
4837 mem_ctx
= talloc_new(NULL
);
4838 if (mem_ctx
== NULL
) {
4839 DEBUG(0, ("talloc_new failed\n"));
4843 filter
= talloc_asprintf(mem_ctx
,
4845 "(|(objectClass=%s)(objectClass=%s)))",
4846 sid_string_talloc(mem_ctx
, sid
),
4847 LDAP_OBJ_GROUPMAP
, LDAP_OBJ_SAMBASAMACCOUNT
);
4848 if (filter
== NULL
) {
4849 DEBUG(5, ("talloc_asprintf failed\n"));
4853 rc
= smbldap_search_suffix(priv
->smbldap_state
, filter
,
4855 if (rc
!= LDAP_SUCCESS
) {
4858 talloc_autofree_ldapmsg(mem_ctx
, result
);
4860 if (ldap_count_entries(priv2ld(priv
), result
) != 1) {
4861 DEBUG(10, ("Got %d entries, expected one\n",
4862 ldap_count_entries(priv2ld(priv
), result
)));
4866 entry
= ldap_first_entry(priv2ld(priv
), result
);
4868 value
= smbldap_talloc_single_attribute(priv2ld(priv
), entry
,
4869 "sambaGroupType", mem_ctx
);
4871 if (value
!= NULL
) {
4872 const char *gid_str
;
4875 gid_str
= smbldap_talloc_single_attribute(
4876 priv2ld(priv
), entry
, "gidNumber", mem_ctx
);
4877 if (gid_str
== NULL
) {
4878 DEBUG(1, ("%s has sambaGroupType but no gidNumber\n",
4879 smbldap_talloc_dn(mem_ctx
, priv2ld(priv
),
4884 id
->gid
= strtoul(gid_str
, NULL
, 10);
4885 *type
= (enum lsa_SidType
)strtoul(value
, NULL
, 10);
4890 /* It must be a user */
4892 value
= smbldap_talloc_single_attribute(priv2ld(priv
), entry
,
4893 "uidNumber", mem_ctx
);
4894 if (value
== NULL
) {
4895 DEBUG(1, ("Could not find uidNumber in %s\n",
4896 smbldap_talloc_dn(mem_ctx
, priv2ld(priv
), entry
)));
4900 id
->uid
= strtoul(value
, NULL
, 10);
4901 *type
= SID_NAME_USER
;
4905 TALLOC_FREE(mem_ctx
);
4910 * The following functions is called only if
4911 * ldapsam:trusted and ldapsam:editposix are
4916 * ldapsam_create_user creates a new
4917 * posixAccount and sambaSamAccount object
4918 * in the ldap users subtree
4920 * The uid is allocated by winbindd.
4923 static NTSTATUS
ldapsam_create_user(struct pdb_methods
*my_methods
,
4924 TALLOC_CTX
*tmp_ctx
, const char *name
,
4925 uint32 acb_info
, uint32
*rid
)
4927 struct ldapsam_privates
*ldap_state
= (struct ldapsam_privates
*)my_methods
->private_data
;
4928 LDAPMessage
*entry
= NULL
;
4929 LDAPMessage
*result
= NULL
;
4931 bool is_machine
= False
;
4932 bool add_posix
= False
;
4933 LDAPMod
**mods
= NULL
;
4941 const char *dn
= NULL
;
4949 if (((acb_info
& ACB_NORMAL
) && name
[strlen(name
)-1] == '$') ||
4950 acb_info
& ACB_WSTRUST
||
4951 acb_info
& ACB_SVRTRUST
||
4952 acb_info
& ACB_DOMTRUST
) {
4956 username
= escape_ldap_string_alloc(name
);
4957 filter
= talloc_asprintf(tmp_ctx
, "(&(uid=%s)(objectClass=%s))",
4958 username
, LDAP_OBJ_POSIXACCOUNT
);
4959 SAFE_FREE(username
);
4961 rc
= smbldap_search_suffix(ldap_state
->smbldap_state
, filter
, NULL
, &result
);
4962 if (rc
!= LDAP_SUCCESS
) {
4963 DEBUG(0,("ldapsam_create_user: ldap search failed!\n"));
4964 return NT_STATUS_UNSUCCESSFUL
;
4966 talloc_autofree_ldapmsg(tmp_ctx
, result
);
4968 num_result
= ldap_count_entries(priv2ld(ldap_state
), result
);
4970 if (num_result
> 1) {
4971 DEBUG (0, ("ldapsam_create_user: More than one user with name [%s] ?!\n", name
));
4972 return NT_STATUS_INTERNAL_DB_CORRUPTION
;
4975 if (num_result
== 1) {
4977 /* check if it is just a posix account.
4978 * or if there is a sid attached to this entry
4981 entry
= ldap_first_entry(priv2ld(ldap_state
), result
);
4983 return NT_STATUS_UNSUCCESSFUL
;
4986 tmp
= smbldap_talloc_single_attribute(priv2ld(ldap_state
), entry
, "sambaSID", tmp_ctx
);
4988 DEBUG (1, ("ldapsam_create_user: The user [%s] already exist!\n", name
));
4989 return NT_STATUS_USER_EXISTS
;
4992 /* it is just a posix account, retrieve the dn for later use */
4993 dn
= smbldap_talloc_dn(tmp_ctx
, priv2ld(ldap_state
), entry
);
4995 DEBUG(0,("ldapsam_create_user: Out of memory!\n"));
4996 return NT_STATUS_NO_MEMORY
;
5000 if (num_result
== 0) {
5004 /* Create the basic samu structure and generate the mods for the ldap commit */
5005 if (!NT_STATUS_IS_OK((ret
= ldapsam_new_rid_internal(my_methods
, rid
)))) {
5006 DEBUG(1, ("ldapsam_create_user: Could not allocate a new RID\n"));
5010 sid_compose(&user_sid
, get_global_sam_sid(), *rid
);
5012 user
= samu_new(tmp_ctx
);
5014 DEBUG(1,("ldapsam_create_user: Unable to allocate user struct\n"));
5015 return NT_STATUS_NO_MEMORY
;
5018 if (!pdb_set_username(user
, name
, PDB_SET
)) {
5019 DEBUG(1,("ldapsam_create_user: Unable to fill user structs\n"));
5020 return NT_STATUS_UNSUCCESSFUL
;
5022 if (!pdb_set_domain(user
, get_global_sam_name(), PDB_SET
)) {
5023 DEBUG(1,("ldapsam_create_user: Unable to fill user structs\n"));
5024 return NT_STATUS_UNSUCCESSFUL
;
5027 if (acb_info
& ACB_NORMAL
) {
5028 if (!pdb_set_acct_ctrl(user
, ACB_WSTRUST
, PDB_SET
)) {
5029 DEBUG(1,("ldapsam_create_user: Unable to fill user structs\n"));
5030 return NT_STATUS_UNSUCCESSFUL
;
5033 if (!pdb_set_acct_ctrl(user
, acb_info
, PDB_SET
)) {
5034 DEBUG(1,("ldapsam_create_user: Unable to fill user structs\n"));
5035 return NT_STATUS_UNSUCCESSFUL
;
5039 if (!pdb_set_acct_ctrl(user
, ACB_NORMAL
| ACB_DISABLED
, PDB_SET
)) {
5040 DEBUG(1,("ldapsam_create_user: Unable to fill user structs\n"));
5041 return NT_STATUS_UNSUCCESSFUL
;
5045 if (!pdb_set_user_sid(user
, &user_sid
, PDB_SET
)) {
5046 DEBUG(1,("ldapsam_create_user: Unable to fill user structs\n"));
5047 return NT_STATUS_UNSUCCESSFUL
;
5050 if (!init_ldap_from_sam(ldap_state
, NULL
, &mods
, user
, element_is_set_or_changed
)) {
5051 DEBUG(1,("ldapsam_create_user: Unable to fill user structs\n"));
5052 return NT_STATUS_UNSUCCESSFUL
;
5055 if (ldap_state
->schema_ver
!= SCHEMAVER_SAMBASAMACCOUNT
) {
5056 DEBUG(1,("ldapsam_create_user: Unsupported schema version\n"));
5058 smbldap_set_mod(&mods
, LDAP_MOD_ADD
, "objectClass", LDAP_OBJ_SAMBASAMACCOUNT
);
5063 DEBUG(3,("ldapsam_create_user: Creating new posix user\n"));
5065 /* retrieve the Domain Users group gid */
5066 if (!sid_compose(&group_sid
, get_global_sam_sid(), DOMAIN_GROUP_RID_USERS
) ||
5067 !sid_to_gid(&group_sid
, &gid
)) {
5068 DEBUG (0, ("ldapsam_create_user: Unable to get the Domain Users gid: bailing out!\n"));
5069 return NT_STATUS_INVALID_PRIMARY_GROUP
;
5072 /* lets allocate a new userid for this user */
5073 if (!winbind_allocate_uid(&uid
)) {
5074 DEBUG (0, ("ldapsam_create_user: Unable to allocate a new user id: bailing out!\n"));
5075 return NT_STATUS_UNSUCCESSFUL
;
5080 /* TODO: choose a more appropriate default for machines */
5081 homedir
= talloc_sub_specified(tmp_ctx
, lp_template_homedir(), "SMB_workstations_home", ldap_state
->domain_name
, uid
, gid
);
5082 shell
= talloc_strdup(tmp_ctx
, "/bin/false");
5084 homedir
= talloc_sub_specified(tmp_ctx
, lp_template_homedir(), name
, ldap_state
->domain_name
, uid
, gid
);
5085 shell
= talloc_sub_specified(tmp_ctx
, lp_template_shell(), name
, ldap_state
->domain_name
, uid
, gid
);
5087 uidstr
= talloc_asprintf(tmp_ctx
, "%d", uid
);
5088 gidstr
= talloc_asprintf(tmp_ctx
, "%d", gid
);
5090 escape_name
= escape_rdn_val_string_alloc(name
);
5092 DEBUG (0, ("ldapsam_create_user: Out of memory!\n"));
5093 return NT_STATUS_NO_MEMORY
;
5097 dn
= talloc_asprintf(tmp_ctx
, "uid=%s,%s", escape_name
, lp_ldap_machine_suffix ());
5099 dn
= talloc_asprintf(tmp_ctx
, "uid=%s,%s", escape_name
, lp_ldap_user_suffix ());
5102 SAFE_FREE(escape_name
);
5104 if (!homedir
|| !shell
|| !uidstr
|| !gidstr
|| !dn
) {
5105 DEBUG (0, ("ldapsam_create_user: Out of memory!\n"));
5106 return NT_STATUS_NO_MEMORY
;
5109 smbldap_set_mod(&mods
, LDAP_MOD_ADD
, "objectClass", LDAP_OBJ_ACCOUNT
);
5110 smbldap_set_mod(&mods
, LDAP_MOD_ADD
, "objectClass", LDAP_OBJ_POSIXACCOUNT
);
5111 smbldap_set_mod(&mods
, LDAP_MOD_ADD
, "cn", name
);
5112 smbldap_set_mod(&mods
, LDAP_MOD_ADD
, "uidNumber", uidstr
);
5113 smbldap_set_mod(&mods
, LDAP_MOD_ADD
, "gidNumber", gidstr
);
5114 smbldap_set_mod(&mods
, LDAP_MOD_ADD
, "homeDirectory", homedir
);
5115 smbldap_set_mod(&mods
, LDAP_MOD_ADD
, "loginShell", shell
);
5118 talloc_autofree_ldapmod(tmp_ctx
, mods
);
5121 rc
= smbldap_add(ldap_state
->smbldap_state
, dn
, mods
);
5123 rc
= smbldap_modify(ldap_state
->smbldap_state
, dn
, mods
);
5126 if (rc
!= LDAP_SUCCESS
) {
5127 DEBUG(0,("ldapsam_create_user: failed to create a new user [%s] (dn = %s)\n", name
,dn
));
5128 return NT_STATUS_UNSUCCESSFUL
;
5131 DEBUG(2,("ldapsam_create_user: added account [%s] in the LDAP database\n", name
));
5133 flush_pwnam_cache();
5135 return NT_STATUS_OK
;
5138 static NTSTATUS
ldapsam_delete_user(struct pdb_methods
*my_methods
, TALLOC_CTX
*tmp_ctx
, struct samu
*sam_acct
)
5140 struct ldapsam_privates
*ldap_state
= (struct ldapsam_privates
*)my_methods
->private_data
;
5141 LDAPMessage
*result
= NULL
;
5142 LDAPMessage
*entry
= NULL
;
5148 DEBUG(0,("ldapsam_delete_user: Attempt to delete user [%s]\n", pdb_get_username(sam_acct
)));
5150 filter
= talloc_asprintf(tmp_ctx
,
5153 "(objectClass=%s))",
5154 pdb_get_username(sam_acct
),
5155 LDAP_OBJ_POSIXACCOUNT
,
5156 LDAP_OBJ_SAMBASAMACCOUNT
);
5157 if (filter
== NULL
) {
5158 return NT_STATUS_NO_MEMORY
;
5161 rc
= smbldap_search_suffix(ldap_state
->smbldap_state
, filter
, NULL
, &result
);
5162 if (rc
!= LDAP_SUCCESS
) {
5163 DEBUG(0,("ldapsam_delete_user: user search failed!\n"));
5164 return NT_STATUS_UNSUCCESSFUL
;
5166 talloc_autofree_ldapmsg(tmp_ctx
, result
);
5168 num_result
= ldap_count_entries(priv2ld(ldap_state
), result
);
5170 if (num_result
== 0) {
5171 DEBUG(0,("ldapsam_delete_user: user not found!\n"));
5172 return NT_STATUS_NO_SUCH_USER
;
5175 if (num_result
> 1) {
5176 DEBUG (0, ("ldapsam_delete_user: More than one user with name [%s] ?!\n", pdb_get_username(sam_acct
)));
5177 return NT_STATUS_INTERNAL_DB_CORRUPTION
;
5180 entry
= ldap_first_entry(priv2ld(ldap_state
), result
);
5182 return NT_STATUS_UNSUCCESSFUL
;
5185 /* it is just a posix account, retrieve the dn for later use */
5186 dn
= smbldap_talloc_dn(tmp_ctx
, priv2ld(ldap_state
), entry
);
5188 DEBUG(0,("ldapsam_delete_user: Out of memory!\n"));
5189 return NT_STATUS_NO_MEMORY
;
5192 rc
= smbldap_delete(ldap_state
->smbldap_state
, dn
);
5193 if (rc
!= LDAP_SUCCESS
) {
5194 return NT_STATUS_UNSUCCESSFUL
;
5197 flush_pwnam_cache();
5199 return NT_STATUS_OK
;
5203 * ldapsam_create_group creates a new
5204 * posixGroup and sambaGroupMapping object
5205 * in the ldap groups subtree
5207 * The gid is allocated by winbindd.
5210 static NTSTATUS
ldapsam_create_dom_group(struct pdb_methods
*my_methods
,
5211 TALLOC_CTX
*tmp_ctx
,
5215 struct ldapsam_privates
*ldap_state
= (struct ldapsam_privates
*)my_methods
->private_data
;
5217 LDAPMessage
*entry
= NULL
;
5218 LDAPMessage
*result
= NULL
;
5220 bool is_new_entry
= False
;
5221 LDAPMod
**mods
= NULL
;
5227 const char *dn
= NULL
;
5232 groupname
= escape_ldap_string_alloc(name
);
5233 filter
= talloc_asprintf(tmp_ctx
, "(&(cn=%s)(objectClass=%s))",
5234 groupname
, LDAP_OBJ_POSIXGROUP
);
5235 SAFE_FREE(groupname
);
5237 rc
= smbldap_search_suffix(ldap_state
->smbldap_state
, filter
, NULL
, &result
);
5238 if (rc
!= LDAP_SUCCESS
) {
5239 DEBUG(0,("ldapsam_create_group: ldap search failed!\n"));
5240 return NT_STATUS_UNSUCCESSFUL
;
5242 talloc_autofree_ldapmsg(tmp_ctx
, result
);
5244 num_result
= ldap_count_entries(priv2ld(ldap_state
), result
);
5246 if (num_result
> 1) {
5247 DEBUG (0, ("ldapsam_create_group: There exists more than one group with name [%s]: bailing out!\n", name
));
5248 return NT_STATUS_INTERNAL_DB_CORRUPTION
;
5251 if (num_result
== 1) {
5253 /* check if it is just a posix group.
5254 * or if there is a sid attached to this entry
5257 entry
= ldap_first_entry(priv2ld(ldap_state
), result
);
5259 return NT_STATUS_UNSUCCESSFUL
;
5262 tmp
= smbldap_talloc_single_attribute(priv2ld(ldap_state
), entry
, "sambaSID", tmp_ctx
);
5264 DEBUG (1, ("ldapsam_create_group: The group [%s] already exist!\n", name
));
5265 return NT_STATUS_GROUP_EXISTS
;
5268 /* it is just a posix group, retrieve the gid and the dn for later use */
5269 tmp
= smbldap_talloc_single_attribute(priv2ld(ldap_state
), entry
, "gidNumber", tmp_ctx
);
5271 DEBUG (1, ("ldapsam_create_group: Couldn't retrieve the gidNumber for [%s]?!?!\n", name
));
5272 return NT_STATUS_INTERNAL_DB_CORRUPTION
;
5275 gid
= strtoul(tmp
, NULL
, 10);
5277 dn
= smbldap_talloc_dn(tmp_ctx
, priv2ld(ldap_state
), entry
);
5279 DEBUG(0,("ldapsam_create_group: Out of memory!\n"));
5280 return NT_STATUS_NO_MEMORY
;
5284 if (num_result
== 0) {
5287 DEBUG(3,("ldapsam_create_user: Creating new posix group\n"));
5289 is_new_entry
= True
;
5291 /* lets allocate a new groupid for this group */
5292 if (!winbind_allocate_gid(&gid
)) {
5293 DEBUG (0, ("ldapsam_create_group: Unable to allocate a new group id: bailing out!\n"));
5294 return NT_STATUS_UNSUCCESSFUL
;
5297 gidstr
= talloc_asprintf(tmp_ctx
, "%d", gid
);
5299 escape_name
= escape_rdn_val_string_alloc(name
);
5301 DEBUG (0, ("ldapsam_create_group: Out of memory!\n"));
5302 return NT_STATUS_NO_MEMORY
;
5305 dn
= talloc_asprintf(tmp_ctx
, "cn=%s,%s", escape_name
, lp_ldap_group_suffix());
5307 SAFE_FREE(escape_name
);
5309 if (!gidstr
|| !dn
) {
5310 DEBUG (0, ("ldapsam_create_group: Out of memory!\n"));
5311 return NT_STATUS_NO_MEMORY
;
5314 smbldap_set_mod(&mods
, LDAP_MOD_ADD
, "objectclass", LDAP_OBJ_POSIXGROUP
);
5315 smbldap_set_mod(&mods
, LDAP_MOD_ADD
, "cn", name
);
5316 smbldap_set_mod(&mods
, LDAP_MOD_ADD
, "gidNumber", gidstr
);
5319 if (!NT_STATUS_IS_OK((ret
= ldapsam_new_rid_internal(my_methods
, rid
)))) {
5320 DEBUG(1, ("ldapsam_create_group: Could not allocate a new RID\n"));
5324 sid_compose(&group_sid
, get_global_sam_sid(), *rid
);
5326 groupsidstr
= talloc_strdup(tmp_ctx
, sid_string_talloc(tmp_ctx
,
5328 grouptype
= talloc_asprintf(tmp_ctx
, "%d", SID_NAME_DOM_GRP
);
5330 if (!groupsidstr
|| !grouptype
) {
5331 DEBUG(0,("ldapsam_create_group: Out of memory!\n"));
5332 return NT_STATUS_NO_MEMORY
;
5335 smbldap_set_mod(&mods
, LDAP_MOD_ADD
, "objectClass", LDAP_OBJ_GROUPMAP
);
5336 smbldap_set_mod(&mods
, LDAP_MOD_ADD
, "sambaSid", groupsidstr
);
5337 smbldap_set_mod(&mods
, LDAP_MOD_ADD
, "sambaGroupType", grouptype
);
5338 smbldap_set_mod(&mods
, LDAP_MOD_ADD
, "displayName", name
);
5339 talloc_autofree_ldapmod(tmp_ctx
, mods
);
5342 rc
= smbldap_add(ldap_state
->smbldap_state
, dn
, mods
);
5344 if (rc
== LDAP_OBJECT_CLASS_VIOLATION
) {
5345 /* This call may fail with rfc2307bis schema */
5346 /* Retry adding a structural class */
5347 smbldap_set_mod(&mods
, LDAP_MOD_ADD
, "objectClass", "????");
5348 rc
= smbldap_add(ldap_state
->smbldap_state
, dn
, mods
);
5352 rc
= smbldap_modify(ldap_state
->smbldap_state
, dn
, mods
);
5355 if (rc
!= LDAP_SUCCESS
) {
5356 DEBUG(0,("ldapsam_create_group: failed to create a new group [%s] (dn = %s)\n", name
,dn
));
5357 return NT_STATUS_UNSUCCESSFUL
;
5360 DEBUG(2,("ldapsam_create_group: added group [%s] in the LDAP database\n", name
));
5362 return NT_STATUS_OK
;
5365 static NTSTATUS
ldapsam_delete_dom_group(struct pdb_methods
*my_methods
, TALLOC_CTX
*tmp_ctx
, uint32 rid
)
5367 struct ldapsam_privates
*ldap_state
= (struct ldapsam_privates
*)my_methods
->private_data
;
5368 LDAPMessage
*result
= NULL
;
5369 LDAPMessage
*entry
= NULL
;
5377 /* get the group sid */
5378 sid_compose(&group_sid
, get_global_sam_sid(), rid
);
5380 filter
= talloc_asprintf(tmp_ctx
,
5383 "(objectClass=%s))",
5384 sid_string_talloc(tmp_ctx
, &group_sid
),
5385 LDAP_OBJ_POSIXGROUP
,
5387 if (filter
== NULL
) {
5388 return NT_STATUS_NO_MEMORY
;
5391 rc
= smbldap_search_suffix(ldap_state
->smbldap_state
, filter
, NULL
, &result
);
5392 if (rc
!= LDAP_SUCCESS
) {
5393 DEBUG(1,("ldapsam_delete_dom_group: group search failed!\n"));
5394 return NT_STATUS_UNSUCCESSFUL
;
5396 talloc_autofree_ldapmsg(tmp_ctx
, result
);
5398 num_result
= ldap_count_entries(priv2ld(ldap_state
), result
);
5400 if (num_result
== 0) {
5401 DEBUG(1,("ldapsam_delete_dom_group: group not found!\n"));
5402 return NT_STATUS_NO_SUCH_GROUP
;
5405 if (num_result
> 1) {
5406 DEBUG (0, ("ldapsam_delete_dom_group: More than one group with the same SID ?!\n"));
5407 return NT_STATUS_INTERNAL_DB_CORRUPTION
;
5410 entry
= ldap_first_entry(priv2ld(ldap_state
), result
);
5412 return NT_STATUS_UNSUCCESSFUL
;
5415 /* here it is, retrieve the dn for later use */
5416 dn
= smbldap_talloc_dn(tmp_ctx
, priv2ld(ldap_state
), entry
);
5418 DEBUG(0,("ldapsam_delete_dom_group: Out of memory!\n"));
5419 return NT_STATUS_NO_MEMORY
;
5422 gidstr
= smbldap_talloc_single_attribute(priv2ld(ldap_state
), entry
, "gidNumber", tmp_ctx
);
5424 DEBUG (0, ("ldapsam_delete_dom_group: Unable to find the group's gid!\n"));
5425 return NT_STATUS_INTERNAL_DB_CORRUPTION
;
5428 /* check no user have this group marked as primary group */
5429 filter
= talloc_asprintf(tmp_ctx
,
5432 "(objectClass=%s))",
5434 LDAP_OBJ_POSIXACCOUNT
,
5435 LDAP_OBJ_SAMBASAMACCOUNT
);
5437 rc
= smbldap_search_suffix(ldap_state
->smbldap_state
, filter
, NULL
, &result
);
5438 if (rc
!= LDAP_SUCCESS
) {
5439 DEBUG(1,("ldapsam_delete_dom_group: accounts search failed!\n"));
5440 return NT_STATUS_UNSUCCESSFUL
;
5442 talloc_autofree_ldapmsg(tmp_ctx
, result
);
5444 num_result
= ldap_count_entries(priv2ld(ldap_state
), result
);
5446 if (num_result
!= 0) {
5447 DEBUG(3,("ldapsam_delete_dom_group: Can't delete group, it is a primary group for %d users\n", num_result
));
5448 return NT_STATUS_MEMBERS_PRIMARY_GROUP
;
5451 rc
= smbldap_delete(ldap_state
->smbldap_state
, dn
);
5452 if (rc
!= LDAP_SUCCESS
) {
5453 return NT_STATUS_UNSUCCESSFUL
;
5456 return NT_STATUS_OK
;
5459 static NTSTATUS
ldapsam_change_groupmem(struct pdb_methods
*my_methods
,
5460 TALLOC_CTX
*tmp_ctx
,
5465 struct ldapsam_privates
*ldap_state
= (struct ldapsam_privates
*)my_methods
->private_data
;
5466 LDAPMessage
*entry
= NULL
;
5467 LDAPMessage
*result
= NULL
;
5469 LDAPMod
**mods
= NULL
;
5472 const char *dn
= NULL
;
5479 DEBUG(1,("ldapsam_change_groupmem: add new member(rid=%d) to a domain group(rid=%d)", member_rid
, group_rid
));
5481 case LDAP_MOD_DELETE
:
5482 DEBUG(1,("ldapsam_change_groupmem: delete member(rid=%d) from a domain group(rid=%d)", member_rid
, group_rid
));
5485 return NT_STATUS_UNSUCCESSFUL
;
5488 /* get member sid */
5489 sid_compose(&member_sid
, get_global_sam_sid(), member_rid
);
5491 /* get the group sid */
5492 sid_compose(&group_sid
, get_global_sam_sid(), group_rid
);
5494 filter
= talloc_asprintf(tmp_ctx
,
5497 "(objectClass=%s))",
5498 sid_string_talloc(tmp_ctx
, &member_sid
),
5499 LDAP_OBJ_POSIXACCOUNT
,
5500 LDAP_OBJ_SAMBASAMACCOUNT
);
5501 if (filter
== NULL
) {
5502 return NT_STATUS_NO_MEMORY
;
5505 /* get the member uid */
5506 rc
= smbldap_search_suffix(ldap_state
->smbldap_state
, filter
, NULL
, &result
);
5507 if (rc
!= LDAP_SUCCESS
) {
5508 DEBUG(1,("ldapsam_change_groupmem: member search failed!\n"));
5509 return NT_STATUS_UNSUCCESSFUL
;
5511 talloc_autofree_ldapmsg(tmp_ctx
, result
);
5513 num_result
= ldap_count_entries(priv2ld(ldap_state
), result
);
5515 if (num_result
== 0) {
5516 DEBUG(1,("ldapsam_change_groupmem: member not found!\n"));
5517 return NT_STATUS_NO_SUCH_MEMBER
;
5520 if (num_result
> 1) {
5521 DEBUG (0, ("ldapsam_change_groupmem: More than one account with the same SID ?!\n"));
5522 return NT_STATUS_INTERNAL_DB_CORRUPTION
;
5525 entry
= ldap_first_entry(priv2ld(ldap_state
), result
);
5527 return NT_STATUS_UNSUCCESSFUL
;
5530 if (modop
== LDAP_MOD_DELETE
) {
5531 /* check if we are trying to remove the member from his primary group */
5533 gid_t user_gid
, group_gid
;
5535 gidstr
= smbldap_talloc_single_attribute(priv2ld(ldap_state
), entry
, "gidNumber", tmp_ctx
);
5537 DEBUG (0, ("ldapsam_change_groupmem: Unable to find the member's gid!\n"));
5538 return NT_STATUS_INTERNAL_DB_CORRUPTION
;
5541 user_gid
= strtoul(gidstr
, NULL
, 10);
5543 if (!sid_to_gid(&group_sid
, &group_gid
)) {
5544 DEBUG (0, ("ldapsam_change_groupmem: Unable to get group gid from SID!\n"));
5545 return NT_STATUS_UNSUCCESSFUL
;
5548 if (user_gid
== group_gid
) {
5549 DEBUG (3, ("ldapsam_change_groupmem: can't remove user from its own primary group!\n"));
5550 return NT_STATUS_MEMBERS_PRIMARY_GROUP
;
5554 /* here it is, retrieve the uid for later use */
5555 uidstr
= smbldap_talloc_single_attribute(priv2ld(ldap_state
), entry
, "uid", tmp_ctx
);
5557 DEBUG (0, ("ldapsam_change_groupmem: Unable to find the member's name!\n"));
5558 return NT_STATUS_INTERNAL_DB_CORRUPTION
;
5561 filter
= talloc_asprintf(tmp_ctx
,
5564 "(objectClass=%s))",
5565 sid_string_talloc(tmp_ctx
, &group_sid
),
5566 LDAP_OBJ_POSIXGROUP
,
5570 rc
= smbldap_search_suffix(ldap_state
->smbldap_state
, filter
, NULL
, &result
);
5571 if (rc
!= LDAP_SUCCESS
) {
5572 DEBUG(1,("ldapsam_change_groupmem: group search failed!\n"));
5573 return NT_STATUS_UNSUCCESSFUL
;
5575 talloc_autofree_ldapmsg(tmp_ctx
, result
);
5577 num_result
= ldap_count_entries(priv2ld(ldap_state
), result
);
5579 if (num_result
== 0) {
5580 DEBUG(1,("ldapsam_change_groupmem: group not found!\n"));
5581 return NT_STATUS_NO_SUCH_GROUP
;
5584 if (num_result
> 1) {
5585 DEBUG (0, ("ldapsam_change_groupmem: More than one group with the same SID ?!\n"));
5586 return NT_STATUS_INTERNAL_DB_CORRUPTION
;
5589 entry
= ldap_first_entry(priv2ld(ldap_state
), result
);
5591 return NT_STATUS_UNSUCCESSFUL
;
5594 /* here it is, retrieve the dn for later use */
5595 dn
= smbldap_talloc_dn(tmp_ctx
, priv2ld(ldap_state
), entry
);
5597 DEBUG(0,("ldapsam_change_groupmem: Out of memory!\n"));
5598 return NT_STATUS_NO_MEMORY
;
5601 smbldap_set_mod(&mods
, modop
, "memberUid", uidstr
);
5603 talloc_autofree_ldapmod(tmp_ctx
, mods
);
5605 rc
= smbldap_modify(ldap_state
->smbldap_state
, dn
, mods
);
5606 if (rc
!= LDAP_SUCCESS
) {
5607 if (rc
== LDAP_TYPE_OR_VALUE_EXISTS
&& modop
== LDAP_MOD_ADD
) {
5608 DEBUG(1,("ldapsam_change_groupmem: member is already in group, add failed!\n"));
5609 return NT_STATUS_MEMBER_IN_GROUP
;
5611 if (rc
== LDAP_NO_SUCH_ATTRIBUTE
&& modop
== LDAP_MOD_DELETE
) {
5612 DEBUG(1,("ldapsam_change_groupmem: member is not in group, delete failed!\n"));
5613 return NT_STATUS_MEMBER_NOT_IN_GROUP
;
5615 return NT_STATUS_UNSUCCESSFUL
;
5618 return NT_STATUS_OK
;
5621 static NTSTATUS
ldapsam_add_groupmem(struct pdb_methods
*my_methods
,
5622 TALLOC_CTX
*tmp_ctx
,
5626 return ldapsam_change_groupmem(my_methods
, tmp_ctx
, group_rid
, member_rid
, LDAP_MOD_ADD
);
5628 static NTSTATUS
ldapsam_del_groupmem(struct pdb_methods
*my_methods
,
5629 TALLOC_CTX
*tmp_ctx
,
5633 return ldapsam_change_groupmem(my_methods
, tmp_ctx
, group_rid
, member_rid
, LDAP_MOD_DELETE
);
5636 static NTSTATUS
ldapsam_set_primary_group(struct pdb_methods
*my_methods
,
5637 TALLOC_CTX
*mem_ctx
,
5638 struct samu
*sampass
)
5640 struct ldapsam_privates
*ldap_state
= (struct ldapsam_privates
*)my_methods
->private_data
;
5641 LDAPMessage
*entry
= NULL
;
5642 LDAPMessage
*result
= NULL
;
5644 LDAPMod
**mods
= NULL
;
5646 char *escape_username
;
5648 const char *dn
= NULL
;
5652 DEBUG(0,("ldapsam_set_primary_group: Attempt to set primary group for user [%s]\n", pdb_get_username(sampass
)));
5654 if (!sid_to_gid(pdb_get_group_sid(sampass
), &gid
)) {
5655 DEBUG(0,("ldapsam_set_primary_group: failed to retieve gid from user's group SID!\n"));
5656 return NT_STATUS_UNSUCCESSFUL
;
5658 gidstr
= talloc_asprintf(mem_ctx
, "%d", gid
);
5660 DEBUG(0,("ldapsam_set_primary_group: Out of Memory!\n"));
5661 return NT_STATUS_NO_MEMORY
;
5664 escape_username
= escape_ldap_string_alloc(pdb_get_username(sampass
));
5665 if (escape_username
== NULL
) {
5666 return NT_STATUS_NO_MEMORY
;
5669 filter
= talloc_asprintf(mem_ctx
,
5672 "(objectClass=%s))",
5674 LDAP_OBJ_POSIXACCOUNT
,
5675 LDAP_OBJ_SAMBASAMACCOUNT
);
5677 SAFE_FREE(escape_username
);
5679 if (filter
== NULL
) {
5680 return NT_STATUS_NO_MEMORY
;
5683 rc
= smbldap_search_suffix(ldap_state
->smbldap_state
, filter
, NULL
, &result
);
5684 if (rc
!= LDAP_SUCCESS
) {
5685 DEBUG(0,("ldapsam_set_primary_group: user search failed!\n"));
5686 return NT_STATUS_UNSUCCESSFUL
;
5688 talloc_autofree_ldapmsg(mem_ctx
, result
);
5690 num_result
= ldap_count_entries(priv2ld(ldap_state
), result
);
5692 if (num_result
== 0) {
5693 DEBUG(0,("ldapsam_set_primary_group: user not found!\n"));
5694 return NT_STATUS_NO_SUCH_USER
;
5697 if (num_result
> 1) {
5698 DEBUG (0, ("ldapsam_set_primary_group: More than one user with name [%s] ?!\n", pdb_get_username(sampass
)));
5699 return NT_STATUS_INTERNAL_DB_CORRUPTION
;
5702 entry
= ldap_first_entry(priv2ld(ldap_state
), result
);
5704 return NT_STATUS_UNSUCCESSFUL
;
5707 /* retrieve the dn for later use */
5708 dn
= smbldap_talloc_dn(mem_ctx
, priv2ld(ldap_state
), entry
);
5710 DEBUG(0,("ldapsam_set_primary_group: Out of memory!\n"));
5711 return NT_STATUS_NO_MEMORY
;
5714 /* remove the old one, and add the new one, this way we do not risk races */
5715 smbldap_make_mod(priv2ld(ldap_state
), entry
, &mods
, "gidNumber", gidstr
);
5718 return NT_STATUS_OK
;
5721 rc
= smbldap_modify(ldap_state
->smbldap_state
, dn
, mods
);
5723 if (rc
!= LDAP_SUCCESS
) {
5724 DEBUG(0,("ldapsam_set_primary_group: failed to modify [%s] primary group to [%s]\n",
5725 pdb_get_username(sampass
), gidstr
));
5726 return NT_STATUS_UNSUCCESSFUL
;
5729 flush_pwnam_cache();
5731 return NT_STATUS_OK
;
5735 /**********************************************************************
5736 trusted domains functions
5737 *********************************************************************/
5739 static char *trusteddom_dn(struct ldapsam_privates
*ldap_state
,
5742 return talloc_asprintf(talloc_tos(), "sambaDomainName=%s,%s", domain
,
5743 ldap_state
->domain_dn
);
5746 static bool get_trusteddom_pw_int(struct ldapsam_privates
*ldap_state
,
5747 const char *domain
, LDAPMessage
**entry
)
5751 int scope
= LDAP_SCOPE_SUBTREE
;
5752 const char **attrs
= NULL
; /* NULL: get all attrs */
5753 int attrsonly
= 0; /* 0: return values too */
5754 LDAPMessage
*result
= NULL
;
5758 filter
= talloc_asprintf(talloc_tos(),
5759 "(&(objectClass=%s)(sambaDomainName=%s))",
5760 LDAP_OBJ_TRUSTDOM_PASSWORD
, domain
);
5762 trusted_dn
= trusteddom_dn(ldap_state
, domain
);
5763 if (trusted_dn
== NULL
) {
5766 rc
= smbldap_search(ldap_state
->smbldap_state
, trusted_dn
, scope
,
5767 filter
, attrs
, attrsonly
, &result
);
5769 if (rc
== LDAP_NO_SUCH_OBJECT
) {
5774 if (rc
!= LDAP_SUCCESS
) {
5778 num_result
= ldap_count_entries(priv2ld(ldap_state
), result
);
5780 if (num_result
> 1) {
5781 DEBUG(1, ("ldapsam_get_trusteddom_pw: more than one "
5782 "sambaTrustedDomainPassword object for domain '%s'"
5787 if (num_result
== 0) {
5788 DEBUG(1, ("ldapsam_get_trusteddom_pw: no "
5789 "sambaTrustedDomainPassword object for domain %s.\n",
5793 *entry
= ldap_first_entry(priv2ld(ldap_state
), result
);
5799 static bool ldapsam_get_trusteddom_pw(struct pdb_methods
*methods
,
5803 time_t *pass_last_set_time
)
5805 struct ldapsam_privates
*ldap_state
=
5806 (struct ldapsam_privates
*)methods
->private_data
;
5807 LDAPMessage
*entry
= NULL
;
5809 DEBUG(10, ("ldapsam_get_trusteddom_pw called for domain %s\n", domain
));
5811 if (!get_trusteddom_pw_int(ldap_state
, domain
, &entry
) ||
5820 pwd_str
= smbldap_talloc_single_attribute(priv2ld(ldap_state
),
5821 entry
, "sambaClearTextPassword", talloc_tos());
5822 if (pwd_str
== NULL
) {
5825 /* trusteddom_pw routines do not use talloc yet... */
5826 *pwd
= SMB_STRDUP(pwd_str
);
5832 /* last change time */
5833 if (pass_last_set_time
!= NULL
) {
5835 time_str
= smbldap_talloc_single_attribute(priv2ld(ldap_state
),
5836 entry
, "sambaPwdLastSet", talloc_tos());
5837 if (time_str
== NULL
) {
5840 *pass_last_set_time
= (time_t)atol(time_str
);
5847 sid_str
= smbldap_talloc_single_attribute(priv2ld(ldap_state
),
5850 if (sid_str
== NULL
) {
5853 dom_sid
= string_sid_talloc(talloc_tos(), sid_str
);
5854 if (dom_sid
== NULL
) {
5857 sid_copy(sid
, dom_sid
);
5863 static bool ldapsam_set_trusteddom_pw(struct pdb_methods
*methods
,
5868 struct ldapsam_privates
*ldap_state
=
5869 (struct ldapsam_privates
*)methods
->private_data
;
5870 LDAPMessage
*entry
= NULL
;
5871 LDAPMod
**mods
= NULL
;
5872 char *prev_pwd
= NULL
;
5873 char *trusted_dn
= NULL
;
5876 DEBUG(10, ("ldapsam_set_trusteddom_pw called for domain %s\n", domain
));
5879 * get the current entry (if there is one) in order to put the
5880 * current password into the previous password attribute
5882 if (!get_trusteddom_pw_int(ldap_state
, domain
, &entry
)) {
5887 smbldap_make_mod(priv2ld(ldap_state
), entry
, &mods
, "objectClass",
5888 "sambaTrustedDomainPassword");
5889 smbldap_make_mod(priv2ld(ldap_state
), entry
, &mods
, "sambaDomainName",
5891 smbldap_make_mod(priv2ld(ldap_state
), entry
, &mods
, "sambaSID",
5892 sid_string_tos(sid
));
5893 smbldap_make_mod(priv2ld(ldap_state
), entry
, &mods
, "sambaPwdLastSet",
5894 talloc_asprintf(talloc_tos(), "%li", time(NULL
)));
5895 smbldap_make_mod(priv2ld(ldap_state
), entry
, &mods
,
5896 "sambaClearTextPassword", pwd
);
5897 if (entry
!= NULL
) {
5898 prev_pwd
= smbldap_talloc_single_attribute(priv2ld(ldap_state
),
5899 entry
, "sambaClearTextPassword", talloc_tos());
5900 if (prev_pwd
!= NULL
) {
5901 smbldap_make_mod(priv2ld(ldap_state
), entry
, &mods
,
5902 "sambaPreviousClearTextPassword",
5907 trusted_dn
= trusteddom_dn(ldap_state
, domain
);
5908 if (trusted_dn
== NULL
) {
5911 if (entry
== NULL
) {
5912 rc
= smbldap_add(ldap_state
->smbldap_state
, trusted_dn
, mods
);
5914 rc
= smbldap_modify(ldap_state
->smbldap_state
, trusted_dn
, mods
);
5917 if (rc
!= LDAP_SUCCESS
) {
5918 DEBUG(1, ("error writing trusted domain password!\n"));
5925 static bool ldapsam_del_trusteddom_pw(struct pdb_methods
*methods
,
5929 struct ldapsam_privates
*ldap_state
=
5930 (struct ldapsam_privates
*)methods
->private_data
;
5931 LDAPMessage
*entry
= NULL
;
5932 const char *trusted_dn
;
5934 if (!get_trusteddom_pw_int(ldap_state
, domain
, &entry
)) {
5938 if (entry
== NULL
) {
5939 DEBUG(5, ("ldapsam_del_trusteddom_pw: no such trusted domain: "
5944 trusted_dn
= smbldap_talloc_dn(talloc_tos(), priv2ld(ldap_state
),
5946 if (trusted_dn
== NULL
) {
5947 DEBUG(0,("ldapsam_del_trusteddom_pw: Out of memory!\n"));
5951 rc
= smbldap_delete(ldap_state
->smbldap_state
, trusted_dn
);
5952 if (rc
!= LDAP_SUCCESS
) {
5959 static NTSTATUS
ldapsam_enum_trusteddoms(struct pdb_methods
*methods
,
5960 TALLOC_CTX
*mem_ctx
,
5961 uint32
*num_domains
,
5962 struct trustdom_info
***domains
)
5965 struct ldapsam_privates
*ldap_state
=
5966 (struct ldapsam_privates
*)methods
->private_data
;
5968 int scope
= LDAP_SCOPE_SUBTREE
;
5969 const char *attrs
[] = { "sambaDomainName", "sambaSID", NULL
};
5970 int attrsonly
= 0; /* 0: return values too */
5971 LDAPMessage
*result
= NULL
;
5972 LDAPMessage
*entry
= NULL
;
5974 filter
= talloc_asprintf(talloc_tos(), "(objectClass=%s)",
5975 LDAP_OBJ_TRUSTDOM_PASSWORD
);
5977 rc
= smbldap_search(ldap_state
->smbldap_state
,
5978 ldap_state
->domain_dn
,
5985 if (rc
!= LDAP_SUCCESS
) {
5986 return NT_STATUS_UNSUCCESSFUL
;
5990 if (!(*domains
= TALLOC_ARRAY(mem_ctx
, struct trustdom_info
*, 1))) {
5991 DEBUG(1, ("talloc failed\n"));
5992 return NT_STATUS_NO_MEMORY
;
5995 for (entry
= ldap_first_entry(priv2ld(ldap_state
), result
);
5997 entry
= ldap_next_entry(priv2ld(ldap_state
), entry
))
5999 char *dom_name
, *dom_sid_str
;
6000 struct trustdom_info
*dom_info
;
6002 dom_info
= TALLOC_P(*domains
, struct trustdom_info
);
6003 if (dom_info
== NULL
) {
6004 DEBUG(1, ("talloc failed\n"));
6005 return NT_STATUS_NO_MEMORY
;
6008 dom_name
= smbldap_talloc_single_attribute(priv2ld(ldap_state
),
6012 if (dom_name
== NULL
) {
6013 DEBUG(1, ("talloc failed\n"));
6014 return NT_STATUS_NO_MEMORY
;
6016 dom_info
->name
= dom_name
;
6018 dom_sid_str
= smbldap_talloc_single_attribute(
6019 priv2ld(ldap_state
), entry
, "sambaSID",
6021 if (dom_sid_str
== NULL
) {
6022 DEBUG(1, ("talloc failed\n"));
6023 return NT_STATUS_NO_MEMORY
;
6025 if (!string_to_sid(&dom_info
->sid
, dom_sid_str
)) {
6026 DEBUG(1, ("Error calling string_to_sid on SID %s\n",
6028 return NT_STATUS_UNSUCCESSFUL
;
6031 ADD_TO_ARRAY(*domains
, struct trustdom_info
*, dom_info
,
6032 domains
, num_domains
);
6034 if (*domains
== NULL
) {
6035 DEBUG(1, ("talloc failed\n"));
6036 return NT_STATUS_NO_MEMORY
;
6040 DEBUG(5, ("ldapsam_enum_trusteddoms: got %d domains\n", *num_domains
));
6041 return NT_STATUS_OK
;
6045 /**********************************************************************
6047 *********************************************************************/
6049 static void free_private_data(void **vp
)
6051 struct ldapsam_privates
**ldap_state
= (struct ldapsam_privates
**)vp
;
6053 smbldap_free_struct(&(*ldap_state
)->smbldap_state
);
6055 if ((*ldap_state
)->result
!= NULL
) {
6056 ldap_msgfree((*ldap_state
)->result
);
6057 (*ldap_state
)->result
= NULL
;
6059 if ((*ldap_state
)->domain_dn
!= NULL
) {
6060 SAFE_FREE((*ldap_state
)->domain_dn
);
6065 /* No need to free any further, as it is talloc()ed */
6068 /*********************************************************************
6069 Intitalise the parts of the pdb_methods structure that are common to
6071 *********************************************************************/
6073 static NTSTATUS
pdb_init_ldapsam_common(struct pdb_methods
**pdb_method
, const char *location
)
6076 struct ldapsam_privates
*ldap_state
;
6078 if (!NT_STATUS_IS_OK(nt_status
= make_pdb_method( pdb_method
))) {
6082 (*pdb_method
)->name
= "ldapsam";
6084 (*pdb_method
)->getsampwnam
= ldapsam_getsampwnam
;
6085 (*pdb_method
)->getsampwsid
= ldapsam_getsampwsid
;
6086 (*pdb_method
)->add_sam_account
= ldapsam_add_sam_account
;
6087 (*pdb_method
)->update_sam_account
= ldapsam_update_sam_account
;
6088 (*pdb_method
)->delete_sam_account
= ldapsam_delete_sam_account
;
6089 (*pdb_method
)->rename_sam_account
= ldapsam_rename_sam_account
;
6091 (*pdb_method
)->getgrsid
= ldapsam_getgrsid
;
6092 (*pdb_method
)->getgrgid
= ldapsam_getgrgid
;
6093 (*pdb_method
)->getgrnam
= ldapsam_getgrnam
;
6094 (*pdb_method
)->add_group_mapping_entry
= ldapsam_add_group_mapping_entry
;
6095 (*pdb_method
)->update_group_mapping_entry
= ldapsam_update_group_mapping_entry
;
6096 (*pdb_method
)->delete_group_mapping_entry
= ldapsam_delete_group_mapping_entry
;
6097 (*pdb_method
)->enum_group_mapping
= ldapsam_enum_group_mapping
;
6099 (*pdb_method
)->get_account_policy
= ldapsam_get_account_policy
;
6100 (*pdb_method
)->set_account_policy
= ldapsam_set_account_policy
;
6102 (*pdb_method
)->get_seq_num
= ldapsam_get_seq_num
;
6104 (*pdb_method
)->rid_algorithm
= ldapsam_rid_algorithm
;
6105 (*pdb_method
)->new_rid
= ldapsam_new_rid
;
6107 (*pdb_method
)->get_trusteddom_pw
= ldapsam_get_trusteddom_pw
;
6108 (*pdb_method
)->set_trusteddom_pw
= ldapsam_set_trusteddom_pw
;
6109 (*pdb_method
)->del_trusteddom_pw
= ldapsam_del_trusteddom_pw
;
6110 (*pdb_method
)->enum_trusteddoms
= ldapsam_enum_trusteddoms
;
6112 /* TODO: Setup private data and free */
6114 if ( !(ldap_state
= TALLOC_ZERO_P(*pdb_method
, struct ldapsam_privates
)) ) {
6115 DEBUG(0, ("pdb_init_ldapsam_common: talloc() failed for ldapsam private_data!\n"));
6116 return NT_STATUS_NO_MEMORY
;
6119 nt_status
= smbldap_init(*pdb_method
, pdb_get_event_context(),
6120 location
, &ldap_state
->smbldap_state
);
6122 if ( !NT_STATUS_IS_OK(nt_status
) ) {
6126 if ( !(ldap_state
->domain_name
= talloc_strdup(*pdb_method
, get_global_sam_name()) ) ) {
6127 return NT_STATUS_NO_MEMORY
;
6130 (*pdb_method
)->private_data
= ldap_state
;
6132 (*pdb_method
)->free_private_data
= free_private_data
;
6134 return NT_STATUS_OK
;
6137 /**********************************************************************
6138 Initialise the 'compat' mode for pdb_ldap
6139 *********************************************************************/
6141 NTSTATUS
pdb_init_ldapsam_compat(struct pdb_methods
**pdb_method
, const char *location
)
6144 struct ldapsam_privates
*ldap_state
;
6145 char *uri
= talloc_strdup( NULL
, location
);
6147 trim_char( uri
, '\"', '\"' );
6148 nt_status
= pdb_init_ldapsam_common( pdb_method
, uri
);
6152 if ( !NT_STATUS_IS_OK(nt_status
) ) {
6156 (*pdb_method
)->name
= "ldapsam_compat";
6158 ldap_state
= (struct ldapsam_privates
*)((*pdb_method
)->private_data
);
6159 ldap_state
->schema_ver
= SCHEMAVER_SAMBAACCOUNT
;
6161 sid_copy(&ldap_state
->domain_sid
, get_global_sam_sid());
6163 return NT_STATUS_OK
;
6166 /**********************************************************************
6167 Initialise the normal mode for pdb_ldap
6168 *********************************************************************/
6170 NTSTATUS
pdb_init_ldapsam(struct pdb_methods
**pdb_method
, const char *location
)
6173 struct ldapsam_privates
*ldap_state
= NULL
;
6174 uint32 alg_rid_base
;
6175 char *alg_rid_base_string
= NULL
;
6176 LDAPMessage
*result
= NULL
;
6177 LDAPMessage
*entry
= NULL
;
6178 DOM_SID ldap_domain_sid
;
6179 DOM_SID secrets_domain_sid
;
6180 char *domain_sid_string
= NULL
;
6182 char *uri
= talloc_strdup( NULL
, location
);
6184 trim_char( uri
, '\"', '\"' );
6185 nt_status
= pdb_init_ldapsam_common(pdb_method
, uri
);
6190 if (!NT_STATUS_IS_OK(nt_status
)) {
6194 (*pdb_method
)->name
= "ldapsam";
6196 (*pdb_method
)->add_aliasmem
= ldapsam_add_aliasmem
;
6197 (*pdb_method
)->del_aliasmem
= ldapsam_del_aliasmem
;
6198 (*pdb_method
)->enum_aliasmem
= ldapsam_enum_aliasmem
;
6199 (*pdb_method
)->enum_alias_memberships
= ldapsam_alias_memberships
;
6200 (*pdb_method
)->search_users
= ldapsam_search_users
;
6201 (*pdb_method
)->search_groups
= ldapsam_search_groups
;
6202 (*pdb_method
)->search_aliases
= ldapsam_search_aliases
;
6204 if (lp_parm_bool(-1, "ldapsam", "trusted", False
)) {
6205 (*pdb_method
)->enum_group_members
= ldapsam_enum_group_members
;
6206 (*pdb_method
)->enum_group_memberships
=
6207 ldapsam_enum_group_memberships
;
6208 (*pdb_method
)->lookup_rids
= ldapsam_lookup_rids
;
6209 (*pdb_method
)->sid_to_id
= ldapsam_sid_to_id
;
6211 if (lp_parm_bool(-1, "ldapsam", "editposix", False
)) {
6212 (*pdb_method
)->create_user
= ldapsam_create_user
;
6213 (*pdb_method
)->delete_user
= ldapsam_delete_user
;
6214 (*pdb_method
)->create_dom_group
= ldapsam_create_dom_group
;
6215 (*pdb_method
)->delete_dom_group
= ldapsam_delete_dom_group
;
6216 (*pdb_method
)->add_groupmem
= ldapsam_add_groupmem
;
6217 (*pdb_method
)->del_groupmem
= ldapsam_del_groupmem
;
6218 (*pdb_method
)->set_unix_primary_group
= ldapsam_set_primary_group
;
6222 ldap_state
= (struct ldapsam_privates
*)((*pdb_method
)->private_data
);
6223 ldap_state
->schema_ver
= SCHEMAVER_SAMBASAMACCOUNT
;
6225 /* Try to setup the Domain Name, Domain SID, algorithmic rid base */
6227 nt_status
= smbldap_search_domain_info(ldap_state
->smbldap_state
,
6229 ldap_state
->domain_name
, True
);
6231 if ( !NT_STATUS_IS_OK(nt_status
) ) {
6232 DEBUG(2, ("pdb_init_ldapsam: WARNING: Could not get domain "
6233 "info, nor add one to the domain\n"));
6234 DEBUGADD(2, ("pdb_init_ldapsam: Continuing on regardless, "
6235 "will be unable to allocate new users/groups, "
6236 "and will risk BDCs having inconsistant SIDs\n"));
6237 sid_copy(&ldap_state
->domain_sid
, get_global_sam_sid());
6238 return NT_STATUS_OK
;
6241 /* Given that the above might fail, everything below this must be
6244 entry
= ldap_first_entry(ldap_state
->smbldap_state
->ldap_struct
,
6247 DEBUG(0, ("pdb_init_ldapsam: Could not get domain info "
6249 ldap_msgfree(result
);
6250 return NT_STATUS_UNSUCCESSFUL
;
6253 dn
= smbldap_get_dn(ldap_state
->smbldap_state
->ldap_struct
, entry
);
6255 ldap_msgfree(result
);
6256 return NT_STATUS_UNSUCCESSFUL
;
6259 ldap_state
->domain_dn
= smb_xstrdup(dn
);
6262 domain_sid_string
= smbldap_talloc_single_attribute(
6263 ldap_state
->smbldap_state
->ldap_struct
,
6265 get_userattr_key2string(ldap_state
->schema_ver
,
6266 LDAP_ATTR_USER_SID
),
6269 if (domain_sid_string
) {
6271 if (!string_to_sid(&ldap_domain_sid
, domain_sid_string
)) {
6272 DEBUG(1, ("pdb_init_ldapsam: SID [%s] could not be "
6273 "read as a valid SID\n", domain_sid_string
));
6274 ldap_msgfree(result
);
6275 TALLOC_FREE(domain_sid_string
);
6276 return NT_STATUS_INVALID_PARAMETER
;
6278 found_sid
= secrets_fetch_domain_sid(ldap_state
->domain_name
,
6279 &secrets_domain_sid
);
6280 if (!found_sid
|| !sid_equal(&secrets_domain_sid
,
6281 &ldap_domain_sid
)) {
6282 DEBUG(1, ("pdb_init_ldapsam: Resetting SID for domain "
6283 "%s based on pdb_ldap results %s -> %s\n",
6284 ldap_state
->domain_name
,
6285 sid_string_dbg(&secrets_domain_sid
),
6286 sid_string_dbg(&ldap_domain_sid
)));
6288 /* reset secrets.tdb sid */
6289 secrets_store_domain_sid(ldap_state
->domain_name
,
6291 DEBUG(1, ("New global sam SID: %s\n",
6292 sid_string_dbg(get_global_sam_sid())));
6294 sid_copy(&ldap_state
->domain_sid
, &ldap_domain_sid
);
6295 TALLOC_FREE(domain_sid_string
);
6298 alg_rid_base_string
= smbldap_talloc_single_attribute(
6299 ldap_state
->smbldap_state
->ldap_struct
,
6301 get_attr_key2string( dominfo_attr_list
,
6302 LDAP_ATTR_ALGORITHMIC_RID_BASE
),
6304 if (alg_rid_base_string
) {
6305 alg_rid_base
= (uint32
)atol(alg_rid_base_string
);
6306 if (alg_rid_base
!= algorithmic_rid_base()) {
6307 DEBUG(0, ("The value of 'algorithmic RID base' has "
6308 "changed since the LDAP\n"
6309 "database was initialised. Aborting. \n"));
6310 ldap_msgfree(result
);
6311 TALLOC_FREE(alg_rid_base_string
);
6312 return NT_STATUS_UNSUCCESSFUL
;
6314 TALLOC_FREE(alg_rid_base_string
);
6316 ldap_msgfree(result
);
6318 return NT_STATUS_OK
;
6321 NTSTATUS
pdb_ldap_init(void)
6324 if (!NT_STATUS_IS_OK(nt_status
= smb_register_passdb(PASSDB_INTERFACE_VERSION
, "ldapsam", pdb_init_ldapsam
)))
6327 if (!NT_STATUS_IS_OK(nt_status
= smb_register_passdb(PASSDB_INTERFACE_VERSION
, "ldapsam_compat", pdb_init_ldapsam_compat
)))
6330 /* Let pdb_nds register backends */
6333 return NT_STATUS_OK
;