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 SAFE_FREE(escape_user
);
353 return LDAP_NO_MEMORY
;
356 * have to use this here because $ is filtered out
360 filter
= talloc_all_string_sub(talloc_tos(),
361 filter
, "%u", escape_user
);
362 SAFE_FREE(escape_user
);
364 return LDAP_NO_MEMORY
;
367 ret
= smbldap_search_suffix(ldap_state
->smbldap_state
,
368 filter
, attr
, result
);
373 /*******************************************************************
374 Run the search by rid.
375 ******************************************************************/
377 static int ldapsam_search_suffix_by_rid (struct ldapsam_privates
*ldap_state
,
378 uint32 rid
, LDAPMessage
** result
,
384 filter
= talloc_asprintf(talloc_tos(), "(&(rid=%i)%s)", rid
,
385 get_objclass_filter(ldap_state
->schema_ver
));
387 return LDAP_NO_MEMORY
;
390 rc
= smbldap_search_suffix(ldap_state
->smbldap_state
,
391 filter
, attr
, result
);
396 /*******************************************************************
397 Run the search by SID.
398 ******************************************************************/
400 static int ldapsam_search_suffix_by_sid (struct ldapsam_privates
*ldap_state
,
401 const DOM_SID
*sid
, LDAPMessage
** result
,
408 filter
= talloc_asprintf(talloc_tos(), "(&(%s=%s)%s)",
409 get_userattr_key2string(ldap_state
->schema_ver
,
411 sid_to_fstring(sid_string
, sid
),
412 get_objclass_filter(ldap_state
->schema_ver
));
414 return LDAP_NO_MEMORY
;
417 rc
= smbldap_search_suffix(ldap_state
->smbldap_state
,
418 filter
, attr
, result
);
424 /*******************************************************************
425 Delete complete object or objectclass and attrs from
426 object found in search_result depending on lp_ldap_delete_dn
427 ******************************************************************/
429 static int ldapsam_delete_entry(struct ldapsam_privates
*priv
,
432 const char *objectclass
,
435 LDAPMod
**mods
= NULL
;
438 BerElement
*ptr
= NULL
;
440 dn
= smbldap_talloc_dn(mem_ctx
, priv2ld(priv
), entry
);
442 return LDAP_NO_MEMORY
;
445 if (lp_ldap_delete_dn()) {
446 return smbldap_delete(priv
->smbldap_state
, dn
);
449 /* Ok, delete only the SAM attributes */
451 for (name
= ldap_first_attribute(priv2ld(priv
), entry
, &ptr
);
453 name
= ldap_next_attribute(priv2ld(priv
), entry
, ptr
)) {
456 /* We are only allowed to delete the attributes that
459 for (attrib
= attrs
; *attrib
!= NULL
; attrib
++) {
460 if (strequal(*attrib
, name
)) {
461 DEBUG(10, ("ldapsam_delete_entry: deleting "
462 "attribute %s\n", name
));
463 smbldap_set_mod(&mods
, LDAP_MOD_DELETE
, name
,
474 smbldap_set_mod(&mods
, LDAP_MOD_DELETE
, "objectClass", objectclass
);
475 talloc_autofree_ldapmod(mem_ctx
, mods
);
477 return smbldap_modify(priv
->smbldap_state
, dn
, mods
);
480 static time_t ldapsam_get_entry_timestamp( struct ldapsam_privates
*ldap_state
, LDAPMessage
* entry
)
485 temp
= smbldap_talloc_single_attribute(ldap_state
->smbldap_state
->ldap_struct
, entry
,
486 get_userattr_key2string(ldap_state
->schema_ver
,LDAP_ATTR_MOD_TIMESTAMP
),
492 if ( !strptime(temp
, "%Y%m%d%H%M%SZ", &tm
)) {
493 DEBUG(2,("ldapsam_get_entry_timestamp: strptime failed on: %s\n",
503 /**********************************************************************
504 Initialize struct samu from an LDAP query.
505 (Based on init_sam_from_buffer in pdb_tdb.c)
506 *********************************************************************/
508 static bool init_sam_from_ldap(struct ldapsam_privates
*ldap_state
,
509 struct samu
* sampass
,
516 pass_can_change_time
,
517 pass_must_change_time
,
520 char *username
= NULL
,
526 *logon_script
= NULL
,
527 *profile_path
= NULL
,
529 *workstations
= NULL
,
532 uint8 smblmpwd
[LM_HASH_LEN
],
533 smbntpwd
[NT_HASH_LEN
];
534 bool use_samba_attrs
= True
;
535 uint32 acct_ctrl
= 0;
537 uint16 bad_password_count
= 0,
540 uint8 hours
[MAX_HOURS_LEN
];
542 LOGIN_CACHE
*cache_entry
= NULL
;
544 bool expand_explicit
= lp_passdb_expand_explicit();
546 TALLOC_CTX
*ctx
= talloc_init("init_sam_from_ldap");
551 if (sampass
== NULL
|| ldap_state
== NULL
|| entry
== NULL
) {
552 DEBUG(0, ("init_sam_from_ldap: NULL parameters found!\n"));
556 if (priv2ld(ldap_state
) == NULL
) {
557 DEBUG(0, ("init_sam_from_ldap: ldap_state->smbldap_state->"
558 "ldap_struct is NULL!\n"));
562 if (!(username
= smbldap_talloc_smallest_attribute(priv2ld(ldap_state
),
566 DEBUG(1, ("init_sam_from_ldap: No uid attribute found for "
571 DEBUG(2, ("init_sam_from_ldap: Entry found for user: %s\n", username
));
573 nt_username
= talloc_strdup(ctx
, username
);
578 domain
= talloc_strdup(ctx
, ldap_state
->domain_name
);
583 pdb_set_username(sampass
, username
, PDB_SET
);
585 pdb_set_domain(sampass
, domain
, PDB_DEFAULT
);
586 pdb_set_nt_username(sampass
, nt_username
, PDB_SET
);
588 /* deal with different attributes between the schema first */
590 if ( ldap_state
->schema_ver
== SCHEMAVER_SAMBASAMACCOUNT
) {
591 if ((temp
= smbldap_talloc_single_attribute(
592 ldap_state
->smbldap_state
->ldap_struct
,
594 get_userattr_key2string(ldap_state
->schema_ver
,
597 pdb_set_user_sid_from_string(sampass
, temp
, PDB_SET
);
600 if ((temp
= smbldap_talloc_single_attribute(
601 ldap_state
->smbldap_state
->ldap_struct
,
603 get_userattr_key2string(ldap_state
->schema_ver
,
606 user_rid
= (uint32
)atol(temp
);
607 pdb_set_user_sid_from_rid(sampass
, user_rid
, PDB_SET
);
611 if (pdb_get_init_flags(sampass
,PDB_USERSID
) == PDB_DEFAULT
) {
612 DEBUG(1, ("init_sam_from_ldap: no %s or %s attribute found for this user %s\n",
613 get_userattr_key2string(ldap_state
->schema_ver
,
615 get_userattr_key2string(ldap_state
->schema_ver
,
621 temp
= smbldap_talloc_single_attribute(
622 ldap_state
->smbldap_state
->ldap_struct
,
624 get_userattr_key2string(ldap_state
->schema_ver
,
625 LDAP_ATTR_PWD_LAST_SET
),
628 pass_last_set_time
= (time_t) atol(temp
);
629 pdb_set_pass_last_set_time(sampass
,
630 pass_last_set_time
, PDB_SET
);
633 temp
= smbldap_talloc_single_attribute(
634 ldap_state
->smbldap_state
->ldap_struct
,
636 get_userattr_key2string(ldap_state
->schema_ver
,
637 LDAP_ATTR_LOGON_TIME
),
640 logon_time
= (time_t) atol(temp
);
641 pdb_set_logon_time(sampass
, logon_time
, PDB_SET
);
644 temp
= smbldap_talloc_single_attribute(
645 ldap_state
->smbldap_state
->ldap_struct
,
647 get_userattr_key2string(ldap_state
->schema_ver
,
648 LDAP_ATTR_LOGOFF_TIME
),
651 logoff_time
= (time_t) atol(temp
);
652 pdb_set_logoff_time(sampass
, logoff_time
, PDB_SET
);
655 temp
= smbldap_talloc_single_attribute(
656 ldap_state
->smbldap_state
->ldap_struct
,
658 get_userattr_key2string(ldap_state
->schema_ver
,
659 LDAP_ATTR_KICKOFF_TIME
),
662 kickoff_time
= (time_t) atol(temp
);
663 pdb_set_kickoff_time(sampass
, kickoff_time
, PDB_SET
);
666 temp
= smbldap_talloc_single_attribute(
667 ldap_state
->smbldap_state
->ldap_struct
,
669 get_userattr_key2string(ldap_state
->schema_ver
,
670 LDAP_ATTR_PWD_CAN_CHANGE
),
673 pass_can_change_time
= (time_t) atol(temp
);
674 pdb_set_pass_can_change_time(sampass
,
675 pass_can_change_time
, PDB_SET
);
678 temp
= smbldap_talloc_single_attribute(
679 ldap_state
->smbldap_state
->ldap_struct
,
681 get_userattr_key2string(ldap_state
->schema_ver
,
682 LDAP_ATTR_PWD_MUST_CHANGE
),
685 pass_must_change_time
= (time_t) atol(temp
);
686 pdb_set_pass_must_change_time(sampass
,
687 pass_must_change_time
, PDB_SET
);
690 /* recommend that 'gecos' and 'displayName' should refer to the same
691 * attribute OID. userFullName depreciated, only used by Samba
692 * primary rules of LDAP: don't make a new attribute when one is already defined
693 * that fits your needs; using cn then displayName rather than 'userFullName'
696 fullname
= smbldap_talloc_single_attribute(
697 ldap_state
->smbldap_state
->ldap_struct
,
699 get_userattr_key2string(ldap_state
->schema_ver
,
700 LDAP_ATTR_DISPLAY_NAME
),
703 pdb_set_fullname(sampass
, fullname
, PDB_SET
);
705 fullname
= smbldap_talloc_single_attribute(
706 ldap_state
->smbldap_state
->ldap_struct
,
708 get_userattr_key2string(ldap_state
->schema_ver
,
712 pdb_set_fullname(sampass
, fullname
, PDB_SET
);
716 dir_drive
= smbldap_talloc_single_attribute(
717 ldap_state
->smbldap_state
->ldap_struct
,
719 get_userattr_key2string(ldap_state
->schema_ver
,
720 LDAP_ATTR_HOME_DRIVE
),
723 pdb_set_dir_drive(sampass
, dir_drive
, PDB_SET
);
725 pdb_set_dir_drive( sampass
, lp_logon_drive(), PDB_DEFAULT
);
728 homedir
= smbldap_talloc_single_attribute(
729 ldap_state
->smbldap_state
->ldap_struct
,
731 get_userattr_key2string(ldap_state
->schema_ver
,
732 LDAP_ATTR_HOME_PATH
),
735 if (expand_explicit
) {
736 homedir
= talloc_sub_basic(ctx
,
744 pdb_set_homedir(sampass
, homedir
, PDB_SET
);
746 pdb_set_homedir(sampass
,
747 talloc_sub_basic(ctx
, username
, domain
,
752 logon_script
= smbldap_talloc_single_attribute(
753 ldap_state
->smbldap_state
->ldap_struct
,
755 get_userattr_key2string(ldap_state
->schema_ver
,
756 LDAP_ATTR_LOGON_SCRIPT
),
759 if (expand_explicit
) {
760 logon_script
= talloc_sub_basic(ctx
,
768 pdb_set_logon_script(sampass
, logon_script
, PDB_SET
);
770 pdb_set_logon_script(sampass
,
771 talloc_sub_basic(ctx
, username
, domain
,
776 profile_path
= smbldap_talloc_single_attribute(
777 ldap_state
->smbldap_state
->ldap_struct
,
779 get_userattr_key2string(ldap_state
->schema_ver
,
780 LDAP_ATTR_PROFILE_PATH
),
783 if (expand_explicit
) {
784 profile_path
= talloc_sub_basic(ctx
,
792 pdb_set_profile_path(sampass
, profile_path
, PDB_SET
);
794 pdb_set_profile_path(sampass
,
795 talloc_sub_basic(ctx
, username
, domain
,
800 acct_desc
= smbldap_talloc_single_attribute(
801 ldap_state
->smbldap_state
->ldap_struct
,
803 get_userattr_key2string(ldap_state
->schema_ver
,
807 pdb_set_acct_desc(sampass
, acct_desc
, PDB_SET
);
810 workstations
= smbldap_talloc_single_attribute(
811 ldap_state
->smbldap_state
->ldap_struct
,
813 get_userattr_key2string(ldap_state
->schema_ver
,
817 pdb_set_workstations(sampass
, workstations
, PDB_SET
);
820 munged_dial
= smbldap_talloc_single_attribute(
821 ldap_state
->smbldap_state
->ldap_struct
,
823 get_userattr_key2string(ldap_state
->schema_ver
,
824 LDAP_ATTR_MUNGED_DIAL
),
827 pdb_set_munged_dial(sampass
, munged_dial
, PDB_SET
);
830 /* FIXME: hours stuff should be cleaner */
834 memset(hours
, 0xff, hours_len
);
836 if (ldap_state
->is_nds_ldap
) {
839 char clear_text_pw
[512];
841 /* Make call to Novell eDirectory ldap extension to get clear text password.
842 NOTE: This will only work if we have an SSL connection to eDirectory. */
843 user_dn
= smbldap_get_dn(ldap_state
->smbldap_state
->ldap_struct
, entry
);
844 if (user_dn
!= NULL
) {
845 DEBUG(3, ("init_sam_from_ldap: smbldap_get_dn(%s) returned '%s'\n", username
, user_dn
));
847 pwd_len
= sizeof(clear_text_pw
);
848 if (pdb_nds_get_password(ldap_state
->smbldap_state
, user_dn
, &pwd_len
, clear_text_pw
) == LDAP_SUCCESS
) {
849 nt_lm_owf_gen(clear_text_pw
, smbntpwd
, smblmpwd
);
850 if (!pdb_set_lanman_passwd(sampass
, smblmpwd
, PDB_SET
)) {
854 ZERO_STRUCT(smblmpwd
);
855 if (!pdb_set_nt_passwd(sampass
, smbntpwd
, PDB_SET
)) {
859 ZERO_STRUCT(smbntpwd
);
860 use_samba_attrs
= False
;
866 DEBUG(0, ("init_sam_from_ldap: failed to get user_dn for '%s'\n", username
));
870 if (use_samba_attrs
) {
871 temp
= smbldap_talloc_single_attribute(
872 ldap_state
->smbldap_state
->ldap_struct
,
874 get_userattr_key2string(ldap_state
->schema_ver
,
878 pdb_gethexpwd(temp
, smblmpwd
);
879 memset((char *)temp
, '\0', strlen(temp
)+1);
880 if (!pdb_set_lanman_passwd(sampass
, smblmpwd
, PDB_SET
)) {
883 ZERO_STRUCT(smblmpwd
);
886 temp
= smbldap_talloc_single_attribute(
887 ldap_state
->smbldap_state
->ldap_struct
,
889 get_userattr_key2string(ldap_state
->schema_ver
,
893 pdb_gethexpwd(temp
, smbntpwd
);
894 memset((char *)temp
, '\0', strlen(temp
)+1);
895 if (!pdb_set_nt_passwd(sampass
, smbntpwd
, PDB_SET
)) {
898 ZERO_STRUCT(smbntpwd
);
904 pdb_get_account_policy(AP_PASSWORD_HISTORY
, &pwHistLen
);
906 uint8
*pwhist
= NULL
;
908 char *history_string
= TALLOC_ARRAY(ctx
, char,
909 MAX_PW_HISTORY_LEN
*64);
911 if (!history_string
) {
915 pwHistLen
= MIN(pwHistLen
, MAX_PW_HISTORY_LEN
);
917 if ((pwhist
= TALLOC_ARRAY(ctx
, uint8
,
918 pwHistLen
* PW_HISTORY_ENTRY_LEN
)) ==
920 DEBUG(0, ("init_sam_from_ldap: talloc failed!\n"));
923 memset(pwhist
, '\0', pwHistLen
* PW_HISTORY_ENTRY_LEN
);
925 if (smbldap_get_single_attribute(
926 ldap_state
->smbldap_state
->ldap_struct
,
928 get_userattr_key2string(ldap_state
->schema_ver
,
929 LDAP_ATTR_PWD_HISTORY
),
931 MAX_PW_HISTORY_LEN
*64)) {
932 bool hex_failed
= false;
933 for (i
= 0; i
< pwHistLen
; i
++){
934 /* Get the 16 byte salt. */
935 if (!pdb_gethexpwd(&history_string
[i
*64],
936 &pwhist
[i
*PW_HISTORY_ENTRY_LEN
])) {
940 /* Get the 16 byte MD5 hash of salt+passwd. */
941 if (!pdb_gethexpwd(&history_string
[(i
*64)+32],
942 &pwhist
[(i
*PW_HISTORY_ENTRY_LEN
)+
943 PW_HISTORY_SALT_LEN
])) {
949 DEBUG(2,("init_sam_from_ldap: Failed to get password history for user %s\n",
951 memset(pwhist
, '\0', pwHistLen
* PW_HISTORY_ENTRY_LEN
);
954 if (!pdb_set_pw_history(sampass
, pwhist
, pwHistLen
, PDB_SET
)){
959 temp
= smbldap_talloc_single_attribute(
960 ldap_state
->smbldap_state
->ldap_struct
,
962 get_userattr_key2string(ldap_state
->schema_ver
,
966 acct_ctrl
= pdb_decode_acct_ctrl(temp
);
968 if (acct_ctrl
== 0) {
969 acct_ctrl
|= ACB_NORMAL
;
972 pdb_set_acct_ctrl(sampass
, acct_ctrl
, PDB_SET
);
974 acct_ctrl
|= ACB_NORMAL
;
977 pdb_set_hours_len(sampass
, hours_len
, PDB_SET
);
978 pdb_set_logon_divs(sampass
, logon_divs
, PDB_SET
);
980 temp
= smbldap_talloc_single_attribute(
981 ldap_state
->smbldap_state
->ldap_struct
,
983 get_userattr_key2string(ldap_state
->schema_ver
,
984 LDAP_ATTR_BAD_PASSWORD_COUNT
),
987 bad_password_count
= (uint32
) atol(temp
);
988 pdb_set_bad_password_count(sampass
,
989 bad_password_count
, PDB_SET
);
992 temp
= smbldap_talloc_single_attribute(
993 ldap_state
->smbldap_state
->ldap_struct
,
995 get_userattr_key2string(ldap_state
->schema_ver
,
996 LDAP_ATTR_BAD_PASSWORD_TIME
),
999 bad_password_time
= (time_t) atol(temp
);
1000 pdb_set_bad_password_time(sampass
, bad_password_time
, PDB_SET
);
1004 temp
= smbldap_talloc_single_attribute(
1005 ldap_state
->smbldap_state
->ldap_struct
,
1007 get_userattr_key2string(ldap_state
->schema_ver
,
1008 LDAP_ATTR_LOGON_COUNT
),
1011 logon_count
= (uint32
) atol(temp
);
1012 pdb_set_logon_count(sampass
, logon_count
, PDB_SET
);
1015 /* pdb_set_unknown_6(sampass, unknown6, PDB_SET); */
1017 temp
= smbldap_talloc_single_attribute(
1018 ldap_state
->smbldap_state
->ldap_struct
,
1020 get_userattr_key2string(ldap_state
->schema_ver
,
1021 LDAP_ATTR_LOGON_HOURS
),
1024 pdb_gethexhours(temp
, hours
);
1025 memset((char *)temp
, '\0', strlen(temp
) +1);
1026 pdb_set_hours(sampass
, hours
, PDB_SET
);
1030 if (lp_parm_bool(-1, "ldapsam", "trusted", False
)) {
1031 temp
= smbldap_talloc_single_attribute(
1032 priv2ld(ldap_state
),
1037 /* We've got a uid, feed the cache */
1038 uid_t uid
= strtoul(temp
, NULL
, 10);
1039 store_uid_sid_cache(pdb_get_user_sid(sampass
), uid
);
1043 /* check the timestamp of the cache vs ldap entry */
1044 if (!(ldap_entry_time
= ldapsam_get_entry_timestamp(ldap_state
,
1050 /* see if we have newer updates */
1051 if (!(cache_entry
= login_cache_read(sampass
))) {
1052 DEBUG (9, ("No cache entry, bad count = %u, bad time = %u\n",
1053 (unsigned int)pdb_get_bad_password_count(sampass
),
1054 (unsigned int)pdb_get_bad_password_time(sampass
)));
1059 DEBUG(7, ("ldap time is %u, cache time is %u, bad time = %u\n",
1060 (unsigned int)ldap_entry_time
,
1061 (unsigned int)cache_entry
->entry_timestamp
,
1062 (unsigned int)cache_entry
->bad_password_time
));
1064 if (ldap_entry_time
> cache_entry
->entry_timestamp
) {
1065 /* cache is older than directory , so
1066 we need to delete the entry but allow the
1067 fields to be written out */
1068 login_cache_delentry(sampass
);
1071 pdb_set_acct_ctrl(sampass
,
1072 pdb_get_acct_ctrl(sampass
) |
1073 (cache_entry
->acct_ctrl
& ACB_AUTOLOCK
),
1075 pdb_set_bad_password_count(sampass
,
1076 cache_entry
->bad_password_count
,
1078 pdb_set_bad_password_time(sampass
,
1079 cache_entry
->bad_password_time
,
1088 SAFE_FREE(cache_entry
);
1092 /**********************************************************************
1093 Initialize the ldap db from a struct samu. Called on update.
1094 (Based on init_buffer_from_sam in pdb_tdb.c)
1095 *********************************************************************/
1097 static bool init_ldap_from_sam (struct ldapsam_privates
*ldap_state
,
1098 LDAPMessage
*existing
,
1099 LDAPMod
*** mods
, struct samu
* sampass
,
1100 bool (*need_update
)(const struct samu
*,
1106 if (mods
== NULL
|| sampass
== NULL
) {
1107 DEBUG(0, ("init_ldap_from_sam: NULL parameters found!\n"));
1114 * took out adding "objectclass: sambaAccount"
1115 * do this on a per-mod basis
1117 if (need_update(sampass
, PDB_USERNAME
)) {
1118 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, existing
, mods
,
1119 "uid", pdb_get_username(sampass
));
1120 if (ldap_state
->is_nds_ldap
) {
1121 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, existing
, mods
,
1122 "cn", pdb_get_username(sampass
));
1123 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, existing
, mods
,
1124 "sn", pdb_get_username(sampass
));
1128 DEBUG(2, ("init_ldap_from_sam: Setting entry for user: %s\n", pdb_get_username(sampass
)));
1130 /* only update the RID if we actually need to */
1131 if (need_update(sampass
, PDB_USERSID
)) {
1133 const DOM_SID
*user_sid
= pdb_get_user_sid(sampass
);
1135 switch ( ldap_state
->schema_ver
) {
1136 case SCHEMAVER_SAMBAACCOUNT
:
1137 if (!sid_peek_check_rid(&ldap_state
->domain_sid
, user_sid
, &rid
)) {
1138 DEBUG(1, ("init_ldap_from_sam: User's SID (%s) is not for this domain (%s), cannot add to LDAP!\n",
1139 sid_string_dbg(user_sid
),
1141 &ldap_state
->domain_sid
)));
1144 if (asprintf(&temp
, "%i", rid
) < 0) {
1147 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, existing
, mods
,
1148 get_userattr_key2string(ldap_state
->schema_ver
, LDAP_ATTR_USER_RID
),
1153 case SCHEMAVER_SAMBASAMACCOUNT
:
1154 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, existing
, mods
,
1155 get_userattr_key2string(ldap_state
->schema_ver
, LDAP_ATTR_USER_SID
),
1156 sid_to_fstring(sid_string
, user_sid
));
1160 DEBUG(0,("init_ldap_from_sam: unknown schema version specified\n"));
1165 /* we don't need to store the primary group RID - so leaving it
1166 'free' to hang off the unix primary group makes life easier */
1168 if (need_update(sampass
, PDB_GROUPSID
)) {
1170 const DOM_SID
*group_sid
= pdb_get_group_sid(sampass
);
1172 switch ( ldap_state
->schema_ver
) {
1173 case SCHEMAVER_SAMBAACCOUNT
:
1174 if (!sid_peek_check_rid(&ldap_state
->domain_sid
, group_sid
, &rid
)) {
1175 DEBUG(1, ("init_ldap_from_sam: User's Primary Group SID (%s) is not for this domain (%s), cannot add to LDAP!\n",
1176 sid_string_dbg(group_sid
),
1178 &ldap_state
->domain_sid
)));
1182 if (asprintf(&temp
, "%i", rid
) < 0) {
1185 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, existing
, mods
,
1186 get_userattr_key2string(ldap_state
->schema_ver
,
1187 LDAP_ATTR_PRIMARY_GROUP_RID
), temp
);
1191 case SCHEMAVER_SAMBASAMACCOUNT
:
1192 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, existing
, mods
,
1193 get_userattr_key2string(ldap_state
->schema_ver
,
1194 LDAP_ATTR_PRIMARY_GROUP_SID
), sid_to_fstring(sid_string
, group_sid
));
1198 DEBUG(0,("init_ldap_from_sam: unknown schema version specified\n"));
1204 /* displayName, cn, and gecos should all be the same
1205 * most easily accomplished by giving them the same OID
1206 * gecos isn't set here b/c it should be handled by the
1208 * We change displayName only and fall back to cn if
1209 * it does not exist.
1212 if (need_update(sampass
, PDB_FULLNAME
))
1213 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, existing
, mods
,
1214 get_userattr_key2string(ldap_state
->schema_ver
, LDAP_ATTR_DISPLAY_NAME
),
1215 pdb_get_fullname(sampass
));
1217 if (need_update(sampass
, PDB_ACCTDESC
))
1218 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, existing
, mods
,
1219 get_userattr_key2string(ldap_state
->schema_ver
, LDAP_ATTR_DESC
),
1220 pdb_get_acct_desc(sampass
));
1222 if (need_update(sampass
, PDB_WORKSTATIONS
))
1223 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, existing
, mods
,
1224 get_userattr_key2string(ldap_state
->schema_ver
, LDAP_ATTR_USER_WKS
),
1225 pdb_get_workstations(sampass
));
1227 if (need_update(sampass
, PDB_MUNGEDDIAL
))
1228 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, existing
, mods
,
1229 get_userattr_key2string(ldap_state
->schema_ver
, LDAP_ATTR_MUNGED_DIAL
),
1230 pdb_get_munged_dial(sampass
));
1232 if (need_update(sampass
, PDB_SMBHOME
))
1233 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, existing
, mods
,
1234 get_userattr_key2string(ldap_state
->schema_ver
, LDAP_ATTR_HOME_PATH
),
1235 pdb_get_homedir(sampass
));
1237 if (need_update(sampass
, PDB_DRIVE
))
1238 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, existing
, mods
,
1239 get_userattr_key2string(ldap_state
->schema_ver
, LDAP_ATTR_HOME_DRIVE
),
1240 pdb_get_dir_drive(sampass
));
1242 if (need_update(sampass
, PDB_LOGONSCRIPT
))
1243 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, existing
, mods
,
1244 get_userattr_key2string(ldap_state
->schema_ver
, LDAP_ATTR_LOGON_SCRIPT
),
1245 pdb_get_logon_script(sampass
));
1247 if (need_update(sampass
, PDB_PROFILE
))
1248 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, existing
, mods
,
1249 get_userattr_key2string(ldap_state
->schema_ver
, LDAP_ATTR_PROFILE_PATH
),
1250 pdb_get_profile_path(sampass
));
1252 if (asprintf(&temp
, "%li", (long int)pdb_get_logon_time(sampass
)) < 0) {
1255 if (need_update(sampass
, PDB_LOGONTIME
))
1256 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, existing
, mods
,
1257 get_userattr_key2string(ldap_state
->schema_ver
, LDAP_ATTR_LOGON_TIME
), temp
);
1260 if (asprintf(&temp
, "%li", (long int)pdb_get_logoff_time(sampass
)) < 0) {
1263 if (need_update(sampass
, PDB_LOGOFFTIME
))
1264 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, existing
, mods
,
1265 get_userattr_key2string(ldap_state
->schema_ver
, LDAP_ATTR_LOGOFF_TIME
), temp
);
1268 if (asprintf(&temp
, "%li", (long int)pdb_get_kickoff_time(sampass
)) < 0) {
1271 if (need_update(sampass
, PDB_KICKOFFTIME
))
1272 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, existing
, mods
,
1273 get_userattr_key2string(ldap_state
->schema_ver
, LDAP_ATTR_KICKOFF_TIME
), temp
);
1276 if (asprintf(&temp
, "%li", (long int)pdb_get_pass_can_change_time_noncalc(sampass
)) < 0) {
1279 if (need_update(sampass
, PDB_CANCHANGETIME
))
1280 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, existing
, mods
,
1281 get_userattr_key2string(ldap_state
->schema_ver
, LDAP_ATTR_PWD_CAN_CHANGE
), temp
);
1284 if (asprintf(&temp
, "%li", (long int)pdb_get_pass_must_change_time(sampass
)) < 0) {
1287 if (need_update(sampass
, PDB_MUSTCHANGETIME
))
1288 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, existing
, mods
,
1289 get_userattr_key2string(ldap_state
->schema_ver
, LDAP_ATTR_PWD_MUST_CHANGE
), temp
);
1292 if ((pdb_get_acct_ctrl(sampass
)&(ACB_WSTRUST
|ACB_SVRTRUST
|ACB_DOMTRUST
))
1293 || (lp_ldap_passwd_sync()!=LDAP_PASSWD_SYNC_ONLY
)) {
1295 if (need_update(sampass
, PDB_LMPASSWD
)) {
1296 const uchar
*lm_pw
= pdb_get_lanman_passwd(sampass
);
1299 pdb_sethexpwd(pwstr
, lm_pw
,
1300 pdb_get_acct_ctrl(sampass
));
1301 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, existing
, mods
,
1302 get_userattr_key2string(ldap_state
->schema_ver
, LDAP_ATTR_LMPW
),
1305 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, existing
, mods
,
1306 get_userattr_key2string(ldap_state
->schema_ver
, LDAP_ATTR_LMPW
),
1310 if (need_update(sampass
, PDB_NTPASSWD
)) {
1311 const uchar
*nt_pw
= pdb_get_nt_passwd(sampass
);
1314 pdb_sethexpwd(pwstr
, nt_pw
,
1315 pdb_get_acct_ctrl(sampass
));
1316 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, existing
, mods
,
1317 get_userattr_key2string(ldap_state
->schema_ver
, LDAP_ATTR_NTPW
),
1320 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, existing
, mods
,
1321 get_userattr_key2string(ldap_state
->schema_ver
, LDAP_ATTR_NTPW
),
1326 if (need_update(sampass
, PDB_PWHISTORY
)) {
1328 uint32 pwHistLen
= 0;
1329 pdb_get_account_policy(AP_PASSWORD_HISTORY
, &pwHistLen
);
1331 pwstr
= SMB_MALLOC_ARRAY(char, 1024);
1335 if (pwHistLen
== 0) {
1336 /* Remove any password history from the LDAP store. */
1337 memset(pwstr
, '0', 64); /* NOTE !!!! '0' *NOT '\0' */
1341 uint32 currHistLen
= 0;
1342 const uint8
*pwhist
= pdb_get_pw_history(sampass
, &currHistLen
);
1343 if (pwhist
!= NULL
) {
1344 /* We can only store (1024-1/64 password history entries. */
1345 pwHistLen
= MIN(pwHistLen
, ((1024-1)/64));
1346 for (i
=0; i
< pwHistLen
&& i
< currHistLen
; i
++) {
1347 /* Store the salt. */
1348 pdb_sethexpwd(&pwstr
[i
*64], &pwhist
[i
*PW_HISTORY_ENTRY_LEN
], 0);
1349 /* Followed by the md5 hash of salt + md4 hash */
1350 pdb_sethexpwd(&pwstr
[(i
*64)+32],
1351 &pwhist
[(i
*PW_HISTORY_ENTRY_LEN
)+PW_HISTORY_SALT_LEN
], 0);
1352 DEBUG(100, ("pwstr=%s\n", pwstr
));
1356 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, existing
, mods
,
1357 get_userattr_key2string(ldap_state
->schema_ver
, LDAP_ATTR_PWD_HISTORY
),
1362 if (need_update(sampass
, PDB_PASSLASTSET
)) {
1363 if (asprintf(&temp
, "%li",
1364 (long int)pdb_get_pass_last_set_time(sampass
)) < 0) {
1367 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, existing
, mods
,
1368 get_userattr_key2string(ldap_state
->schema_ver
, LDAP_ATTR_PWD_LAST_SET
),
1374 if (need_update(sampass
, PDB_HOURS
)) {
1375 const uint8
*hours
= pdb_get_hours(sampass
);
1378 pdb_sethexhours(hourstr
, hours
);
1379 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
,
1382 get_userattr_key2string(ldap_state
->schema_ver
,
1383 LDAP_ATTR_LOGON_HOURS
),
1388 if (need_update(sampass
, PDB_ACCTCTRL
))
1389 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, existing
, mods
,
1390 get_userattr_key2string(ldap_state
->schema_ver
, LDAP_ATTR_ACB_INFO
),
1391 pdb_encode_acct_ctrl (pdb_get_acct_ctrl(sampass
), NEW_PW_FORMAT_SPACE_PADDED_LEN
));
1393 /* password lockout cache:
1394 - If we are now autolocking or clearing, we write to ldap
1395 - If we are clearing, we delete the cache entry
1396 - If the count is > 0, we update the cache
1398 This even means when autolocking, we cache, just in case the
1399 update doesn't work, and we have to cache the autolock flag */
1401 if (need_update(sampass
, PDB_BAD_PASSWORD_COUNT
)) /* &&
1402 need_update(sampass, PDB_BAD_PASSWORD_TIME)) */ {
1403 uint16 badcount
= pdb_get_bad_password_count(sampass
);
1404 time_t badtime
= pdb_get_bad_password_time(sampass
);
1406 pdb_get_account_policy(AP_BAD_ATTEMPT_LOCKOUT
, &pol
);
1408 DEBUG(3, ("updating bad password fields, policy=%u, count=%u, time=%u\n",
1409 (unsigned int)pol
, (unsigned int)badcount
, (unsigned int)badtime
));
1411 if ((badcount
>= pol
) || (badcount
== 0)) {
1412 DEBUG(7, ("making mods to update ldap, count=%u, time=%u\n",
1413 (unsigned int)badcount
, (unsigned int)badtime
));
1414 if (asprintf(&temp
, "%li", (long)badcount
) < 0) {
1418 ldap_state
->smbldap_state
->ldap_struct
,
1420 get_userattr_key2string(
1421 ldap_state
->schema_ver
,
1422 LDAP_ATTR_BAD_PASSWORD_COUNT
),
1426 if (asprintf(&temp
, "%li", (long int)badtime
) < 0) {
1430 ldap_state
->smbldap_state
->ldap_struct
,
1432 get_userattr_key2string(
1433 ldap_state
->schema_ver
,
1434 LDAP_ATTR_BAD_PASSWORD_TIME
),
1438 if (badcount
== 0) {
1439 DEBUG(7, ("bad password count is reset, deleting login cache entry for %s\n", pdb_get_nt_username(sampass
)));
1440 login_cache_delentry(sampass
);
1442 LOGIN_CACHE cache_entry
;
1444 cache_entry
.entry_timestamp
= time(NULL
);
1445 cache_entry
.acct_ctrl
= pdb_get_acct_ctrl(sampass
);
1446 cache_entry
.bad_password_count
= badcount
;
1447 cache_entry
.bad_password_time
= badtime
;
1449 DEBUG(7, ("Updating bad password count and time in login cache\n"));
1450 login_cache_write(sampass
, cache_entry
);
1457 /**********************************************************************
1458 End enumeration of the LDAP password list.
1459 *********************************************************************/
1461 static void ldapsam_endsampwent(struct pdb_methods
*my_methods
)
1463 struct ldapsam_privates
*ldap_state
= (struct ldapsam_privates
*)my_methods
->private_data
;
1464 if (ldap_state
->result
) {
1465 ldap_msgfree(ldap_state
->result
);
1466 ldap_state
->result
= NULL
;
1470 static void append_attr(TALLOC_CTX
*mem_ctx
, const char ***attr_list
,
1471 const char *new_attr
)
1475 if (new_attr
== NULL
) {
1479 for (i
=0; (*attr_list
)[i
] != NULL
; i
++) {
1483 (*attr_list
) = TALLOC_REALLOC_ARRAY(mem_ctx
, (*attr_list
),
1485 SMB_ASSERT((*attr_list
) != NULL
);
1486 (*attr_list
)[i
] = talloc_strdup((*attr_list
), new_attr
);
1487 (*attr_list
)[i
+1] = NULL
;
1490 /**********************************************************************
1491 Get struct samu entry from LDAP by username.
1492 *********************************************************************/
1494 static NTSTATUS
ldapsam_getsampwnam(struct pdb_methods
*my_methods
, struct samu
*user
, const char *sname
)
1496 NTSTATUS ret
= NT_STATUS_UNSUCCESSFUL
;
1497 struct ldapsam_privates
*ldap_state
= (struct ldapsam_privates
*)my_methods
->private_data
;
1498 LDAPMessage
*result
= NULL
;
1499 LDAPMessage
*entry
= NULL
;
1501 const char ** attr_list
;
1504 attr_list
= get_userattr_list( user
, ldap_state
->schema_ver
);
1505 append_attr(user
, &attr_list
,
1506 get_userattr_key2string(ldap_state
->schema_ver
,
1507 LDAP_ATTR_MOD_TIMESTAMP
));
1508 append_attr(user
, &attr_list
, "uidNumber");
1509 rc
= ldapsam_search_suffix_by_name(ldap_state
, sname
, &result
,
1511 TALLOC_FREE( attr_list
);
1513 if ( rc
!= LDAP_SUCCESS
)
1514 return NT_STATUS_NO_SUCH_USER
;
1516 count
= ldap_count_entries(ldap_state
->smbldap_state
->ldap_struct
, result
);
1519 DEBUG(4, ("ldapsam_getsampwnam: Unable to locate user [%s] count=%d\n", sname
, count
));
1520 ldap_msgfree(result
);
1521 return NT_STATUS_NO_SUCH_USER
;
1522 } else if (count
> 1) {
1523 DEBUG(1, ("ldapsam_getsampwnam: Duplicate entries for this user [%s] Failing. count=%d\n", sname
, count
));
1524 ldap_msgfree(result
);
1525 return NT_STATUS_NO_SUCH_USER
;
1528 entry
= ldap_first_entry(ldap_state
->smbldap_state
->ldap_struct
, result
);
1530 if (!init_sam_from_ldap(ldap_state
, user
, entry
)) {
1531 DEBUG(1,("ldapsam_getsampwnam: init_sam_from_ldap failed for user '%s'!\n", sname
));
1532 ldap_msgfree(result
);
1533 return NT_STATUS_NO_SUCH_USER
;
1535 pdb_set_backend_private_data(user
, result
, NULL
,
1536 my_methods
, PDB_CHANGED
);
1537 talloc_autofree_ldapmsg(user
, result
);
1540 ldap_msgfree(result
);
1545 static int ldapsam_get_ldap_user_by_sid(struct ldapsam_privates
*ldap_state
,
1546 const DOM_SID
*sid
, LDAPMessage
**result
)
1549 const char ** attr_list
;
1552 switch ( ldap_state
->schema_ver
) {
1553 case SCHEMAVER_SAMBASAMACCOUNT
: {
1554 TALLOC_CTX
*tmp_ctx
= talloc_new(NULL
);
1555 if (tmp_ctx
== NULL
) {
1556 return LDAP_NO_MEMORY
;
1559 attr_list
= get_userattr_list(tmp_ctx
,
1560 ldap_state
->schema_ver
);
1561 append_attr(tmp_ctx
, &attr_list
,
1562 get_userattr_key2string(
1563 ldap_state
->schema_ver
,
1564 LDAP_ATTR_MOD_TIMESTAMP
));
1565 append_attr(tmp_ctx
, &attr_list
, "uidNumber");
1566 rc
= ldapsam_search_suffix_by_sid(ldap_state
, sid
,
1568 TALLOC_FREE(tmp_ctx
);
1570 if ( rc
!= LDAP_SUCCESS
)
1575 case SCHEMAVER_SAMBAACCOUNT
:
1576 if (!sid_peek_check_rid(&ldap_state
->domain_sid
, sid
, &rid
)) {
1580 attr_list
= get_userattr_list(NULL
,
1581 ldap_state
->schema_ver
);
1582 rc
= ldapsam_search_suffix_by_rid(ldap_state
, rid
, result
, attr_list
);
1583 TALLOC_FREE( attr_list
);
1585 if ( rc
!= LDAP_SUCCESS
)
1592 /**********************************************************************
1593 Get struct samu entry from LDAP by SID.
1594 *********************************************************************/
1596 static NTSTATUS
ldapsam_getsampwsid(struct pdb_methods
*my_methods
, struct samu
* user
, const DOM_SID
*sid
)
1598 struct ldapsam_privates
*ldap_state
= (struct ldapsam_privates
*)my_methods
->private_data
;
1599 LDAPMessage
*result
= NULL
;
1600 LDAPMessage
*entry
= NULL
;
1604 rc
= ldapsam_get_ldap_user_by_sid(ldap_state
,
1606 if (rc
!= LDAP_SUCCESS
)
1607 return NT_STATUS_NO_SUCH_USER
;
1609 count
= ldap_count_entries(ldap_state
->smbldap_state
->ldap_struct
, result
);
1612 DEBUG(4, ("ldapsam_getsampwsid: Unable to locate SID [%s] "
1613 "count=%d\n", sid_string_dbg(sid
), count
));
1614 ldap_msgfree(result
);
1615 return NT_STATUS_NO_SUCH_USER
;
1616 } else if (count
> 1) {
1617 DEBUG(1, ("ldapsam_getsampwsid: More than one user with SID "
1618 "[%s]. Failing. count=%d\n", sid_string_dbg(sid
),
1620 ldap_msgfree(result
);
1621 return NT_STATUS_NO_SUCH_USER
;
1624 entry
= ldap_first_entry(ldap_state
->smbldap_state
->ldap_struct
, result
);
1626 ldap_msgfree(result
);
1627 return NT_STATUS_NO_SUCH_USER
;
1630 if (!init_sam_from_ldap(ldap_state
, user
, entry
)) {
1631 DEBUG(1,("ldapsam_getsampwsid: init_sam_from_ldap failed!\n"));
1632 ldap_msgfree(result
);
1633 return NT_STATUS_NO_SUCH_USER
;
1636 pdb_set_backend_private_data(user
, result
, NULL
,
1637 my_methods
, PDB_CHANGED
);
1638 talloc_autofree_ldapmsg(user
, result
);
1639 return NT_STATUS_OK
;
1642 /********************************************************************
1643 Do the actual modification - also change a plaintext passord if
1645 **********************************************************************/
1647 static NTSTATUS
ldapsam_modify_entry(struct pdb_methods
*my_methods
,
1648 struct samu
*newpwd
, char *dn
,
1649 LDAPMod
**mods
, int ldap_op
,
1650 bool (*need_update
)(const struct samu
*, enum pdb_elements
))
1652 struct ldapsam_privates
*ldap_state
= (struct ldapsam_privates
*)my_methods
->private_data
;
1655 if (!newpwd
|| !dn
) {
1656 return NT_STATUS_INVALID_PARAMETER
;
1660 DEBUG(5,("ldapsam_modify_entry: mods is empty: nothing to modify\n"));
1661 /* may be password change below however */
1665 if (ldap_state
->is_nds_ldap
) {
1666 smbldap_set_mod(&mods
, LDAP_MOD_ADD
,
1670 smbldap_set_mod(&mods
, LDAP_MOD_ADD
,
1674 rc
= smbldap_add(ldap_state
->smbldap_state
,
1677 case LDAP_MOD_REPLACE
:
1678 rc
= smbldap_modify(ldap_state
->smbldap_state
,
1682 DEBUG(0,("ldapsam_modify_entry: Wrong LDAP operation type: %d!\n",
1684 return NT_STATUS_INVALID_PARAMETER
;
1687 if (rc
!=LDAP_SUCCESS
) {
1688 return NT_STATUS_UNSUCCESSFUL
;
1692 if (!(pdb_get_acct_ctrl(newpwd
)&(ACB_WSTRUST
|ACB_SVRTRUST
|ACB_DOMTRUST
)) &&
1693 (lp_ldap_passwd_sync() != LDAP_PASSWD_SYNC_OFF
) &&
1694 need_update(newpwd
, PDB_PLAINTEXT_PW
) &&
1695 (pdb_get_plaintext_passwd(newpwd
)!=NULL
)) {
1698 char *retoid
= NULL
;
1699 struct berval
*retdata
= NULL
;
1700 char *utf8_password
;
1702 size_t converted_size
;
1705 if (!ldap_state
->is_nds_ldap
) {
1707 if (!smbldap_has_extension(ldap_state
->smbldap_state
->ldap_struct
,
1708 LDAP_EXOP_MODIFY_PASSWD
)) {
1709 DEBUG(2, ("ldap password change requested, but LDAP "
1710 "server does not support it -- ignoring\n"));
1711 return NT_STATUS_OK
;
1715 if (!push_utf8_allocate(&utf8_password
,
1716 pdb_get_plaintext_passwd(newpwd
),
1719 return NT_STATUS_NO_MEMORY
;
1722 if (!push_utf8_allocate(&utf8_dn
, dn
, &converted_size
)) {
1723 SAFE_FREE(utf8_password
);
1724 return NT_STATUS_NO_MEMORY
;
1727 if ((ber
= ber_alloc_t(LBER_USE_DER
))==NULL
) {
1728 DEBUG(0,("ber_alloc_t returns NULL\n"));
1729 SAFE_FREE(utf8_password
);
1731 return NT_STATUS_UNSUCCESSFUL
;
1734 if ((ber_printf (ber
, "{") < 0) ||
1735 (ber_printf (ber
, "ts", LDAP_TAG_EXOP_MODIFY_PASSWD_ID
,
1737 DEBUG(0,("ldapsam_modify_entry: ber_printf returns a "
1741 SAFE_FREE(utf8_password
);
1742 return NT_STATUS_UNSUCCESSFUL
;
1745 if ((utf8_password
!= NULL
) && (*utf8_password
!= '\0')) {
1746 ret
= ber_printf(ber
, "ts}",
1747 LDAP_TAG_EXOP_MODIFY_PASSWD_NEW
,
1750 ret
= ber_printf(ber
, "}");
1754 DEBUG(0,("ldapsam_modify_entry: ber_printf returns a "
1758 SAFE_FREE(utf8_password
);
1759 return NT_STATUS_UNSUCCESSFUL
;
1762 if ((rc
= ber_flatten (ber
, &bv
))<0) {
1763 DEBUG(0,("ldapsam_modify_entry: ber_flatten returns a value <0\n"));
1766 SAFE_FREE(utf8_password
);
1767 return NT_STATUS_UNSUCCESSFUL
;
1771 SAFE_FREE(utf8_password
);
1774 if (!ldap_state
->is_nds_ldap
) {
1775 rc
= smbldap_extended_operation(ldap_state
->smbldap_state
,
1776 LDAP_EXOP_MODIFY_PASSWD
,
1777 bv
, NULL
, NULL
, &retoid
,
1780 rc
= pdb_nds_set_password(ldap_state
->smbldap_state
, dn
,
1781 pdb_get_plaintext_passwd(newpwd
));
1783 if (rc
!= LDAP_SUCCESS
) {
1784 char *ld_error
= NULL
;
1786 if (rc
== LDAP_OBJECT_CLASS_VIOLATION
) {
1787 DEBUG(3, ("Could not set userPassword "
1788 "attribute due to an objectClass "
1789 "violation -- ignoring\n"));
1791 return NT_STATUS_OK
;
1794 ldap_get_option(ldap_state
->smbldap_state
->ldap_struct
, LDAP_OPT_ERROR_STRING
,
1796 DEBUG(0,("ldapsam_modify_entry: LDAP Password could not be changed for user %s: %s\n\t%s\n",
1797 pdb_get_username(newpwd
), ldap_err2string(rc
), ld_error
?ld_error
:"unknown"));
1798 SAFE_FREE(ld_error
);
1800 #if defined(LDAP_CONSTRAINT_VIOLATION)
1801 if (rc
== LDAP_CONSTRAINT_VIOLATION
)
1802 return NT_STATUS_PASSWORD_RESTRICTION
;
1804 return NT_STATUS_UNSUCCESSFUL
;
1806 DEBUG(3,("ldapsam_modify_entry: LDAP Password changed for user %s\n",pdb_get_username(newpwd
)));
1807 #ifdef DEBUG_PASSWORD
1808 DEBUG(100,("ldapsam_modify_entry: LDAP Password changed to %s\n",pdb_get_plaintext_passwd(newpwd
)));
1811 ber_bvfree(retdata
);
1813 ldap_memfree(retoid
);
1817 return NT_STATUS_OK
;
1820 /**********************************************************************
1821 Delete entry from LDAP for username.
1822 *********************************************************************/
1824 static NTSTATUS
ldapsam_delete_sam_account(struct pdb_methods
*my_methods
,
1825 struct samu
* sam_acct
)
1827 struct ldapsam_privates
*priv
=
1828 (struct ldapsam_privates
*)my_methods
->private_data
;
1831 LDAPMessage
*msg
, *entry
;
1832 NTSTATUS result
= NT_STATUS_NO_MEMORY
;
1833 const char **attr_list
;
1834 TALLOC_CTX
*mem_ctx
;
1837 DEBUG(0, ("ldapsam_delete_sam_account: sam_acct was NULL!\n"));
1838 return NT_STATUS_INVALID_PARAMETER
;
1841 sname
= pdb_get_username(sam_acct
);
1843 DEBUG(3, ("ldapsam_delete_sam_account: Deleting user %s from "
1846 mem_ctx
= talloc_new(NULL
);
1847 if (mem_ctx
== NULL
) {
1848 DEBUG(0, ("talloc_new failed\n"));
1852 attr_list
= get_userattr_delete_list(mem_ctx
, priv
->schema_ver
);
1853 if (attr_list
== NULL
) {
1857 rc
= ldapsam_search_suffix_by_name(priv
, sname
, &msg
, attr_list
);
1859 if ((rc
!= LDAP_SUCCESS
) ||
1860 (ldap_count_entries(priv2ld(priv
), msg
) != 1) ||
1861 ((entry
= ldap_first_entry(priv2ld(priv
), msg
)) == NULL
)) {
1862 DEBUG(5, ("Could not find user %s\n", sname
));
1863 result
= NT_STATUS_NO_SUCH_USER
;
1867 rc
= ldapsam_delete_entry(
1868 priv
, mem_ctx
, entry
,
1869 priv
->schema_ver
== SCHEMAVER_SAMBASAMACCOUNT
?
1870 LDAP_OBJ_SAMBASAMACCOUNT
: LDAP_OBJ_SAMBAACCOUNT
,
1873 result
= (rc
== LDAP_SUCCESS
) ?
1874 NT_STATUS_OK
: NT_STATUS_ACCESS_DENIED
;
1877 TALLOC_FREE(mem_ctx
);
1881 /**********************************************************************
1882 Helper function to determine for update_sam_account whether
1883 we need LDAP modification.
1884 *********************************************************************/
1886 static bool element_is_changed(const struct samu
*sampass
,
1887 enum pdb_elements element
)
1889 return IS_SAM_CHANGED(sampass
, element
);
1892 /**********************************************************************
1894 *********************************************************************/
1896 static NTSTATUS
ldapsam_update_sam_account(struct pdb_methods
*my_methods
, struct samu
* newpwd
)
1898 NTSTATUS ret
= NT_STATUS_UNSUCCESSFUL
;
1899 struct ldapsam_privates
*ldap_state
= (struct ldapsam_privates
*)my_methods
->private_data
;
1902 LDAPMessage
*result
= NULL
;
1903 LDAPMessage
*entry
= NULL
;
1904 LDAPMod
**mods
= NULL
;
1905 const char **attr_list
;
1907 result
= (LDAPMessage
*)pdb_get_backend_private_data(newpwd
, my_methods
);
1909 attr_list
= get_userattr_list(NULL
, ldap_state
->schema_ver
);
1910 if (pdb_get_username(newpwd
) == NULL
) {
1911 return NT_STATUS_INVALID_PARAMETER
;
1913 rc
= ldapsam_search_suffix_by_name(ldap_state
, pdb_get_username(newpwd
), &result
, attr_list
);
1914 TALLOC_FREE( attr_list
);
1915 if (rc
!= LDAP_SUCCESS
) {
1916 return NT_STATUS_UNSUCCESSFUL
;
1918 pdb_set_backend_private_data(newpwd
, result
, NULL
,
1919 my_methods
, PDB_CHANGED
);
1920 talloc_autofree_ldapmsg(newpwd
, result
);
1923 if (ldap_count_entries(ldap_state
->smbldap_state
->ldap_struct
, result
) == 0) {
1924 DEBUG(0, ("ldapsam_update_sam_account: No user to modify!\n"));
1925 return NT_STATUS_UNSUCCESSFUL
;
1928 entry
= ldap_first_entry(ldap_state
->smbldap_state
->ldap_struct
, result
);
1929 dn
= smbldap_get_dn(ldap_state
->smbldap_state
->ldap_struct
, entry
);
1931 return NT_STATUS_UNSUCCESSFUL
;
1934 DEBUG(4, ("ldapsam_update_sam_account: user %s to be modified has dn: %s\n", pdb_get_username(newpwd
), dn
));
1936 if (!init_ldap_from_sam(ldap_state
, entry
, &mods
, newpwd
,
1937 element_is_changed
)) {
1938 DEBUG(0, ("ldapsam_update_sam_account: init_ldap_from_sam failed!\n"));
1941 ldap_mods_free(mods
,True
);
1942 return NT_STATUS_UNSUCCESSFUL
;
1945 if ((lp_ldap_passwd_sync() != LDAP_PASSWD_SYNC_ONLY
)
1946 && (mods
== NULL
)) {
1947 DEBUG(4,("ldapsam_update_sam_account: mods is empty: nothing to update for user: %s\n",
1948 pdb_get_username(newpwd
)));
1950 return NT_STATUS_OK
;
1953 ret
= ldapsam_modify_entry(my_methods
,newpwd
,dn
,mods
,LDAP_MOD_REPLACE
, element_is_changed
);
1956 ldap_mods_free(mods
,True
);
1962 * We need to set the backend private data to NULL here. For example
1963 * setuserinfo level 25 does a pdb_update_sam_account twice on the
1964 * same one, and with the explicit delete / add logic for attribute
1965 * values the second time we would use the wrong "old" value which
1966 * does not exist in LDAP anymore. Thus the LDAP server would refuse
1968 * The existing LDAPMessage is still being auto-freed by the
1971 pdb_set_backend_private_data(newpwd
, NULL
, NULL
, my_methods
,
1974 if (!NT_STATUS_IS_OK(ret
)) {
1978 DEBUG(2, ("ldapsam_update_sam_account: successfully modified uid = %s in the LDAP database\n",
1979 pdb_get_username(newpwd
)));
1980 return NT_STATUS_OK
;
1983 /***************************************************************************
1984 Renames a struct samu
1985 - The "rename user script" has full responsibility for changing everything
1986 ***************************************************************************/
1988 static NTSTATUS
ldapsam_rename_sam_account(struct pdb_methods
*my_methods
,
1989 struct samu
*old_acct
,
1990 const char *newname
)
1992 const char *oldname
;
1994 char *rename_script
= NULL
;
1995 fstring oldname_lower
, newname_lower
;
1998 DEBUG(0, ("ldapsam_rename_sam_account: old_acct was NULL!\n"));
1999 return NT_STATUS_INVALID_PARAMETER
;
2002 DEBUG(0, ("ldapsam_rename_sam_account: newname was NULL!\n"));
2003 return NT_STATUS_INVALID_PARAMETER
;
2006 oldname
= pdb_get_username(old_acct
);
2008 /* rename the posix user */
2009 rename_script
= SMB_STRDUP(lp_renameuser_script());
2010 if (rename_script
== NULL
) {
2011 return NT_STATUS_NO_MEMORY
;
2014 if (!(*rename_script
)) {
2015 SAFE_FREE(rename_script
);
2016 return NT_STATUS_ACCESS_DENIED
;
2019 DEBUG (3, ("ldapsam_rename_sam_account: Renaming user %s to %s.\n",
2022 /* We have to allow the account name to end with a '$'.
2023 Also, follow the semantics in _samr_create_user() and lower case the
2024 posix name but preserve the case in passdb */
2026 fstrcpy( oldname_lower
, oldname
);
2027 strlower_m( oldname_lower
);
2028 fstrcpy( newname_lower
, newname
);
2029 strlower_m( newname_lower
);
2030 rename_script
= realloc_string_sub2(rename_script
,
2035 if (!rename_script
) {
2036 return NT_STATUS_NO_MEMORY
;
2038 rename_script
= realloc_string_sub2(rename_script
,
2043 rc
= smbrun(rename_script
, NULL
);
2045 DEBUG(rc
? 0 : 3,("Running the command `%s' gave %d\n",
2046 rename_script
, rc
));
2048 SAFE_FREE(rename_script
);
2051 smb_nscd_flush_user_cache();
2055 return NT_STATUS_UNSUCCESSFUL
;
2057 return NT_STATUS_OK
;
2060 /**********************************************************************
2061 Helper function to determine for update_sam_account whether
2062 we need LDAP modification.
2063 *********************************************************************/
2065 static bool element_is_set_or_changed(const struct samu
*sampass
,
2066 enum pdb_elements element
)
2068 return (IS_SAM_SET(sampass
, element
) ||
2069 IS_SAM_CHANGED(sampass
, element
));
2072 /**********************************************************************
2073 Add struct samu to LDAP.
2074 *********************************************************************/
2076 static NTSTATUS
ldapsam_add_sam_account(struct pdb_methods
*my_methods
, struct samu
* newpwd
)
2078 NTSTATUS ret
= NT_STATUS_UNSUCCESSFUL
;
2079 struct ldapsam_privates
*ldap_state
= (struct ldapsam_privates
*)my_methods
->private_data
;
2081 LDAPMessage
*result
= NULL
;
2082 LDAPMessage
*entry
= NULL
;
2083 LDAPMod
**mods
= NULL
;
2084 int ldap_op
= LDAP_MOD_REPLACE
;
2086 const char **attr_list
;
2087 char *escape_user
= NULL
;
2088 const char *username
= pdb_get_username(newpwd
);
2089 const DOM_SID
*sid
= pdb_get_user_sid(newpwd
);
2090 char *filter
= NULL
;
2092 NTSTATUS status
= NT_STATUS_UNSUCCESSFUL
;
2093 TALLOC_CTX
*ctx
= talloc_init("ldapsam_add_sam_account");
2096 return NT_STATUS_NO_MEMORY
;
2099 if (!username
|| !*username
) {
2100 DEBUG(0, ("ldapsam_add_sam_account: Cannot add user without a username!\n"));
2101 status
= NT_STATUS_INVALID_PARAMETER
;
2105 /* free this list after the second search or in case we exit on failure */
2106 attr_list
= get_userattr_list(ctx
, ldap_state
->schema_ver
);
2108 rc
= ldapsam_search_suffix_by_name (ldap_state
, username
, &result
, attr_list
);
2110 if (rc
!= LDAP_SUCCESS
) {
2114 if (ldap_count_entries(ldap_state
->smbldap_state
->ldap_struct
, result
) != 0) {
2115 DEBUG(0,("ldapsam_add_sam_account: User '%s' already in the base, with samba attributes\n",
2119 ldap_msgfree(result
);
2122 if (element_is_set_or_changed(newpwd
, PDB_USERSID
)) {
2123 rc
= ldapsam_get_ldap_user_by_sid(ldap_state
,
2125 if (rc
== LDAP_SUCCESS
) {
2126 if (ldap_count_entries(ldap_state
->smbldap_state
->ldap_struct
, result
) != 0) {
2127 DEBUG(0,("ldapsam_add_sam_account: SID '%s' "
2128 "already in the base, with samba "
2129 "attributes\n", sid_string_dbg(sid
)));
2132 ldap_msgfree(result
);
2137 /* does the entry already exist but without a samba attributes?
2138 we need to return the samba attributes here */
2140 escape_user
= escape_ldap_string_alloc( username
);
2141 filter
= talloc_strdup(attr_list
, "(uid=%u)");
2143 status
= NT_STATUS_NO_MEMORY
;
2146 filter
= talloc_all_string_sub(attr_list
, filter
, "%u", escape_user
);
2148 status
= NT_STATUS_NO_MEMORY
;
2151 SAFE_FREE(escape_user
);
2153 rc
= smbldap_search_suffix(ldap_state
->smbldap_state
,
2154 filter
, attr_list
, &result
);
2155 if ( rc
!= LDAP_SUCCESS
) {
2159 num_result
= ldap_count_entries(ldap_state
->smbldap_state
->ldap_struct
, result
);
2161 if (num_result
> 1) {
2162 DEBUG (0, ("ldapsam_add_sam_account: More than one user with that uid exists: bailing out!\n"));
2166 /* Check if we need to update an existing entry */
2167 if (num_result
== 1) {
2170 DEBUG(3,("ldapsam_add_sam_account: User exists without samba attributes: adding them\n"));
2171 ldap_op
= LDAP_MOD_REPLACE
;
2172 entry
= ldap_first_entry (ldap_state
->smbldap_state
->ldap_struct
, result
);
2173 tmp
= smbldap_get_dn(ldap_state
->smbldap_state
->ldap_struct
, entry
);
2177 dn
= talloc_asprintf(ctx
, "%s", tmp
);
2180 status
= NT_STATUS_NO_MEMORY
;
2184 } else if (ldap_state
->schema_ver
== SCHEMAVER_SAMBASAMACCOUNT
) {
2186 /* There might be a SID for this account already - say an idmap entry */
2188 filter
= talloc_asprintf(ctx
,
2189 "(&(%s=%s)(|(objectClass=%s)(objectClass=%s)))",
2190 get_userattr_key2string(ldap_state
->schema_ver
,
2191 LDAP_ATTR_USER_SID
),
2192 sid_string_talloc(ctx
, sid
),
2193 LDAP_OBJ_IDMAP_ENTRY
,
2194 LDAP_OBJ_SID_ENTRY
);
2196 status
= NT_STATUS_NO_MEMORY
;
2200 /* free old result before doing a new search */
2201 if (result
!= NULL
) {
2202 ldap_msgfree(result
);
2205 rc
= smbldap_search_suffix(ldap_state
->smbldap_state
,
2206 filter
, attr_list
, &result
);
2208 if ( rc
!= LDAP_SUCCESS
) {
2212 num_result
= ldap_count_entries(ldap_state
->smbldap_state
->ldap_struct
, result
);
2214 if (num_result
> 1) {
2215 DEBUG (0, ("ldapsam_add_sam_account: More than one user with specified Sid exists: bailing out!\n"));
2219 /* Check if we need to update an existing entry */
2220 if (num_result
== 1) {
2223 DEBUG(3,("ldapsam_add_sam_account: User exists without samba attributes: adding them\n"));
2224 ldap_op
= LDAP_MOD_REPLACE
;
2225 entry
= ldap_first_entry (ldap_state
->smbldap_state
->ldap_struct
, result
);
2226 tmp
= smbldap_get_dn (ldap_state
->smbldap_state
->ldap_struct
, entry
);
2230 dn
= talloc_asprintf(ctx
, "%s", tmp
);
2233 status
= NT_STATUS_NO_MEMORY
;
2239 if (num_result
== 0) {
2240 char *escape_username
;
2241 /* Check if we need to add an entry */
2242 DEBUG(3,("ldapsam_add_sam_account: Adding new user\n"));
2243 ldap_op
= LDAP_MOD_ADD
;
2245 escape_username
= escape_rdn_val_string_alloc(username
);
2246 if (!escape_username
) {
2247 status
= NT_STATUS_NO_MEMORY
;
2251 if (username
[strlen(username
)-1] == '$') {
2252 dn
= talloc_asprintf(ctx
,
2255 lp_ldap_machine_suffix());
2257 dn
= talloc_asprintf(ctx
,
2260 lp_ldap_user_suffix());
2263 SAFE_FREE(escape_username
);
2265 status
= NT_STATUS_NO_MEMORY
;
2270 if (!init_ldap_from_sam(ldap_state
, entry
, &mods
, newpwd
,
2271 element_is_set_or_changed
)) {
2272 DEBUG(0, ("ldapsam_add_sam_account: init_ldap_from_sam failed!\n"));
2274 ldap_mods_free(mods
, true);
2280 DEBUG(0,("ldapsam_add_sam_account: mods is empty: nothing to add for user: %s\n",pdb_get_username(newpwd
)));
2283 switch ( ldap_state
->schema_ver
) {
2284 case SCHEMAVER_SAMBAACCOUNT
:
2285 smbldap_set_mod(&mods
, LDAP_MOD_ADD
, "objectclass", LDAP_OBJ_SAMBAACCOUNT
);
2287 case SCHEMAVER_SAMBASAMACCOUNT
:
2288 smbldap_set_mod(&mods
, LDAP_MOD_ADD
, "objectclass", LDAP_OBJ_SAMBASAMACCOUNT
);
2291 DEBUG(0,("ldapsam_add_sam_account: invalid schema version specified\n"));
2295 ret
= ldapsam_modify_entry(my_methods
,newpwd
,dn
,mods
,ldap_op
, element_is_set_or_changed
);
2296 if (!NT_STATUS_IS_OK(ret
)) {
2297 DEBUG(0,("ldapsam_add_sam_account: failed to modify/add user with uid = %s (dn = %s)\n",
2298 pdb_get_username(newpwd
),dn
));
2299 ldap_mods_free(mods
, true);
2303 DEBUG(2,("ldapsam_add_sam_account: added: uid == %s in the LDAP database\n", pdb_get_username(newpwd
)));
2304 ldap_mods_free(mods
, true);
2306 status
= NT_STATUS_OK
;
2311 SAFE_FREE(escape_user
);
2313 ldap_msgfree(result
);
2318 /**********************************************************************
2319 *********************************************************************/
2321 static int ldapsam_search_one_group (struct ldapsam_privates
*ldap_state
,
2323 LDAPMessage
** result
)
2325 int scope
= LDAP_SCOPE_SUBTREE
;
2327 const char **attr_list
;
2329 attr_list
= get_attr_list(NULL
, groupmap_attr_list
);
2330 rc
= smbldap_search(ldap_state
->smbldap_state
,
2331 lp_ldap_group_suffix (), scope
,
2332 filter
, attr_list
, 0, result
);
2333 TALLOC_FREE(attr_list
);
2338 /**********************************************************************
2339 *********************************************************************/
2341 static bool init_group_from_ldap(struct ldapsam_privates
*ldap_state
,
2342 GROUP_MAP
*map
, LDAPMessage
*entry
)
2345 TALLOC_CTX
*ctx
= talloc_init("init_group_from_ldap");
2347 if (ldap_state
== NULL
|| map
== NULL
|| entry
== NULL
||
2348 ldap_state
->smbldap_state
->ldap_struct
== NULL
) {
2349 DEBUG(0, ("init_group_from_ldap: NULL parameters found!\n"));
2354 temp
= smbldap_talloc_single_attribute(
2355 ldap_state
->smbldap_state
->ldap_struct
,
2357 get_attr_key2string(groupmap_attr_list
,
2358 LDAP_ATTR_GIDNUMBER
),
2361 DEBUG(0, ("init_group_from_ldap: Mandatory attribute %s not found\n",
2362 get_attr_key2string( groupmap_attr_list
, LDAP_ATTR_GIDNUMBER
)));
2366 DEBUG(2, ("init_group_from_ldap: Entry found for group: %s\n", temp
));
2368 map
->gid
= (gid_t
)atol(temp
);
2371 temp
= smbldap_talloc_single_attribute(
2372 ldap_state
->smbldap_state
->ldap_struct
,
2374 get_attr_key2string(groupmap_attr_list
,
2375 LDAP_ATTR_GROUP_SID
),
2378 DEBUG(0, ("init_group_from_ldap: Mandatory attribute %s not found\n",
2379 get_attr_key2string( groupmap_attr_list
, LDAP_ATTR_GROUP_SID
)));
2384 if (!string_to_sid(&map
->sid
, temp
)) {
2385 DEBUG(1, ("SID string [%s] could not be read as a valid SID\n", temp
));
2391 temp
= smbldap_talloc_single_attribute(
2392 ldap_state
->smbldap_state
->ldap_struct
,
2394 get_attr_key2string(groupmap_attr_list
,
2395 LDAP_ATTR_GROUP_TYPE
),
2398 DEBUG(0, ("init_group_from_ldap: Mandatory attribute %s not found\n",
2399 get_attr_key2string( groupmap_attr_list
, LDAP_ATTR_GROUP_TYPE
)));
2403 map
->sid_name_use
= (enum lsa_SidType
)atol(temp
);
2405 if ((map
->sid_name_use
< SID_NAME_USER
) ||
2406 (map
->sid_name_use
> SID_NAME_UNKNOWN
)) {
2407 DEBUG(0, ("init_group_from_ldap: Unknown Group type: %d\n", map
->sid_name_use
));
2413 temp
= smbldap_talloc_single_attribute(
2414 ldap_state
->smbldap_state
->ldap_struct
,
2416 get_attr_key2string(groupmap_attr_list
,
2417 LDAP_ATTR_DISPLAY_NAME
),
2420 temp
= smbldap_talloc_single_attribute(
2421 ldap_state
->smbldap_state
->ldap_struct
,
2423 get_attr_key2string(groupmap_attr_list
,
2427 DEBUG(0, ("init_group_from_ldap: Attributes cn not found either \
2428 for gidNumber(%lu)\n",(unsigned long)map
->gid
));
2433 fstrcpy(map
->nt_name
, temp
);
2436 temp
= smbldap_talloc_single_attribute(
2437 ldap_state
->smbldap_state
->ldap_struct
,
2439 get_attr_key2string(groupmap_attr_list
,
2443 temp
= talloc_strdup(ctx
, "");
2449 fstrcpy(map
->comment
, temp
);
2451 if (lp_parm_bool(-1, "ldapsam", "trusted", false)) {
2452 store_gid_sid_cache(&map
->sid
, map
->gid
);
2459 /**********************************************************************
2460 *********************************************************************/
2462 static NTSTATUS
ldapsam_getgroup(struct pdb_methods
*methods
,
2466 struct ldapsam_privates
*ldap_state
=
2467 (struct ldapsam_privates
*)methods
->private_data
;
2468 LDAPMessage
*result
= NULL
;
2469 LDAPMessage
*entry
= NULL
;
2472 if (ldapsam_search_one_group(ldap_state
, filter
, &result
)
2474 return NT_STATUS_NO_SUCH_GROUP
;
2477 count
= ldap_count_entries(priv2ld(ldap_state
), result
);
2480 DEBUG(4, ("ldapsam_getgroup: Did not find group, filter was "
2482 ldap_msgfree(result
);
2483 return NT_STATUS_NO_SUCH_GROUP
;
2487 DEBUG(1, ("ldapsam_getgroup: Duplicate entries for filter %s: "
2488 "count=%d\n", filter
, count
));
2489 ldap_msgfree(result
);
2490 return NT_STATUS_NO_SUCH_GROUP
;
2493 entry
= ldap_first_entry(priv2ld(ldap_state
), result
);
2496 ldap_msgfree(result
);
2497 return NT_STATUS_UNSUCCESSFUL
;
2500 if (!init_group_from_ldap(ldap_state
, map
, entry
)) {
2501 DEBUG(1, ("ldapsam_getgroup: init_group_from_ldap failed for "
2502 "group filter %s\n", filter
));
2503 ldap_msgfree(result
);
2504 return NT_STATUS_NO_SUCH_GROUP
;
2507 ldap_msgfree(result
);
2508 return NT_STATUS_OK
;
2511 /**********************************************************************
2512 *********************************************************************/
2514 static NTSTATUS
ldapsam_getgrsid(struct pdb_methods
*methods
, GROUP_MAP
*map
,
2517 char *filter
= NULL
;
2521 if (asprintf(&filter
, "(&(objectClass=%s)(%s=%s))",
2523 get_attr_key2string(groupmap_attr_list
, LDAP_ATTR_GROUP_SID
),
2524 sid_to_fstring(tmp
, &sid
)) < 0) {
2525 return NT_STATUS_NO_MEMORY
;
2528 status
= ldapsam_getgroup(methods
, filter
, map
);
2533 /**********************************************************************
2534 *********************************************************************/
2536 static NTSTATUS
ldapsam_getgrgid(struct pdb_methods
*methods
, GROUP_MAP
*map
,
2539 char *filter
= NULL
;
2542 if (asprintf(&filter
, "(&(objectClass=%s)(%s=%lu))",
2544 get_attr_key2string(groupmap_attr_list
, LDAP_ATTR_GIDNUMBER
),
2545 (unsigned long)gid
) < 0) {
2546 return NT_STATUS_NO_MEMORY
;
2549 status
= ldapsam_getgroup(methods
, filter
, map
);
2554 /**********************************************************************
2555 *********************************************************************/
2557 static NTSTATUS
ldapsam_getgrnam(struct pdb_methods
*methods
, GROUP_MAP
*map
,
2560 char *filter
= NULL
;
2561 char *escape_name
= escape_ldap_string_alloc(name
);
2565 return NT_STATUS_NO_MEMORY
;
2568 if (asprintf(&filter
, "(&(objectClass=%s)(|(%s=%s)(%s=%s)))",
2570 get_attr_key2string(groupmap_attr_list
, LDAP_ATTR_DISPLAY_NAME
), escape_name
,
2571 get_attr_key2string(groupmap_attr_list
, LDAP_ATTR_CN
),
2573 SAFE_FREE(escape_name
);
2574 return NT_STATUS_NO_MEMORY
;
2577 SAFE_FREE(escape_name
);
2578 status
= ldapsam_getgroup(methods
, filter
, map
);
2583 static bool ldapsam_extract_rid_from_entry(LDAP
*ldap_struct
,
2585 const DOM_SID
*domain_sid
,
2591 if (!smbldap_get_single_attribute(ldap_struct
, entry
, "sambaSID",
2592 str
, sizeof(str
)-1)) {
2593 DEBUG(10, ("Could not find sambaSID attribute\n"));
2597 if (!string_to_sid(&sid
, str
)) {
2598 DEBUG(10, ("Could not convert string %s to sid\n", str
));
2602 if (sid_compare_domain(&sid
, domain_sid
) != 0) {
2603 DEBUG(10, ("SID %s is not in expected domain %s\n",
2604 str
, sid_string_dbg(domain_sid
)));
2608 if (!sid_peek_rid(&sid
, rid
)) {
2609 DEBUG(10, ("Could not peek into RID\n"));
2616 static NTSTATUS
ldapsam_enum_group_members(struct pdb_methods
*methods
,
2617 TALLOC_CTX
*mem_ctx
,
2618 const DOM_SID
*group
,
2619 uint32
**pp_member_rids
,
2620 size_t *p_num_members
)
2622 struct ldapsam_privates
*ldap_state
=
2623 (struct ldapsam_privates
*)methods
->private_data
;
2624 struct smbldap_state
*conn
= ldap_state
->smbldap_state
;
2625 const char *id_attrs
[] = { "memberUid", "gidNumber", NULL
};
2626 const char *sid_attrs
[] = { "sambaSID", NULL
};
2627 NTSTATUS ret
= NT_STATUS_UNSUCCESSFUL
;
2628 LDAPMessage
*result
= NULL
;
2631 char **values
= NULL
;
2636 *pp_member_rids
= NULL
;
2639 filter
= talloc_asprintf(mem_ctx
,
2640 "(&(objectClass=%s)"
2643 LDAP_OBJ_POSIXGROUP
,
2645 sid_string_talloc(mem_ctx
, group
));
2646 if (filter
== NULL
) {
2647 ret
= NT_STATUS_NO_MEMORY
;
2651 rc
= smbldap_search(conn
, lp_ldap_group_suffix(),
2652 LDAP_SCOPE_SUBTREE
, filter
, id_attrs
, 0,
2655 if (rc
!= LDAP_SUCCESS
)
2658 talloc_autofree_ldapmsg(mem_ctx
, result
);
2660 count
= ldap_count_entries(conn
->ldap_struct
, result
);
2663 DEBUG(1, ("Found more than one groupmap entry for %s\n",
2664 sid_string_dbg(group
)));
2665 ret
= NT_STATUS_INTERNAL_DB_CORRUPTION
;
2670 ret
= NT_STATUS_NO_SUCH_GROUP
;
2674 entry
= ldap_first_entry(conn
->ldap_struct
, result
);
2678 gidstr
= smbldap_talloc_single_attribute(priv2ld(ldap_state
), entry
, "gidNumber", mem_ctx
);
2680 DEBUG (0, ("ldapsam_enum_group_members: Unable to find the group's gid!\n"));
2681 ret
= NT_STATUS_INTERNAL_DB_CORRUPTION
;
2685 values
= ldap_get_values(conn
->ldap_struct
, entry
, "memberUid");
2689 filter
= talloc_asprintf(mem_ctx
, "(&(objectClass=%s)(|", LDAP_OBJ_SAMBASAMACCOUNT
);
2690 if (filter
== NULL
) {
2691 ret
= NT_STATUS_NO_MEMORY
;
2695 for (memberuid
= values
; *memberuid
!= NULL
; memberuid
+= 1) {
2696 char *escape_memberuid
;
2698 escape_memberuid
= escape_ldap_string_alloc(*memberuid
);
2699 if (escape_memberuid
== NULL
) {
2700 ret
= NT_STATUS_NO_MEMORY
;
2704 filter
= talloc_asprintf_append_buffer(filter
, "(uid=%s)", escape_memberuid
);
2705 if (filter
== NULL
) {
2706 SAFE_FREE(escape_memberuid
);
2707 ret
= NT_STATUS_NO_MEMORY
;
2711 SAFE_FREE(escape_memberuid
);
2714 filter
= talloc_asprintf_append_buffer(filter
, "))");
2715 if (filter
== NULL
) {
2716 ret
= NT_STATUS_NO_MEMORY
;
2720 rc
= smbldap_search(conn
, lp_ldap_suffix(),
2721 LDAP_SCOPE_SUBTREE
, filter
, sid_attrs
, 0,
2724 if (rc
!= LDAP_SUCCESS
)
2727 count
= ldap_count_entries(conn
->ldap_struct
, result
);
2728 DEBUG(10,("ldapsam_enum_group_members: found %d accounts\n", count
));
2730 talloc_autofree_ldapmsg(mem_ctx
, result
);
2732 for (entry
= ldap_first_entry(conn
->ldap_struct
, result
);
2734 entry
= ldap_next_entry(conn
->ldap_struct
, entry
))
2740 sidstr
= smbldap_talloc_single_attribute(conn
->ldap_struct
,
2744 DEBUG(0, ("Severe DB error, %s can't miss the sambaSID"
2745 "attribute\n", LDAP_OBJ_SAMBASAMACCOUNT
));
2746 ret
= NT_STATUS_INTERNAL_DB_CORRUPTION
;
2750 if (!string_to_sid(&sid
, sidstr
))
2753 if (!sid_check_is_in_our_domain(&sid
)) {
2754 DEBUG(0, ("Inconsistent SAM -- group member uid not "
2755 "in our domain\n"));
2756 ret
= NT_STATUS_INTERNAL_DB_CORRUPTION
;
2760 sid_peek_rid(&sid
, &rid
);
2762 if (!add_rid_to_array_unique(mem_ctx
, rid
, pp_member_rids
,
2764 ret
= NT_STATUS_NO_MEMORY
;
2770 filter
= talloc_asprintf(mem_ctx
,
2771 "(&(objectClass=%s)"
2773 LDAP_OBJ_SAMBASAMACCOUNT
,
2776 rc
= smbldap_search(conn
, lp_ldap_suffix(),
2777 LDAP_SCOPE_SUBTREE
, filter
, sid_attrs
, 0,
2780 if (rc
!= LDAP_SUCCESS
)
2783 talloc_autofree_ldapmsg(mem_ctx
, result
);
2785 for (entry
= ldap_first_entry(conn
->ldap_struct
, result
);
2787 entry
= ldap_next_entry(conn
->ldap_struct
, entry
))
2791 if (!ldapsam_extract_rid_from_entry(conn
->ldap_struct
,
2793 get_global_sam_sid(),
2795 DEBUG(0, ("Severe DB error, %s can't miss the samba SID" "attribute\n", LDAP_OBJ_SAMBASAMACCOUNT
));
2796 ret
= NT_STATUS_INTERNAL_DB_CORRUPTION
;
2800 if (!add_rid_to_array_unique(mem_ctx
, rid
, pp_member_rids
,
2802 ret
= NT_STATUS_NO_MEMORY
;
2812 ldap_value_free(values
);
2817 static NTSTATUS
ldapsam_enum_group_memberships(struct pdb_methods
*methods
,
2818 TALLOC_CTX
*mem_ctx
,
2822 size_t *p_num_groups
)
2824 struct ldapsam_privates
*ldap_state
=
2825 (struct ldapsam_privates
*)methods
->private_data
;
2826 struct smbldap_state
*conn
= ldap_state
->smbldap_state
;
2828 const char *attrs
[] = { "gidNumber", "sambaSID", NULL
};
2831 LDAPMessage
*result
= NULL
;
2833 NTSTATUS ret
= NT_STATUS_UNSUCCESSFUL
;
2834 size_t num_sids
, num_gids
;
2836 gid_t primary_gid
= -1;
2841 if (pdb_get_username(user
) == NULL
) {
2842 return NT_STATUS_INVALID_PARAMETER
;
2845 escape_name
= escape_ldap_string_alloc(pdb_get_username(user
));
2846 if (escape_name
== NULL
)
2847 return NT_STATUS_NO_MEMORY
;
2849 /* retrieve the users primary gid */
2850 filter
= talloc_asprintf(mem_ctx
,
2851 "(&(objectClass=%s)(uid=%s))",
2852 LDAP_OBJ_SAMBASAMACCOUNT
,
2854 if (filter
== NULL
) {
2855 ret
= NT_STATUS_NO_MEMORY
;
2859 rc
= smbldap_search(conn
, lp_ldap_suffix(),
2860 LDAP_SCOPE_SUBTREE
, filter
, attrs
, 0, &result
);
2862 if (rc
!= LDAP_SUCCESS
)
2865 talloc_autofree_ldapmsg(mem_ctx
, result
);
2867 count
= ldap_count_entries(priv2ld(ldap_state
), result
);
2871 DEBUG(1, ("User account [%s] not found!\n", pdb_get_username(user
)));
2872 ret
= NT_STATUS_NO_SUCH_USER
;
2875 entry
= ldap_first_entry(priv2ld(ldap_state
), result
);
2877 gidstr
= smbldap_talloc_single_attribute(priv2ld(ldap_state
), entry
, "gidNumber", mem_ctx
);
2879 DEBUG (1, ("Unable to find the member's gid!\n"));
2880 ret
= NT_STATUS_INTERNAL_DB_CORRUPTION
;
2883 primary_gid
= strtoul(gidstr
, NULL
, 10);
2886 DEBUG(1, ("found more than one account with the same user name ?!\n"));
2887 ret
= NT_STATUS_INTERNAL_DB_CORRUPTION
;
2891 filter
= talloc_asprintf(mem_ctx
,
2892 "(&(objectClass=%s)(|(memberUid=%s)(gidNumber=%d)))",
2893 LDAP_OBJ_POSIXGROUP
, escape_name
, primary_gid
);
2894 if (filter
== NULL
) {
2895 ret
= NT_STATUS_NO_MEMORY
;
2899 rc
= smbldap_search(conn
, lp_ldap_group_suffix(),
2900 LDAP_SCOPE_SUBTREE
, filter
, attrs
, 0, &result
);
2902 if (rc
!= LDAP_SUCCESS
)
2905 talloc_autofree_ldapmsg(mem_ctx
, result
);
2913 /* We need to add the primary group as the first gid/sid */
2915 if (!add_gid_to_array_unique(mem_ctx
, primary_gid
, pp_gids
, &num_gids
)) {
2916 ret
= NT_STATUS_NO_MEMORY
;
2920 /* This sid will be replaced later */
2922 ret
= add_sid_to_array_unique(mem_ctx
, &global_sid_NULL
, pp_sids
,
2924 if (!NT_STATUS_IS_OK(ret
)) {
2928 for (entry
= ldap_first_entry(conn
->ldap_struct
, result
);
2930 entry
= ldap_next_entry(conn
->ldap_struct
, entry
))
2937 if (!smbldap_get_single_attribute(conn
->ldap_struct
,
2939 str
, sizeof(str
)-1))
2942 if (!string_to_sid(&sid
, str
))
2945 if (!smbldap_get_single_attribute(conn
->ldap_struct
,
2947 str
, sizeof(str
)-1))
2950 gid
= strtoul(str
, &end
, 10);
2952 if (PTR_DIFF(end
, str
) != strlen(str
))
2955 if (gid
== primary_gid
) {
2956 sid_copy(&(*pp_sids
)[0], &sid
);
2958 if (!add_gid_to_array_unique(mem_ctx
, gid
, pp_gids
,
2960 ret
= NT_STATUS_NO_MEMORY
;
2963 ret
= add_sid_to_array_unique(mem_ctx
, &sid
, pp_sids
,
2965 if (!NT_STATUS_IS_OK(ret
)) {
2971 if (sid_compare(&global_sid_NULL
, &(*pp_sids
)[0]) == 0) {
2972 DEBUG(3, ("primary group of [%s] not found\n",
2973 pdb_get_username(user
)));
2977 *p_num_groups
= num_sids
;
2983 SAFE_FREE(escape_name
);
2987 /**********************************************************************
2988 * Augment a posixGroup object with a sambaGroupMapping domgroup
2989 *********************************************************************/
2991 static NTSTATUS
ldapsam_map_posixgroup(TALLOC_CTX
*mem_ctx
,
2992 struct ldapsam_privates
*ldap_state
,
2995 const char *filter
, *dn
;
2996 LDAPMessage
*msg
, *entry
;
3000 filter
= talloc_asprintf(mem_ctx
,
3001 "(&(objectClass=%s)(gidNumber=%u))",
3002 LDAP_OBJ_POSIXGROUP
, map
->gid
);
3003 if (filter
== NULL
) {
3004 return NT_STATUS_NO_MEMORY
;
3007 rc
= smbldap_search_suffix(ldap_state
->smbldap_state
, filter
,
3008 get_attr_list(mem_ctx
, groupmap_attr_list
),
3010 talloc_autofree_ldapmsg(mem_ctx
, msg
);
3012 if ((rc
!= LDAP_SUCCESS
) ||
3013 (ldap_count_entries(ldap_state
->smbldap_state
->ldap_struct
, msg
) != 1) ||
3014 ((entry
= ldap_first_entry(ldap_state
->smbldap_state
->ldap_struct
, msg
)) == NULL
)) {
3015 return NT_STATUS_NO_SUCH_GROUP
;
3018 dn
= smbldap_talloc_dn(mem_ctx
, ldap_state
->smbldap_state
->ldap_struct
, entry
);
3020 return NT_STATUS_NO_MEMORY
;
3024 smbldap_set_mod(&mods
, LDAP_MOD_ADD
, "objectClass",
3026 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, entry
, &mods
, "sambaSid",
3027 sid_string_talloc(mem_ctx
, &map
->sid
));
3028 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, entry
, &mods
, "sambaGroupType",
3029 talloc_asprintf(mem_ctx
, "%d", map
->sid_name_use
));
3030 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, entry
, &mods
, "displayName",
3032 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, entry
, &mods
, "description",
3034 talloc_autofree_ldapmod(mem_ctx
, mods
);
3036 rc
= smbldap_modify(ldap_state
->smbldap_state
, dn
, mods
);
3037 if (rc
!= LDAP_SUCCESS
) {
3038 return NT_STATUS_ACCESS_DENIED
;
3041 return NT_STATUS_OK
;
3044 static NTSTATUS
ldapsam_add_group_mapping_entry(struct pdb_methods
*methods
,
3047 struct ldapsam_privates
*ldap_state
=
3048 (struct ldapsam_privates
*)methods
->private_data
;
3049 LDAPMessage
*msg
= NULL
;
3050 LDAPMod
**mods
= NULL
;
3051 const char *attrs
[] = { NULL
};
3055 TALLOC_CTX
*mem_ctx
;
3062 mem_ctx
= talloc_new(NULL
);
3063 if (mem_ctx
== NULL
) {
3064 DEBUG(0, ("talloc_new failed\n"));
3065 return NT_STATUS_NO_MEMORY
;
3068 filter
= talloc_asprintf(mem_ctx
, "(sambaSid=%s)",
3069 sid_string_talloc(mem_ctx
, &map
->sid
));
3070 if (filter
== NULL
) {
3071 result
= NT_STATUS_NO_MEMORY
;
3075 rc
= smbldap_search(ldap_state
->smbldap_state
, lp_ldap_suffix(),
3076 LDAP_SCOPE_SUBTREE
, filter
, attrs
, True
, &msg
);
3077 talloc_autofree_ldapmsg(mem_ctx
, msg
);
3079 if ((rc
== LDAP_SUCCESS
) &&
3080 (ldap_count_entries(ldap_state
->smbldap_state
->ldap_struct
, msg
) > 0)) {
3082 DEBUG(3, ("SID %s already present in LDAP, refusing to add "
3083 "group mapping entry\n", sid_string_dbg(&map
->sid
)));
3084 result
= NT_STATUS_GROUP_EXISTS
;
3088 switch (map
->sid_name_use
) {
3090 case SID_NAME_DOM_GRP
:
3091 /* To map a domain group we need to have a posix group
3093 result
= ldapsam_map_posixgroup(mem_ctx
, ldap_state
, map
);
3097 case SID_NAME_ALIAS
:
3098 if (!sid_check_is_in_our_domain(&map
->sid
)
3099 && !sid_check_is_in_builtin(&map
->sid
) )
3101 DEBUG(3, ("Refusing to map sid %s as an alias, not in our domain\n",
3102 sid_string_dbg(&map
->sid
)));
3103 result
= NT_STATUS_INVALID_PARAMETER
;
3109 DEBUG(3, ("Got invalid use '%s' for mapping\n",
3110 sid_type_lookup(map
->sid_name_use
)));
3111 result
= NT_STATUS_INVALID_PARAMETER
;
3115 /* Domain groups have been mapped in a separate routine, we have to
3116 * create an alias now */
3118 if (map
->gid
== -1) {
3119 DEBUG(10, ("Refusing to map gid==-1\n"));
3120 result
= NT_STATUS_INVALID_PARAMETER
;
3124 if (pdb_gid_to_sid(map
->gid
, &sid
)) {
3125 DEBUG(3, ("Gid %d is already mapped to SID %s, refusing to "
3126 "add\n", map
->gid
, sid_string_dbg(&sid
)));
3127 result
= NT_STATUS_GROUP_EXISTS
;
3131 /* Ok, enough checks done. It's still racy to go ahead now, but that's
3132 * the best we can get out of LDAP. */
3134 dn
= talloc_asprintf(mem_ctx
, "sambaSid=%s,%s",
3135 sid_string_talloc(mem_ctx
, &map
->sid
),
3136 lp_ldap_group_suffix());
3138 result
= NT_STATUS_NO_MEMORY
;
3144 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, NULL
, &mods
, "objectClass",
3145 LDAP_OBJ_SID_ENTRY
);
3146 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, NULL
, &mods
, "objectClass",
3148 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, NULL
, &mods
, "sambaSid",
3149 sid_string_talloc(mem_ctx
, &map
->sid
));
3150 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, NULL
, &mods
, "sambaGroupType",
3151 talloc_asprintf(mem_ctx
, "%d", map
->sid_name_use
));
3152 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, NULL
, &mods
, "displayName",
3154 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, NULL
, &mods
, "description",
3156 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, NULL
, &mods
, "gidNumber",
3157 talloc_asprintf(mem_ctx
, "%u", map
->gid
));
3158 talloc_autofree_ldapmod(mem_ctx
, mods
);
3160 rc
= smbldap_add(ldap_state
->smbldap_state
, dn
, mods
);
3162 result
= (rc
== LDAP_SUCCESS
) ?
3163 NT_STATUS_OK
: NT_STATUS_ACCESS_DENIED
;
3166 TALLOC_FREE(mem_ctx
);
3170 /**********************************************************************
3171 * Update a group mapping entry. We're quite strict about what can be changed:
3172 * Only the description and displayname may be changed. It simply does not
3173 * make any sense to change the SID, gid or the type in a mapping.
3174 *********************************************************************/
3176 static NTSTATUS
ldapsam_update_group_mapping_entry(struct pdb_methods
*methods
,
3179 struct ldapsam_privates
*ldap_state
=
3180 (struct ldapsam_privates
*)methods
->private_data
;
3182 const char *filter
, *dn
;
3183 LDAPMessage
*msg
= NULL
;
3184 LDAPMessage
*entry
= NULL
;
3185 LDAPMod
**mods
= NULL
;
3186 TALLOC_CTX
*mem_ctx
;
3189 mem_ctx
= talloc_new(NULL
);
3190 if (mem_ctx
== NULL
) {
3191 DEBUG(0, ("talloc_new failed\n"));
3192 return NT_STATUS_NO_MEMORY
;
3195 /* Make 100% sure that sid, gid and type are not changed by looking up
3196 * exactly the values we're given in LDAP. */
3198 filter
= talloc_asprintf(mem_ctx
, "(&(objectClass=%s)"
3199 "(sambaSid=%s)(gidNumber=%u)"
3200 "(sambaGroupType=%d))",
3202 sid_string_talloc(mem_ctx
, &map
->sid
),
3203 map
->gid
, map
->sid_name_use
);
3204 if (filter
== NULL
) {
3205 result
= NT_STATUS_NO_MEMORY
;
3209 rc
= smbldap_search_suffix(ldap_state
->smbldap_state
, filter
,
3210 get_attr_list(mem_ctx
, groupmap_attr_list
),
3212 talloc_autofree_ldapmsg(mem_ctx
, msg
);
3214 if ((rc
!= LDAP_SUCCESS
) ||
3215 (ldap_count_entries(ldap_state
->smbldap_state
->ldap_struct
, msg
) != 1) ||
3216 ((entry
= ldap_first_entry(ldap_state
->smbldap_state
->ldap_struct
, msg
)) == NULL
)) {
3217 result
= NT_STATUS_NO_SUCH_GROUP
;
3221 dn
= smbldap_talloc_dn(mem_ctx
, ldap_state
->smbldap_state
->ldap_struct
, entry
);
3224 result
= NT_STATUS_NO_MEMORY
;
3229 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, entry
, &mods
, "displayName",
3231 smbldap_make_mod(ldap_state
->smbldap_state
->ldap_struct
, entry
, &mods
, "description",
3233 talloc_autofree_ldapmod(mem_ctx
, mods
);
3236 DEBUG(4, ("ldapsam_update_group_mapping_entry: mods is empty: "
3237 "nothing to do\n"));
3238 result
= NT_STATUS_OK
;
3242 rc
= smbldap_modify(ldap_state
->smbldap_state
, dn
, mods
);
3244 if (rc
!= LDAP_SUCCESS
) {
3245 result
= NT_STATUS_ACCESS_DENIED
;
3249 DEBUG(2, ("ldapsam_update_group_mapping_entry: successfully modified "
3250 "group %lu in LDAP\n", (unsigned long)map
->gid
));
3252 result
= NT_STATUS_OK
;
3255 TALLOC_FREE(mem_ctx
);
3259 /**********************************************************************
3260 *********************************************************************/
3262 static NTSTATUS
ldapsam_delete_group_mapping_entry(struct pdb_methods
*methods
,
3265 struct ldapsam_privates
*priv
=
3266 (struct ldapsam_privates
*)methods
->private_data
;
3267 LDAPMessage
*msg
, *entry
;
3270 TALLOC_CTX
*mem_ctx
;
3273 mem_ctx
= talloc_new(NULL
);
3274 if (mem_ctx
== NULL
) {
3275 DEBUG(0, ("talloc_new failed\n"));
3276 return NT_STATUS_NO_MEMORY
;
3279 filter
= talloc_asprintf(mem_ctx
, "(&(objectClass=%s)(%s=%s))",
3280 LDAP_OBJ_GROUPMAP
, LDAP_ATTRIBUTE_SID
,
3281 sid_string_talloc(mem_ctx
, &sid
));
3282 if (filter
== NULL
) {
3283 result
= NT_STATUS_NO_MEMORY
;
3286 rc
= smbldap_search_suffix(priv
->smbldap_state
, filter
,
3287 get_attr_list(mem_ctx
, groupmap_attr_list
),
3289 talloc_autofree_ldapmsg(mem_ctx
, msg
);
3291 if ((rc
!= LDAP_SUCCESS
) ||
3292 (ldap_count_entries(priv2ld(priv
), msg
) != 1) ||
3293 ((entry
= ldap_first_entry(priv2ld(priv
), msg
)) == NULL
)) {
3294 result
= NT_STATUS_NO_SUCH_GROUP
;
3298 rc
= ldapsam_delete_entry(priv
, mem_ctx
, entry
, LDAP_OBJ_GROUPMAP
,
3299 get_attr_list(mem_ctx
,
3300 groupmap_attr_list_to_delete
));
3302 if ((rc
== LDAP_NAMING_VIOLATION
) ||
3303 (rc
== LDAP_NOT_ALLOWED_ON_RDN
) ||
3304 (rc
== LDAP_OBJECT_CLASS_VIOLATION
)) {
3305 const char *attrs
[] = { "sambaGroupType", "description",
3306 "displayName", "sambaSIDList",
3309 /* Second try. Don't delete the sambaSID attribute, this is
3310 for "old" entries that are tacked on a winbind
3313 rc
= ldapsam_delete_entry(priv
, mem_ctx
, entry
,
3314 LDAP_OBJ_GROUPMAP
, attrs
);
3317 if ((rc
== LDAP_NAMING_VIOLATION
) ||
3318 (rc
== LDAP_NOT_ALLOWED_ON_RDN
) ||
3319 (rc
== LDAP_OBJECT_CLASS_VIOLATION
)) {
3320 const char *attrs
[] = { "sambaGroupType", "description",
3321 "displayName", "sambaSIDList",
3322 "gidNumber", NULL
};
3324 /* Third try. This is a post-3.0.21 alias (containing only
3325 * sambaSidEntry and sambaGroupMapping classes), we also have
3326 * to delete the gidNumber attribute, only the sambaSidEntry
3329 rc
= ldapsam_delete_entry(priv
, mem_ctx
, entry
,
3330 LDAP_OBJ_GROUPMAP
, attrs
);
3333 result
= (rc
== LDAP_SUCCESS
) ? NT_STATUS_OK
: NT_STATUS_UNSUCCESSFUL
;
3336 TALLOC_FREE(mem_ctx
);
3340 /**********************************************************************
3341 *********************************************************************/
3343 static NTSTATUS
ldapsam_setsamgrent(struct pdb_methods
*my_methods
,
3346 struct ldapsam_privates
*ldap_state
=
3347 (struct ldapsam_privates
*)my_methods
->private_data
;
3348 char *filter
= NULL
;
3350 const char **attr_list
;
3352 filter
= talloc_asprintf(NULL
, "(objectclass=%s)", LDAP_OBJ_GROUPMAP
);
3354 return NT_STATUS_NO_MEMORY
;
3356 attr_list
= get_attr_list( NULL
, groupmap_attr_list
);
3357 rc
= smbldap_search(ldap_state
->smbldap_state
, lp_ldap_group_suffix(),
3358 LDAP_SCOPE_SUBTREE
, filter
,
3359 attr_list
, 0, &ldap_state
->result
);
3360 TALLOC_FREE(attr_list
);
3362 if (rc
!= LDAP_SUCCESS
) {
3363 DEBUG(0, ("ldapsam_setsamgrent: LDAP search failed: %s\n",
3364 ldap_err2string(rc
)));
3365 DEBUG(3, ("ldapsam_setsamgrent: Query was: %s, %s\n",
3366 lp_ldap_group_suffix(), filter
));
3367 ldap_msgfree(ldap_state
->result
);
3368 ldap_state
->result
= NULL
;
3369 TALLOC_FREE(filter
);
3370 return NT_STATUS_UNSUCCESSFUL
;
3373 TALLOC_FREE(filter
);
3375 DEBUG(2, ("ldapsam_setsamgrent: %d entries in the base!\n",
3376 ldap_count_entries(ldap_state
->smbldap_state
->ldap_struct
,
3377 ldap_state
->result
)));
3380 ldap_first_entry(ldap_state
->smbldap_state
->ldap_struct
,
3381 ldap_state
->result
);
3382 ldap_state
->index
= 0;
3384 return NT_STATUS_OK
;
3387 /**********************************************************************
3388 *********************************************************************/
3390 static void ldapsam_endsamgrent(struct pdb_methods
*my_methods
)
3392 ldapsam_endsampwent(my_methods
);
3395 /**********************************************************************
3396 *********************************************************************/
3398 static NTSTATUS
ldapsam_getsamgrent(struct pdb_methods
*my_methods
,
3401 NTSTATUS ret
= NT_STATUS_UNSUCCESSFUL
;
3402 struct ldapsam_privates
*ldap_state
=
3403 (struct ldapsam_privates
*)my_methods
->private_data
;
3407 if (!ldap_state
->entry
)
3410 ldap_state
->index
++;
3411 bret
= init_group_from_ldap(ldap_state
, map
,
3415 ldap_next_entry(ldap_state
->smbldap_state
->ldap_struct
,
3419 return NT_STATUS_OK
;
3422 /**********************************************************************
3423 *********************************************************************/
3425 static NTSTATUS
ldapsam_enum_group_mapping(struct pdb_methods
*methods
,
3426 const DOM_SID
*domsid
, enum lsa_SidType sid_name_use
,
3427 GROUP_MAP
**pp_rmap
,
3428 size_t *p_num_entries
,
3437 if (!NT_STATUS_IS_OK(ldapsam_setsamgrent(methods
, False
))) {
3438 DEBUG(0, ("ldapsam_enum_group_mapping: Unable to open "
3440 return NT_STATUS_ACCESS_DENIED
;
3443 while (NT_STATUS_IS_OK(ldapsam_getsamgrent(methods
, &map
))) {
3444 if (sid_name_use
!= SID_NAME_UNKNOWN
&&
3445 sid_name_use
!= map
.sid_name_use
) {
3446 DEBUG(11,("ldapsam_enum_group_mapping: group %s is "
3447 "not of the requested type\n", map
.nt_name
));
3450 if (unix_only
==ENUM_ONLY_MAPPED
&& map
.gid
==-1) {
3451 DEBUG(11,("ldapsam_enum_group_mapping: group %s is "
3452 "non mapped\n", map
.nt_name
));
3456 (*pp_rmap
)=SMB_REALLOC_ARRAY((*pp_rmap
), GROUP_MAP
, entries
+1);
3458 DEBUG(0,("ldapsam_enum_group_mapping: Unable to "
3459 "enlarge group map!\n"));
3460 return NT_STATUS_UNSUCCESSFUL
;
3463 (*pp_rmap
)[entries
] = map
;
3468 ldapsam_endsamgrent(methods
);
3470 *p_num_entries
= entries
;
3472 return NT_STATUS_OK
;
3475 static NTSTATUS
ldapsam_modify_aliasmem(struct pdb_methods
*methods
,
3476 const DOM_SID
*alias
,
3477 const DOM_SID
*member
,
3480 struct ldapsam_privates
*ldap_state
=
3481 (struct ldapsam_privates
*)methods
->private_data
;
3483 LDAPMessage
*result
= NULL
;
3484 LDAPMessage
*entry
= NULL
;
3486 LDAPMod
**mods
= NULL
;
3488 enum lsa_SidType type
= SID_NAME_USE_NONE
;
3491 char *filter
= NULL
;
3493 if (sid_check_is_in_builtin(alias
)) {
3494 type
= SID_NAME_ALIAS
;
3497 if (sid_check_is_in_our_domain(alias
)) {
3498 type
= SID_NAME_ALIAS
;
3501 if (type
== SID_NAME_USE_NONE
) {
3502 DEBUG(5, ("SID %s is neither in builtin nor in our domain!\n",
3503 sid_string_dbg(alias
)));
3504 return NT_STATUS_NO_SUCH_ALIAS
;
3507 if (asprintf(&filter
,
3508 "(&(objectClass=%s)(sambaSid=%s)(sambaGroupType=%d))",
3509 LDAP_OBJ_GROUPMAP
, sid_to_fstring(tmp
, alias
),
3511 return NT_STATUS_NO_MEMORY
;
3514 if (ldapsam_search_one_group(ldap_state
, filter
,
3515 &result
) != LDAP_SUCCESS
) {
3517 return NT_STATUS_NO_SUCH_ALIAS
;
3520 count
= ldap_count_entries(ldap_state
->smbldap_state
->ldap_struct
,
3524 DEBUG(4, ("ldapsam_modify_aliasmem: Did not find alias\n"));
3525 ldap_msgfree(result
);
3527 return NT_STATUS_NO_SUCH_ALIAS
;
3531 DEBUG(1, ("ldapsam_modify_aliasmem: Duplicate entries for "
3532 "filter %s: count=%d\n", filter
, count
));
3533 ldap_msgfree(result
);
3535 return NT_STATUS_NO_SUCH_ALIAS
;
3540 entry
= ldap_first_entry(ldap_state
->smbldap_state
->ldap_struct
,
3544 ldap_msgfree(result
);
3545 return NT_STATUS_UNSUCCESSFUL
;
3548 dn
= smbldap_get_dn(ldap_state
->smbldap_state
->ldap_struct
, entry
);
3550 ldap_msgfree(result
);
3551 return NT_STATUS_UNSUCCESSFUL
;
3554 smbldap_set_mod(&mods
, modop
,
3555 get_attr_key2string(groupmap_attr_list
,
3556 LDAP_ATTR_SID_LIST
),
3557 sid_to_fstring(tmp
, member
));
3559 rc
= smbldap_modify(ldap_state
->smbldap_state
, dn
, mods
);
3561 ldap_mods_free(mods
, True
);
3562 ldap_msgfree(result
);
3565 if (rc
== LDAP_TYPE_OR_VALUE_EXISTS
) {
3566 return NT_STATUS_MEMBER_IN_ALIAS
;
3569 if (rc
== LDAP_NO_SUCH_ATTRIBUTE
) {
3570 return NT_STATUS_MEMBER_NOT_IN_ALIAS
;
3573 if (rc
!= LDAP_SUCCESS
) {
3574 return NT_STATUS_UNSUCCESSFUL
;
3577 return NT_STATUS_OK
;
3580 static NTSTATUS
ldapsam_add_aliasmem(struct pdb_methods
*methods
,
3581 const DOM_SID
*alias
,
3582 const DOM_SID
*member
)
3584 return ldapsam_modify_aliasmem(methods
, alias
, member
, LDAP_MOD_ADD
);
3587 static NTSTATUS
ldapsam_del_aliasmem(struct pdb_methods
*methods
,
3588 const DOM_SID
*alias
,
3589 const DOM_SID
*member
)
3591 return ldapsam_modify_aliasmem(methods
, alias
, member
,
3595 static NTSTATUS
ldapsam_enum_aliasmem(struct pdb_methods
*methods
,
3596 const DOM_SID
*alias
,
3597 DOM_SID
**pp_members
,
3598 size_t *p_num_members
)
3600 struct ldapsam_privates
*ldap_state
=
3601 (struct ldapsam_privates
*)methods
->private_data
;
3602 LDAPMessage
*result
= NULL
;
3603 LDAPMessage
*entry
= NULL
;
3605 char **values
= NULL
;
3607 char *filter
= NULL
;
3608 size_t num_members
= 0;
3609 enum lsa_SidType type
= SID_NAME_USE_NONE
;
3615 if (sid_check_is_in_builtin(alias
)) {
3616 type
= SID_NAME_ALIAS
;
3619 if (sid_check_is_in_our_domain(alias
)) {
3620 type
= SID_NAME_ALIAS
;
3623 if (type
== SID_NAME_USE_NONE
) {
3624 DEBUG(5, ("SID %s is neither in builtin nor in our domain!\n",
3625 sid_string_dbg(alias
)));
3626 return NT_STATUS_NO_SUCH_ALIAS
;
3629 if (asprintf(&filter
,
3630 "(&(objectClass=%s)(sambaSid=%s)(sambaGroupType=%d))",
3631 LDAP_OBJ_GROUPMAP
, sid_to_fstring(tmp
, alias
),
3633 return NT_STATUS_NO_MEMORY
;
3636 if (ldapsam_search_one_group(ldap_state
, filter
,
3637 &result
) != LDAP_SUCCESS
) {
3639 return NT_STATUS_NO_SUCH_ALIAS
;
3642 count
= ldap_count_entries(ldap_state
->smbldap_state
->ldap_struct
,
3646 DEBUG(4, ("ldapsam_enum_aliasmem: Did not find alias\n"));
3647 ldap_msgfree(result
);
3649 return NT_STATUS_NO_SUCH_ALIAS
;
3653 DEBUG(1, ("ldapsam_enum_aliasmem: Duplicate entries for "
3654 "filter %s: count=%d\n", filter
, count
));
3655 ldap_msgfree(result
);
3657 return NT_STATUS_NO_SUCH_ALIAS
;
3662 entry
= ldap_first_entry(ldap_state
->smbldap_state
->ldap_struct
,
3666 ldap_msgfree(result
);
3667 return NT_STATUS_UNSUCCESSFUL
;
3670 values
= ldap_get_values(ldap_state
->smbldap_state
->ldap_struct
,
3672 get_attr_key2string(groupmap_attr_list
,
3673 LDAP_ATTR_SID_LIST
));
3675 if (values
== NULL
) {
3676 ldap_msgfree(result
);
3677 return NT_STATUS_OK
;
3680 count
= ldap_count_values(values
);
3682 for (i
=0; i
<count
; i
++) {
3686 if (!string_to_sid(&member
, values
[i
]))
3689 status
= add_sid_to_array(NULL
, &member
, pp_members
,
3691 if (!NT_STATUS_IS_OK(status
)) {
3692 ldap_value_free(values
);
3693 ldap_msgfree(result
);
3698 *p_num_members
= num_members
;
3699 ldap_value_free(values
);
3700 ldap_msgfree(result
);
3702 return NT_STATUS_OK
;
3705 static NTSTATUS
ldapsam_alias_memberships(struct pdb_methods
*methods
,
3706 TALLOC_CTX
*mem_ctx
,
3707 const DOM_SID
*domain_sid
,
3708 const DOM_SID
*members
,
3710 uint32
**pp_alias_rids
,
3711 size_t *p_num_alias_rids
)
3713 struct ldapsam_privates
*ldap_state
=
3714 (struct ldapsam_privates
*)methods
->private_data
;
3717 const char *attrs
[] = { LDAP_ATTRIBUTE_SID
, NULL
};
3719 LDAPMessage
*result
= NULL
;
3720 LDAPMessage
*entry
= NULL
;
3724 enum lsa_SidType type
= SID_NAME_USE_NONE
;
3726 if (sid_check_is_builtin(domain_sid
)) {
3727 type
= SID_NAME_ALIAS
;
3730 if (sid_check_is_domain(domain_sid
)) {
3731 type
= SID_NAME_ALIAS
;
3734 if (type
== SID_NAME_USE_NONE
) {
3735 DEBUG(5, ("SID %s is neither builtin nor domain!\n",
3736 sid_string_dbg(domain_sid
)));
3737 return NT_STATUS_UNSUCCESSFUL
;
3740 filter
= talloc_asprintf(mem_ctx
,
3741 "(&(|(objectclass=%s)(sambaGroupType=%d))(|",
3742 LDAP_OBJ_GROUPMAP
, type
);
3744 for (i
=0; i
<num_members
; i
++)
3745 filter
= talloc_asprintf(mem_ctx
, "%s(sambaSIDList=%s)",
3747 sid_string_talloc(mem_ctx
,
3750 filter
= talloc_asprintf(mem_ctx
, "%s))", filter
);
3752 if (filter
== NULL
) {
3753 return NT_STATUS_NO_MEMORY
;
3756 rc
= smbldap_search(ldap_state
->smbldap_state
, lp_ldap_group_suffix(),
3757 LDAP_SCOPE_SUBTREE
, filter
, attrs
, 0, &result
);
3759 if (rc
!= LDAP_SUCCESS
)
3760 return NT_STATUS_UNSUCCESSFUL
;
3762 ldap_struct
= ldap_state
->smbldap_state
->ldap_struct
;
3764 for (entry
= ldap_first_entry(ldap_struct
, result
);
3766 entry
= ldap_next_entry(ldap_struct
, entry
))
3772 if (!smbldap_get_single_attribute(ldap_struct
, entry
,
3778 if (!string_to_sid(&sid
, sid_str
))
3781 if (!sid_peek_check_rid(domain_sid
, &sid
, &rid
))
3784 if (!add_rid_to_array_unique(mem_ctx
, rid
, pp_alias_rids
,
3785 p_num_alias_rids
)) {
3786 ldap_msgfree(result
);
3787 return NT_STATUS_NO_MEMORY
;
3791 ldap_msgfree(result
);
3792 return NT_STATUS_OK
;
3795 static NTSTATUS
ldapsam_set_account_policy_in_ldap(struct pdb_methods
*methods
,
3799 NTSTATUS ntstatus
= NT_STATUS_UNSUCCESSFUL
;
3801 LDAPMod
**mods
= NULL
;
3802 fstring value_string
;
3803 const char *policy_attr
= NULL
;
3805 struct ldapsam_privates
*ldap_state
=
3806 (struct ldapsam_privates
*)methods
->private_data
;
3808 DEBUG(10,("ldapsam_set_account_policy_in_ldap\n"));
3810 if (!ldap_state
->domain_dn
) {
3811 return NT_STATUS_INVALID_PARAMETER
;
3814 policy_attr
= get_account_policy_attr(policy_index
);
3815 if (policy_attr
== NULL
) {
3816 DEBUG(0,("ldapsam_set_account_policy_in_ldap: invalid "
3821 slprintf(value_string
, sizeof(value_string
) - 1, "%i", value
);
3823 smbldap_set_mod(&mods
, LDAP_MOD_REPLACE
, policy_attr
, value_string
);
3825 rc
= smbldap_modify(ldap_state
->smbldap_state
, ldap_state
->domain_dn
,
3828 ldap_mods_free(mods
, True
);
3830 if (rc
!= LDAP_SUCCESS
) {
3834 if (!cache_account_policy_set(policy_index
, value
)) {
3835 DEBUG(0,("ldapsam_set_account_policy_in_ldap: failed to "
3836 "update local tdb cache\n"));
3840 return NT_STATUS_OK
;
3843 static NTSTATUS
ldapsam_set_account_policy(struct pdb_methods
*methods
,
3844 int policy_index
, uint32 value
)
3846 return ldapsam_set_account_policy_in_ldap(methods
, policy_index
,
3850 static NTSTATUS
ldapsam_get_account_policy_from_ldap(struct pdb_methods
*methods
,
3854 NTSTATUS ntstatus
= NT_STATUS_UNSUCCESSFUL
;
3855 LDAPMessage
*result
= NULL
;
3856 LDAPMessage
*entry
= NULL
;
3860 const char *policy_attr
= NULL
;
3862 struct ldapsam_privates
*ldap_state
=
3863 (struct ldapsam_privates
*)methods
->private_data
;
3865 const char *attrs
[2];
3867 DEBUG(10,("ldapsam_get_account_policy_from_ldap\n"));
3869 if (!ldap_state
->domain_dn
) {
3870 return NT_STATUS_INVALID_PARAMETER
;
3873 policy_attr
= get_account_policy_attr(policy_index
);
3875 DEBUG(0,("ldapsam_get_account_policy_from_ldap: invalid "
3876 "policy index: %d\n", policy_index
));
3880 attrs
[0] = policy_attr
;
3883 rc
= smbldap_search(ldap_state
->smbldap_state
, ldap_state
->domain_dn
,
3884 LDAP_SCOPE_BASE
, "(objectclass=*)", attrs
, 0,
3887 if (rc
!= LDAP_SUCCESS
) {
3891 count
= ldap_count_entries(priv2ld(ldap_state
), result
);
3896 entry
= ldap_first_entry(priv2ld(ldap_state
), result
);
3897 if (entry
== NULL
) {
3901 vals
= ldap_get_values(priv2ld(ldap_state
), entry
, policy_attr
);
3906 *value
= (uint32
)atol(vals
[0]);
3908 ntstatus
= NT_STATUS_OK
;
3912 ldap_value_free(vals
);
3913 ldap_msgfree(result
);
3918 /* wrapper around ldapsam_get_account_policy_from_ldap(), handles tdb as cache
3920 - if user hasn't decided to use account policies inside LDAP just reuse the
3923 - if there is a valid cache entry, return that
3924 - if there is an LDAP entry, update cache and return
3925 - otherwise set to default, update cache and return
3929 static NTSTATUS
ldapsam_get_account_policy(struct pdb_methods
*methods
,
3930 int policy_index
, uint32
*value
)
3932 NTSTATUS ntstatus
= NT_STATUS_UNSUCCESSFUL
;
3934 if (cache_account_policy_get(policy_index
, value
)) {
3935 DEBUG(11,("ldapsam_get_account_policy: got valid value from "
3937 return NT_STATUS_OK
;
3940 ntstatus
= ldapsam_get_account_policy_from_ldap(methods
, policy_index
,
3942 if (NT_STATUS_IS_OK(ntstatus
)) {
3946 DEBUG(10,("ldapsam_get_account_policy: failed to retrieve from "
3950 /* should we automagically migrate old tdb value here ? */
3951 if (account_policy_get(policy_index
, value
))
3954 DEBUG(10,("ldapsam_get_account_policy: no tdb for %d, trying "
3955 "default\n", policy_index
));
3958 if (!account_policy_get_default(policy_index
, value
)) {
3964 ntstatus
= ldapsam_set_account_policy(methods
, policy_index
, *value
);
3965 if (!NT_STATUS_IS_OK(ntstatus
)) {
3971 if (!cache_account_policy_set(policy_index
, *value
)) {
3972 DEBUG(0,("ldapsam_get_account_policy: failed to update local "
3973 "tdb as a cache\n"));
3974 return NT_STATUS_UNSUCCESSFUL
;
3977 return NT_STATUS_OK
;
3980 static NTSTATUS
ldapsam_lookup_rids(struct pdb_methods
*methods
,
3981 const DOM_SID
*domain_sid
,
3985 enum lsa_SidType
*attrs
)
3987 struct ldapsam_privates
*ldap_state
=
3988 (struct ldapsam_privates
*)methods
->private_data
;
3989 LDAPMessage
*msg
= NULL
;
3991 char *allsids
= NULL
;
3992 int i
, rc
, num_mapped
;
3993 NTSTATUS result
= NT_STATUS_NO_MEMORY
;
3994 TALLOC_CTX
*mem_ctx
;
3998 mem_ctx
= talloc_new(NULL
);
3999 if (mem_ctx
== NULL
) {
4000 DEBUG(0, ("talloc_new failed\n"));
4004 if (!sid_check_is_builtin(domain_sid
) &&
4005 !sid_check_is_domain(domain_sid
)) {
4006 result
= NT_STATUS_INVALID_PARAMETER
;
4010 for (i
=0; i
<num_rids
; i
++)
4011 attrs
[i
] = SID_NAME_UNKNOWN
;
4013 allsids
= talloc_strdup(mem_ctx
, "");
4014 if (allsids
== NULL
) {
4018 for (i
=0; i
<num_rids
; i
++) {
4020 sid_compose(&sid
, domain_sid
, rids
[i
]);
4021 allsids
= talloc_asprintf_append_buffer(
4022 allsids
, "(sambaSid=%s)",
4023 sid_string_talloc(mem_ctx
, &sid
));
4024 if (allsids
== NULL
) {
4029 /* First look for users */
4033 const char *ldap_attrs
[] = { "uid", "sambaSid", NULL
};
4035 filter
= talloc_asprintf(
4036 mem_ctx
, ("(&(objectClass=%s)(|%s))"),
4037 LDAP_OBJ_SAMBASAMACCOUNT
, allsids
);
4039 if (filter
== NULL
) {
4043 rc
= smbldap_search(ldap_state
->smbldap_state
,
4044 lp_ldap_user_suffix(),
4045 LDAP_SCOPE_SUBTREE
, filter
, ldap_attrs
, 0,
4047 talloc_autofree_ldapmsg(mem_ctx
, msg
);
4050 if (rc
!= LDAP_SUCCESS
)
4053 ld
= ldap_state
->smbldap_state
->ldap_struct
;
4056 for (entry
= ldap_first_entry(ld
, msg
);
4058 entry
= ldap_next_entry(ld
, entry
)) {
4063 if (!ldapsam_extract_rid_from_entry(ld
, entry
, domain_sid
,
4065 DEBUG(2, ("Could not find sid from ldap entry\n"));
4069 name
= smbldap_talloc_single_attribute(ld
, entry
, "uid",
4072 DEBUG(2, ("Could not retrieve uid attribute\n"));
4076 for (rid_index
= 0; rid_index
< num_rids
; rid_index
++) {
4077 if (rid
== rids
[rid_index
])
4081 if (rid_index
== num_rids
) {
4082 DEBUG(2, ("Got a RID not asked for: %d\n", rid
));
4086 attrs
[rid_index
] = SID_NAME_USER
;
4087 names
[rid_index
] = name
;
4091 if (num_mapped
== num_rids
) {
4092 /* No need to look for groups anymore -- we're done */
4093 result
= NT_STATUS_OK
;
4097 /* Same game for groups */
4101 const char *ldap_attrs
[] = { "cn", "displayName", "sambaSid",
4102 "sambaGroupType", NULL
};
4104 filter
= talloc_asprintf(
4105 mem_ctx
, "(&(objectClass=%s)(|%s))",
4106 LDAP_OBJ_GROUPMAP
, allsids
);
4107 if (filter
== NULL
) {
4111 rc
= smbldap_search(ldap_state
->smbldap_state
,
4112 lp_ldap_group_suffix(),
4113 LDAP_SCOPE_SUBTREE
, filter
, ldap_attrs
, 0,
4115 talloc_autofree_ldapmsg(mem_ctx
, msg
);
4118 if (rc
!= LDAP_SUCCESS
)
4121 /* ldap_struct might have changed due to a reconnect */
4123 ld
= ldap_state
->smbldap_state
->ldap_struct
;
4125 /* For consistency checks, we already checked we're only domain or builtin */
4127 is_builtin
= sid_check_is_builtin(domain_sid
);
4129 for (entry
= ldap_first_entry(ld
, msg
);
4131 entry
= ldap_next_entry(ld
, entry
))
4136 enum lsa_SidType type
;
4137 const char *dn
= smbldap_talloc_dn(mem_ctx
, ld
, entry
);
4139 attr
= smbldap_talloc_single_attribute(ld
, entry
, "sambaGroupType",
4142 DEBUG(2, ("Could not extract type from ldap entry %s\n",
4147 type
= (enum lsa_SidType
)atol(attr
);
4149 /* Consistency checks */
4150 if ((is_builtin
&& (type
!= SID_NAME_ALIAS
)) ||
4151 (!is_builtin
&& ((type
!= SID_NAME_ALIAS
) &&
4152 (type
!= SID_NAME_DOM_GRP
)))) {
4153 DEBUG(2, ("Rejecting invalid group mapping entry %s\n", dn
));
4156 if (!ldapsam_extract_rid_from_entry(ld
, entry
, domain_sid
,
4158 DEBUG(2, ("Could not find sid from ldap entry %s\n", dn
));
4162 attr
= smbldap_talloc_single_attribute(ld
, entry
, "displayName", names
);
4165 DEBUG(10, ("Could not retrieve 'displayName' attribute from %s\n",
4167 attr
= smbldap_talloc_single_attribute(ld
, entry
, "cn", names
);
4171 DEBUG(2, ("Could not retrieve naming attribute from %s\n",
4176 for (rid_index
= 0; rid_index
< num_rids
; rid_index
++) {
4177 if (rid
== rids
[rid_index
])
4181 if (rid_index
== num_rids
) {
4182 DEBUG(2, ("Got a RID not asked for: %d\n", rid
));
4186 attrs
[rid_index
] = type
;
4187 names
[rid_index
] = attr
;
4191 result
= NT_STATUS_NONE_MAPPED
;
4194 result
= (num_mapped
== num_rids
) ?
4195 NT_STATUS_OK
: STATUS_SOME_UNMAPPED
;
4197 TALLOC_FREE(mem_ctx
);
4201 static char *get_ldap_filter(TALLOC_CTX
*mem_ctx
, const char *username
)
4203 char *filter
= NULL
;
4204 char *escaped
= NULL
;
4205 char *result
= NULL
;
4207 if (asprintf(&filter
, "(&%s(objectclass=%s))",
4208 "(uid=%u)", LDAP_OBJ_SAMBASAMACCOUNT
) < 0) {
4212 escaped
= escape_ldap_string_alloc(username
);
4213 if (escaped
== NULL
) goto done
;
4215 result
= talloc_string_sub(mem_ctx
, filter
, "%u", username
);
4224 const char **talloc_attrs(TALLOC_CTX
*mem_ctx
, ...)
4228 const char **result
;
4230 va_start(ap
, mem_ctx
);
4231 while (va_arg(ap
, const char *) != NULL
)
4235 if ((result
= TALLOC_ARRAY(mem_ctx
, const char *, num
+1)) == NULL
) {
4239 va_start(ap
, mem_ctx
);
4240 for (i
=0; i
<num
; i
++) {
4241 result
[i
] = talloc_strdup(result
, va_arg(ap
, const char*));
4242 if (result
[i
] == NULL
) {
4243 talloc_free(result
);
4254 struct ldap_search_state
{
4255 struct smbldap_state
*connection
;
4265 void *pagedresults_cookie
;
4267 LDAPMessage
*entries
, *current_entry
;
4268 bool (*ldap2displayentry
)(struct ldap_search_state
*state
,
4269 TALLOC_CTX
*mem_ctx
,
4270 LDAP
*ld
, LDAPMessage
*entry
,
4271 struct samr_displayentry
*result
);
4274 static bool ldapsam_search_firstpage(struct pdb_search
*search
)
4276 struct ldap_search_state
*state
=
4277 (struct ldap_search_state
*)search
->private_data
;
4279 int rc
= LDAP_OPERATIONS_ERROR
;
4281 state
->entries
= NULL
;
4283 if (state
->connection
->paged_results
) {
4284 rc
= smbldap_search_paged(state
->connection
, state
->base
,
4285 state
->scope
, state
->filter
,
4286 state
->attrs
, state
->attrsonly
,
4287 lp_ldap_page_size(), &state
->entries
,
4288 &state
->pagedresults_cookie
);
4291 if ((rc
!= LDAP_SUCCESS
) || (state
->entries
== NULL
)) {
4293 if (state
->entries
!= NULL
) {
4294 /* Left over from unsuccessful paged attempt */
4295 ldap_msgfree(state
->entries
);
4296 state
->entries
= NULL
;
4299 rc
= smbldap_search(state
->connection
, state
->base
,
4300 state
->scope
, state
->filter
, state
->attrs
,
4301 state
->attrsonly
, &state
->entries
);
4303 if ((rc
!= LDAP_SUCCESS
) || (state
->entries
== NULL
))
4306 /* Ok, the server was lying. It told us it could do paged
4307 * searches when it could not. */
4308 state
->connection
->paged_results
= False
;
4311 ld
= state
->connection
->ldap_struct
;
4313 DEBUG(5, ("Don't have an LDAP connection right after a "
4317 state
->current_entry
= ldap_first_entry(ld
, state
->entries
);
4319 if (state
->current_entry
== NULL
) {
4320 ldap_msgfree(state
->entries
);
4321 state
->entries
= NULL
;
4327 static bool ldapsam_search_nextpage(struct pdb_search
*search
)
4329 struct ldap_search_state
*state
=
4330 (struct ldap_search_state
*)search
->private_data
;
4333 if (!state
->connection
->paged_results
) {
4334 /* There is no next page when there are no paged results */
4338 rc
= smbldap_search_paged(state
->connection
, state
->base
,
4339 state
->scope
, state
->filter
, state
->attrs
,
4340 state
->attrsonly
, lp_ldap_page_size(),
4342 &state
->pagedresults_cookie
);
4344 if ((rc
!= LDAP_SUCCESS
) || (state
->entries
== NULL
))
4347 state
->current_entry
= ldap_first_entry(state
->connection
->ldap_struct
, state
->entries
);
4349 if (state
->current_entry
== NULL
) {
4350 ldap_msgfree(state
->entries
);
4351 state
->entries
= NULL
;
4357 static bool ldapsam_search_next_entry(struct pdb_search
*search
,
4358 struct samr_displayentry
*entry
)
4360 struct ldap_search_state
*state
=
4361 (struct ldap_search_state
*)search
->private_data
;
4365 if ((state
->entries
== NULL
) && (state
->pagedresults_cookie
== NULL
))
4368 if ((state
->entries
== NULL
) &&
4369 !ldapsam_search_nextpage(search
))
4372 result
= state
->ldap2displayentry(state
, search
->mem_ctx
, state
->connection
->ldap_struct
,
4373 state
->current_entry
, entry
);
4377 dn
= ldap_get_dn(state
->connection
->ldap_struct
, state
->current_entry
);
4378 DEBUG(5, ("Skipping entry %s\n", dn
!= NULL
? dn
: "<NULL>"));
4379 if (dn
!= NULL
) ldap_memfree(dn
);
4382 state
->current_entry
= ldap_next_entry(state
->connection
->ldap_struct
, state
->current_entry
);
4384 if (state
->current_entry
== NULL
) {
4385 ldap_msgfree(state
->entries
);
4386 state
->entries
= NULL
;
4389 if (!result
) goto retry
;
4394 static void ldapsam_search_end(struct pdb_search
*search
)
4396 struct ldap_search_state
*state
=
4397 (struct ldap_search_state
*)search
->private_data
;
4400 if (state
->pagedresults_cookie
== NULL
)
4403 if (state
->entries
!= NULL
)
4404 ldap_msgfree(state
->entries
);
4406 state
->entries
= NULL
;
4407 state
->current_entry
= NULL
;
4409 if (!state
->connection
->paged_results
)
4412 /* Tell the LDAP server we're not interested in the rest anymore. */
4414 rc
= smbldap_search_paged(state
->connection
, state
->base
, state
->scope
,
4415 state
->filter
, state
->attrs
,
4416 state
->attrsonly
, 0, &state
->entries
,
4417 &state
->pagedresults_cookie
);
4419 if (rc
!= LDAP_SUCCESS
)
4420 DEBUG(5, ("Could not end search properly\n"));
4425 static bool ldapuser2displayentry(struct ldap_search_state
*state
,
4426 TALLOC_CTX
*mem_ctx
,
4427 LDAP
*ld
, LDAPMessage
*entry
,
4428 struct samr_displayentry
*result
)
4431 size_t converted_size
;
4435 vals
= ldap_get_values(ld
, entry
, "sambaAcctFlags");
4436 if ((vals
== NULL
) || (vals
[0] == NULL
)) {
4437 DEBUG(5, ("\"sambaAcctFlags\" not found\n"));
4440 acct_flags
= pdb_decode_acct_ctrl(vals
[0]);
4441 ldap_value_free(vals
);
4443 if ((state
->acct_flags
!= 0) &&
4444 ((state
->acct_flags
& acct_flags
) == 0))
4447 result
->acct_flags
= acct_flags
;
4448 result
->account_name
= "";
4449 result
->fullname
= "";
4450 result
->description
= "";
4452 vals
= ldap_get_values(ld
, entry
, "uid");
4453 if ((vals
== NULL
) || (vals
[0] == NULL
)) {
4454 DEBUG(5, ("\"uid\" not found\n"));
4457 if (!pull_utf8_talloc(mem_ctx
,
4458 CONST_DISCARD(char **, &result
->account_name
),
4459 vals
[0], &converted_size
))
4461 DEBUG(0,("ldapuser2displayentry: pull_utf8_talloc failed: %s",
4465 ldap_value_free(vals
);
4467 vals
= ldap_get_values(ld
, entry
, "displayName");
4468 if ((vals
== NULL
) || (vals
[0] == NULL
))
4469 DEBUG(8, ("\"displayName\" not found\n"));
4470 else if (!pull_utf8_talloc(mem_ctx
,
4471 CONST_DISCARD(char **, &result
->fullname
),
4472 vals
[0], &converted_size
))
4474 DEBUG(0,("ldapuser2displayentry: pull_utf8_talloc failed: %s",
4478 ldap_value_free(vals
);
4480 vals
= ldap_get_values(ld
, entry
, "description");
4481 if ((vals
== NULL
) || (vals
[0] == NULL
))
4482 DEBUG(8, ("\"description\" not found\n"));
4483 else if (!pull_utf8_talloc(mem_ctx
,
4484 CONST_DISCARD(char **, &result
->description
),
4485 vals
[0], &converted_size
))
4487 DEBUG(0,("ldapuser2displayentry: pull_utf8_talloc failed: %s",
4491 ldap_value_free(vals
);
4493 if ((result
->account_name
== NULL
) ||
4494 (result
->fullname
== NULL
) ||
4495 (result
->description
== NULL
)) {
4496 DEBUG(0, ("talloc failed\n"));
4500 vals
= ldap_get_values(ld
, entry
, "sambaSid");
4501 if ((vals
== NULL
) || (vals
[0] == NULL
)) {
4502 DEBUG(0, ("\"objectSid\" not found\n"));
4506 if (!string_to_sid(&sid
, vals
[0])) {
4507 DEBUG(0, ("Could not convert %s to SID\n", vals
[0]));
4508 ldap_value_free(vals
);
4511 ldap_value_free(vals
);
4513 if (!sid_peek_check_rid(get_global_sam_sid(), &sid
, &result
->rid
)) {
4514 DEBUG(0, ("sid %s does not belong to our domain\n",
4515 sid_string_dbg(&sid
)));
4523 static bool ldapsam_search_users(struct pdb_methods
*methods
,
4524 struct pdb_search
*search
,
4527 struct ldapsam_privates
*ldap_state
=
4528 (struct ldapsam_privates
*)methods
->private_data
;
4529 struct ldap_search_state
*state
;
4531 state
= TALLOC_P(search
->mem_ctx
, struct ldap_search_state
);
4532 if (state
== NULL
) {
4533 DEBUG(0, ("talloc failed\n"));
4537 state
->connection
= ldap_state
->smbldap_state
;
4539 if ((acct_flags
!= 0) && ((acct_flags
& ACB_NORMAL
) != 0))
4540 state
->base
= lp_ldap_user_suffix();
4541 else if ((acct_flags
!= 0) &&
4542 ((acct_flags
& (ACB_WSTRUST
|ACB_SVRTRUST
|ACB_DOMTRUST
)) != 0))
4543 state
->base
= lp_ldap_machine_suffix();
4545 state
->base
= lp_ldap_suffix();
4547 state
->acct_flags
= acct_flags
;
4548 state
->base
= talloc_strdup(search
->mem_ctx
, state
->base
);
4549 state
->scope
= LDAP_SCOPE_SUBTREE
;
4550 state
->filter
= get_ldap_filter(search
->mem_ctx
, "*");
4551 state
->attrs
= talloc_attrs(search
->mem_ctx
, "uid", "sambaSid",
4552 "displayName", "description",
4553 "sambaAcctFlags", NULL
);
4554 state
->attrsonly
= 0;
4555 state
->pagedresults_cookie
= NULL
;
4556 state
->entries
= NULL
;
4557 state
->ldap2displayentry
= ldapuser2displayentry
;
4559 if ((state
->filter
== NULL
) || (state
->attrs
== NULL
)) {
4560 DEBUG(0, ("talloc failed\n"));
4564 search
->private_data
= state
;
4565 search
->next_entry
= ldapsam_search_next_entry
;
4566 search
->search_end
= ldapsam_search_end
;
4568 return ldapsam_search_firstpage(search
);
4571 static bool ldapgroup2displayentry(struct ldap_search_state
*state
,
4572 TALLOC_CTX
*mem_ctx
,
4573 LDAP
*ld
, LDAPMessage
*entry
,
4574 struct samr_displayentry
*result
)
4577 size_t converted_size
;
4581 result
->account_name
= "";
4582 result
->fullname
= "";
4583 result
->description
= "";
4586 vals
= ldap_get_values(ld
, entry
, "sambaGroupType");
4587 if ((vals
== NULL
) || (vals
[0] == NULL
)) {
4588 DEBUG(5, ("\"sambaGroupType\" not found\n"));
4590 ldap_value_free(vals
);
4595 group_type
= atoi(vals
[0]);
4597 if ((state
->group_type
!= 0) &&
4598 ((state
->group_type
!= group_type
))) {
4599 ldap_value_free(vals
);
4603 ldap_value_free(vals
);
4605 /* display name is the NT group name */
4607 vals
= ldap_get_values(ld
, entry
, "displayName");
4608 if ((vals
== NULL
) || (vals
[0] == NULL
)) {
4609 DEBUG(8, ("\"displayName\" not found\n"));
4611 /* fallback to the 'cn' attribute */
4612 vals
= ldap_get_values(ld
, entry
, "cn");
4613 if ((vals
== NULL
) || (vals
[0] == NULL
)) {
4614 DEBUG(5, ("\"cn\" not found\n"));
4617 if (!pull_utf8_talloc(mem_ctx
,
4618 CONST_DISCARD(char **,
4619 &result
->account_name
),
4620 vals
[0], &converted_size
))
4622 DEBUG(0,("ldapgroup2displayentry: pull_utf8_talloc "
4623 "failed: %s", strerror(errno
)));
4626 else if (!pull_utf8_talloc(mem_ctx
,
4627 CONST_DISCARD(char **,
4628 &result
->account_name
),
4629 vals
[0], &converted_size
))
4631 DEBUG(0,("ldapgroup2displayentry: pull_utf8_talloc failed: %s",
4635 ldap_value_free(vals
);
4637 vals
= ldap_get_values(ld
, entry
, "description");
4638 if ((vals
== NULL
) || (vals
[0] == NULL
))
4639 DEBUG(8, ("\"description\" not found\n"));
4640 else if (!pull_utf8_talloc(mem_ctx
,
4641 CONST_DISCARD(char **, &result
->description
),
4642 vals
[0], &converted_size
))
4644 DEBUG(0,("ldapgroup2displayentry: pull_utf8_talloc failed: %s",
4647 ldap_value_free(vals
);
4649 if ((result
->account_name
== NULL
) ||
4650 (result
->fullname
== NULL
) ||
4651 (result
->description
== NULL
)) {
4652 DEBUG(0, ("talloc failed\n"));
4656 vals
= ldap_get_values(ld
, entry
, "sambaSid");
4657 if ((vals
== NULL
) || (vals
[0] == NULL
)) {
4658 DEBUG(0, ("\"objectSid\" not found\n"));
4660 ldap_value_free(vals
);
4665 if (!string_to_sid(&sid
, vals
[0])) {
4666 DEBUG(0, ("Could not convert %s to SID\n", vals
[0]));
4670 ldap_value_free(vals
);
4672 switch (group_type
) {
4673 case SID_NAME_DOM_GRP
:
4674 case SID_NAME_ALIAS
:
4676 if (!sid_peek_check_rid(get_global_sam_sid(), &sid
, &result
->rid
)
4677 && !sid_peek_check_rid(&global_sid_Builtin
, &sid
, &result
->rid
))
4679 DEBUG(0, ("%s is not in our domain\n",
4680 sid_string_dbg(&sid
)));
4686 DEBUG(0,("unkown group type: %d\n", group_type
));
4690 result
->acct_flags
= 0;
4695 static bool ldapsam_search_grouptype(struct pdb_methods
*methods
,
4696 struct pdb_search
*search
,
4698 enum lsa_SidType type
)
4700 struct ldapsam_privates
*ldap_state
=
4701 (struct ldapsam_privates
*)methods
->private_data
;
4702 struct ldap_search_state
*state
;
4705 state
= TALLOC_P(search
->mem_ctx
, struct ldap_search_state
);
4706 if (state
== NULL
) {
4707 DEBUG(0, ("talloc failed\n"));
4711 state
->connection
= ldap_state
->smbldap_state
;
4713 state
->base
= talloc_strdup(search
->mem_ctx
, lp_ldap_group_suffix());
4714 state
->connection
= ldap_state
->smbldap_state
;
4715 state
->scope
= LDAP_SCOPE_SUBTREE
;
4716 state
->filter
= talloc_asprintf(search
->mem_ctx
,
4717 "(&(objectclass=%s)"
4718 "(sambaGroupType=%d)(sambaSID=%s*))",
4720 type
, sid_to_fstring(tmp
, sid
));
4721 state
->attrs
= talloc_attrs(search
->mem_ctx
, "cn", "sambaSid",
4722 "displayName", "description",
4723 "sambaGroupType", NULL
);
4724 state
->attrsonly
= 0;
4725 state
->pagedresults_cookie
= NULL
;
4726 state
->entries
= NULL
;
4727 state
->group_type
= type
;
4728 state
->ldap2displayentry
= ldapgroup2displayentry
;
4730 if ((state
->filter
== NULL
) || (state
->attrs
== NULL
)) {
4731 DEBUG(0, ("talloc failed\n"));
4735 search
->private_data
= state
;
4736 search
->next_entry
= ldapsam_search_next_entry
;
4737 search
->search_end
= ldapsam_search_end
;
4739 return ldapsam_search_firstpage(search
);
4742 static bool ldapsam_search_groups(struct pdb_methods
*methods
,
4743 struct pdb_search
*search
)
4745 return ldapsam_search_grouptype(methods
, search
, get_global_sam_sid(), SID_NAME_DOM_GRP
);
4748 static bool ldapsam_search_aliases(struct pdb_methods
*methods
,
4749 struct pdb_search
*search
,
4752 return ldapsam_search_grouptype(methods
, search
, sid
, SID_NAME_ALIAS
);
4755 static bool ldapsam_rid_algorithm(struct pdb_methods
*methods
)
4760 static NTSTATUS
ldapsam_get_new_rid(struct ldapsam_privates
*priv
,
4763 struct smbldap_state
*smbldap_state
= priv
->smbldap_state
;
4765 LDAPMessage
*result
= NULL
;
4766 LDAPMessage
*entry
= NULL
;
4767 LDAPMod
**mods
= NULL
;
4774 TALLOC_CTX
*mem_ctx
;
4776 mem_ctx
= talloc_new(NULL
);
4777 if (mem_ctx
== NULL
) {
4778 DEBUG(0, ("talloc_new failed\n"));
4779 return NT_STATUS_NO_MEMORY
;
4782 status
= smbldap_search_domain_info(smbldap_state
, &result
,
4783 get_global_sam_name(), False
);
4784 if (!NT_STATUS_IS_OK(status
)) {
4785 DEBUG(3, ("Could not get domain info: %s\n",
4786 nt_errstr(status
)));
4790 talloc_autofree_ldapmsg(mem_ctx
, result
);
4792 entry
= ldap_first_entry(priv2ld(priv
), result
);
4793 if (entry
== NULL
) {
4794 DEBUG(0, ("Could not get domain info entry\n"));
4795 status
= NT_STATUS_INTERNAL_DB_CORRUPTION
;
4799 /* Find the largest of the three attributes "sambaNextRid",
4800 "sambaNextGroupRid" and "sambaNextUserRid". I gave up on the
4801 concept of differentiating between user and group rids, and will
4802 use only "sambaNextRid" in the future. But for compatibility
4803 reasons I look if others have chosen different strategies -- VL */
4805 value
= smbldap_talloc_single_attribute(priv2ld(priv
), entry
,
4806 "sambaNextRid", mem_ctx
);
4807 if (value
!= NULL
) {
4808 uint32 tmp
= (uint32
)strtoul(value
, NULL
, 10);
4809 nextRid
= MAX(nextRid
, tmp
);
4812 value
= smbldap_talloc_single_attribute(priv2ld(priv
), entry
,
4813 "sambaNextUserRid", mem_ctx
);
4814 if (value
!= NULL
) {
4815 uint32 tmp
= (uint32
)strtoul(value
, NULL
, 10);
4816 nextRid
= MAX(nextRid
, tmp
);
4819 value
= smbldap_talloc_single_attribute(priv2ld(priv
), entry
,
4820 "sambaNextGroupRid", mem_ctx
);
4821 if (value
!= NULL
) {
4822 uint32 tmp
= (uint32
)strtoul(value
, NULL
, 10);
4823 nextRid
= MAX(nextRid
, tmp
);
4827 nextRid
= BASE_RID
-1;
4832 smbldap_make_mod(priv2ld(priv
), entry
, &mods
, "sambaNextRid",
4833 talloc_asprintf(mem_ctx
, "%d", nextRid
));
4834 talloc_autofree_ldapmod(mem_ctx
, mods
);
4836 if ((dn
= smbldap_talloc_dn(mem_ctx
, priv2ld(priv
), entry
)) == NULL
) {
4837 status
= NT_STATUS_NO_MEMORY
;
4841 rc
= smbldap_modify(smbldap_state
, dn
, mods
);
4843 /* ACCESS_DENIED is used as a placeholder for "the modify failed,
4846 status
= (rc
== LDAP_SUCCESS
) ? NT_STATUS_OK
: NT_STATUS_ACCESS_DENIED
;
4849 if (NT_STATUS_IS_OK(status
)) {
4853 TALLOC_FREE(mem_ctx
);
4857 static NTSTATUS
ldapsam_new_rid_internal(struct pdb_methods
*methods
, uint32
*rid
)
4861 for (i
=0; i
<10; i
++) {
4862 NTSTATUS result
= ldapsam_get_new_rid(
4863 (struct ldapsam_privates
*)methods
->private_data
, rid
);
4864 if (NT_STATUS_IS_OK(result
)) {
4868 if (!NT_STATUS_EQUAL(result
, NT_STATUS_ACCESS_DENIED
)) {
4872 /* The ldap update failed (maybe a race condition), retry */
4875 /* Tried 10 times, fail. */
4876 return NT_STATUS_ACCESS_DENIED
;
4879 static bool ldapsam_new_rid(struct pdb_methods
*methods
, uint32
*rid
)
4881 NTSTATUS result
= ldapsam_new_rid_internal(methods
, rid
);
4882 return NT_STATUS_IS_OK(result
) ? True
: False
;
4885 static bool ldapsam_sid_to_id(struct pdb_methods
*methods
,
4887 union unid_t
*id
, enum lsa_SidType
*type
)
4889 struct ldapsam_privates
*priv
=
4890 (struct ldapsam_privates
*)methods
->private_data
;
4892 const char *attrs
[] = { "sambaGroupType", "gidNumber", "uidNumber",
4894 LDAPMessage
*result
= NULL
;
4895 LDAPMessage
*entry
= NULL
;
4900 TALLOC_CTX
*mem_ctx
;
4902 mem_ctx
= talloc_new(NULL
);
4903 if (mem_ctx
== NULL
) {
4904 DEBUG(0, ("talloc_new failed\n"));
4908 filter
= talloc_asprintf(mem_ctx
,
4910 "(|(objectClass=%s)(objectClass=%s)))",
4911 sid_string_talloc(mem_ctx
, sid
),
4912 LDAP_OBJ_GROUPMAP
, LDAP_OBJ_SAMBASAMACCOUNT
);
4913 if (filter
== NULL
) {
4914 DEBUG(5, ("talloc_asprintf failed\n"));
4918 rc
= smbldap_search_suffix(priv
->smbldap_state
, filter
,
4920 if (rc
!= LDAP_SUCCESS
) {
4923 talloc_autofree_ldapmsg(mem_ctx
, result
);
4925 if (ldap_count_entries(priv2ld(priv
), result
) != 1) {
4926 DEBUG(10, ("Got %d entries, expected one\n",
4927 ldap_count_entries(priv2ld(priv
), result
)));
4931 entry
= ldap_first_entry(priv2ld(priv
), result
);
4933 value
= smbldap_talloc_single_attribute(priv2ld(priv
), entry
,
4934 "sambaGroupType", mem_ctx
);
4936 if (value
!= NULL
) {
4937 const char *gid_str
;
4940 gid_str
= smbldap_talloc_single_attribute(
4941 priv2ld(priv
), entry
, "gidNumber", mem_ctx
);
4942 if (gid_str
== NULL
) {
4943 DEBUG(1, ("%s has sambaGroupType but no gidNumber\n",
4944 smbldap_talloc_dn(mem_ctx
, priv2ld(priv
),
4949 id
->gid
= strtoul(gid_str
, NULL
, 10);
4950 *type
= (enum lsa_SidType
)strtoul(value
, NULL
, 10);
4955 /* It must be a user */
4957 value
= smbldap_talloc_single_attribute(priv2ld(priv
), entry
,
4958 "uidNumber", mem_ctx
);
4959 if (value
== NULL
) {
4960 DEBUG(1, ("Could not find uidNumber in %s\n",
4961 smbldap_talloc_dn(mem_ctx
, priv2ld(priv
), entry
)));
4965 id
->uid
= strtoul(value
, NULL
, 10);
4966 *type
= SID_NAME_USER
;
4970 TALLOC_FREE(mem_ctx
);
4975 * The following functions is called only if
4976 * ldapsam:trusted and ldapsam:editposix are
4981 * ldapsam_create_user creates a new
4982 * posixAccount and sambaSamAccount object
4983 * in the ldap users subtree
4985 * The uid is allocated by winbindd.
4988 static NTSTATUS
ldapsam_create_user(struct pdb_methods
*my_methods
,
4989 TALLOC_CTX
*tmp_ctx
, const char *name
,
4990 uint32 acb_info
, uint32
*rid
)
4992 struct ldapsam_privates
*ldap_state
= (struct ldapsam_privates
*)my_methods
->private_data
;
4993 LDAPMessage
*entry
= NULL
;
4994 LDAPMessage
*result
= NULL
;
4996 bool is_machine
= False
;
4997 bool add_posix
= False
;
4998 LDAPMod
**mods
= NULL
;
5006 const char *dn
= NULL
;
5014 if (((acb_info
& ACB_NORMAL
) && name
[strlen(name
)-1] == '$') ||
5015 acb_info
& ACB_WSTRUST
||
5016 acb_info
& ACB_SVRTRUST
||
5017 acb_info
& ACB_DOMTRUST
) {
5021 username
= escape_ldap_string_alloc(name
);
5022 filter
= talloc_asprintf(tmp_ctx
, "(&(uid=%s)(objectClass=%s))",
5023 username
, LDAP_OBJ_POSIXACCOUNT
);
5024 SAFE_FREE(username
);
5026 rc
= smbldap_search_suffix(ldap_state
->smbldap_state
, filter
, NULL
, &result
);
5027 if (rc
!= LDAP_SUCCESS
) {
5028 DEBUG(0,("ldapsam_create_user: ldap search failed!\n"));
5029 return NT_STATUS_ACCESS_DENIED
;
5031 talloc_autofree_ldapmsg(tmp_ctx
, result
);
5033 num_result
= ldap_count_entries(priv2ld(ldap_state
), result
);
5035 if (num_result
> 1) {
5036 DEBUG (0, ("ldapsam_create_user: More than one user with name [%s] ?!\n", name
));
5037 return NT_STATUS_INTERNAL_DB_CORRUPTION
;
5040 if (num_result
== 1) {
5042 /* check if it is just a posix account.
5043 * or if there is a sid attached to this entry
5046 entry
= ldap_first_entry(priv2ld(ldap_state
), result
);
5048 return NT_STATUS_UNSUCCESSFUL
;
5051 tmp
= smbldap_talloc_single_attribute(priv2ld(ldap_state
), entry
, "sambaSID", tmp_ctx
);
5053 DEBUG (1, ("ldapsam_create_user: The user [%s] already exist!\n", name
));
5054 return NT_STATUS_USER_EXISTS
;
5057 /* it is just a posix account, retrieve the dn for later use */
5058 dn
= smbldap_talloc_dn(tmp_ctx
, priv2ld(ldap_state
), entry
);
5060 DEBUG(0,("ldapsam_create_user: Out of memory!\n"));
5061 return NT_STATUS_NO_MEMORY
;
5065 if (num_result
== 0) {
5069 /* Create the basic samu structure and generate the mods for the ldap commit */
5070 if (!NT_STATUS_IS_OK((ret
= ldapsam_new_rid_internal(my_methods
, rid
)))) {
5071 DEBUG(1, ("ldapsam_create_user: Could not allocate a new RID\n"));
5075 sid_compose(&user_sid
, get_global_sam_sid(), *rid
);
5077 user
= samu_new(tmp_ctx
);
5079 DEBUG(1,("ldapsam_create_user: Unable to allocate user struct\n"));
5080 return NT_STATUS_NO_MEMORY
;
5083 if (!pdb_set_username(user
, name
, PDB_SET
)) {
5084 DEBUG(1,("ldapsam_create_user: Unable to fill user structs\n"));
5085 return NT_STATUS_UNSUCCESSFUL
;
5087 if (!pdb_set_domain(user
, get_global_sam_name(), PDB_SET
)) {
5088 DEBUG(1,("ldapsam_create_user: Unable to fill user structs\n"));
5089 return NT_STATUS_UNSUCCESSFUL
;
5092 if (acb_info
& ACB_NORMAL
) {
5093 if (!pdb_set_acct_ctrl(user
, ACB_WSTRUST
, PDB_SET
)) {
5094 DEBUG(1,("ldapsam_create_user: Unable to fill user structs\n"));
5095 return NT_STATUS_UNSUCCESSFUL
;
5098 if (!pdb_set_acct_ctrl(user
, acb_info
, PDB_SET
)) {
5099 DEBUG(1,("ldapsam_create_user: Unable to fill user structs\n"));
5100 return NT_STATUS_UNSUCCESSFUL
;
5104 if (!pdb_set_acct_ctrl(user
, ACB_NORMAL
| ACB_DISABLED
, PDB_SET
)) {
5105 DEBUG(1,("ldapsam_create_user: Unable to fill user structs\n"));
5106 return NT_STATUS_UNSUCCESSFUL
;
5110 if (!pdb_set_user_sid(user
, &user_sid
, PDB_SET
)) {
5111 DEBUG(1,("ldapsam_create_user: Unable to fill user structs\n"));
5112 return NT_STATUS_UNSUCCESSFUL
;
5115 if (!init_ldap_from_sam(ldap_state
, NULL
, &mods
, user
, element_is_set_or_changed
)) {
5116 DEBUG(1,("ldapsam_create_user: Unable to fill user structs\n"));
5117 return NT_STATUS_UNSUCCESSFUL
;
5120 if (ldap_state
->schema_ver
!= SCHEMAVER_SAMBASAMACCOUNT
) {
5121 DEBUG(1,("ldapsam_create_user: Unsupported schema version\n"));
5123 smbldap_set_mod(&mods
, LDAP_MOD_ADD
, "objectClass", LDAP_OBJ_SAMBASAMACCOUNT
);
5128 DEBUG(3,("ldapsam_create_user: Creating new posix user\n"));
5130 /* retrieve the Domain Users group gid */
5131 if (!sid_compose(&group_sid
, get_global_sam_sid(), DOMAIN_GROUP_RID_USERS
) ||
5132 !sid_to_gid(&group_sid
, &gid
)) {
5133 DEBUG (0, ("ldapsam_create_user: Unable to get the Domain Users gid: bailing out!\n"));
5134 return NT_STATUS_INVALID_PRIMARY_GROUP
;
5137 /* lets allocate a new userid for this user */
5138 if (!winbind_allocate_uid(&uid
)) {
5139 DEBUG (0, ("ldapsam_create_user: Unable to allocate a new user id: bailing out!\n"));
5140 return NT_STATUS_UNSUCCESSFUL
;
5145 /* TODO: choose a more appropriate default for machines */
5146 homedir
= talloc_sub_specified(tmp_ctx
, lp_template_homedir(), "SMB_workstations_home", ldap_state
->domain_name
, uid
, gid
);
5147 shell
= talloc_strdup(tmp_ctx
, "/bin/false");
5149 homedir
= talloc_sub_specified(tmp_ctx
, lp_template_homedir(), name
, ldap_state
->domain_name
, uid
, gid
);
5150 shell
= talloc_sub_specified(tmp_ctx
, lp_template_shell(), name
, ldap_state
->domain_name
, uid
, gid
);
5152 uidstr
= talloc_asprintf(tmp_ctx
, "%d", uid
);
5153 gidstr
= talloc_asprintf(tmp_ctx
, "%d", gid
);
5155 escape_name
= escape_rdn_val_string_alloc(name
);
5157 DEBUG (0, ("ldapsam_create_user: Out of memory!\n"));
5158 return NT_STATUS_NO_MEMORY
;
5162 dn
= talloc_asprintf(tmp_ctx
, "uid=%s,%s", escape_name
, lp_ldap_machine_suffix ());
5164 dn
= talloc_asprintf(tmp_ctx
, "uid=%s,%s", escape_name
, lp_ldap_user_suffix ());
5167 SAFE_FREE(escape_name
);
5169 if (!homedir
|| !shell
|| !uidstr
|| !gidstr
|| !dn
) {
5170 DEBUG (0, ("ldapsam_create_user: Out of memory!\n"));
5171 return NT_STATUS_NO_MEMORY
;
5174 smbldap_set_mod(&mods
, LDAP_MOD_ADD
, "objectClass", LDAP_OBJ_ACCOUNT
);
5175 smbldap_set_mod(&mods
, LDAP_MOD_ADD
, "objectClass", LDAP_OBJ_POSIXACCOUNT
);
5176 smbldap_set_mod(&mods
, LDAP_MOD_ADD
, "cn", name
);
5177 smbldap_set_mod(&mods
, LDAP_MOD_ADD
, "uidNumber", uidstr
);
5178 smbldap_set_mod(&mods
, LDAP_MOD_ADD
, "gidNumber", gidstr
);
5179 smbldap_set_mod(&mods
, LDAP_MOD_ADD
, "homeDirectory", homedir
);
5180 smbldap_set_mod(&mods
, LDAP_MOD_ADD
, "loginShell", shell
);
5183 talloc_autofree_ldapmod(tmp_ctx
, mods
);
5186 rc
= smbldap_add(ldap_state
->smbldap_state
, dn
, mods
);
5188 rc
= smbldap_modify(ldap_state
->smbldap_state
, dn
, mods
);
5191 if (rc
!= LDAP_SUCCESS
) {
5192 DEBUG(0,("ldapsam_create_user: failed to create a new user [%s] (dn = %s)\n", name
,dn
));
5193 return NT_STATUS_UNSUCCESSFUL
;
5196 DEBUG(2,("ldapsam_create_user: added account [%s] in the LDAP database\n", name
));
5198 flush_pwnam_cache();
5200 return NT_STATUS_OK
;
5203 static NTSTATUS
ldapsam_delete_user(struct pdb_methods
*my_methods
, TALLOC_CTX
*tmp_ctx
, struct samu
*sam_acct
)
5205 struct ldapsam_privates
*ldap_state
= (struct ldapsam_privates
*)my_methods
->private_data
;
5206 LDAPMessage
*result
= NULL
;
5207 LDAPMessage
*entry
= NULL
;
5213 DEBUG(0,("ldapsam_delete_user: Attempt to delete user [%s]\n", pdb_get_username(sam_acct
)));
5215 filter
= talloc_asprintf(tmp_ctx
,
5218 "(objectClass=%s))",
5219 pdb_get_username(sam_acct
),
5220 LDAP_OBJ_POSIXACCOUNT
,
5221 LDAP_OBJ_SAMBASAMACCOUNT
);
5222 if (filter
== NULL
) {
5223 return NT_STATUS_NO_MEMORY
;
5226 rc
= smbldap_search_suffix(ldap_state
->smbldap_state
, filter
, NULL
, &result
);
5227 if (rc
!= LDAP_SUCCESS
) {
5228 DEBUG(0,("ldapsam_delete_user: user search failed!\n"));
5229 return NT_STATUS_UNSUCCESSFUL
;
5231 talloc_autofree_ldapmsg(tmp_ctx
, result
);
5233 num_result
= ldap_count_entries(priv2ld(ldap_state
), result
);
5235 if (num_result
== 0) {
5236 DEBUG(0,("ldapsam_delete_user: user not found!\n"));
5237 return NT_STATUS_NO_SUCH_USER
;
5240 if (num_result
> 1) {
5241 DEBUG (0, ("ldapsam_delete_user: More than one user with name [%s] ?!\n", pdb_get_username(sam_acct
)));
5242 return NT_STATUS_INTERNAL_DB_CORRUPTION
;
5245 entry
= ldap_first_entry(priv2ld(ldap_state
), result
);
5247 return NT_STATUS_UNSUCCESSFUL
;
5250 /* it is just a posix account, retrieve the dn for later use */
5251 dn
= smbldap_talloc_dn(tmp_ctx
, priv2ld(ldap_state
), entry
);
5253 DEBUG(0,("ldapsam_delete_user: Out of memory!\n"));
5254 return NT_STATUS_NO_MEMORY
;
5257 rc
= smbldap_delete(ldap_state
->smbldap_state
, dn
);
5258 if (rc
!= LDAP_SUCCESS
) {
5259 return NT_STATUS_UNSUCCESSFUL
;
5262 flush_pwnam_cache();
5264 return NT_STATUS_OK
;
5268 * ldapsam_create_group creates a new
5269 * posixGroup and sambaGroupMapping object
5270 * in the ldap groups subtree
5272 * The gid is allocated by winbindd.
5275 static NTSTATUS
ldapsam_create_dom_group(struct pdb_methods
*my_methods
,
5276 TALLOC_CTX
*tmp_ctx
,
5280 struct ldapsam_privates
*ldap_state
= (struct ldapsam_privates
*)my_methods
->private_data
;
5282 LDAPMessage
*entry
= NULL
;
5283 LDAPMessage
*result
= NULL
;
5285 bool is_new_entry
= False
;
5286 LDAPMod
**mods
= NULL
;
5292 const char *dn
= NULL
;
5297 groupname
= escape_ldap_string_alloc(name
);
5298 filter
= talloc_asprintf(tmp_ctx
, "(&(cn=%s)(objectClass=%s))",
5299 groupname
, LDAP_OBJ_POSIXGROUP
);
5300 SAFE_FREE(groupname
);
5302 rc
= smbldap_search_suffix(ldap_state
->smbldap_state
, filter
, NULL
, &result
);
5303 if (rc
!= LDAP_SUCCESS
) {
5304 DEBUG(0,("ldapsam_create_group: ldap search failed!\n"));
5305 return NT_STATUS_UNSUCCESSFUL
;
5307 talloc_autofree_ldapmsg(tmp_ctx
, result
);
5309 num_result
= ldap_count_entries(priv2ld(ldap_state
), result
);
5311 if (num_result
> 1) {
5312 DEBUG (0, ("ldapsam_create_group: There exists more than one group with name [%s]: bailing out!\n", name
));
5313 return NT_STATUS_INTERNAL_DB_CORRUPTION
;
5316 if (num_result
== 1) {
5318 /* check if it is just a posix group.
5319 * or if there is a sid attached to this entry
5322 entry
= ldap_first_entry(priv2ld(ldap_state
), result
);
5324 return NT_STATUS_UNSUCCESSFUL
;
5327 tmp
= smbldap_talloc_single_attribute(priv2ld(ldap_state
), entry
, "sambaSID", tmp_ctx
);
5329 DEBUG (1, ("ldapsam_create_group: The group [%s] already exist!\n", name
));
5330 return NT_STATUS_GROUP_EXISTS
;
5333 /* it is just a posix group, retrieve the gid and the dn for later use */
5334 tmp
= smbldap_talloc_single_attribute(priv2ld(ldap_state
), entry
, "gidNumber", tmp_ctx
);
5336 DEBUG (1, ("ldapsam_create_group: Couldn't retrieve the gidNumber for [%s]?!?!\n", name
));
5337 return NT_STATUS_INTERNAL_DB_CORRUPTION
;
5340 gid
= strtoul(tmp
, NULL
, 10);
5342 dn
= smbldap_talloc_dn(tmp_ctx
, priv2ld(ldap_state
), entry
);
5344 DEBUG(0,("ldapsam_create_group: Out of memory!\n"));
5345 return NT_STATUS_NO_MEMORY
;
5349 if (num_result
== 0) {
5352 DEBUG(3,("ldapsam_create_user: Creating new posix group\n"));
5354 is_new_entry
= True
;
5356 /* lets allocate a new groupid for this group */
5357 if (!winbind_allocate_gid(&gid
)) {
5358 DEBUG (0, ("ldapsam_create_group: Unable to allocate a new group id: bailing out!\n"));
5359 return NT_STATUS_UNSUCCESSFUL
;
5362 gidstr
= talloc_asprintf(tmp_ctx
, "%d", gid
);
5364 escape_name
= escape_rdn_val_string_alloc(name
);
5366 DEBUG (0, ("ldapsam_create_group: Out of memory!\n"));
5367 return NT_STATUS_NO_MEMORY
;
5370 dn
= talloc_asprintf(tmp_ctx
, "cn=%s,%s", escape_name
, lp_ldap_group_suffix());
5372 SAFE_FREE(escape_name
);
5374 if (!gidstr
|| !dn
) {
5375 DEBUG (0, ("ldapsam_create_group: Out of memory!\n"));
5376 return NT_STATUS_NO_MEMORY
;
5379 smbldap_set_mod(&mods
, LDAP_MOD_ADD
, "objectclass", LDAP_OBJ_POSIXGROUP
);
5380 smbldap_set_mod(&mods
, LDAP_MOD_ADD
, "cn", name
);
5381 smbldap_set_mod(&mods
, LDAP_MOD_ADD
, "gidNumber", gidstr
);
5384 if (!NT_STATUS_IS_OK((ret
= ldapsam_new_rid_internal(my_methods
, rid
)))) {
5385 DEBUG(1, ("ldapsam_create_group: Could not allocate a new RID\n"));
5389 sid_compose(&group_sid
, get_global_sam_sid(), *rid
);
5391 groupsidstr
= talloc_strdup(tmp_ctx
, sid_string_talloc(tmp_ctx
,
5393 grouptype
= talloc_asprintf(tmp_ctx
, "%d", SID_NAME_DOM_GRP
);
5395 if (!groupsidstr
|| !grouptype
) {
5396 DEBUG(0,("ldapsam_create_group: Out of memory!\n"));
5397 return NT_STATUS_NO_MEMORY
;
5400 smbldap_set_mod(&mods
, LDAP_MOD_ADD
, "objectClass", LDAP_OBJ_GROUPMAP
);
5401 smbldap_set_mod(&mods
, LDAP_MOD_ADD
, "sambaSid", groupsidstr
);
5402 smbldap_set_mod(&mods
, LDAP_MOD_ADD
, "sambaGroupType", grouptype
);
5403 smbldap_set_mod(&mods
, LDAP_MOD_ADD
, "displayName", name
);
5404 talloc_autofree_ldapmod(tmp_ctx
, mods
);
5407 rc
= smbldap_add(ldap_state
->smbldap_state
, dn
, mods
);
5409 if (rc
== LDAP_OBJECT_CLASS_VIOLATION
) {
5410 /* This call may fail with rfc2307bis schema */
5411 /* Retry adding a structural class */
5412 smbldap_set_mod(&mods
, LDAP_MOD_ADD
, "objectClass", "????");
5413 rc
= smbldap_add(ldap_state
->smbldap_state
, dn
, mods
);
5417 rc
= smbldap_modify(ldap_state
->smbldap_state
, dn
, mods
);
5420 if (rc
!= LDAP_SUCCESS
) {
5421 DEBUG(0,("ldapsam_create_group: failed to create a new group [%s] (dn = %s)\n", name
,dn
));
5422 return NT_STATUS_UNSUCCESSFUL
;
5425 DEBUG(2,("ldapsam_create_group: added group [%s] in the LDAP database\n", name
));
5427 return NT_STATUS_OK
;
5430 static NTSTATUS
ldapsam_delete_dom_group(struct pdb_methods
*my_methods
, TALLOC_CTX
*tmp_ctx
, uint32 rid
)
5432 struct ldapsam_privates
*ldap_state
= (struct ldapsam_privates
*)my_methods
->private_data
;
5433 LDAPMessage
*result
= NULL
;
5434 LDAPMessage
*entry
= NULL
;
5442 /* get the group sid */
5443 sid_compose(&group_sid
, get_global_sam_sid(), rid
);
5445 filter
= talloc_asprintf(tmp_ctx
,
5448 "(objectClass=%s))",
5449 sid_string_talloc(tmp_ctx
, &group_sid
),
5450 LDAP_OBJ_POSIXGROUP
,
5452 if (filter
== NULL
) {
5453 return NT_STATUS_NO_MEMORY
;
5456 rc
= smbldap_search_suffix(ldap_state
->smbldap_state
, filter
, NULL
, &result
);
5457 if (rc
!= LDAP_SUCCESS
) {
5458 DEBUG(1,("ldapsam_delete_dom_group: group search failed!\n"));
5459 return NT_STATUS_UNSUCCESSFUL
;
5461 talloc_autofree_ldapmsg(tmp_ctx
, result
);
5463 num_result
= ldap_count_entries(priv2ld(ldap_state
), result
);
5465 if (num_result
== 0) {
5466 DEBUG(1,("ldapsam_delete_dom_group: group not found!\n"));
5467 return NT_STATUS_NO_SUCH_GROUP
;
5470 if (num_result
> 1) {
5471 DEBUG (0, ("ldapsam_delete_dom_group: More than one group with the same SID ?!\n"));
5472 return NT_STATUS_INTERNAL_DB_CORRUPTION
;
5475 entry
= ldap_first_entry(priv2ld(ldap_state
), result
);
5477 return NT_STATUS_UNSUCCESSFUL
;
5480 /* here it is, retrieve the dn for later use */
5481 dn
= smbldap_talloc_dn(tmp_ctx
, priv2ld(ldap_state
), entry
);
5483 DEBUG(0,("ldapsam_delete_dom_group: Out of memory!\n"));
5484 return NT_STATUS_NO_MEMORY
;
5487 gidstr
= smbldap_talloc_single_attribute(priv2ld(ldap_state
), entry
, "gidNumber", tmp_ctx
);
5489 DEBUG (0, ("ldapsam_delete_dom_group: Unable to find the group's gid!\n"));
5490 return NT_STATUS_INTERNAL_DB_CORRUPTION
;
5493 /* check no user have this group marked as primary group */
5494 filter
= talloc_asprintf(tmp_ctx
,
5497 "(objectClass=%s))",
5499 LDAP_OBJ_POSIXACCOUNT
,
5500 LDAP_OBJ_SAMBASAMACCOUNT
);
5502 rc
= smbldap_search_suffix(ldap_state
->smbldap_state
, filter
, NULL
, &result
);
5503 if (rc
!= LDAP_SUCCESS
) {
5504 DEBUG(1,("ldapsam_delete_dom_group: accounts search failed!\n"));
5505 return NT_STATUS_UNSUCCESSFUL
;
5507 talloc_autofree_ldapmsg(tmp_ctx
, result
);
5509 num_result
= ldap_count_entries(priv2ld(ldap_state
), result
);
5511 if (num_result
!= 0) {
5512 DEBUG(3,("ldapsam_delete_dom_group: Can't delete group, it is a primary group for %d users\n", num_result
));
5513 return NT_STATUS_MEMBERS_PRIMARY_GROUP
;
5516 rc
= smbldap_delete(ldap_state
->smbldap_state
, dn
);
5517 if (rc
!= LDAP_SUCCESS
) {
5518 return NT_STATUS_UNSUCCESSFUL
;
5521 return NT_STATUS_OK
;
5524 static NTSTATUS
ldapsam_change_groupmem(struct pdb_methods
*my_methods
,
5525 TALLOC_CTX
*tmp_ctx
,
5530 struct ldapsam_privates
*ldap_state
= (struct ldapsam_privates
*)my_methods
->private_data
;
5531 LDAPMessage
*entry
= NULL
;
5532 LDAPMessage
*result
= NULL
;
5534 LDAPMod
**mods
= NULL
;
5537 const char *dn
= NULL
;
5544 DEBUG(1,("ldapsam_change_groupmem: add new member(rid=%d) to a domain group(rid=%d)", member_rid
, group_rid
));
5546 case LDAP_MOD_DELETE
:
5547 DEBUG(1,("ldapsam_change_groupmem: delete member(rid=%d) from a domain group(rid=%d)", member_rid
, group_rid
));
5550 return NT_STATUS_UNSUCCESSFUL
;
5553 /* get member sid */
5554 sid_compose(&member_sid
, get_global_sam_sid(), member_rid
);
5556 /* get the group sid */
5557 sid_compose(&group_sid
, get_global_sam_sid(), group_rid
);
5559 filter
= talloc_asprintf(tmp_ctx
,
5562 "(objectClass=%s))",
5563 sid_string_talloc(tmp_ctx
, &member_sid
),
5564 LDAP_OBJ_POSIXACCOUNT
,
5565 LDAP_OBJ_SAMBASAMACCOUNT
);
5566 if (filter
== NULL
) {
5567 return NT_STATUS_NO_MEMORY
;
5570 /* get the member uid */
5571 rc
= smbldap_search_suffix(ldap_state
->smbldap_state
, filter
, NULL
, &result
);
5572 if (rc
!= LDAP_SUCCESS
) {
5573 DEBUG(1,("ldapsam_change_groupmem: member search failed!\n"));
5574 return NT_STATUS_UNSUCCESSFUL
;
5576 talloc_autofree_ldapmsg(tmp_ctx
, result
);
5578 num_result
= ldap_count_entries(priv2ld(ldap_state
), result
);
5580 if (num_result
== 0) {
5581 DEBUG(1,("ldapsam_change_groupmem: member not found!\n"));
5582 return NT_STATUS_NO_SUCH_MEMBER
;
5585 if (num_result
> 1) {
5586 DEBUG (0, ("ldapsam_change_groupmem: More than one account with the same SID ?!\n"));
5587 return NT_STATUS_INTERNAL_DB_CORRUPTION
;
5590 entry
= ldap_first_entry(priv2ld(ldap_state
), result
);
5592 return NT_STATUS_UNSUCCESSFUL
;
5595 if (modop
== LDAP_MOD_DELETE
) {
5596 /* check if we are trying to remove the member from his primary group */
5598 gid_t user_gid
, group_gid
;
5600 gidstr
= smbldap_talloc_single_attribute(priv2ld(ldap_state
), entry
, "gidNumber", tmp_ctx
);
5602 DEBUG (0, ("ldapsam_change_groupmem: Unable to find the member's gid!\n"));
5603 return NT_STATUS_INTERNAL_DB_CORRUPTION
;
5606 user_gid
= strtoul(gidstr
, NULL
, 10);
5608 if (!sid_to_gid(&group_sid
, &group_gid
)) {
5609 DEBUG (0, ("ldapsam_change_groupmem: Unable to get group gid from SID!\n"));
5610 return NT_STATUS_UNSUCCESSFUL
;
5613 if (user_gid
== group_gid
) {
5614 DEBUG (3, ("ldapsam_change_groupmem: can't remove user from its own primary group!\n"));
5615 return NT_STATUS_MEMBERS_PRIMARY_GROUP
;
5619 /* here it is, retrieve the uid for later use */
5620 uidstr
= smbldap_talloc_single_attribute(priv2ld(ldap_state
), entry
, "uid", tmp_ctx
);
5622 DEBUG (0, ("ldapsam_change_groupmem: Unable to find the member's name!\n"));
5623 return NT_STATUS_INTERNAL_DB_CORRUPTION
;
5626 filter
= talloc_asprintf(tmp_ctx
,
5629 "(objectClass=%s))",
5630 sid_string_talloc(tmp_ctx
, &group_sid
),
5631 LDAP_OBJ_POSIXGROUP
,
5635 rc
= smbldap_search_suffix(ldap_state
->smbldap_state
, filter
, NULL
, &result
);
5636 if (rc
!= LDAP_SUCCESS
) {
5637 DEBUG(1,("ldapsam_change_groupmem: group search failed!\n"));
5638 return NT_STATUS_UNSUCCESSFUL
;
5640 talloc_autofree_ldapmsg(tmp_ctx
, result
);
5642 num_result
= ldap_count_entries(priv2ld(ldap_state
), result
);
5644 if (num_result
== 0) {
5645 DEBUG(1,("ldapsam_change_groupmem: group not found!\n"));
5646 return NT_STATUS_NO_SUCH_GROUP
;
5649 if (num_result
> 1) {
5650 DEBUG (0, ("ldapsam_change_groupmem: More than one group with the same SID ?!\n"));
5651 return NT_STATUS_INTERNAL_DB_CORRUPTION
;
5654 entry
= ldap_first_entry(priv2ld(ldap_state
), result
);
5656 return NT_STATUS_UNSUCCESSFUL
;
5659 /* here it is, retrieve the dn for later use */
5660 dn
= smbldap_talloc_dn(tmp_ctx
, priv2ld(ldap_state
), entry
);
5662 DEBUG(0,("ldapsam_change_groupmem: Out of memory!\n"));
5663 return NT_STATUS_NO_MEMORY
;
5666 smbldap_set_mod(&mods
, modop
, "memberUid", uidstr
);
5668 talloc_autofree_ldapmod(tmp_ctx
, mods
);
5670 rc
= smbldap_modify(ldap_state
->smbldap_state
, dn
, mods
);
5671 if (rc
!= LDAP_SUCCESS
) {
5672 if (rc
== LDAP_TYPE_OR_VALUE_EXISTS
&& modop
== LDAP_MOD_ADD
) {
5673 DEBUG(1,("ldapsam_change_groupmem: member is already in group, add failed!\n"));
5674 return NT_STATUS_MEMBER_IN_GROUP
;
5676 if (rc
== LDAP_NO_SUCH_ATTRIBUTE
&& modop
== LDAP_MOD_DELETE
) {
5677 DEBUG(1,("ldapsam_change_groupmem: member is not in group, delete failed!\n"));
5678 return NT_STATUS_MEMBER_NOT_IN_GROUP
;
5680 return NT_STATUS_UNSUCCESSFUL
;
5683 return NT_STATUS_OK
;
5686 static NTSTATUS
ldapsam_add_groupmem(struct pdb_methods
*my_methods
,
5687 TALLOC_CTX
*tmp_ctx
,
5691 return ldapsam_change_groupmem(my_methods
, tmp_ctx
, group_rid
, member_rid
, LDAP_MOD_ADD
);
5693 static NTSTATUS
ldapsam_del_groupmem(struct pdb_methods
*my_methods
,
5694 TALLOC_CTX
*tmp_ctx
,
5698 return ldapsam_change_groupmem(my_methods
, tmp_ctx
, group_rid
, member_rid
, LDAP_MOD_DELETE
);
5701 static NTSTATUS
ldapsam_set_primary_group(struct pdb_methods
*my_methods
,
5702 TALLOC_CTX
*mem_ctx
,
5703 struct samu
*sampass
)
5705 struct ldapsam_privates
*ldap_state
= (struct ldapsam_privates
*)my_methods
->private_data
;
5706 LDAPMessage
*entry
= NULL
;
5707 LDAPMessage
*result
= NULL
;
5709 LDAPMod
**mods
= NULL
;
5711 char *escape_username
;
5713 const char *dn
= NULL
;
5717 DEBUG(0,("ldapsam_set_primary_group: Attempt to set primary group for user [%s]\n", pdb_get_username(sampass
)));
5719 if (!sid_to_gid(pdb_get_group_sid(sampass
), &gid
)) {
5720 DEBUG(0,("ldapsam_set_primary_group: failed to retrieve gid from user's group SID!\n"));
5721 return NT_STATUS_UNSUCCESSFUL
;
5723 gidstr
= talloc_asprintf(mem_ctx
, "%d", gid
);
5725 DEBUG(0,("ldapsam_set_primary_group: Out of Memory!\n"));
5726 return NT_STATUS_NO_MEMORY
;
5729 escape_username
= escape_ldap_string_alloc(pdb_get_username(sampass
));
5730 if (escape_username
== NULL
) {
5731 return NT_STATUS_NO_MEMORY
;
5734 filter
= talloc_asprintf(mem_ctx
,
5737 "(objectClass=%s))",
5739 LDAP_OBJ_POSIXACCOUNT
,
5740 LDAP_OBJ_SAMBASAMACCOUNT
);
5742 SAFE_FREE(escape_username
);
5744 if (filter
== NULL
) {
5745 return NT_STATUS_NO_MEMORY
;
5748 rc
= smbldap_search_suffix(ldap_state
->smbldap_state
, filter
, NULL
, &result
);
5749 if (rc
!= LDAP_SUCCESS
) {
5750 DEBUG(0,("ldapsam_set_primary_group: user search failed!\n"));
5751 return NT_STATUS_UNSUCCESSFUL
;
5753 talloc_autofree_ldapmsg(mem_ctx
, result
);
5755 num_result
= ldap_count_entries(priv2ld(ldap_state
), result
);
5757 if (num_result
== 0) {
5758 DEBUG(0,("ldapsam_set_primary_group: user not found!\n"));
5759 return NT_STATUS_NO_SUCH_USER
;
5762 if (num_result
> 1) {
5763 DEBUG (0, ("ldapsam_set_primary_group: More than one user with name [%s] ?!\n", pdb_get_username(sampass
)));
5764 return NT_STATUS_INTERNAL_DB_CORRUPTION
;
5767 entry
= ldap_first_entry(priv2ld(ldap_state
), result
);
5769 return NT_STATUS_UNSUCCESSFUL
;
5772 /* retrieve the dn for later use */
5773 dn
= smbldap_talloc_dn(mem_ctx
, priv2ld(ldap_state
), entry
);
5775 DEBUG(0,("ldapsam_set_primary_group: Out of memory!\n"));
5776 return NT_STATUS_NO_MEMORY
;
5779 /* remove the old one, and add the new one, this way we do not risk races */
5780 smbldap_make_mod(priv2ld(ldap_state
), entry
, &mods
, "gidNumber", gidstr
);
5783 return NT_STATUS_OK
;
5786 rc
= smbldap_modify(ldap_state
->smbldap_state
, dn
, mods
);
5788 if (rc
!= LDAP_SUCCESS
) {
5789 DEBUG(0,("ldapsam_set_primary_group: failed to modify [%s] primary group to [%s]\n",
5790 pdb_get_username(sampass
), gidstr
));
5791 return NT_STATUS_UNSUCCESSFUL
;
5794 flush_pwnam_cache();
5796 return NT_STATUS_OK
;
5800 /**********************************************************************
5801 trusted domains functions
5802 *********************************************************************/
5804 static char *trusteddom_dn(struct ldapsam_privates
*ldap_state
,
5807 return talloc_asprintf(talloc_tos(), "sambaDomainName=%s,%s", domain
,
5808 ldap_state
->domain_dn
);
5811 static bool get_trusteddom_pw_int(struct ldapsam_privates
*ldap_state
,
5812 TALLOC_CTX
*mem_ctx
,
5813 const char *domain
, LDAPMessage
**entry
)
5817 int scope
= LDAP_SCOPE_SUBTREE
;
5818 const char **attrs
= NULL
; /* NULL: get all attrs */
5819 int attrsonly
= 0; /* 0: return values too */
5820 LDAPMessage
*result
= NULL
;
5824 filter
= talloc_asprintf(talloc_tos(),
5825 "(&(objectClass=%s)(sambaDomainName=%s))",
5826 LDAP_OBJ_TRUSTDOM_PASSWORD
, domain
);
5828 trusted_dn
= trusteddom_dn(ldap_state
, domain
);
5829 if (trusted_dn
== NULL
) {
5832 rc
= smbldap_search(ldap_state
->smbldap_state
, trusted_dn
, scope
,
5833 filter
, attrs
, attrsonly
, &result
);
5835 if (result
!= NULL
) {
5836 talloc_autofree_ldapmsg(mem_ctx
, result
);
5839 if (rc
== LDAP_NO_SUCH_OBJECT
) {
5844 if (rc
!= LDAP_SUCCESS
) {
5848 num_result
= ldap_count_entries(priv2ld(ldap_state
), result
);
5850 if (num_result
> 1) {
5851 DEBUG(1, ("ldapsam_get_trusteddom_pw: more than one "
5852 "%s object for domain '%s'?!\n",
5853 LDAP_OBJ_TRUSTDOM_PASSWORD
, domain
));
5857 if (num_result
== 0) {
5858 DEBUG(1, ("ldapsam_get_trusteddom_pw: no "
5859 "%s object for domain %s.\n",
5860 LDAP_OBJ_TRUSTDOM_PASSWORD
, domain
));
5863 *entry
= ldap_first_entry(priv2ld(ldap_state
), result
);
5869 static bool ldapsam_get_trusteddom_pw(struct pdb_methods
*methods
,
5873 time_t *pass_last_set_time
)
5875 struct ldapsam_privates
*ldap_state
=
5876 (struct ldapsam_privates
*)methods
->private_data
;
5877 LDAPMessage
*entry
= NULL
;
5879 DEBUG(10, ("ldapsam_get_trusteddom_pw called for domain %s\n", domain
));
5881 if (!get_trusteddom_pw_int(ldap_state
, talloc_tos(), domain
, &entry
) ||
5890 pwd_str
= smbldap_talloc_single_attribute(priv2ld(ldap_state
),
5891 entry
, "sambaClearTextPassword", talloc_tos());
5892 if (pwd_str
== NULL
) {
5895 /* trusteddom_pw routines do not use talloc yet... */
5896 *pwd
= SMB_STRDUP(pwd_str
);
5902 /* last change time */
5903 if (pass_last_set_time
!= NULL
) {
5905 time_str
= smbldap_talloc_single_attribute(priv2ld(ldap_state
),
5906 entry
, "sambaPwdLastSet", talloc_tos());
5907 if (time_str
== NULL
) {
5910 *pass_last_set_time
= (time_t)atol(time_str
);
5917 sid_str
= smbldap_talloc_single_attribute(priv2ld(ldap_state
),
5920 if (sid_str
== NULL
) {
5923 dom_sid
= string_sid_talloc(talloc_tos(), sid_str
);
5924 if (dom_sid
== NULL
) {
5927 sid_copy(sid
, dom_sid
);
5933 static bool ldapsam_set_trusteddom_pw(struct pdb_methods
*methods
,
5938 struct ldapsam_privates
*ldap_state
=
5939 (struct ldapsam_privates
*)methods
->private_data
;
5940 LDAPMessage
*entry
= NULL
;
5941 LDAPMod
**mods
= NULL
;
5942 char *prev_pwd
= NULL
;
5943 char *trusted_dn
= NULL
;
5946 DEBUG(10, ("ldapsam_set_trusteddom_pw called for domain %s\n", domain
));
5949 * get the current entry (if there is one) in order to put the
5950 * current password into the previous password attribute
5952 if (!get_trusteddom_pw_int(ldap_state
, talloc_tos(), domain
, &entry
)) {
5957 smbldap_make_mod(priv2ld(ldap_state
), entry
, &mods
, "objectClass",
5958 LDAP_OBJ_TRUSTDOM_PASSWORD
);
5959 smbldap_make_mod(priv2ld(ldap_state
), entry
, &mods
, "sambaDomainName",
5961 smbldap_make_mod(priv2ld(ldap_state
), entry
, &mods
, "sambaSID",
5962 sid_string_tos(sid
));
5963 smbldap_make_mod(priv2ld(ldap_state
), entry
, &mods
, "sambaPwdLastSet",
5964 talloc_asprintf(talloc_tos(), "%li", (long int)time(NULL
)));
5965 smbldap_make_mod(priv2ld(ldap_state
), entry
, &mods
,
5966 "sambaClearTextPassword", pwd
);
5968 talloc_autofree_ldapmod(talloc_tos(), mods
);
5970 if (entry
!= NULL
) {
5971 prev_pwd
= smbldap_talloc_single_attribute(priv2ld(ldap_state
),
5972 entry
, "sambaClearTextPassword", talloc_tos());
5973 if (prev_pwd
!= NULL
) {
5974 smbldap_make_mod(priv2ld(ldap_state
), entry
, &mods
,
5975 "sambaPreviousClearTextPassword",
5980 trusted_dn
= trusteddom_dn(ldap_state
, domain
);
5981 if (trusted_dn
== NULL
) {
5984 if (entry
== NULL
) {
5985 rc
= smbldap_add(ldap_state
->smbldap_state
, trusted_dn
, mods
);
5987 rc
= smbldap_modify(ldap_state
->smbldap_state
, trusted_dn
, mods
);
5990 if (rc
!= LDAP_SUCCESS
) {
5991 DEBUG(1, ("error writing trusted domain password!\n"));
5998 static bool ldapsam_del_trusteddom_pw(struct pdb_methods
*methods
,
6002 struct ldapsam_privates
*ldap_state
=
6003 (struct ldapsam_privates
*)methods
->private_data
;
6004 LDAPMessage
*entry
= NULL
;
6005 const char *trusted_dn
;
6007 if (!get_trusteddom_pw_int(ldap_state
, talloc_tos(), domain
, &entry
)) {
6011 if (entry
== NULL
) {
6012 DEBUG(5, ("ldapsam_del_trusteddom_pw: no such trusted domain: "
6017 trusted_dn
= smbldap_talloc_dn(talloc_tos(), priv2ld(ldap_state
),
6019 if (trusted_dn
== NULL
) {
6020 DEBUG(0,("ldapsam_del_trusteddom_pw: Out of memory!\n"));
6024 rc
= smbldap_delete(ldap_state
->smbldap_state
, trusted_dn
);
6025 if (rc
!= LDAP_SUCCESS
) {
6032 static NTSTATUS
ldapsam_enum_trusteddoms(struct pdb_methods
*methods
,
6033 TALLOC_CTX
*mem_ctx
,
6034 uint32
*num_domains
,
6035 struct trustdom_info
***domains
)
6038 struct ldapsam_privates
*ldap_state
=
6039 (struct ldapsam_privates
*)methods
->private_data
;
6041 int scope
= LDAP_SCOPE_SUBTREE
;
6042 const char *attrs
[] = { "sambaDomainName", "sambaSID", NULL
};
6043 int attrsonly
= 0; /* 0: return values too */
6044 LDAPMessage
*result
= NULL
;
6045 LDAPMessage
*entry
= NULL
;
6047 filter
= talloc_asprintf(talloc_tos(), "(objectClass=%s)",
6048 LDAP_OBJ_TRUSTDOM_PASSWORD
);
6050 rc
= smbldap_search(ldap_state
->smbldap_state
,
6051 ldap_state
->domain_dn
,
6058 if (result
!= NULL
) {
6059 talloc_autofree_ldapmsg(mem_ctx
, result
);
6062 if (rc
!= LDAP_SUCCESS
) {
6063 return NT_STATUS_UNSUCCESSFUL
;
6067 if (!(*domains
= TALLOC_ARRAY(mem_ctx
, struct trustdom_info
*, 1))) {
6068 DEBUG(1, ("talloc failed\n"));
6069 return NT_STATUS_NO_MEMORY
;
6072 for (entry
= ldap_first_entry(priv2ld(ldap_state
), result
);
6074 entry
= ldap_next_entry(priv2ld(ldap_state
), entry
))
6076 char *dom_name
, *dom_sid_str
;
6077 struct trustdom_info
*dom_info
;
6079 dom_info
= TALLOC_P(*domains
, struct trustdom_info
);
6080 if (dom_info
== NULL
) {
6081 DEBUG(1, ("talloc failed\n"));
6082 return NT_STATUS_NO_MEMORY
;
6085 dom_name
= smbldap_talloc_single_attribute(priv2ld(ldap_state
),
6089 if (dom_name
== NULL
) {
6090 DEBUG(1, ("talloc failed\n"));
6091 return NT_STATUS_NO_MEMORY
;
6093 dom_info
->name
= dom_name
;
6095 dom_sid_str
= smbldap_talloc_single_attribute(
6096 priv2ld(ldap_state
), entry
, "sambaSID",
6098 if (dom_sid_str
== NULL
) {
6099 DEBUG(1, ("talloc failed\n"));
6100 return NT_STATUS_NO_MEMORY
;
6102 if (!string_to_sid(&dom_info
->sid
, dom_sid_str
)) {
6103 DEBUG(1, ("Error calling string_to_sid on SID %s\n",
6105 return NT_STATUS_UNSUCCESSFUL
;
6108 ADD_TO_ARRAY(*domains
, struct trustdom_info
*, dom_info
,
6109 domains
, num_domains
);
6111 if (*domains
== NULL
) {
6112 DEBUG(1, ("talloc failed\n"));
6113 return NT_STATUS_NO_MEMORY
;
6117 DEBUG(5, ("ldapsam_enum_trusteddoms: got %d domains\n", *num_domains
));
6118 return NT_STATUS_OK
;
6122 /**********************************************************************
6124 *********************************************************************/
6126 static void free_private_data(void **vp
)
6128 struct ldapsam_privates
**ldap_state
= (struct ldapsam_privates
**)vp
;
6130 smbldap_free_struct(&(*ldap_state
)->smbldap_state
);
6132 if ((*ldap_state
)->result
!= NULL
) {
6133 ldap_msgfree((*ldap_state
)->result
);
6134 (*ldap_state
)->result
= NULL
;
6136 if ((*ldap_state
)->domain_dn
!= NULL
) {
6137 SAFE_FREE((*ldap_state
)->domain_dn
);
6142 /* No need to free any further, as it is talloc()ed */
6145 /*********************************************************************
6146 Intitalise the parts of the pdb_methods structure that are common to
6148 *********************************************************************/
6150 static NTSTATUS
pdb_init_ldapsam_common(struct pdb_methods
**pdb_method
, const char *location
)
6153 struct ldapsam_privates
*ldap_state
;
6155 if (!NT_STATUS_IS_OK(nt_status
= make_pdb_method( pdb_method
))) {
6159 (*pdb_method
)->name
= "ldapsam";
6161 (*pdb_method
)->getsampwnam
= ldapsam_getsampwnam
;
6162 (*pdb_method
)->getsampwsid
= ldapsam_getsampwsid
;
6163 (*pdb_method
)->add_sam_account
= ldapsam_add_sam_account
;
6164 (*pdb_method
)->update_sam_account
= ldapsam_update_sam_account
;
6165 (*pdb_method
)->delete_sam_account
= ldapsam_delete_sam_account
;
6166 (*pdb_method
)->rename_sam_account
= ldapsam_rename_sam_account
;
6168 (*pdb_method
)->getgrsid
= ldapsam_getgrsid
;
6169 (*pdb_method
)->getgrgid
= ldapsam_getgrgid
;
6170 (*pdb_method
)->getgrnam
= ldapsam_getgrnam
;
6171 (*pdb_method
)->add_group_mapping_entry
= ldapsam_add_group_mapping_entry
;
6172 (*pdb_method
)->update_group_mapping_entry
= ldapsam_update_group_mapping_entry
;
6173 (*pdb_method
)->delete_group_mapping_entry
= ldapsam_delete_group_mapping_entry
;
6174 (*pdb_method
)->enum_group_mapping
= ldapsam_enum_group_mapping
;
6176 (*pdb_method
)->get_account_policy
= ldapsam_get_account_policy
;
6177 (*pdb_method
)->set_account_policy
= ldapsam_set_account_policy
;
6179 (*pdb_method
)->get_seq_num
= ldapsam_get_seq_num
;
6181 (*pdb_method
)->rid_algorithm
= ldapsam_rid_algorithm
;
6182 (*pdb_method
)->new_rid
= ldapsam_new_rid
;
6184 (*pdb_method
)->get_trusteddom_pw
= ldapsam_get_trusteddom_pw
;
6185 (*pdb_method
)->set_trusteddom_pw
= ldapsam_set_trusteddom_pw
;
6186 (*pdb_method
)->del_trusteddom_pw
= ldapsam_del_trusteddom_pw
;
6187 (*pdb_method
)->enum_trusteddoms
= ldapsam_enum_trusteddoms
;
6189 /* TODO: Setup private data and free */
6191 if ( !(ldap_state
= TALLOC_ZERO_P(*pdb_method
, struct ldapsam_privates
)) ) {
6192 DEBUG(0, ("pdb_init_ldapsam_common: talloc() failed for ldapsam private_data!\n"));
6193 return NT_STATUS_NO_MEMORY
;
6196 nt_status
= smbldap_init(*pdb_method
, pdb_get_event_context(),
6197 location
, &ldap_state
->smbldap_state
);
6199 if ( !NT_STATUS_IS_OK(nt_status
) ) {
6203 if ( !(ldap_state
->domain_name
= talloc_strdup(*pdb_method
, get_global_sam_name()) ) ) {
6204 return NT_STATUS_NO_MEMORY
;
6207 (*pdb_method
)->private_data
= ldap_state
;
6209 (*pdb_method
)->free_private_data
= free_private_data
;
6211 return NT_STATUS_OK
;
6214 /**********************************************************************
6215 Initialise the 'compat' mode for pdb_ldap
6216 *********************************************************************/
6218 NTSTATUS
pdb_init_ldapsam_compat(struct pdb_methods
**pdb_method
, const char *location
)
6221 struct ldapsam_privates
*ldap_state
;
6222 char *uri
= talloc_strdup( NULL
, location
);
6224 trim_char( uri
, '\"', '\"' );
6225 nt_status
= pdb_init_ldapsam_common( pdb_method
, uri
);
6229 if ( !NT_STATUS_IS_OK(nt_status
) ) {
6233 (*pdb_method
)->name
= "ldapsam_compat";
6235 ldap_state
= (struct ldapsam_privates
*)((*pdb_method
)->private_data
);
6236 ldap_state
->schema_ver
= SCHEMAVER_SAMBAACCOUNT
;
6238 sid_copy(&ldap_state
->domain_sid
, get_global_sam_sid());
6240 return NT_STATUS_OK
;
6243 /**********************************************************************
6244 Initialise the normal mode for pdb_ldap
6245 *********************************************************************/
6247 NTSTATUS
pdb_init_ldapsam(struct pdb_methods
**pdb_method
, const char *location
)
6250 struct ldapsam_privates
*ldap_state
= NULL
;
6251 uint32 alg_rid_base
;
6252 char *alg_rid_base_string
= NULL
;
6253 LDAPMessage
*result
= NULL
;
6254 LDAPMessage
*entry
= NULL
;
6255 DOM_SID ldap_domain_sid
;
6256 DOM_SID secrets_domain_sid
;
6257 char *domain_sid_string
= NULL
;
6259 char *uri
= talloc_strdup( NULL
, location
);
6261 trim_char( uri
, '\"', '\"' );
6262 nt_status
= pdb_init_ldapsam_common(pdb_method
, uri
);
6267 if (!NT_STATUS_IS_OK(nt_status
)) {
6271 (*pdb_method
)->name
= "ldapsam";
6273 (*pdb_method
)->add_aliasmem
= ldapsam_add_aliasmem
;
6274 (*pdb_method
)->del_aliasmem
= ldapsam_del_aliasmem
;
6275 (*pdb_method
)->enum_aliasmem
= ldapsam_enum_aliasmem
;
6276 (*pdb_method
)->enum_alias_memberships
= ldapsam_alias_memberships
;
6277 (*pdb_method
)->search_users
= ldapsam_search_users
;
6278 (*pdb_method
)->search_groups
= ldapsam_search_groups
;
6279 (*pdb_method
)->search_aliases
= ldapsam_search_aliases
;
6281 if (lp_parm_bool(-1, "ldapsam", "trusted", False
)) {
6282 (*pdb_method
)->enum_group_members
= ldapsam_enum_group_members
;
6283 (*pdb_method
)->enum_group_memberships
=
6284 ldapsam_enum_group_memberships
;
6285 (*pdb_method
)->lookup_rids
= ldapsam_lookup_rids
;
6286 (*pdb_method
)->sid_to_id
= ldapsam_sid_to_id
;
6288 if (lp_parm_bool(-1, "ldapsam", "editposix", False
)) {
6289 (*pdb_method
)->create_user
= ldapsam_create_user
;
6290 (*pdb_method
)->delete_user
= ldapsam_delete_user
;
6291 (*pdb_method
)->create_dom_group
= ldapsam_create_dom_group
;
6292 (*pdb_method
)->delete_dom_group
= ldapsam_delete_dom_group
;
6293 (*pdb_method
)->add_groupmem
= ldapsam_add_groupmem
;
6294 (*pdb_method
)->del_groupmem
= ldapsam_del_groupmem
;
6295 (*pdb_method
)->set_unix_primary_group
= ldapsam_set_primary_group
;
6299 ldap_state
= (struct ldapsam_privates
*)((*pdb_method
)->private_data
);
6300 ldap_state
->schema_ver
= SCHEMAVER_SAMBASAMACCOUNT
;
6302 /* Try to setup the Domain Name, Domain SID, algorithmic rid base */
6304 nt_status
= smbldap_search_domain_info(ldap_state
->smbldap_state
,
6306 ldap_state
->domain_name
, True
);
6308 if ( !NT_STATUS_IS_OK(nt_status
) ) {
6309 DEBUG(2, ("pdb_init_ldapsam: WARNING: Could not get domain "
6310 "info, nor add one to the domain\n"));
6311 DEBUGADD(2, ("pdb_init_ldapsam: Continuing on regardless, "
6312 "will be unable to allocate new users/groups, "
6313 "and will risk BDCs having inconsistant SIDs\n"));
6314 sid_copy(&ldap_state
->domain_sid
, get_global_sam_sid());
6315 return NT_STATUS_OK
;
6318 /* Given that the above might fail, everything below this must be
6321 entry
= ldap_first_entry(ldap_state
->smbldap_state
->ldap_struct
,
6324 DEBUG(0, ("pdb_init_ldapsam: Could not get domain info "
6326 ldap_msgfree(result
);
6327 return NT_STATUS_UNSUCCESSFUL
;
6330 dn
= smbldap_get_dn(ldap_state
->smbldap_state
->ldap_struct
, entry
);
6332 ldap_msgfree(result
);
6333 return NT_STATUS_UNSUCCESSFUL
;
6336 ldap_state
->domain_dn
= smb_xstrdup(dn
);
6339 domain_sid_string
= smbldap_talloc_single_attribute(
6340 ldap_state
->smbldap_state
->ldap_struct
,
6342 get_userattr_key2string(ldap_state
->schema_ver
,
6343 LDAP_ATTR_USER_SID
),
6346 if (domain_sid_string
) {
6348 if (!string_to_sid(&ldap_domain_sid
, domain_sid_string
)) {
6349 DEBUG(1, ("pdb_init_ldapsam: SID [%s] could not be "
6350 "read as a valid SID\n", domain_sid_string
));
6351 ldap_msgfree(result
);
6352 TALLOC_FREE(domain_sid_string
);
6353 return NT_STATUS_INVALID_PARAMETER
;
6355 found_sid
= secrets_fetch_domain_sid(ldap_state
->domain_name
,
6356 &secrets_domain_sid
);
6357 if (!found_sid
|| !sid_equal(&secrets_domain_sid
,
6358 &ldap_domain_sid
)) {
6359 DEBUG(1, ("pdb_init_ldapsam: Resetting SID for domain "
6360 "%s based on pdb_ldap results %s -> %s\n",
6361 ldap_state
->domain_name
,
6362 sid_string_dbg(&secrets_domain_sid
),
6363 sid_string_dbg(&ldap_domain_sid
)));
6365 /* reset secrets.tdb sid */
6366 secrets_store_domain_sid(ldap_state
->domain_name
,
6368 DEBUG(1, ("New global sam SID: %s\n",
6369 sid_string_dbg(get_global_sam_sid())));
6371 sid_copy(&ldap_state
->domain_sid
, &ldap_domain_sid
);
6372 TALLOC_FREE(domain_sid_string
);
6375 alg_rid_base_string
= smbldap_talloc_single_attribute(
6376 ldap_state
->smbldap_state
->ldap_struct
,
6378 get_attr_key2string( dominfo_attr_list
,
6379 LDAP_ATTR_ALGORITHMIC_RID_BASE
),
6381 if (alg_rid_base_string
) {
6382 alg_rid_base
= (uint32
)atol(alg_rid_base_string
);
6383 if (alg_rid_base
!= algorithmic_rid_base()) {
6384 DEBUG(0, ("The value of 'algorithmic RID base' has "
6385 "changed since the LDAP\n"
6386 "database was initialised. Aborting. \n"));
6387 ldap_msgfree(result
);
6388 TALLOC_FREE(alg_rid_base_string
);
6389 return NT_STATUS_UNSUCCESSFUL
;
6391 TALLOC_FREE(alg_rid_base_string
);
6393 ldap_msgfree(result
);
6395 return NT_STATUS_OK
;
6398 NTSTATUS
pdb_ldap_init(void)
6401 if (!NT_STATUS_IS_OK(nt_status
= smb_register_passdb(PASSDB_INTERFACE_VERSION
, "ldapsam", pdb_init_ldapsam
)))
6404 if (!NT_STATUS_IS_OK(nt_status
= smb_register_passdb(PASSDB_INTERFACE_VERSION
, "ldapsam_compat", pdb_init_ldapsam_compat
)))
6407 /* Let pdb_nds register backends */
6410 return NT_STATUS_OK
;