s3: shortcut gid_to_sid when "ldapsam:trusted = yes"
[Samba/nascimento.git] / source3 / passdb / pdb_ldap.c
bloba3b79b6066ab410918b68ac4e196fd02a54a9281
1 /*
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/>.
26 /* TODO:
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
43 * and/or winbind
46 #include "includes.h"
47 #include "../libcli/auth/libcli_auth.h"
49 #undef DBGC_CLASS
50 #define DBGC_CLASS DBGC_PASSDB
52 #include <lber.h>
53 #include <ldap.h>
56 * Work around versions of the LDAP client libs that don't have the OIDs
57 * defined, or have them defined under the old name.
58 * This functionality is really a factor of the server, not the client
62 #if defined(LDAP_EXOP_X_MODIFY_PASSWD) && !defined(LDAP_EXOP_MODIFY_PASSWD)
63 #define LDAP_EXOP_MODIFY_PASSWD LDAP_EXOP_X_MODIFY_PASSWD
64 #elif !defined(LDAP_EXOP_MODIFY_PASSWD)
65 #define LDAP_EXOP_MODIFY_PASSWD "1.3.6.1.4.1.4203.1.11.1"
66 #endif
68 #if defined(LDAP_EXOP_X_MODIFY_PASSWD_ID) && !defined(LDAP_EXOP_MODIFY_PASSWD_ID)
69 #define LDAP_TAG_EXOP_MODIFY_PASSWD_ID LDAP_EXOP_X_MODIFY_PASSWD_ID
70 #elif !defined(LDAP_EXOP_MODIFY_PASSWD_ID)
71 #define LDAP_TAG_EXOP_MODIFY_PASSWD_ID ((ber_tag_t) 0x80U)
72 #endif
74 #if defined(LDAP_EXOP_X_MODIFY_PASSWD_NEW) && !defined(LDAP_EXOP_MODIFY_PASSWD_NEW)
75 #define LDAP_TAG_EXOP_MODIFY_PASSWD_NEW LDAP_EXOP_X_MODIFY_PASSWD_NEW
76 #elif !defined(LDAP_EXOP_MODIFY_PASSWD_NEW)
77 #define LDAP_TAG_EXOP_MODIFY_PASSWD_NEW ((ber_tag_t) 0x82U)
78 #endif
81 #include "smbldap.h"
83 /**********************************************************************
84 Simple helper function to make stuff better readable
85 **********************************************************************/
87 static LDAP *priv2ld(struct ldapsam_privates *priv)
89 return priv->smbldap_state->ldap_struct;
92 /**********************************************************************
93 Get the attribute name given a user schame version.
94 **********************************************************************/
96 static const char* get_userattr_key2string( int schema_ver, int key )
98 switch ( schema_ver ) {
99 case SCHEMAVER_SAMBAACCOUNT:
100 return get_attr_key2string( attrib_map_v22, key );
102 case SCHEMAVER_SAMBASAMACCOUNT:
103 return get_attr_key2string( attrib_map_v30, key );
105 default:
106 DEBUG(0,("get_userattr_key2string: unknown schema version specified\n"));
107 break;
109 return NULL;
112 /**********************************************************************
113 Return the list of attribute names given a user schema version.
114 **********************************************************************/
116 const char** get_userattr_list( TALLOC_CTX *mem_ctx, int schema_ver )
118 switch ( schema_ver ) {
119 case SCHEMAVER_SAMBAACCOUNT:
120 return get_attr_list( mem_ctx, attrib_map_v22 );
122 case SCHEMAVER_SAMBASAMACCOUNT:
123 return get_attr_list( mem_ctx, attrib_map_v30 );
124 default:
125 DEBUG(0,("get_userattr_list: unknown schema version specified!\n"));
126 break;
129 return NULL;
132 /**************************************************************************
133 Return the list of attribute names to delete given a user schema version.
134 **************************************************************************/
136 static const char** get_userattr_delete_list( TALLOC_CTX *mem_ctx,
137 int schema_ver )
139 switch ( schema_ver ) {
140 case SCHEMAVER_SAMBAACCOUNT:
141 return get_attr_list( mem_ctx,
142 attrib_map_to_delete_v22 );
144 case SCHEMAVER_SAMBASAMACCOUNT:
145 return get_attr_list( mem_ctx,
146 attrib_map_to_delete_v30 );
147 default:
148 DEBUG(0,("get_userattr_delete_list: unknown schema version specified!\n"));
149 break;
152 return NULL;
156 /*******************************************************************
157 Generate the LDAP search filter for the objectclass based on the
158 version of the schema we are using.
159 ******************************************************************/
161 static const char* get_objclass_filter( int schema_ver )
163 fstring objclass_filter;
164 char *result;
166 switch( schema_ver ) {
167 case SCHEMAVER_SAMBAACCOUNT:
168 fstr_sprintf( objclass_filter, "(objectclass=%s)", LDAP_OBJ_SAMBAACCOUNT );
169 break;
170 case SCHEMAVER_SAMBASAMACCOUNT:
171 fstr_sprintf( objclass_filter, "(objectclass=%s)", LDAP_OBJ_SAMBASAMACCOUNT );
172 break;
173 default:
174 DEBUG(0,("get_objclass_filter: Invalid schema version specified!\n"));
175 objclass_filter[0] = '\0';
176 break;
179 result = talloc_strdup(talloc_tos(), objclass_filter);
180 SMB_ASSERT(result != NULL);
181 return result;
184 /*****************************************************************
185 Scan a sequence number off OpenLDAP's syncrepl contextCSN
186 ******************************************************************/
188 static NTSTATUS ldapsam_get_seq_num(struct pdb_methods *my_methods, time_t *seq_num)
190 struct ldapsam_privates *ldap_state = (struct ldapsam_privates *)my_methods->private_data;
191 NTSTATUS ntstatus = NT_STATUS_UNSUCCESSFUL;
192 LDAPMessage *msg = NULL;
193 LDAPMessage *entry = NULL;
194 TALLOC_CTX *mem_ctx;
195 char **values = NULL;
196 int rc, num_result, num_values, rid;
197 char *suffix = NULL;
198 char *tok;
199 const char *p;
200 const char **attrs;
202 /* Unfortunatly there is no proper way to detect syncrepl-support in
203 * smbldap_connect_system(). The syncrepl OIDs are submitted for publication
204 * but do not show up in the root-DSE yet. Neither we can query the
205 * subschema-context for the syncProviderSubentry or syncConsumerSubentry
206 * objectclass. Currently we require lp_ldap_suffix() to show up as
207 * namingContext. - Guenther
210 if (!lp_parm_bool(-1, "ldapsam", "syncrepl_seqnum", False)) {
211 return ntstatus;
214 if (!seq_num) {
215 DEBUG(3,("ldapsam_get_seq_num: no sequence_number\n"));
216 return ntstatus;
219 if (!smbldap_has_naming_context(ldap_state->smbldap_state->ldap_struct, lp_ldap_suffix())) {
220 DEBUG(3,("ldapsam_get_seq_num: DIT not configured to hold %s "
221 "as top-level namingContext\n", lp_ldap_suffix()));
222 return ntstatus;
225 mem_ctx = talloc_init("ldapsam_get_seq_num");
227 if (mem_ctx == NULL)
228 return NT_STATUS_NO_MEMORY;
230 if ((attrs = TALLOC_ARRAY(mem_ctx, const char *, 2)) == NULL) {
231 ntstatus = NT_STATUS_NO_MEMORY;
232 goto done;
235 /* if we got a syncrepl-rid (up to three digits long) we speak with a consumer */
236 rid = lp_parm_int(-1, "ldapsam", "syncrepl_rid", -1);
237 if (rid > 0) {
239 /* consumer syncreplCookie: */
240 /* csn=20050126161620Z#0000001#00#00000 */
241 attrs[0] = talloc_strdup(mem_ctx, "syncreplCookie");
242 attrs[1] = NULL;
243 suffix = talloc_asprintf(mem_ctx,
244 "cn=syncrepl%d,%s", rid, lp_ldap_suffix());
245 if (!suffix) {
246 ntstatus = NT_STATUS_NO_MEMORY;
247 goto done;
249 } else {
251 /* provider contextCSN */
252 /* 20050126161620Z#000009#00#000000 */
253 attrs[0] = talloc_strdup(mem_ctx, "contextCSN");
254 attrs[1] = NULL;
255 suffix = talloc_asprintf(mem_ctx,
256 "cn=ldapsync,%s", lp_ldap_suffix());
258 if (!suffix) {
259 ntstatus = NT_STATUS_NO_MEMORY;
260 goto done;
264 rc = smbldap_search(ldap_state->smbldap_state, suffix,
265 LDAP_SCOPE_BASE, "(objectclass=*)", attrs, 0, &msg);
267 if (rc != LDAP_SUCCESS) {
268 goto done;
271 num_result = ldap_count_entries(ldap_state->smbldap_state->ldap_struct, msg);
272 if (num_result != 1) {
273 DEBUG(3,("ldapsam_get_seq_num: Expected one entry, got %d\n", num_result));
274 goto done;
277 entry = ldap_first_entry(ldap_state->smbldap_state->ldap_struct, msg);
278 if (entry == NULL) {
279 DEBUG(3,("ldapsam_get_seq_num: Could not retrieve entry\n"));
280 goto done;
283 values = ldap_get_values(ldap_state->smbldap_state->ldap_struct, entry, attrs[0]);
284 if (values == NULL) {
285 DEBUG(3,("ldapsam_get_seq_num: no values\n"));
286 goto done;
289 num_values = ldap_count_values(values);
290 if (num_values == 0) {
291 DEBUG(3,("ldapsam_get_seq_num: not a single value\n"));
292 goto done;
295 p = values[0];
296 if (!next_token_talloc(mem_ctx, &p, &tok, "#")) {
297 DEBUG(0,("ldapsam_get_seq_num: failed to parse sequence number\n"));
298 goto done;
301 p = tok;
302 if (!strncmp(p, "csn=", strlen("csn=")))
303 p += strlen("csn=");
305 DEBUG(10,("ldapsam_get_seq_num: got %s: %s\n", attrs[0], p));
307 *seq_num = generalized_to_unix_time(p);
309 /* very basic sanity check */
310 if (*seq_num <= 0) {
311 DEBUG(3,("ldapsam_get_seq_num: invalid sequence number: %d\n",
312 (int)*seq_num));
313 goto done;
316 ntstatus = NT_STATUS_OK;
318 done:
319 if (values != NULL)
320 ldap_value_free(values);
321 if (msg != NULL)
322 ldap_msgfree(msg);
323 if (mem_ctx)
324 talloc_destroy(mem_ctx);
326 return ntstatus;
329 /*******************************************************************
330 Run the search by name.
331 ******************************************************************/
333 int ldapsam_search_suffix_by_name(struct ldapsam_privates *ldap_state,
334 const char *user,
335 LDAPMessage ** result,
336 const char **attr)
338 char *filter = NULL;
339 char *escape_user = escape_ldap_string(talloc_tos(), user);
340 int ret = -1;
342 if (!escape_user) {
343 return LDAP_NO_MEMORY;
347 * in the filter expression, replace %u with the real name
348 * so in ldap filter, %u MUST exist :-)
350 filter = talloc_asprintf(talloc_tos(), "(&%s%s)", "(uid=%u)",
351 get_objclass_filter(ldap_state->schema_ver));
352 if (!filter) {
353 TALLOC_FREE(escape_user);
354 return LDAP_NO_MEMORY;
357 * have to use this here because $ is filtered out
358 * in string_sub
361 filter = talloc_all_string_sub(talloc_tos(),
362 filter, "%u", escape_user);
363 TALLOC_FREE(escape_user);
364 if (!filter) {
365 return LDAP_NO_MEMORY;
368 ret = smbldap_search_suffix(ldap_state->smbldap_state,
369 filter, attr, result);
370 TALLOC_FREE(filter);
371 return ret;
374 /*******************************************************************
375 Run the search by rid.
376 ******************************************************************/
378 static int ldapsam_search_suffix_by_rid (struct ldapsam_privates *ldap_state,
379 uint32 rid, LDAPMessage ** result,
380 const char **attr)
382 char *filter = NULL;
383 int rc;
385 filter = talloc_asprintf(talloc_tos(), "(&(rid=%i)%s)", rid,
386 get_objclass_filter(ldap_state->schema_ver));
387 if (!filter) {
388 return LDAP_NO_MEMORY;
391 rc = smbldap_search_suffix(ldap_state->smbldap_state,
392 filter, attr, result);
393 TALLOC_FREE(filter);
394 return rc;
397 /*******************************************************************
398 Run the search by SID.
399 ******************************************************************/
401 static int ldapsam_search_suffix_by_sid (struct ldapsam_privates *ldap_state,
402 const DOM_SID *sid, LDAPMessage ** result,
403 const char **attr)
405 char *filter = NULL;
406 int rc;
407 fstring sid_string;
409 filter = talloc_asprintf(talloc_tos(), "(&(%s=%s)%s)",
410 get_userattr_key2string(ldap_state->schema_ver,
411 LDAP_ATTR_USER_SID),
412 sid_to_fstring(sid_string, sid),
413 get_objclass_filter(ldap_state->schema_ver));
414 if (!filter) {
415 return LDAP_NO_MEMORY;
418 rc = smbldap_search_suffix(ldap_state->smbldap_state,
419 filter, attr, result);
421 TALLOC_FREE(filter);
422 return rc;
425 /*******************************************************************
426 Delete complete object or objectclass and attrs from
427 object found in search_result depending on lp_ldap_delete_dn
428 ******************************************************************/
430 static int ldapsam_delete_entry(struct ldapsam_privates *priv,
431 TALLOC_CTX *mem_ctx,
432 LDAPMessage *entry,
433 const char *objectclass,
434 const char **attrs)
436 LDAPMod **mods = NULL;
437 char *name;
438 const char *dn;
439 BerElement *ptr = NULL;
441 dn = smbldap_talloc_dn(mem_ctx, priv2ld(priv), entry);
442 if (dn == NULL) {
443 return LDAP_NO_MEMORY;
446 if (lp_ldap_delete_dn()) {
447 return smbldap_delete(priv->smbldap_state, dn);
450 /* Ok, delete only the SAM attributes */
452 for (name = ldap_first_attribute(priv2ld(priv), entry, &ptr);
453 name != NULL;
454 name = ldap_next_attribute(priv2ld(priv), entry, ptr)) {
455 const char **attrib;
457 /* We are only allowed to delete the attributes that
458 really exist. */
460 for (attrib = attrs; *attrib != NULL; attrib++) {
461 if (strequal(*attrib, name)) {
462 DEBUG(10, ("ldapsam_delete_entry: deleting "
463 "attribute %s\n", name));
464 smbldap_set_mod(&mods, LDAP_MOD_DELETE, name,
465 NULL);
468 ldap_memfree(name);
471 if (ptr != NULL) {
472 ber_free(ptr, 0);
475 smbldap_set_mod(&mods, LDAP_MOD_DELETE, "objectClass", objectclass);
476 talloc_autofree_ldapmod(mem_ctx, mods);
478 return smbldap_modify(priv->smbldap_state, dn, mods);
481 static time_t ldapsam_get_entry_timestamp( struct ldapsam_privates *ldap_state, LDAPMessage * entry)
483 char *temp;
484 struct tm tm;
486 temp = smbldap_talloc_single_attribute(ldap_state->smbldap_state->ldap_struct, entry,
487 get_userattr_key2string(ldap_state->schema_ver,LDAP_ATTR_MOD_TIMESTAMP),
488 talloc_tos());
489 if (!temp) {
490 return (time_t) 0;
493 if ( !strptime(temp, "%Y%m%d%H%M%SZ", &tm)) {
494 DEBUG(2,("ldapsam_get_entry_timestamp: strptime failed on: %s\n",
495 (char*)temp));
496 TALLOC_FREE(temp);
497 return (time_t) 0;
499 TALLOC_FREE(temp);
500 tzset();
501 return timegm(&tm);
504 /**********************************************************************
505 Initialize struct samu from an LDAP query.
506 (Based on init_sam_from_buffer in pdb_tdb.c)
507 *********************************************************************/
509 static bool init_sam_from_ldap(struct ldapsam_privates *ldap_state,
510 struct samu * sampass,
511 LDAPMessage * entry)
513 time_t logon_time,
514 logoff_time,
515 kickoff_time,
516 pass_last_set_time,
517 pass_can_change_time,
518 pass_must_change_time,
519 ldap_entry_time,
520 bad_password_time;
521 char *username = NULL,
522 *domain = NULL,
523 *nt_username = NULL,
524 *fullname = NULL,
525 *homedir = NULL,
526 *dir_drive = NULL,
527 *logon_script = NULL,
528 *profile_path = NULL,
529 *acct_desc = NULL,
530 *workstations = NULL,
531 *munged_dial = NULL;
532 uint32 user_rid;
533 uint8 smblmpwd[LM_HASH_LEN],
534 smbntpwd[NT_HASH_LEN];
535 bool use_samba_attrs = True;
536 uint32 acct_ctrl = 0;
537 uint16 logon_divs;
538 uint16 bad_password_count = 0,
539 logon_count = 0;
540 uint32 hours_len;
541 uint8 hours[MAX_HOURS_LEN];
542 char *temp = NULL;
543 LOGIN_CACHE *cache_entry = NULL;
544 uint32 pwHistLen;
545 bool expand_explicit = lp_passdb_expand_explicit();
546 bool ret = false;
547 TALLOC_CTX *ctx = talloc_init("init_sam_from_ldap");
549 if (!ctx) {
550 return false;
552 if (sampass == NULL || ldap_state == NULL || entry == NULL) {
553 DEBUG(0, ("init_sam_from_ldap: NULL parameters found!\n"));
554 goto fn_exit;
557 if (priv2ld(ldap_state) == NULL) {
558 DEBUG(0, ("init_sam_from_ldap: ldap_state->smbldap_state->"
559 "ldap_struct is NULL!\n"));
560 goto fn_exit;
563 if (!(username = smbldap_talloc_first_attribute(priv2ld(ldap_state),
564 entry,
565 "uid",
566 ctx))) {
567 DEBUG(1, ("init_sam_from_ldap: No uid attribute found for "
568 "this user!\n"));
569 goto fn_exit;
572 DEBUG(2, ("init_sam_from_ldap: Entry found for user: %s\n", username));
574 nt_username = talloc_strdup(ctx, username);
575 if (!nt_username) {
576 goto fn_exit;
579 domain = talloc_strdup(ctx, ldap_state->domain_name);
580 if (!domain) {
581 goto fn_exit;
584 pdb_set_username(sampass, username, PDB_SET);
586 pdb_set_domain(sampass, domain, PDB_DEFAULT);
587 pdb_set_nt_username(sampass, nt_username, PDB_SET);
589 /* deal with different attributes between the schema first */
591 if ( ldap_state->schema_ver == SCHEMAVER_SAMBASAMACCOUNT ) {
592 if ((temp = smbldap_talloc_single_attribute(
593 ldap_state->smbldap_state->ldap_struct,
594 entry,
595 get_userattr_key2string(ldap_state->schema_ver,
596 LDAP_ATTR_USER_SID),
597 ctx))!=NULL) {
598 pdb_set_user_sid_from_string(sampass, temp, PDB_SET);
600 } else {
601 if ((temp = smbldap_talloc_single_attribute(
602 ldap_state->smbldap_state->ldap_struct,
603 entry,
604 get_userattr_key2string(ldap_state->schema_ver,
605 LDAP_ATTR_USER_RID),
606 ctx))!=NULL) {
607 user_rid = (uint32)atol(temp);
608 pdb_set_user_sid_from_rid(sampass, user_rid, PDB_SET);
612 if (IS_SAM_DEFAULT(sampass, PDB_USERSID)) {
613 DEBUG(1, ("init_sam_from_ldap: no %s or %s attribute found for this user %s\n",
614 get_userattr_key2string(ldap_state->schema_ver,
615 LDAP_ATTR_USER_SID),
616 get_userattr_key2string(ldap_state->schema_ver,
617 LDAP_ATTR_USER_RID),
618 username));
619 return False;
622 temp = smbldap_talloc_single_attribute(
623 ldap_state->smbldap_state->ldap_struct,
624 entry,
625 get_userattr_key2string(ldap_state->schema_ver,
626 LDAP_ATTR_PWD_LAST_SET),
627 ctx);
628 if (temp) {
629 pass_last_set_time = (time_t) atol(temp);
630 pdb_set_pass_last_set_time(sampass,
631 pass_last_set_time, PDB_SET);
634 temp = smbldap_talloc_single_attribute(
635 ldap_state->smbldap_state->ldap_struct,
636 entry,
637 get_userattr_key2string(ldap_state->schema_ver,
638 LDAP_ATTR_LOGON_TIME),
639 ctx);
640 if (temp) {
641 logon_time = (time_t) atol(temp);
642 pdb_set_logon_time(sampass, logon_time, PDB_SET);
645 temp = smbldap_talloc_single_attribute(
646 ldap_state->smbldap_state->ldap_struct,
647 entry,
648 get_userattr_key2string(ldap_state->schema_ver,
649 LDAP_ATTR_LOGOFF_TIME),
650 ctx);
651 if (temp) {
652 logoff_time = (time_t) atol(temp);
653 pdb_set_logoff_time(sampass, logoff_time, PDB_SET);
656 temp = smbldap_talloc_single_attribute(
657 ldap_state->smbldap_state->ldap_struct,
658 entry,
659 get_userattr_key2string(ldap_state->schema_ver,
660 LDAP_ATTR_KICKOFF_TIME),
661 ctx);
662 if (temp) {
663 kickoff_time = (time_t) atol(temp);
664 pdb_set_kickoff_time(sampass, kickoff_time, PDB_SET);
667 temp = smbldap_talloc_single_attribute(
668 ldap_state->smbldap_state->ldap_struct,
669 entry,
670 get_userattr_key2string(ldap_state->schema_ver,
671 LDAP_ATTR_PWD_CAN_CHANGE),
672 ctx);
673 if (temp) {
674 pass_can_change_time = (time_t) atol(temp);
675 pdb_set_pass_can_change_time(sampass,
676 pass_can_change_time, PDB_SET);
679 temp = smbldap_talloc_single_attribute(
680 ldap_state->smbldap_state->ldap_struct,
681 entry,
682 get_userattr_key2string(ldap_state->schema_ver,
683 LDAP_ATTR_PWD_MUST_CHANGE),
684 ctx);
685 if (temp) {
686 pass_must_change_time = (time_t) atol(temp);
687 pdb_set_pass_must_change_time(sampass,
688 pass_must_change_time, PDB_SET);
691 /* recommend that 'gecos' and 'displayName' should refer to the same
692 * attribute OID. userFullName depreciated, only used by Samba
693 * primary rules of LDAP: don't make a new attribute when one is already defined
694 * that fits your needs; using cn then displayName rather than 'userFullName'
697 fullname = smbldap_talloc_single_attribute(
698 ldap_state->smbldap_state->ldap_struct,
699 entry,
700 get_userattr_key2string(ldap_state->schema_ver,
701 LDAP_ATTR_DISPLAY_NAME),
702 ctx);
703 if (fullname) {
704 pdb_set_fullname(sampass, fullname, PDB_SET);
705 } else {
706 fullname = smbldap_talloc_single_attribute(
707 ldap_state->smbldap_state->ldap_struct,
708 entry,
709 get_userattr_key2string(ldap_state->schema_ver,
710 LDAP_ATTR_CN),
711 ctx);
712 if (fullname) {
713 pdb_set_fullname(sampass, fullname, PDB_SET);
717 dir_drive = smbldap_talloc_single_attribute(
718 ldap_state->smbldap_state->ldap_struct,
719 entry,
720 get_userattr_key2string(ldap_state->schema_ver,
721 LDAP_ATTR_HOME_DRIVE),
722 ctx);
723 if (dir_drive) {
724 pdb_set_dir_drive(sampass, dir_drive, PDB_SET);
725 } else {
726 pdb_set_dir_drive( sampass, lp_logon_drive(), PDB_DEFAULT );
729 homedir = smbldap_talloc_single_attribute(
730 ldap_state->smbldap_state->ldap_struct,
731 entry,
732 get_userattr_key2string(ldap_state->schema_ver,
733 LDAP_ATTR_HOME_PATH),
734 ctx);
735 if (homedir) {
736 if (expand_explicit) {
737 homedir = talloc_sub_basic(ctx,
738 username,
739 domain,
740 homedir);
741 if (!homedir) {
742 goto fn_exit;
745 pdb_set_homedir(sampass, homedir, PDB_SET);
746 } else {
747 pdb_set_homedir(sampass,
748 talloc_sub_basic(ctx, username, domain,
749 lp_logon_home()),
750 PDB_DEFAULT);
753 logon_script = smbldap_talloc_single_attribute(
754 ldap_state->smbldap_state->ldap_struct,
755 entry,
756 get_userattr_key2string(ldap_state->schema_ver,
757 LDAP_ATTR_LOGON_SCRIPT),
758 ctx);
759 if (logon_script) {
760 if (expand_explicit) {
761 logon_script = talloc_sub_basic(ctx,
762 username,
763 domain,
764 logon_script);
765 if (!logon_script) {
766 goto fn_exit;
769 pdb_set_logon_script(sampass, logon_script, PDB_SET);
770 } else {
771 pdb_set_logon_script(sampass,
772 talloc_sub_basic(ctx, username, domain,
773 lp_logon_script()),
774 PDB_DEFAULT );
777 profile_path = smbldap_talloc_single_attribute(
778 ldap_state->smbldap_state->ldap_struct,
779 entry,
780 get_userattr_key2string(ldap_state->schema_ver,
781 LDAP_ATTR_PROFILE_PATH),
782 ctx);
783 if (profile_path) {
784 if (expand_explicit) {
785 profile_path = talloc_sub_basic(ctx,
786 username,
787 domain,
788 profile_path);
789 if (!profile_path) {
790 goto fn_exit;
793 pdb_set_profile_path(sampass, profile_path, PDB_SET);
794 } else {
795 pdb_set_profile_path(sampass,
796 talloc_sub_basic(ctx, username, domain,
797 lp_logon_path()),
798 PDB_DEFAULT );
801 acct_desc = smbldap_talloc_single_attribute(
802 ldap_state->smbldap_state->ldap_struct,
803 entry,
804 get_userattr_key2string(ldap_state->schema_ver,
805 LDAP_ATTR_DESC),
806 ctx);
807 if (acct_desc) {
808 pdb_set_acct_desc(sampass, acct_desc, PDB_SET);
811 workstations = smbldap_talloc_single_attribute(
812 ldap_state->smbldap_state->ldap_struct,
813 entry,
814 get_userattr_key2string(ldap_state->schema_ver,
815 LDAP_ATTR_USER_WKS),
816 ctx);
817 if (workstations) {
818 pdb_set_workstations(sampass, workstations, PDB_SET);
821 munged_dial = smbldap_talloc_single_attribute(
822 ldap_state->smbldap_state->ldap_struct,
823 entry,
824 get_userattr_key2string(ldap_state->schema_ver,
825 LDAP_ATTR_MUNGED_DIAL),
826 ctx);
827 if (munged_dial) {
828 pdb_set_munged_dial(sampass, munged_dial, PDB_SET);
831 /* FIXME: hours stuff should be cleaner */
833 logon_divs = 168;
834 hours_len = 21;
835 memset(hours, 0xff, hours_len);
837 if (ldap_state->is_nds_ldap) {
838 char *user_dn;
839 size_t pwd_len;
840 char clear_text_pw[512];
842 /* Make call to Novell eDirectory ldap extension to get clear text password.
843 NOTE: This will only work if we have an SSL connection to eDirectory. */
844 user_dn = smbldap_talloc_dn(ctx, ldap_state->smbldap_state->ldap_struct, entry);
845 if (user_dn != NULL) {
846 DEBUG(3, ("init_sam_from_ldap: smbldap_talloc_dn(ctx, %s) returned '%s'\n", username, user_dn));
848 pwd_len = sizeof(clear_text_pw);
849 if (pdb_nds_get_password(ldap_state->smbldap_state, user_dn, &pwd_len, clear_text_pw) == LDAP_SUCCESS) {
850 nt_lm_owf_gen(clear_text_pw, smbntpwd, smblmpwd);
851 if (!pdb_set_lanman_passwd(sampass, smblmpwd, PDB_SET)) {
852 TALLOC_FREE(user_dn);
853 return False;
855 ZERO_STRUCT(smblmpwd);
856 if (!pdb_set_nt_passwd(sampass, smbntpwd, PDB_SET)) {
857 TALLOC_FREE(user_dn);
858 return False;
860 ZERO_STRUCT(smbntpwd);
861 use_samba_attrs = False;
864 TALLOC_FREE(user_dn);
866 } else {
867 DEBUG(0, ("init_sam_from_ldap: failed to get user_dn for '%s'\n", username));
871 if (use_samba_attrs) {
872 temp = smbldap_talloc_single_attribute(
873 ldap_state->smbldap_state->ldap_struct,
874 entry,
875 get_userattr_key2string(ldap_state->schema_ver,
876 LDAP_ATTR_LMPW),
877 ctx);
878 if (temp) {
879 pdb_gethexpwd(temp, smblmpwd);
880 memset((char *)temp, '\0', strlen(temp)+1);
881 if (!pdb_set_lanman_passwd(sampass, smblmpwd, PDB_SET)) {
882 goto fn_exit;
884 ZERO_STRUCT(smblmpwd);
887 temp = smbldap_talloc_single_attribute(
888 ldap_state->smbldap_state->ldap_struct,
889 entry,
890 get_userattr_key2string(ldap_state->schema_ver,
891 LDAP_ATTR_NTPW),
892 ctx);
893 if (temp) {
894 pdb_gethexpwd(temp, smbntpwd);
895 memset((char *)temp, '\0', strlen(temp)+1);
896 if (!pdb_set_nt_passwd(sampass, smbntpwd, PDB_SET)) {
897 goto fn_exit;
899 ZERO_STRUCT(smbntpwd);
903 pwHistLen = 0;
905 pdb_get_account_policy(PDB_POLICY_PASSWORD_HISTORY, &pwHistLen);
906 if (pwHistLen > 0){
907 uint8 *pwhist = NULL;
908 int i;
909 char *history_string = TALLOC_ARRAY(ctx, char,
910 MAX_PW_HISTORY_LEN*64);
912 if (!history_string) {
913 goto fn_exit;
916 pwHistLen = MIN(pwHistLen, MAX_PW_HISTORY_LEN);
918 pwhist = TALLOC_ARRAY(ctx, uint8,
919 pwHistLen * PW_HISTORY_ENTRY_LEN);
920 if (pwhist == NULL) {
921 DEBUG(0, ("init_sam_from_ldap: talloc failed!\n"));
922 goto fn_exit;
924 memset(pwhist, '\0', pwHistLen * PW_HISTORY_ENTRY_LEN);
926 if (smbldap_get_single_attribute(
927 ldap_state->smbldap_state->ldap_struct,
928 entry,
929 get_userattr_key2string(ldap_state->schema_ver,
930 LDAP_ATTR_PWD_HISTORY),
931 history_string,
932 MAX_PW_HISTORY_LEN*64)) {
933 bool hex_failed = false;
934 for (i = 0; i < pwHistLen; i++){
935 /* Get the 16 byte salt. */
936 if (!pdb_gethexpwd(&history_string[i*64],
937 &pwhist[i*PW_HISTORY_ENTRY_LEN])) {
938 hex_failed = true;
939 break;
941 /* Get the 16 byte MD5 hash of salt+passwd. */
942 if (!pdb_gethexpwd(&history_string[(i*64)+32],
943 &pwhist[(i*PW_HISTORY_ENTRY_LEN)+
944 PW_HISTORY_SALT_LEN])) {
945 hex_failed = True;
946 break;
949 if (hex_failed) {
950 DEBUG(2,("init_sam_from_ldap: Failed to get password history for user %s\n",
951 username));
952 memset(pwhist, '\0', pwHistLen * PW_HISTORY_ENTRY_LEN);
955 if (!pdb_set_pw_history(sampass, pwhist, pwHistLen, PDB_SET)){
956 goto fn_exit;
960 temp = smbldap_talloc_single_attribute(
961 ldap_state->smbldap_state->ldap_struct,
962 entry,
963 get_userattr_key2string(ldap_state->schema_ver,
964 LDAP_ATTR_ACB_INFO),
965 ctx);
966 if (temp) {
967 acct_ctrl = pdb_decode_acct_ctrl(temp);
969 if (acct_ctrl == 0) {
970 acct_ctrl |= ACB_NORMAL;
973 pdb_set_acct_ctrl(sampass, acct_ctrl, PDB_SET);
974 } else {
975 acct_ctrl |= ACB_NORMAL;
978 pdb_set_hours_len(sampass, hours_len, PDB_SET);
979 pdb_set_logon_divs(sampass, logon_divs, PDB_SET);
981 temp = smbldap_talloc_single_attribute(
982 ldap_state->smbldap_state->ldap_struct,
983 entry,
984 get_userattr_key2string(ldap_state->schema_ver,
985 LDAP_ATTR_BAD_PASSWORD_COUNT),
986 ctx);
987 if (temp) {
988 bad_password_count = (uint32) atol(temp);
989 pdb_set_bad_password_count(sampass,
990 bad_password_count, PDB_SET);
993 temp = smbldap_talloc_single_attribute(
994 ldap_state->smbldap_state->ldap_struct,
995 entry,
996 get_userattr_key2string(ldap_state->schema_ver,
997 LDAP_ATTR_BAD_PASSWORD_TIME),
998 ctx);
999 if (temp) {
1000 bad_password_time = (time_t) atol(temp);
1001 pdb_set_bad_password_time(sampass, bad_password_time, PDB_SET);
1005 temp = smbldap_talloc_single_attribute(
1006 ldap_state->smbldap_state->ldap_struct,
1007 entry,
1008 get_userattr_key2string(ldap_state->schema_ver,
1009 LDAP_ATTR_LOGON_COUNT),
1010 ctx);
1011 if (temp) {
1012 logon_count = (uint32) atol(temp);
1013 pdb_set_logon_count(sampass, logon_count, PDB_SET);
1016 /* pdb_set_unknown_6(sampass, unknown6, PDB_SET); */
1018 temp = smbldap_talloc_single_attribute(
1019 ldap_state->smbldap_state->ldap_struct,
1020 entry,
1021 get_userattr_key2string(ldap_state->schema_ver,
1022 LDAP_ATTR_LOGON_HOURS),
1023 ctx);
1024 if (temp) {
1025 pdb_gethexhours(temp, hours);
1026 memset((char *)temp, '\0', strlen(temp) +1);
1027 pdb_set_hours(sampass, hours, PDB_SET);
1028 ZERO_STRUCT(hours);
1031 if (lp_parm_bool(-1, "ldapsam", "trusted", False)) {
1032 temp = smbldap_talloc_single_attribute(
1033 priv2ld(ldap_state),
1034 entry,
1035 "uidNumber",
1036 ctx);
1037 if (temp) {
1038 /* We've got a uid, feed the cache */
1039 uid_t uid = strtoul(temp, NULL, 10);
1040 store_uid_sid_cache(pdb_get_user_sid(sampass), uid);
1041 idmap_cache_set_sid2uid(pdb_get_user_sid(sampass), uid);
1045 /* check the timestamp of the cache vs ldap entry */
1046 if (!(ldap_entry_time = ldapsam_get_entry_timestamp(ldap_state,
1047 entry))) {
1048 ret = true;
1049 goto fn_exit;
1052 /* see if we have newer updates */
1053 if (!(cache_entry = login_cache_read(sampass))) {
1054 DEBUG (9, ("No cache entry, bad count = %u, bad time = %u\n",
1055 (unsigned int)pdb_get_bad_password_count(sampass),
1056 (unsigned int)pdb_get_bad_password_time(sampass)));
1057 ret = true;
1058 goto fn_exit;
1061 DEBUG(7, ("ldap time is %u, cache time is %u, bad time = %u\n",
1062 (unsigned int)ldap_entry_time,
1063 (unsigned int)cache_entry->entry_timestamp,
1064 (unsigned int)cache_entry->bad_password_time));
1066 if (ldap_entry_time > cache_entry->entry_timestamp) {
1067 /* cache is older than directory , so
1068 we need to delete the entry but allow the
1069 fields to be written out */
1070 login_cache_delentry(sampass);
1071 } else {
1072 /* read cache in */
1073 pdb_set_acct_ctrl(sampass,
1074 pdb_get_acct_ctrl(sampass) |
1075 (cache_entry->acct_ctrl & ACB_AUTOLOCK),
1076 PDB_SET);
1077 pdb_set_bad_password_count(sampass,
1078 cache_entry->bad_password_count,
1079 PDB_SET);
1080 pdb_set_bad_password_time(sampass,
1081 cache_entry->bad_password_time,
1082 PDB_SET);
1085 ret = true;
1087 fn_exit:
1089 TALLOC_FREE(ctx);
1090 SAFE_FREE(cache_entry);
1091 return ret;
1094 /**********************************************************************
1095 Initialize the ldap db from a struct samu. Called on update.
1096 (Based on init_buffer_from_sam in pdb_tdb.c)
1097 *********************************************************************/
1099 static bool init_ldap_from_sam (struct ldapsam_privates *ldap_state,
1100 LDAPMessage *existing,
1101 LDAPMod *** mods, struct samu * sampass,
1102 bool (*need_update)(const struct samu *,
1103 enum pdb_elements))
1105 char *temp = NULL;
1106 uint32 rid;
1108 if (mods == NULL || sampass == NULL) {
1109 DEBUG(0, ("init_ldap_from_sam: NULL parameters found!\n"));
1110 return False;
1113 *mods = NULL;
1116 * took out adding "objectclass: sambaAccount"
1117 * do this on a per-mod basis
1119 if (need_update(sampass, PDB_USERNAME)) {
1120 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1121 "uid", pdb_get_username(sampass));
1122 if (ldap_state->is_nds_ldap) {
1123 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1124 "cn", pdb_get_username(sampass));
1125 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1126 "sn", pdb_get_username(sampass));
1130 DEBUG(2, ("init_ldap_from_sam: Setting entry for user: %s\n", pdb_get_username(sampass)));
1132 /* only update the RID if we actually need to */
1133 if (need_update(sampass, PDB_USERSID)) {
1134 fstring sid_string;
1135 const DOM_SID *user_sid = pdb_get_user_sid(sampass);
1137 switch ( ldap_state->schema_ver ) {
1138 case SCHEMAVER_SAMBAACCOUNT:
1139 if (!sid_peek_check_rid(&ldap_state->domain_sid, user_sid, &rid)) {
1140 DEBUG(1, ("init_ldap_from_sam: User's SID (%s) is not for this domain (%s), cannot add to LDAP!\n",
1141 sid_string_dbg(user_sid),
1142 sid_string_dbg(
1143 &ldap_state->domain_sid)));
1144 return False;
1146 if (asprintf(&temp, "%i", rid) < 0) {
1147 return false;
1149 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1150 get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_USER_RID),
1151 temp);
1152 SAFE_FREE(temp);
1153 break;
1155 case SCHEMAVER_SAMBASAMACCOUNT:
1156 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1157 get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_USER_SID),
1158 sid_to_fstring(sid_string, user_sid));
1159 break;
1161 default:
1162 DEBUG(0,("init_ldap_from_sam: unknown schema version specified\n"));
1163 break;
1167 /* we don't need to store the primary group RID - so leaving it
1168 'free' to hang off the unix primary group makes life easier */
1170 if (need_update(sampass, PDB_GROUPSID)) {
1171 fstring sid_string;
1172 const DOM_SID *group_sid = pdb_get_group_sid(sampass);
1174 switch ( ldap_state->schema_ver ) {
1175 case SCHEMAVER_SAMBAACCOUNT:
1176 if (!sid_peek_check_rid(&ldap_state->domain_sid, group_sid, &rid)) {
1177 DEBUG(1, ("init_ldap_from_sam: User's Primary Group SID (%s) is not for this domain (%s), cannot add to LDAP!\n",
1178 sid_string_dbg(group_sid),
1179 sid_string_dbg(
1180 &ldap_state->domain_sid)));
1181 return False;
1184 if (asprintf(&temp, "%i", rid) < 0) {
1185 return false;
1187 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1188 get_userattr_key2string(ldap_state->schema_ver,
1189 LDAP_ATTR_PRIMARY_GROUP_RID), temp);
1190 SAFE_FREE(temp);
1191 break;
1193 case SCHEMAVER_SAMBASAMACCOUNT:
1194 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1195 get_userattr_key2string(ldap_state->schema_ver,
1196 LDAP_ATTR_PRIMARY_GROUP_SID), sid_to_fstring(sid_string, group_sid));
1197 break;
1199 default:
1200 DEBUG(0,("init_ldap_from_sam: unknown schema version specified\n"));
1201 break;
1206 /* displayName, cn, and gecos should all be the same
1207 * most easily accomplished by giving them the same OID
1208 * gecos isn't set here b/c it should be handled by the
1209 * add-user script
1210 * We change displayName only and fall back to cn if
1211 * it does not exist.
1214 if (need_update(sampass, PDB_FULLNAME))
1215 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1216 get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_DISPLAY_NAME),
1217 pdb_get_fullname(sampass));
1219 if (need_update(sampass, PDB_ACCTDESC))
1220 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1221 get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_DESC),
1222 pdb_get_acct_desc(sampass));
1224 if (need_update(sampass, PDB_WORKSTATIONS))
1225 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1226 get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_USER_WKS),
1227 pdb_get_workstations(sampass));
1229 if (need_update(sampass, PDB_MUNGEDDIAL))
1230 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1231 get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_MUNGED_DIAL),
1232 pdb_get_munged_dial(sampass));
1234 if (need_update(sampass, PDB_SMBHOME))
1235 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1236 get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_HOME_PATH),
1237 pdb_get_homedir(sampass));
1239 if (need_update(sampass, PDB_DRIVE))
1240 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1241 get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_HOME_DRIVE),
1242 pdb_get_dir_drive(sampass));
1244 if (need_update(sampass, PDB_LOGONSCRIPT))
1245 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1246 get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_LOGON_SCRIPT),
1247 pdb_get_logon_script(sampass));
1249 if (need_update(sampass, PDB_PROFILE))
1250 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1251 get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_PROFILE_PATH),
1252 pdb_get_profile_path(sampass));
1254 if (asprintf(&temp, "%li", (long int)pdb_get_logon_time(sampass)) < 0) {
1255 return false;
1257 if (need_update(sampass, PDB_LOGONTIME))
1258 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1259 get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_LOGON_TIME), temp);
1260 SAFE_FREE(temp);
1262 if (asprintf(&temp, "%li", (long int)pdb_get_logoff_time(sampass)) < 0) {
1263 return false;
1265 if (need_update(sampass, PDB_LOGOFFTIME))
1266 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1267 get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_LOGOFF_TIME), temp);
1268 SAFE_FREE(temp);
1270 if (asprintf(&temp, "%li", (long int)pdb_get_kickoff_time(sampass)) < 0) {
1271 return false;
1273 if (need_update(sampass, PDB_KICKOFFTIME))
1274 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1275 get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_KICKOFF_TIME), temp);
1276 SAFE_FREE(temp);
1278 if (asprintf(&temp, "%li", (long int)pdb_get_pass_can_change_time_noncalc(sampass)) < 0) {
1279 return false;
1281 if (need_update(sampass, PDB_CANCHANGETIME))
1282 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1283 get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_PWD_CAN_CHANGE), temp);
1284 SAFE_FREE(temp);
1286 if (asprintf(&temp, "%li", (long int)pdb_get_pass_must_change_time(sampass)) < 0) {
1287 return false;
1289 if (need_update(sampass, PDB_MUSTCHANGETIME))
1290 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1291 get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_PWD_MUST_CHANGE), temp);
1292 SAFE_FREE(temp);
1294 if ((pdb_get_acct_ctrl(sampass)&(ACB_WSTRUST|ACB_SVRTRUST|ACB_DOMTRUST))
1295 || (lp_ldap_passwd_sync()!=LDAP_PASSWD_SYNC_ONLY)) {
1297 if (need_update(sampass, PDB_LMPASSWD)) {
1298 const uchar *lm_pw = pdb_get_lanman_passwd(sampass);
1299 if (lm_pw) {
1300 char pwstr[34];
1301 pdb_sethexpwd(pwstr, lm_pw,
1302 pdb_get_acct_ctrl(sampass));
1303 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1304 get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_LMPW),
1305 pwstr);
1306 } else {
1307 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1308 get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_LMPW),
1309 NULL);
1312 if (need_update(sampass, PDB_NTPASSWD)) {
1313 const uchar *nt_pw = pdb_get_nt_passwd(sampass);
1314 if (nt_pw) {
1315 char pwstr[34];
1316 pdb_sethexpwd(pwstr, nt_pw,
1317 pdb_get_acct_ctrl(sampass));
1318 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1319 get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_NTPW),
1320 pwstr);
1321 } else {
1322 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1323 get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_NTPW),
1324 NULL);
1328 if (need_update(sampass, PDB_PWHISTORY)) {
1329 char *pwstr = NULL;
1330 uint32 pwHistLen = 0;
1331 pdb_get_account_policy(PDB_POLICY_PASSWORD_HISTORY, &pwHistLen);
1333 pwstr = SMB_MALLOC_ARRAY(char, 1024);
1334 if (!pwstr) {
1335 return false;
1337 if (pwHistLen == 0) {
1338 /* Remove any password history from the LDAP store. */
1339 memset(pwstr, '0', 64); /* NOTE !!!! '0' *NOT '\0' */
1340 pwstr[64] = '\0';
1341 } else {
1342 int i;
1343 uint32 currHistLen = 0;
1344 const uint8 *pwhist = pdb_get_pw_history(sampass, &currHistLen);
1345 if (pwhist != NULL) {
1346 /* We can only store (1024-1/64 password history entries. */
1347 pwHistLen = MIN(pwHistLen, ((1024-1)/64));
1348 for (i=0; i< pwHistLen && i < currHistLen; i++) {
1349 /* Store the salt. */
1350 pdb_sethexpwd(&pwstr[i*64], &pwhist[i*PW_HISTORY_ENTRY_LEN], 0);
1351 /* Followed by the md5 hash of salt + md4 hash */
1352 pdb_sethexpwd(&pwstr[(i*64)+32],
1353 &pwhist[(i*PW_HISTORY_ENTRY_LEN)+PW_HISTORY_SALT_LEN], 0);
1354 DEBUG(100, ("pwstr=%s\n", pwstr));
1358 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1359 get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_PWD_HISTORY),
1360 pwstr);
1361 SAFE_FREE(pwstr);
1364 if (need_update(sampass, PDB_PASSLASTSET)) {
1365 if (asprintf(&temp, "%li",
1366 (long int)pdb_get_pass_last_set_time(sampass)) < 0) {
1367 return false;
1369 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1370 get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_PWD_LAST_SET),
1371 temp);
1372 SAFE_FREE(temp);
1376 if (need_update(sampass, PDB_HOURS)) {
1377 const uint8 *hours = pdb_get_hours(sampass);
1378 if (hours) {
1379 char hourstr[44];
1380 pdb_sethexhours(hourstr, hours);
1381 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct,
1382 existing,
1383 mods,
1384 get_userattr_key2string(ldap_state->schema_ver,
1385 LDAP_ATTR_LOGON_HOURS),
1386 hourstr);
1390 if (need_update(sampass, PDB_ACCTCTRL))
1391 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1392 get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_ACB_INFO),
1393 pdb_encode_acct_ctrl (pdb_get_acct_ctrl(sampass), NEW_PW_FORMAT_SPACE_PADDED_LEN));
1395 /* password lockout cache:
1396 - If we are now autolocking or clearing, we write to ldap
1397 - If we are clearing, we delete the cache entry
1398 - If the count is > 0, we update the cache
1400 This even means when autolocking, we cache, just in case the
1401 update doesn't work, and we have to cache the autolock flag */
1403 if (need_update(sampass, PDB_BAD_PASSWORD_COUNT)) /* &&
1404 need_update(sampass, PDB_BAD_PASSWORD_TIME)) */ {
1405 uint16 badcount = pdb_get_bad_password_count(sampass);
1406 time_t badtime = pdb_get_bad_password_time(sampass);
1407 uint32 pol;
1408 pdb_get_account_policy(PDB_POLICY_BAD_ATTEMPT_LOCKOUT, &pol);
1410 DEBUG(3, ("updating bad password fields, policy=%u, count=%u, time=%u\n",
1411 (unsigned int)pol, (unsigned int)badcount, (unsigned int)badtime));
1413 if ((badcount >= pol) || (badcount == 0)) {
1414 DEBUG(7, ("making mods to update ldap, count=%u, time=%u\n",
1415 (unsigned int)badcount, (unsigned int)badtime));
1416 if (asprintf(&temp, "%li", (long)badcount) < 0) {
1417 return false;
1419 smbldap_make_mod(
1420 ldap_state->smbldap_state->ldap_struct,
1421 existing, mods,
1422 get_userattr_key2string(
1423 ldap_state->schema_ver,
1424 LDAP_ATTR_BAD_PASSWORD_COUNT),
1425 temp);
1426 SAFE_FREE(temp);
1428 if (asprintf(&temp, "%li", (long int)badtime) < 0) {
1429 return false;
1431 smbldap_make_mod(
1432 ldap_state->smbldap_state->ldap_struct,
1433 existing, mods,
1434 get_userattr_key2string(
1435 ldap_state->schema_ver,
1436 LDAP_ATTR_BAD_PASSWORD_TIME),
1437 temp);
1438 SAFE_FREE(temp);
1440 if (badcount == 0) {
1441 DEBUG(7, ("bad password count is reset, deleting login cache entry for %s\n", pdb_get_nt_username(sampass)));
1442 login_cache_delentry(sampass);
1443 } else {
1444 LOGIN_CACHE cache_entry;
1446 cache_entry.entry_timestamp = time(NULL);
1447 cache_entry.acct_ctrl = pdb_get_acct_ctrl(sampass);
1448 cache_entry.bad_password_count = badcount;
1449 cache_entry.bad_password_time = badtime;
1451 DEBUG(7, ("Updating bad password count and time in login cache\n"));
1452 login_cache_write(sampass, cache_entry);
1456 return True;
1459 /**********************************************************************
1460 End enumeration of the LDAP password list.
1461 *********************************************************************/
1463 static void ldapsam_endsampwent(struct pdb_methods *my_methods)
1465 struct ldapsam_privates *ldap_state = (struct ldapsam_privates *)my_methods->private_data;
1466 if (ldap_state->result) {
1467 ldap_msgfree(ldap_state->result);
1468 ldap_state->result = NULL;
1472 static void append_attr(TALLOC_CTX *mem_ctx, const char ***attr_list,
1473 const char *new_attr)
1475 int i;
1477 if (new_attr == NULL) {
1478 return;
1481 for (i=0; (*attr_list)[i] != NULL; i++) {
1485 (*attr_list) = TALLOC_REALLOC_ARRAY(mem_ctx, (*attr_list),
1486 const char *, i+2);
1487 SMB_ASSERT((*attr_list) != NULL);
1488 (*attr_list)[i] = talloc_strdup((*attr_list), new_attr);
1489 (*attr_list)[i+1] = NULL;
1492 /**********************************************************************
1493 Get struct samu entry from LDAP by username.
1494 *********************************************************************/
1496 static NTSTATUS ldapsam_getsampwnam(struct pdb_methods *my_methods, struct samu *user, const char *sname)
1498 NTSTATUS ret = NT_STATUS_UNSUCCESSFUL;
1499 struct ldapsam_privates *ldap_state = (struct ldapsam_privates *)my_methods->private_data;
1500 LDAPMessage *result = NULL;
1501 LDAPMessage *entry = NULL;
1502 int count;
1503 const char ** attr_list;
1504 int rc;
1506 attr_list = get_userattr_list( user, ldap_state->schema_ver );
1507 append_attr(user, &attr_list,
1508 get_userattr_key2string(ldap_state->schema_ver,
1509 LDAP_ATTR_MOD_TIMESTAMP));
1510 append_attr(user, &attr_list, "uidNumber");
1511 rc = ldapsam_search_suffix_by_name(ldap_state, sname, &result,
1512 attr_list);
1513 TALLOC_FREE( attr_list );
1515 if ( rc != LDAP_SUCCESS )
1516 return NT_STATUS_NO_SUCH_USER;
1518 count = ldap_count_entries(ldap_state->smbldap_state->ldap_struct, result);
1520 if (count < 1) {
1521 DEBUG(4, ("ldapsam_getsampwnam: Unable to locate user [%s] count=%d\n", sname, count));
1522 ldap_msgfree(result);
1523 return NT_STATUS_NO_SUCH_USER;
1524 } else if (count > 1) {
1525 DEBUG(1, ("ldapsam_getsampwnam: Duplicate entries for this user [%s] Failing. count=%d\n", sname, count));
1526 ldap_msgfree(result);
1527 return NT_STATUS_NO_SUCH_USER;
1530 entry = ldap_first_entry(ldap_state->smbldap_state->ldap_struct, result);
1531 if (entry) {
1532 if (!init_sam_from_ldap(ldap_state, user, entry)) {
1533 DEBUG(1,("ldapsam_getsampwnam: init_sam_from_ldap failed for user '%s'!\n", sname));
1534 ldap_msgfree(result);
1535 return NT_STATUS_NO_SUCH_USER;
1537 pdb_set_backend_private_data(user, result, NULL,
1538 my_methods, PDB_CHANGED);
1539 talloc_autofree_ldapmsg(user, result);
1540 ret = NT_STATUS_OK;
1541 } else {
1542 ldap_msgfree(result);
1544 return ret;
1547 static int ldapsam_get_ldap_user_by_sid(struct ldapsam_privates *ldap_state,
1548 const DOM_SID *sid, LDAPMessage **result)
1550 int rc = -1;
1551 const char ** attr_list;
1552 uint32 rid;
1554 switch ( ldap_state->schema_ver ) {
1555 case SCHEMAVER_SAMBASAMACCOUNT: {
1556 TALLOC_CTX *tmp_ctx = talloc_new(NULL);
1557 if (tmp_ctx == NULL) {
1558 return LDAP_NO_MEMORY;
1561 attr_list = get_userattr_list(tmp_ctx,
1562 ldap_state->schema_ver);
1563 append_attr(tmp_ctx, &attr_list,
1564 get_userattr_key2string(
1565 ldap_state->schema_ver,
1566 LDAP_ATTR_MOD_TIMESTAMP));
1567 append_attr(tmp_ctx, &attr_list, "uidNumber");
1568 rc = ldapsam_search_suffix_by_sid(ldap_state, sid,
1569 result, attr_list);
1570 TALLOC_FREE(tmp_ctx);
1572 if ( rc != LDAP_SUCCESS )
1573 return rc;
1574 break;
1577 case SCHEMAVER_SAMBAACCOUNT:
1578 if (!sid_peek_check_rid(&ldap_state->domain_sid, sid, &rid)) {
1579 return rc;
1582 attr_list = get_userattr_list(NULL,
1583 ldap_state->schema_ver);
1584 rc = ldapsam_search_suffix_by_rid(ldap_state, rid, result, attr_list );
1585 TALLOC_FREE( attr_list );
1587 if ( rc != LDAP_SUCCESS )
1588 return rc;
1589 break;
1591 return rc;
1594 /**********************************************************************
1595 Get struct samu entry from LDAP by SID.
1596 *********************************************************************/
1598 static NTSTATUS ldapsam_getsampwsid(struct pdb_methods *my_methods, struct samu * user, const DOM_SID *sid)
1600 struct ldapsam_privates *ldap_state = (struct ldapsam_privates *)my_methods->private_data;
1601 LDAPMessage *result = NULL;
1602 LDAPMessage *entry = NULL;
1603 int count;
1604 int rc;
1606 rc = ldapsam_get_ldap_user_by_sid(ldap_state,
1607 sid, &result);
1608 if (rc != LDAP_SUCCESS)
1609 return NT_STATUS_NO_SUCH_USER;
1611 count = ldap_count_entries(ldap_state->smbldap_state->ldap_struct, result);
1613 if (count < 1) {
1614 DEBUG(4, ("ldapsam_getsampwsid: Unable to locate SID [%s] "
1615 "count=%d\n", sid_string_dbg(sid), count));
1616 ldap_msgfree(result);
1617 return NT_STATUS_NO_SUCH_USER;
1618 } else if (count > 1) {
1619 DEBUG(1, ("ldapsam_getsampwsid: More than one user with SID "
1620 "[%s]. Failing. count=%d\n", sid_string_dbg(sid),
1621 count));
1622 ldap_msgfree(result);
1623 return NT_STATUS_NO_SUCH_USER;
1626 entry = ldap_first_entry(ldap_state->smbldap_state->ldap_struct, result);
1627 if (!entry) {
1628 ldap_msgfree(result);
1629 return NT_STATUS_NO_SUCH_USER;
1632 if (!init_sam_from_ldap(ldap_state, user, entry)) {
1633 DEBUG(1,("ldapsam_getsampwsid: init_sam_from_ldap failed!\n"));
1634 ldap_msgfree(result);
1635 return NT_STATUS_NO_SUCH_USER;
1638 pdb_set_backend_private_data(user, result, NULL,
1639 my_methods, PDB_CHANGED);
1640 talloc_autofree_ldapmsg(user, result);
1641 return NT_STATUS_OK;
1644 /********************************************************************
1645 Do the actual modification - also change a plaintext passord if
1646 it it set.
1647 **********************************************************************/
1649 static NTSTATUS ldapsam_modify_entry(struct pdb_methods *my_methods,
1650 struct samu *newpwd, char *dn,
1651 LDAPMod **mods, int ldap_op,
1652 bool (*need_update)(const struct samu *, enum pdb_elements))
1654 struct ldapsam_privates *ldap_state = (struct ldapsam_privates *)my_methods->private_data;
1655 int rc;
1657 if (!newpwd || !dn) {
1658 return NT_STATUS_INVALID_PARAMETER;
1661 if (!mods) {
1662 DEBUG(5,("ldapsam_modify_entry: mods is empty: nothing to modify\n"));
1663 /* may be password change below however */
1664 } else {
1665 switch(ldap_op) {
1666 case LDAP_MOD_ADD:
1667 if (ldap_state->is_nds_ldap) {
1668 smbldap_set_mod(&mods, LDAP_MOD_ADD,
1669 "objectclass",
1670 "inetOrgPerson");
1671 } else {
1672 smbldap_set_mod(&mods, LDAP_MOD_ADD,
1673 "objectclass",
1674 LDAP_OBJ_ACCOUNT);
1676 rc = smbldap_add(ldap_state->smbldap_state,
1677 dn, mods);
1678 break;
1679 case LDAP_MOD_REPLACE:
1680 rc = smbldap_modify(ldap_state->smbldap_state,
1681 dn ,mods);
1682 break;
1683 default:
1684 DEBUG(0,("ldapsam_modify_entry: Wrong LDAP operation type: %d!\n",
1685 ldap_op));
1686 return NT_STATUS_INVALID_PARAMETER;
1689 if (rc!=LDAP_SUCCESS) {
1690 return NT_STATUS_UNSUCCESSFUL;
1694 if (!(pdb_get_acct_ctrl(newpwd)&(ACB_WSTRUST|ACB_SVRTRUST|ACB_DOMTRUST)) &&
1695 (lp_ldap_passwd_sync() != LDAP_PASSWD_SYNC_OFF) &&
1696 need_update(newpwd, PDB_PLAINTEXT_PW) &&
1697 (pdb_get_plaintext_passwd(newpwd)!=NULL)) {
1698 BerElement *ber;
1699 struct berval *bv;
1700 char *retoid = NULL;
1701 struct berval *retdata = NULL;
1702 char *utf8_password;
1703 char *utf8_dn;
1704 size_t converted_size;
1705 int ret;
1707 if (!ldap_state->is_nds_ldap) {
1709 if (!smbldap_has_extension(ldap_state->smbldap_state->ldap_struct,
1710 LDAP_EXOP_MODIFY_PASSWD)) {
1711 DEBUG(2, ("ldap password change requested, but LDAP "
1712 "server does not support it -- ignoring\n"));
1713 return NT_STATUS_OK;
1717 if (!push_utf8_talloc(talloc_tos(), &utf8_password,
1718 pdb_get_plaintext_passwd(newpwd),
1719 &converted_size))
1721 return NT_STATUS_NO_MEMORY;
1724 if (!push_utf8_talloc(talloc_tos(), &utf8_dn, dn, &converted_size)) {
1725 TALLOC_FREE(utf8_password);
1726 return NT_STATUS_NO_MEMORY;
1729 if ((ber = ber_alloc_t(LBER_USE_DER))==NULL) {
1730 DEBUG(0,("ber_alloc_t returns NULL\n"));
1731 TALLOC_FREE(utf8_password);
1732 TALLOC_FREE(utf8_dn);
1733 return NT_STATUS_UNSUCCESSFUL;
1736 if ((ber_printf (ber, "{") < 0) ||
1737 (ber_printf (ber, "ts", LDAP_TAG_EXOP_MODIFY_PASSWD_ID,
1738 utf8_dn) < 0)) {
1739 DEBUG(0,("ldapsam_modify_entry: ber_printf returns a "
1740 "value <0\n"));
1741 ber_free(ber,1);
1742 TALLOC_FREE(utf8_dn);
1743 TALLOC_FREE(utf8_password);
1744 return NT_STATUS_UNSUCCESSFUL;
1747 if ((utf8_password != NULL) && (*utf8_password != '\0')) {
1748 ret = ber_printf(ber, "ts}",
1749 LDAP_TAG_EXOP_MODIFY_PASSWD_NEW,
1750 utf8_password);
1751 } else {
1752 ret = ber_printf(ber, "}");
1755 if (ret < 0) {
1756 DEBUG(0,("ldapsam_modify_entry: ber_printf returns a "
1757 "value <0\n"));
1758 ber_free(ber,1);
1759 TALLOC_FREE(utf8_dn);
1760 TALLOC_FREE(utf8_password);
1761 return NT_STATUS_UNSUCCESSFUL;
1764 if ((rc = ber_flatten (ber, &bv))<0) {
1765 DEBUG(0,("ldapsam_modify_entry: ber_flatten returns a value <0\n"));
1766 ber_free(ber,1);
1767 TALLOC_FREE(utf8_dn);
1768 TALLOC_FREE(utf8_password);
1769 return NT_STATUS_UNSUCCESSFUL;
1772 TALLOC_FREE(utf8_dn);
1773 TALLOC_FREE(utf8_password);
1774 ber_free(ber, 1);
1776 if (!ldap_state->is_nds_ldap) {
1777 rc = smbldap_extended_operation(ldap_state->smbldap_state,
1778 LDAP_EXOP_MODIFY_PASSWD,
1779 bv, NULL, NULL, &retoid,
1780 &retdata);
1781 } else {
1782 rc = pdb_nds_set_password(ldap_state->smbldap_state, dn,
1783 pdb_get_plaintext_passwd(newpwd));
1785 if (rc != LDAP_SUCCESS) {
1786 char *ld_error = NULL;
1788 if (rc == LDAP_OBJECT_CLASS_VIOLATION) {
1789 DEBUG(3, ("Could not set userPassword "
1790 "attribute due to an objectClass "
1791 "violation -- ignoring\n"));
1792 ber_bvfree(bv);
1793 return NT_STATUS_OK;
1796 ldap_get_option(ldap_state->smbldap_state->ldap_struct, LDAP_OPT_ERROR_STRING,
1797 &ld_error);
1798 DEBUG(0,("ldapsam_modify_entry: LDAP Password could not be changed for user %s: %s\n\t%s\n",
1799 pdb_get_username(newpwd), ldap_err2string(rc), ld_error?ld_error:"unknown"));
1800 SAFE_FREE(ld_error);
1801 ber_bvfree(bv);
1802 #if defined(LDAP_CONSTRAINT_VIOLATION)
1803 if (rc == LDAP_CONSTRAINT_VIOLATION)
1804 return NT_STATUS_PASSWORD_RESTRICTION;
1805 #endif
1806 return NT_STATUS_UNSUCCESSFUL;
1807 } else {
1808 DEBUG(3,("ldapsam_modify_entry: LDAP Password changed for user %s\n",pdb_get_username(newpwd)));
1809 #ifdef DEBUG_PASSWORD
1810 DEBUG(100,("ldapsam_modify_entry: LDAP Password changed to %s\n",pdb_get_plaintext_passwd(newpwd)));
1811 #endif
1812 if (retdata)
1813 ber_bvfree(retdata);
1814 if (retoid)
1815 ldap_memfree(retoid);
1817 ber_bvfree(bv);
1819 return NT_STATUS_OK;
1822 /**********************************************************************
1823 Delete entry from LDAP for username.
1824 *********************************************************************/
1826 static NTSTATUS ldapsam_delete_sam_account(struct pdb_methods *my_methods,
1827 struct samu * sam_acct)
1829 struct ldapsam_privates *priv =
1830 (struct ldapsam_privates *)my_methods->private_data;
1831 const char *sname;
1832 int rc;
1833 LDAPMessage *msg, *entry;
1834 NTSTATUS result = NT_STATUS_NO_MEMORY;
1835 const char **attr_list;
1836 TALLOC_CTX *mem_ctx;
1838 if (!sam_acct) {
1839 DEBUG(0, ("ldapsam_delete_sam_account: sam_acct was NULL!\n"));
1840 return NT_STATUS_INVALID_PARAMETER;
1843 sname = pdb_get_username(sam_acct);
1845 DEBUG(3, ("ldapsam_delete_sam_account: Deleting user %s from "
1846 "LDAP.\n", sname));
1848 mem_ctx = talloc_new(NULL);
1849 if (mem_ctx == NULL) {
1850 DEBUG(0, ("talloc_new failed\n"));
1851 goto done;
1854 attr_list = get_userattr_delete_list(mem_ctx, priv->schema_ver );
1855 if (attr_list == NULL) {
1856 goto done;
1859 rc = ldapsam_search_suffix_by_name(priv, sname, &msg, attr_list);
1861 if ((rc != LDAP_SUCCESS) ||
1862 (ldap_count_entries(priv2ld(priv), msg) != 1) ||
1863 ((entry = ldap_first_entry(priv2ld(priv), msg)) == NULL)) {
1864 DEBUG(5, ("Could not find user %s\n", sname));
1865 result = NT_STATUS_NO_SUCH_USER;
1866 goto done;
1869 rc = ldapsam_delete_entry(
1870 priv, mem_ctx, entry,
1871 priv->schema_ver == SCHEMAVER_SAMBASAMACCOUNT ?
1872 LDAP_OBJ_SAMBASAMACCOUNT : LDAP_OBJ_SAMBAACCOUNT,
1873 attr_list);
1875 result = (rc == LDAP_SUCCESS) ?
1876 NT_STATUS_OK : NT_STATUS_ACCESS_DENIED;
1878 done:
1879 TALLOC_FREE(mem_ctx);
1880 return result;
1883 /**********************************************************************
1884 Helper function to determine for update_sam_account whether
1885 we need LDAP modification.
1886 *********************************************************************/
1888 static bool element_is_changed(const struct samu *sampass,
1889 enum pdb_elements element)
1891 return IS_SAM_CHANGED(sampass, element);
1894 /**********************************************************************
1895 Update struct samu.
1896 *********************************************************************/
1898 static NTSTATUS ldapsam_update_sam_account(struct pdb_methods *my_methods, struct samu * newpwd)
1900 NTSTATUS ret = NT_STATUS_UNSUCCESSFUL;
1901 struct ldapsam_privates *ldap_state = (struct ldapsam_privates *)my_methods->private_data;
1902 int rc = 0;
1903 char *dn;
1904 LDAPMessage *result = NULL;
1905 LDAPMessage *entry = NULL;
1906 LDAPMod **mods = NULL;
1907 const char **attr_list;
1909 result = (LDAPMessage *)pdb_get_backend_private_data(newpwd, my_methods);
1910 if (!result) {
1911 attr_list = get_userattr_list(NULL, ldap_state->schema_ver);
1912 if (pdb_get_username(newpwd) == NULL) {
1913 return NT_STATUS_INVALID_PARAMETER;
1915 rc = ldapsam_search_suffix_by_name(ldap_state, pdb_get_username(newpwd), &result, attr_list );
1916 TALLOC_FREE( attr_list );
1917 if (rc != LDAP_SUCCESS) {
1918 return NT_STATUS_UNSUCCESSFUL;
1920 pdb_set_backend_private_data(newpwd, result, NULL,
1921 my_methods, PDB_CHANGED);
1922 talloc_autofree_ldapmsg(newpwd, result);
1925 if (ldap_count_entries(ldap_state->smbldap_state->ldap_struct, result) == 0) {
1926 DEBUG(0, ("ldapsam_update_sam_account: No user to modify!\n"));
1927 return NT_STATUS_UNSUCCESSFUL;
1930 entry = ldap_first_entry(ldap_state->smbldap_state->ldap_struct, result);
1931 dn = smbldap_talloc_dn(talloc_tos(), ldap_state->smbldap_state->ldap_struct, entry);
1932 if (!dn) {
1933 return NT_STATUS_UNSUCCESSFUL;
1936 DEBUG(4, ("ldapsam_update_sam_account: user %s to be modified has dn: %s\n", pdb_get_username(newpwd), dn));
1938 if (!init_ldap_from_sam(ldap_state, entry, &mods, newpwd,
1939 element_is_changed)) {
1940 DEBUG(0, ("ldapsam_update_sam_account: init_ldap_from_sam failed!\n"));
1941 TALLOC_FREE(dn);
1942 if (mods != NULL)
1943 ldap_mods_free(mods,True);
1944 return NT_STATUS_UNSUCCESSFUL;
1947 if ((lp_ldap_passwd_sync() != LDAP_PASSWD_SYNC_ONLY)
1948 && (mods == NULL)) {
1949 DEBUG(4,("ldapsam_update_sam_account: mods is empty: nothing to update for user: %s\n",
1950 pdb_get_username(newpwd)));
1951 TALLOC_FREE(dn);
1952 return NT_STATUS_OK;
1955 ret = ldapsam_modify_entry(my_methods,newpwd,dn,mods,LDAP_MOD_REPLACE, element_is_changed);
1957 if (mods != NULL) {
1958 ldap_mods_free(mods,True);
1961 TALLOC_FREE(dn);
1964 * We need to set the backend private data to NULL here. For example
1965 * setuserinfo level 25 does a pdb_update_sam_account twice on the
1966 * same one, and with the explicit delete / add logic for attribute
1967 * values the second time we would use the wrong "old" value which
1968 * does not exist in LDAP anymore. Thus the LDAP server would refuse
1969 * the update.
1970 * The existing LDAPMessage is still being auto-freed by the
1971 * destructor.
1973 pdb_set_backend_private_data(newpwd, NULL, NULL, my_methods,
1974 PDB_CHANGED);
1976 if (!NT_STATUS_IS_OK(ret)) {
1977 return ret;
1980 DEBUG(2, ("ldapsam_update_sam_account: successfully modified uid = %s in the LDAP database\n",
1981 pdb_get_username(newpwd)));
1982 return NT_STATUS_OK;
1985 /***************************************************************************
1986 Renames a struct samu
1987 - The "rename user script" has full responsibility for changing everything
1988 ***************************************************************************/
1990 static NTSTATUS ldapsam_del_groupmem(struct pdb_methods *my_methods,
1991 TALLOC_CTX *tmp_ctx,
1992 uint32 group_rid,
1993 uint32 member_rid);
1995 static NTSTATUS ldapsam_enum_group_memberships(struct pdb_methods *methods,
1996 TALLOC_CTX *mem_ctx,
1997 struct samu *user,
1998 DOM_SID **pp_sids,
1999 gid_t **pp_gids,
2000 size_t *p_num_groups);
2002 static NTSTATUS ldapsam_rename_sam_account(struct pdb_methods *my_methods,
2003 struct samu *old_acct,
2004 const char *newname)
2006 const char *oldname;
2007 int rc;
2008 char *rename_script = NULL;
2009 fstring oldname_lower, newname_lower;
2011 if (!old_acct) {
2012 DEBUG(0, ("ldapsam_rename_sam_account: old_acct was NULL!\n"));
2013 return NT_STATUS_INVALID_PARAMETER;
2015 if (!newname) {
2016 DEBUG(0, ("ldapsam_rename_sam_account: newname was NULL!\n"));
2017 return NT_STATUS_INVALID_PARAMETER;
2020 oldname = pdb_get_username(old_acct);
2022 /* rename the posix user */
2023 rename_script = SMB_STRDUP(lp_renameuser_script());
2024 if (rename_script == NULL) {
2025 return NT_STATUS_NO_MEMORY;
2028 if (!(*rename_script)) {
2029 SAFE_FREE(rename_script);
2030 return NT_STATUS_ACCESS_DENIED;
2033 DEBUG (3, ("ldapsam_rename_sam_account: Renaming user %s to %s.\n",
2034 oldname, newname));
2036 /* We have to allow the account name to end with a '$'.
2037 Also, follow the semantics in _samr_create_user() and lower case the
2038 posix name but preserve the case in passdb */
2040 fstrcpy( oldname_lower, oldname );
2041 strlower_m( oldname_lower );
2042 fstrcpy( newname_lower, newname );
2043 strlower_m( newname_lower );
2044 rename_script = realloc_string_sub2(rename_script,
2045 "%unew",
2046 newname_lower,
2047 true,
2048 true);
2049 if (!rename_script) {
2050 return NT_STATUS_NO_MEMORY;
2052 rename_script = realloc_string_sub2(rename_script,
2053 "%uold",
2054 oldname_lower,
2055 true,
2056 true);
2057 rc = smbrun(rename_script, NULL);
2059 DEBUG(rc ? 0 : 3,("Running the command `%s' gave %d\n",
2060 rename_script, rc));
2062 SAFE_FREE(rename_script);
2064 if (rc == 0) {
2065 smb_nscd_flush_user_cache();
2068 if (rc)
2069 return NT_STATUS_UNSUCCESSFUL;
2071 return NT_STATUS_OK;
2074 /**********************************************************************
2075 Helper function to determine for update_sam_account whether
2076 we need LDAP modification.
2077 *********************************************************************/
2079 static bool element_is_set_or_changed(const struct samu *sampass,
2080 enum pdb_elements element)
2082 return (IS_SAM_SET(sampass, element) ||
2083 IS_SAM_CHANGED(sampass, element));
2086 /**********************************************************************
2087 Add struct samu to LDAP.
2088 *********************************************************************/
2090 static NTSTATUS ldapsam_add_sam_account(struct pdb_methods *my_methods, struct samu * newpwd)
2092 NTSTATUS ret = NT_STATUS_UNSUCCESSFUL;
2093 struct ldapsam_privates *ldap_state = (struct ldapsam_privates *)my_methods->private_data;
2094 int rc;
2095 LDAPMessage *result = NULL;
2096 LDAPMessage *entry = NULL;
2097 LDAPMod **mods = NULL;
2098 int ldap_op = LDAP_MOD_REPLACE;
2099 uint32 num_result;
2100 const char **attr_list;
2101 char *escape_user = NULL;
2102 const char *username = pdb_get_username(newpwd);
2103 const DOM_SID *sid = pdb_get_user_sid(newpwd);
2104 char *filter = NULL;
2105 char *dn = NULL;
2106 NTSTATUS status = NT_STATUS_UNSUCCESSFUL;
2107 TALLOC_CTX *ctx = talloc_init("ldapsam_add_sam_account");
2109 if (!ctx) {
2110 return NT_STATUS_NO_MEMORY;
2113 if (!username || !*username) {
2114 DEBUG(0, ("ldapsam_add_sam_account: Cannot add user without a username!\n"));
2115 status = NT_STATUS_INVALID_PARAMETER;
2116 goto fn_exit;
2119 /* free this list after the second search or in case we exit on failure */
2120 attr_list = get_userattr_list(ctx, ldap_state->schema_ver);
2122 rc = ldapsam_search_suffix_by_name (ldap_state, username, &result, attr_list);
2124 if (rc != LDAP_SUCCESS) {
2125 goto fn_exit;
2128 if (ldap_count_entries(ldap_state->smbldap_state->ldap_struct, result) != 0) {
2129 DEBUG(0,("ldapsam_add_sam_account: User '%s' already in the base, with samba attributes\n",
2130 username));
2131 goto fn_exit;
2133 ldap_msgfree(result);
2134 result = NULL;
2136 if (element_is_set_or_changed(newpwd, PDB_USERSID)) {
2137 rc = ldapsam_get_ldap_user_by_sid(ldap_state,
2138 sid, &result);
2139 if (rc == LDAP_SUCCESS) {
2140 if (ldap_count_entries(ldap_state->smbldap_state->ldap_struct, result) != 0) {
2141 DEBUG(0,("ldapsam_add_sam_account: SID '%s' "
2142 "already in the base, with samba "
2143 "attributes\n", sid_string_dbg(sid)));
2144 goto fn_exit;
2146 ldap_msgfree(result);
2147 result = NULL;
2151 /* does the entry already exist but without a samba attributes?
2152 we need to return the samba attributes here */
2154 escape_user = escape_ldap_string(talloc_tos(), username);
2155 filter = talloc_strdup(attr_list, "(uid=%u)");
2156 if (!filter) {
2157 status = NT_STATUS_NO_MEMORY;
2158 goto fn_exit;
2160 filter = talloc_all_string_sub(attr_list, filter, "%u", escape_user);
2161 TALLOC_FREE(escape_user);
2162 if (!filter) {
2163 status = NT_STATUS_NO_MEMORY;
2164 goto fn_exit;
2167 rc = smbldap_search_suffix(ldap_state->smbldap_state,
2168 filter, attr_list, &result);
2169 if ( rc != LDAP_SUCCESS ) {
2170 goto fn_exit;
2173 num_result = ldap_count_entries(ldap_state->smbldap_state->ldap_struct, result);
2175 if (num_result > 1) {
2176 DEBUG (0, ("ldapsam_add_sam_account: More than one user with that uid exists: bailing out!\n"));
2177 goto fn_exit;
2180 /* Check if we need to update an existing entry */
2181 if (num_result == 1) {
2182 DEBUG(3,("ldapsam_add_sam_account: User exists without samba attributes: adding them\n"));
2183 ldap_op = LDAP_MOD_REPLACE;
2184 entry = ldap_first_entry (ldap_state->smbldap_state->ldap_struct, result);
2185 dn = smbldap_talloc_dn(ctx, ldap_state->smbldap_state->ldap_struct, entry);
2186 if (!dn) {
2187 status = NT_STATUS_NO_MEMORY;
2188 goto fn_exit;
2191 } else if (ldap_state->schema_ver == SCHEMAVER_SAMBASAMACCOUNT) {
2193 /* There might be a SID for this account already - say an idmap entry */
2195 filter = talloc_asprintf(ctx,
2196 "(&(%s=%s)(|(objectClass=%s)(objectClass=%s)))",
2197 get_userattr_key2string(ldap_state->schema_ver,
2198 LDAP_ATTR_USER_SID),
2199 sid_string_talloc(ctx, sid),
2200 LDAP_OBJ_IDMAP_ENTRY,
2201 LDAP_OBJ_SID_ENTRY);
2202 if (!filter) {
2203 status = NT_STATUS_NO_MEMORY;
2204 goto fn_exit;
2207 /* free old result before doing a new search */
2208 if (result != NULL) {
2209 ldap_msgfree(result);
2210 result = NULL;
2212 rc = smbldap_search_suffix(ldap_state->smbldap_state,
2213 filter, attr_list, &result);
2215 if ( rc != LDAP_SUCCESS ) {
2216 goto fn_exit;
2219 num_result = ldap_count_entries(ldap_state->smbldap_state->ldap_struct, result);
2221 if (num_result > 1) {
2222 DEBUG (0, ("ldapsam_add_sam_account: More than one user with specified Sid exists: bailing out!\n"));
2223 goto fn_exit;
2226 /* Check if we need to update an existing entry */
2227 if (num_result == 1) {
2229 DEBUG(3,("ldapsam_add_sam_account: User exists without samba attributes: adding them\n"));
2230 ldap_op = LDAP_MOD_REPLACE;
2231 entry = ldap_first_entry (ldap_state->smbldap_state->ldap_struct, result);
2232 dn = smbldap_talloc_dn (ctx, ldap_state->smbldap_state->ldap_struct, entry);
2233 if (!dn) {
2234 status = NT_STATUS_NO_MEMORY;
2235 goto fn_exit;
2240 if (num_result == 0) {
2241 char *escape_username;
2242 /* Check if we need to add an entry */
2243 DEBUG(3,("ldapsam_add_sam_account: Adding new user\n"));
2244 ldap_op = LDAP_MOD_ADD;
2246 escape_username = escape_rdn_val_string_alloc(username);
2247 if (!escape_username) {
2248 status = NT_STATUS_NO_MEMORY;
2249 goto fn_exit;
2252 if (username[strlen(username)-1] == '$') {
2253 dn = talloc_asprintf(ctx,
2254 "uid=%s,%s",
2255 escape_username,
2256 lp_ldap_machine_suffix());
2257 } else {
2258 dn = talloc_asprintf(ctx,
2259 "uid=%s,%s",
2260 escape_username,
2261 lp_ldap_user_suffix());
2264 SAFE_FREE(escape_username);
2265 if (!dn) {
2266 status = NT_STATUS_NO_MEMORY;
2267 goto fn_exit;
2271 if (!init_ldap_from_sam(ldap_state, entry, &mods, newpwd,
2272 element_is_set_or_changed)) {
2273 DEBUG(0, ("ldapsam_add_sam_account: init_ldap_from_sam failed!\n"));
2274 if (mods != NULL) {
2275 ldap_mods_free(mods, true);
2277 goto fn_exit;
2280 if (mods == NULL) {
2281 DEBUG(0,("ldapsam_add_sam_account: mods is empty: nothing to add for user: %s\n",pdb_get_username(newpwd)));
2282 goto fn_exit;
2284 switch ( ldap_state->schema_ver ) {
2285 case SCHEMAVER_SAMBAACCOUNT:
2286 smbldap_set_mod(&mods, LDAP_MOD_ADD, "objectclass", LDAP_OBJ_SAMBAACCOUNT);
2287 break;
2288 case SCHEMAVER_SAMBASAMACCOUNT:
2289 smbldap_set_mod(&mods, LDAP_MOD_ADD, "objectclass", LDAP_OBJ_SAMBASAMACCOUNT);
2290 break;
2291 default:
2292 DEBUG(0,("ldapsam_add_sam_account: invalid schema version specified\n"));
2293 break;
2296 ret = ldapsam_modify_entry(my_methods,newpwd,dn,mods,ldap_op, element_is_set_or_changed);
2297 if (!NT_STATUS_IS_OK(ret)) {
2298 DEBUG(0,("ldapsam_add_sam_account: failed to modify/add user with uid = %s (dn = %s)\n",
2299 pdb_get_username(newpwd),dn));
2300 ldap_mods_free(mods, true);
2301 goto fn_exit;
2304 DEBUG(2,("ldapsam_add_sam_account: added: uid == %s in the LDAP database\n", pdb_get_username(newpwd)));
2305 ldap_mods_free(mods, true);
2307 status = NT_STATUS_OK;
2309 fn_exit:
2311 TALLOC_FREE(ctx);
2312 if (result) {
2313 ldap_msgfree(result);
2315 return status;
2318 /**********************************************************************
2319 *********************************************************************/
2321 static int ldapsam_search_one_group (struct ldapsam_privates *ldap_state,
2322 const char *filter,
2323 LDAPMessage ** result)
2325 int scope = LDAP_SCOPE_SUBTREE;
2326 int rc;
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_suffix (), scope,
2332 filter, attr_list, 0, result);
2333 TALLOC_FREE(attr_list);
2335 return rc;
2338 /**********************************************************************
2339 *********************************************************************/
2341 static bool init_group_from_ldap(struct ldapsam_privates *ldap_state,
2342 GROUP_MAP *map, LDAPMessage *entry)
2344 char *temp = NULL;
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"));
2350 TALLOC_FREE(ctx);
2351 return false;
2354 temp = smbldap_talloc_single_attribute(
2355 ldap_state->smbldap_state->ldap_struct,
2356 entry,
2357 get_attr_key2string(groupmap_attr_list,
2358 LDAP_ATTR_GIDNUMBER),
2359 ctx);
2360 if (!temp) {
2361 DEBUG(0, ("init_group_from_ldap: Mandatory attribute %s not found\n",
2362 get_attr_key2string( groupmap_attr_list, LDAP_ATTR_GIDNUMBER)));
2363 TALLOC_FREE(ctx);
2364 return false;
2366 DEBUG(2, ("init_group_from_ldap: Entry found for group: %s\n", temp));
2368 map->gid = (gid_t)atol(temp);
2370 TALLOC_FREE(temp);
2371 temp = smbldap_talloc_single_attribute(
2372 ldap_state->smbldap_state->ldap_struct,
2373 entry,
2374 get_attr_key2string(groupmap_attr_list,
2375 LDAP_ATTR_GROUP_SID),
2376 ctx);
2377 if (!temp) {
2378 DEBUG(0, ("init_group_from_ldap: Mandatory attribute %s not found\n",
2379 get_attr_key2string( groupmap_attr_list, LDAP_ATTR_GROUP_SID)));
2380 TALLOC_FREE(ctx);
2381 return false;
2384 if (!string_to_sid(&map->sid, temp)) {
2385 DEBUG(1, ("SID string [%s] could not be read as a valid SID\n", temp));
2386 TALLOC_FREE(ctx);
2387 return false;
2390 TALLOC_FREE(temp);
2391 temp = smbldap_talloc_single_attribute(
2392 ldap_state->smbldap_state->ldap_struct,
2393 entry,
2394 get_attr_key2string(groupmap_attr_list,
2395 LDAP_ATTR_GROUP_TYPE),
2396 ctx);
2397 if (!temp) {
2398 DEBUG(0, ("init_group_from_ldap: Mandatory attribute %s not found\n",
2399 get_attr_key2string( groupmap_attr_list, LDAP_ATTR_GROUP_TYPE)));
2400 TALLOC_FREE(ctx);
2401 return false;
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));
2408 TALLOC_FREE(ctx);
2409 return false;
2412 TALLOC_FREE(temp);
2413 temp = smbldap_talloc_single_attribute(
2414 ldap_state->smbldap_state->ldap_struct,
2415 entry,
2416 get_attr_key2string(groupmap_attr_list,
2417 LDAP_ATTR_DISPLAY_NAME),
2418 ctx);
2419 if (!temp) {
2420 temp = smbldap_talloc_single_attribute(
2421 ldap_state->smbldap_state->ldap_struct,
2422 entry,
2423 get_attr_key2string(groupmap_attr_list,
2424 LDAP_ATTR_CN),
2425 ctx);
2426 if (!temp) {
2427 DEBUG(0, ("init_group_from_ldap: Attributes cn not found either \
2428 for gidNumber(%lu)\n",(unsigned long)map->gid));
2429 TALLOC_FREE(ctx);
2430 return false;
2433 fstrcpy(map->nt_name, temp);
2435 TALLOC_FREE(temp);
2436 temp = smbldap_talloc_single_attribute(
2437 ldap_state->smbldap_state->ldap_struct,
2438 entry,
2439 get_attr_key2string(groupmap_attr_list,
2440 LDAP_ATTR_DESC),
2441 ctx);
2442 if (!temp) {
2443 temp = talloc_strdup(ctx, "");
2444 if (!temp) {
2445 TALLOC_FREE(ctx);
2446 return false;
2449 fstrcpy(map->comment, temp);
2451 if (lp_parm_bool(-1, "ldapsam", "trusted", false)) {
2452 store_gid_sid_cache(&map->sid, map->gid);
2453 idmap_cache_set_sid2gid(&map->sid, map->gid);
2456 TALLOC_FREE(ctx);
2457 return true;
2460 /**********************************************************************
2461 *********************************************************************/
2463 static NTSTATUS ldapsam_getgroup(struct pdb_methods *methods,
2464 const char *filter,
2465 GROUP_MAP *map)
2467 struct ldapsam_privates *ldap_state =
2468 (struct ldapsam_privates *)methods->private_data;
2469 LDAPMessage *result = NULL;
2470 LDAPMessage *entry = NULL;
2471 int count;
2473 if (ldapsam_search_one_group(ldap_state, filter, &result)
2474 != LDAP_SUCCESS) {
2475 return NT_STATUS_NO_SUCH_GROUP;
2478 count = ldap_count_entries(priv2ld(ldap_state), result);
2480 if (count < 1) {
2481 DEBUG(4, ("ldapsam_getgroup: Did not find group, filter was "
2482 "%s\n", filter));
2483 ldap_msgfree(result);
2484 return NT_STATUS_NO_SUCH_GROUP;
2487 if (count > 1) {
2488 DEBUG(1, ("ldapsam_getgroup: Duplicate entries for filter %s: "
2489 "count=%d\n", filter, count));
2490 ldap_msgfree(result);
2491 return NT_STATUS_NO_SUCH_GROUP;
2494 entry = ldap_first_entry(priv2ld(ldap_state), result);
2496 if (!entry) {
2497 ldap_msgfree(result);
2498 return NT_STATUS_UNSUCCESSFUL;
2501 if (!init_group_from_ldap(ldap_state, map, entry)) {
2502 DEBUG(1, ("ldapsam_getgroup: init_group_from_ldap failed for "
2503 "group filter %s\n", filter));
2504 ldap_msgfree(result);
2505 return NT_STATUS_NO_SUCH_GROUP;
2508 ldap_msgfree(result);
2509 return NT_STATUS_OK;
2512 /**********************************************************************
2513 *********************************************************************/
2515 static NTSTATUS ldapsam_getgrsid(struct pdb_methods *methods, GROUP_MAP *map,
2516 DOM_SID sid)
2518 char *filter = NULL;
2519 NTSTATUS status;
2520 fstring tmp;
2522 if (asprintf(&filter, "(&(objectClass=%s)(%s=%s))",
2523 LDAP_OBJ_GROUPMAP,
2524 get_attr_key2string(groupmap_attr_list, LDAP_ATTR_GROUP_SID),
2525 sid_to_fstring(tmp, &sid)) < 0) {
2526 return NT_STATUS_NO_MEMORY;
2529 status = ldapsam_getgroup(methods, filter, map);
2530 SAFE_FREE(filter);
2531 return status;
2534 /**********************************************************************
2535 *********************************************************************/
2537 static NTSTATUS ldapsam_getgrgid(struct pdb_methods *methods, GROUP_MAP *map,
2538 gid_t gid)
2540 char *filter = NULL;
2541 NTSTATUS status;
2543 if (asprintf(&filter, "(&(objectClass=%s)(%s=%lu))",
2544 LDAP_OBJ_GROUPMAP,
2545 get_attr_key2string(groupmap_attr_list, LDAP_ATTR_GIDNUMBER),
2546 (unsigned long)gid) < 0) {
2547 return NT_STATUS_NO_MEMORY;
2550 status = ldapsam_getgroup(methods, filter, map);
2551 SAFE_FREE(filter);
2552 return status;
2555 /**********************************************************************
2556 *********************************************************************/
2558 static NTSTATUS ldapsam_getgrnam(struct pdb_methods *methods, GROUP_MAP *map,
2559 const char *name)
2561 char *filter = NULL;
2562 char *escape_name = escape_ldap_string(talloc_tos(), name);
2563 NTSTATUS status;
2565 if (!escape_name) {
2566 return NT_STATUS_NO_MEMORY;
2569 if (asprintf(&filter, "(&(objectClass=%s)(|(%s=%s)(%s=%s)))",
2570 LDAP_OBJ_GROUPMAP,
2571 get_attr_key2string(groupmap_attr_list, LDAP_ATTR_DISPLAY_NAME), escape_name,
2572 get_attr_key2string(groupmap_attr_list, LDAP_ATTR_CN),
2573 escape_name) < 0) {
2574 TALLOC_FREE(escape_name);
2575 return NT_STATUS_NO_MEMORY;
2578 TALLOC_FREE(escape_name);
2579 status = ldapsam_getgroup(methods, filter, map);
2580 SAFE_FREE(filter);
2581 return status;
2584 static bool ldapsam_extract_rid_from_entry(LDAP *ldap_struct,
2585 LDAPMessage *entry,
2586 const DOM_SID *domain_sid,
2587 uint32 *rid)
2589 fstring str;
2590 DOM_SID sid;
2592 if (!smbldap_get_single_attribute(ldap_struct, entry, "sambaSID",
2593 str, sizeof(str)-1)) {
2594 DEBUG(10, ("Could not find sambaSID attribute\n"));
2595 return False;
2598 if (!string_to_sid(&sid, str)) {
2599 DEBUG(10, ("Could not convert string %s to sid\n", str));
2600 return False;
2603 if (sid_compare_domain(&sid, domain_sid) != 0) {
2604 DEBUG(10, ("SID %s is not in expected domain %s\n",
2605 str, sid_string_dbg(domain_sid)));
2606 return False;
2609 if (!sid_peek_rid(&sid, rid)) {
2610 DEBUG(10, ("Could not peek into RID\n"));
2611 return False;
2614 return True;
2617 static NTSTATUS ldapsam_enum_group_members(struct pdb_methods *methods,
2618 TALLOC_CTX *mem_ctx,
2619 const DOM_SID *group,
2620 uint32 **pp_member_rids,
2621 size_t *p_num_members)
2623 struct ldapsam_privates *ldap_state =
2624 (struct ldapsam_privates *)methods->private_data;
2625 struct smbldap_state *conn = ldap_state->smbldap_state;
2626 const char *id_attrs[] = { "memberUid", "gidNumber", NULL };
2627 const char *sid_attrs[] = { "sambaSID", NULL };
2628 NTSTATUS ret = NT_STATUS_UNSUCCESSFUL;
2629 LDAPMessage *result = NULL;
2630 LDAPMessage *entry;
2631 char *filter;
2632 char **values = NULL;
2633 char **memberuid;
2634 char *gidstr;
2635 int rc, count;
2637 *pp_member_rids = NULL;
2638 *p_num_members = 0;
2640 filter = talloc_asprintf(mem_ctx,
2641 "(&(objectClass=%s)"
2642 "(objectClass=%s)"
2643 "(sambaSID=%s))",
2644 LDAP_OBJ_POSIXGROUP,
2645 LDAP_OBJ_GROUPMAP,
2646 sid_string_talloc(mem_ctx, group));
2647 if (filter == NULL) {
2648 ret = NT_STATUS_NO_MEMORY;
2649 goto done;
2652 rc = smbldap_search(conn, lp_ldap_suffix(),
2653 LDAP_SCOPE_SUBTREE, filter, id_attrs, 0,
2654 &result);
2656 if (rc != LDAP_SUCCESS)
2657 goto done;
2659 talloc_autofree_ldapmsg(mem_ctx, result);
2661 count = ldap_count_entries(conn->ldap_struct, result);
2663 if (count > 1) {
2664 DEBUG(1, ("Found more than one groupmap entry for %s\n",
2665 sid_string_dbg(group)));
2666 ret = NT_STATUS_INTERNAL_DB_CORRUPTION;
2667 goto done;
2670 if (count == 0) {
2671 ret = NT_STATUS_NO_SUCH_GROUP;
2672 goto done;
2675 entry = ldap_first_entry(conn->ldap_struct, result);
2676 if (entry == NULL)
2677 goto done;
2679 gidstr = smbldap_talloc_single_attribute(priv2ld(ldap_state), entry, "gidNumber", mem_ctx);
2680 if (!gidstr) {
2681 DEBUG (0, ("ldapsam_enum_group_members: Unable to find the group's gid!\n"));
2682 ret = NT_STATUS_INTERNAL_DB_CORRUPTION;
2683 goto done;
2686 values = ldap_get_values(conn->ldap_struct, entry, "memberUid");
2688 if ((values != NULL) && (values[0] != NULL)) {
2690 filter = talloc_asprintf(mem_ctx, "(&(objectClass=%s)(|", LDAP_OBJ_SAMBASAMACCOUNT);
2691 if (filter == NULL) {
2692 ret = NT_STATUS_NO_MEMORY;
2693 goto done;
2696 for (memberuid = values; *memberuid != NULL; memberuid += 1) {
2697 char *escape_memberuid;
2699 escape_memberuid = escape_ldap_string(talloc_tos(),
2700 *memberuid);
2701 if (escape_memberuid == NULL) {
2702 ret = NT_STATUS_NO_MEMORY;
2703 goto done;
2706 filter = talloc_asprintf_append_buffer(filter, "(uid=%s)", escape_memberuid);
2707 TALLOC_FREE(escape_memberuid);
2708 if (filter == NULL) {
2709 ret = NT_STATUS_NO_MEMORY;
2710 goto done;
2714 filter = talloc_asprintf_append_buffer(filter, "))");
2715 if (filter == NULL) {
2716 ret = NT_STATUS_NO_MEMORY;
2717 goto done;
2720 rc = smbldap_search(conn, lp_ldap_suffix(),
2721 LDAP_SCOPE_SUBTREE, filter, sid_attrs, 0,
2722 &result);
2724 if (rc != LDAP_SUCCESS)
2725 goto done;
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);
2733 entry != NULL;
2734 entry = ldap_next_entry(conn->ldap_struct, entry))
2736 char *sidstr;
2737 DOM_SID sid;
2738 uint32 rid;
2740 sidstr = smbldap_talloc_single_attribute(conn->ldap_struct,
2741 entry, "sambaSID",
2742 mem_ctx);
2743 if (!sidstr) {
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;
2747 goto done;
2750 if (!string_to_sid(&sid, sidstr))
2751 goto done;
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;
2757 goto done;
2760 sid_peek_rid(&sid, &rid);
2762 if (!add_rid_to_array_unique(mem_ctx, rid, pp_member_rids,
2763 p_num_members)) {
2764 ret = NT_STATUS_NO_MEMORY;
2765 goto done;
2770 filter = talloc_asprintf(mem_ctx,
2771 "(&(objectClass=%s)"
2772 "(gidNumber=%s))",
2773 LDAP_OBJ_SAMBASAMACCOUNT,
2774 gidstr);
2776 rc = smbldap_search(conn, lp_ldap_suffix(),
2777 LDAP_SCOPE_SUBTREE, filter, sid_attrs, 0,
2778 &result);
2780 if (rc != LDAP_SUCCESS)
2781 goto done;
2783 talloc_autofree_ldapmsg(mem_ctx, result);
2785 for (entry = ldap_first_entry(conn->ldap_struct, result);
2786 entry != NULL;
2787 entry = ldap_next_entry(conn->ldap_struct, entry))
2789 uint32 rid;
2791 if (!ldapsam_extract_rid_from_entry(conn->ldap_struct,
2792 entry,
2793 get_global_sam_sid(),
2794 &rid)) {
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;
2797 goto done;
2800 if (!add_rid_to_array_unique(mem_ctx, rid, pp_member_rids,
2801 p_num_members)) {
2802 ret = NT_STATUS_NO_MEMORY;
2803 goto done;
2807 ret = NT_STATUS_OK;
2809 done:
2811 if (values)
2812 ldap_value_free(values);
2814 return ret;
2817 static NTSTATUS ldapsam_enum_group_memberships(struct pdb_methods *methods,
2818 TALLOC_CTX *mem_ctx,
2819 struct samu *user,
2820 DOM_SID **pp_sids,
2821 gid_t **pp_gids,
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;
2827 char *filter;
2828 const char *attrs[] = { "gidNumber", "sambaSID", NULL };
2829 char *escape_name;
2830 int rc, count;
2831 LDAPMessage *result = NULL;
2832 LDAPMessage *entry;
2833 NTSTATUS ret = NT_STATUS_UNSUCCESSFUL;
2834 size_t num_sids, num_gids;
2835 char *gidstr;
2836 gid_t primary_gid = -1;
2838 *pp_sids = NULL;
2839 num_sids = 0;
2841 if (pdb_get_username(user) == NULL) {
2842 return NT_STATUS_INVALID_PARAMETER;
2845 escape_name = escape_ldap_string(talloc_tos(), 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,
2853 escape_name);
2854 if (filter == NULL) {
2855 ret = NT_STATUS_NO_MEMORY;
2856 goto done;
2859 rc = smbldap_search(conn, lp_ldap_suffix(),
2860 LDAP_SCOPE_SUBTREE, filter, attrs, 0, &result);
2862 if (rc != LDAP_SUCCESS)
2863 goto done;
2865 talloc_autofree_ldapmsg(mem_ctx, result);
2867 count = ldap_count_entries(priv2ld(ldap_state), result);
2869 switch (count) {
2870 case 0:
2871 DEBUG(1, ("User account [%s] not found!\n", pdb_get_username(user)));
2872 ret = NT_STATUS_NO_SUCH_USER;
2873 goto done;
2874 case 1:
2875 entry = ldap_first_entry(priv2ld(ldap_state), result);
2877 gidstr = smbldap_talloc_single_attribute(priv2ld(ldap_state), entry, "gidNumber", mem_ctx);
2878 if (!gidstr) {
2879 DEBUG (1, ("Unable to find the member's gid!\n"));
2880 ret = NT_STATUS_INTERNAL_DB_CORRUPTION;
2881 goto done;
2883 primary_gid = strtoul(gidstr, NULL, 10);
2884 break;
2885 default:
2886 DEBUG(1, ("found more than one account with the same user name ?!\n"));
2887 ret = NT_STATUS_INTERNAL_DB_CORRUPTION;
2888 goto done;
2891 filter = talloc_asprintf(mem_ctx,
2892 "(&(objectClass=%s)(|(memberUid=%s)(gidNumber=%u)))",
2893 LDAP_OBJ_POSIXGROUP, escape_name, (unsigned int)primary_gid);
2894 if (filter == NULL) {
2895 ret = NT_STATUS_NO_MEMORY;
2896 goto done;
2899 rc = smbldap_search(conn, lp_ldap_suffix(),
2900 LDAP_SCOPE_SUBTREE, filter, attrs, 0, &result);
2902 if (rc != LDAP_SUCCESS)
2903 goto done;
2905 talloc_autofree_ldapmsg(mem_ctx, result);
2907 num_gids = 0;
2908 *pp_gids = NULL;
2910 num_sids = 0;
2911 *pp_sids = NULL;
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;
2917 goto done;
2920 /* This sid will be replaced later */
2922 ret = add_sid_to_array_unique(mem_ctx, &global_sid_NULL, pp_sids,
2923 &num_sids);
2924 if (!NT_STATUS_IS_OK(ret)) {
2925 goto done;
2928 for (entry = ldap_first_entry(conn->ldap_struct, result);
2929 entry != NULL;
2930 entry = ldap_next_entry(conn->ldap_struct, entry))
2932 fstring str;
2933 DOM_SID sid;
2934 gid_t gid;
2935 char *end;
2937 if (!smbldap_get_single_attribute(conn->ldap_struct,
2938 entry, "sambaSID",
2939 str, sizeof(str)-1))
2940 continue;
2942 if (!string_to_sid(&sid, str))
2943 goto done;
2945 if (!smbldap_get_single_attribute(conn->ldap_struct,
2946 entry, "gidNumber",
2947 str, sizeof(str)-1))
2948 continue;
2950 gid = strtoul(str, &end, 10);
2952 if (PTR_DIFF(end, str) != strlen(str))
2953 goto done;
2955 if (gid == primary_gid) {
2956 sid_copy(&(*pp_sids)[0], &sid);
2957 } else {
2958 if (!add_gid_to_array_unique(mem_ctx, gid, pp_gids,
2959 &num_gids)) {
2960 ret = NT_STATUS_NO_MEMORY;
2961 goto done;
2963 ret = add_sid_to_array_unique(mem_ctx, &sid, pp_sids,
2964 &num_sids);
2965 if (!NT_STATUS_IS_OK(ret)) {
2966 goto done;
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)));
2974 goto done;
2977 *p_num_groups = num_sids;
2979 ret = NT_STATUS_OK;
2981 done:
2983 TALLOC_FREE(escape_name);
2984 return ret;
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,
2993 GROUP_MAP *map)
2995 const char *filter, *dn;
2996 LDAPMessage *msg, *entry;
2997 LDAPMod **mods;
2998 int rc;
3000 filter = talloc_asprintf(mem_ctx,
3001 "(&(objectClass=%s)(gidNumber=%u))",
3002 LDAP_OBJ_POSIXGROUP, (unsigned int)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),
3009 &msg);
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);
3019 if (dn == NULL) {
3020 return NT_STATUS_NO_MEMORY;
3023 mods = NULL;
3024 smbldap_set_mod(&mods, LDAP_MOD_ADD, "objectClass",
3025 LDAP_OBJ_GROUPMAP);
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",
3031 map->nt_name);
3032 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, entry, &mods, "description",
3033 map->comment);
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,
3045 GROUP_MAP *map)
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 };
3052 char *filter;
3054 char *dn;
3055 TALLOC_CTX *mem_ctx;
3056 NTSTATUS result;
3058 DOM_SID sid;
3060 int rc;
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;
3072 goto done;
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;
3085 goto done;
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
3092 to attach to. */
3093 result = ldapsam_map_posixgroup(mem_ctx, ldap_state, map);
3094 goto done;
3095 break;
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;
3104 goto done;
3106 break;
3108 default:
3109 DEBUG(3, ("Got invalid use '%s' for mapping\n",
3110 sid_type_lookup(map->sid_name_use)));
3111 result = NT_STATUS_INVALID_PARAMETER;
3112 goto done;
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;
3121 goto done;
3124 if (pdb_gid_to_sid(map->gid, &sid)) {
3125 DEBUG(3, ("Gid %u is already mapped to SID %s, refusing to "
3126 "add\n", (unsigned int)map->gid, sid_string_dbg(&sid)));
3127 result = NT_STATUS_GROUP_EXISTS;
3128 goto done;
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());
3137 if (dn == NULL) {
3138 result = NT_STATUS_NO_MEMORY;
3139 goto done;
3142 mods = NULL;
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",
3147 LDAP_OBJ_GROUPMAP);
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",
3153 map->nt_name);
3154 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, NULL, &mods, "description",
3155 map->comment);
3156 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, NULL, &mods, "gidNumber",
3157 talloc_asprintf(mem_ctx, "%u", (unsigned int)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;
3165 done:
3166 TALLOC_FREE(mem_ctx);
3167 return result;
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,
3177 GROUP_MAP *map)
3179 struct ldapsam_privates *ldap_state =
3180 (struct ldapsam_privates *)methods->private_data;
3181 int rc;
3182 const char *filter, *dn;
3183 LDAPMessage *msg = NULL;
3184 LDAPMessage *entry = NULL;
3185 LDAPMod **mods = NULL;
3186 TALLOC_CTX *mem_ctx;
3187 NTSTATUS result;
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))",
3201 LDAP_OBJ_GROUPMAP,
3202 sid_string_talloc(mem_ctx, &map->sid),
3203 (unsigned int)map->gid, map->sid_name_use);
3204 if (filter == NULL) {
3205 result = NT_STATUS_NO_MEMORY;
3206 goto done;
3209 rc = smbldap_search_suffix(ldap_state->smbldap_state, filter,
3210 get_attr_list(mem_ctx, groupmap_attr_list),
3211 &msg);
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;
3218 goto done;
3221 dn = smbldap_talloc_dn(mem_ctx, ldap_state->smbldap_state->ldap_struct, entry);
3223 if (dn == NULL) {
3224 result = NT_STATUS_NO_MEMORY;
3225 goto done;
3228 mods = NULL;
3229 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, entry, &mods, "displayName",
3230 map->nt_name);
3231 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, entry, &mods, "description",
3232 map->comment);
3233 talloc_autofree_ldapmod(mem_ctx, mods);
3235 if (mods == NULL) {
3236 DEBUG(4, ("ldapsam_update_group_mapping_entry: mods is empty: "
3237 "nothing to do\n"));
3238 result = NT_STATUS_OK;
3239 goto done;
3242 rc = smbldap_modify(ldap_state->smbldap_state, dn, mods);
3244 if (rc != LDAP_SUCCESS) {
3245 result = NT_STATUS_ACCESS_DENIED;
3246 goto done;
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;
3254 done:
3255 TALLOC_FREE(mem_ctx);
3256 return result;
3259 /**********************************************************************
3260 *********************************************************************/
3262 static NTSTATUS ldapsam_delete_group_mapping_entry(struct pdb_methods *methods,
3263 DOM_SID sid)
3265 struct ldapsam_privates *priv =
3266 (struct ldapsam_privates *)methods->private_data;
3267 LDAPMessage *msg, *entry;
3268 int rc;
3269 NTSTATUS result;
3270 TALLOC_CTX *mem_ctx;
3271 char *filter;
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;
3284 goto done;
3286 rc = smbldap_search_suffix(priv->smbldap_state, filter,
3287 get_attr_list(mem_ctx, groupmap_attr_list),
3288 &msg);
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;
3295 goto done;
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",
3307 NULL };
3309 /* Second try. Don't delete the sambaSID attribute, this is
3310 for "old" entries that are tacked on a winbind
3311 sambaIdmapEntry. */
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
3327 * remains */
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;
3335 done:
3336 TALLOC_FREE(mem_ctx);
3337 return result;
3340 /**********************************************************************
3341 *********************************************************************/
3343 static NTSTATUS ldapsam_setsamgrent(struct pdb_methods *my_methods,
3344 bool update)
3346 struct ldapsam_privates *ldap_state =
3347 (struct ldapsam_privates *)my_methods->private_data;
3348 char *filter = NULL;
3349 int rc;
3350 const char **attr_list;
3352 filter = talloc_asprintf(NULL, "(objectclass=%s)", LDAP_OBJ_GROUPMAP);
3353 if (!filter) {
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_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_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)));
3379 ldap_state->entry =
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,
3399 GROUP_MAP *map)
3401 NTSTATUS ret = NT_STATUS_UNSUCCESSFUL;
3402 struct ldapsam_privates *ldap_state =
3403 (struct ldapsam_privates *)my_methods->private_data;
3404 bool bret = False;
3406 while (!bret) {
3407 if (!ldap_state->entry)
3408 return ret;
3410 ldap_state->index++;
3411 bret = init_group_from_ldap(ldap_state, map,
3412 ldap_state->entry);
3414 ldap_state->entry =
3415 ldap_next_entry(ldap_state->smbldap_state->ldap_struct,
3416 ldap_state->entry);
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,
3429 bool unix_only)
3431 GROUP_MAP map;
3432 size_t entries = 0;
3434 *p_num_entries = 0;
3435 *pp_rmap = NULL;
3437 if (!NT_STATUS_IS_OK(ldapsam_setsamgrent(methods, False))) {
3438 DEBUG(0, ("ldapsam_enum_group_mapping: Unable to open "
3439 "passdb\n"));
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));
3448 continue;
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));
3453 continue;
3456 (*pp_rmap)=SMB_REALLOC_ARRAY((*pp_rmap), GROUP_MAP, entries+1);
3457 if (!(*pp_rmap)) {
3458 DEBUG(0,("ldapsam_enum_group_mapping: Unable to "
3459 "enlarge group map!\n"));
3460 return NT_STATUS_UNSUCCESSFUL;
3463 (*pp_rmap)[entries] = map;
3465 entries += 1;
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,
3478 int modop)
3480 struct ldapsam_privates *ldap_state =
3481 (struct ldapsam_privates *)methods->private_data;
3482 char *dn = NULL;
3483 LDAPMessage *result = NULL;
3484 LDAPMessage *entry = NULL;
3485 int count;
3486 LDAPMod **mods = NULL;
3487 int rc;
3488 enum lsa_SidType type = SID_NAME_USE_NONE;
3489 fstring tmp;
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),
3510 type) < 0) {
3511 return NT_STATUS_NO_MEMORY;
3514 if (ldapsam_search_one_group(ldap_state, filter,
3515 &result) != LDAP_SUCCESS) {
3516 SAFE_FREE(filter);
3517 return NT_STATUS_NO_SUCH_ALIAS;
3520 count = ldap_count_entries(ldap_state->smbldap_state->ldap_struct,
3521 result);
3523 if (count < 1) {
3524 DEBUG(4, ("ldapsam_modify_aliasmem: Did not find alias\n"));
3525 ldap_msgfree(result);
3526 SAFE_FREE(filter);
3527 return NT_STATUS_NO_SUCH_ALIAS;
3530 if (count > 1) {
3531 DEBUG(1, ("ldapsam_modify_aliasmem: Duplicate entries for "
3532 "filter %s: count=%d\n", filter, count));
3533 ldap_msgfree(result);
3534 SAFE_FREE(filter);
3535 return NT_STATUS_NO_SUCH_ALIAS;
3538 SAFE_FREE(filter);
3540 entry = ldap_first_entry(ldap_state->smbldap_state->ldap_struct,
3541 result);
3543 if (!entry) {
3544 ldap_msgfree(result);
3545 return NT_STATUS_UNSUCCESSFUL;
3548 dn = smbldap_talloc_dn(talloc_tos(), ldap_state->smbldap_state->ldap_struct, entry);
3549 if (!dn) {
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);
3563 TALLOC_FREE(dn);
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,
3592 LDAP_MOD_DELETE);
3595 static NTSTATUS ldapsam_enum_aliasmem(struct pdb_methods *methods,
3596 const DOM_SID *alias,
3597 TALLOC_CTX *mem_ctx,
3598 DOM_SID **pp_members,
3599 size_t *p_num_members)
3601 struct ldapsam_privates *ldap_state =
3602 (struct ldapsam_privates *)methods->private_data;
3603 LDAPMessage *result = NULL;
3604 LDAPMessage *entry = NULL;
3605 int count;
3606 char **values = NULL;
3607 int i;
3608 char *filter = NULL;
3609 size_t num_members = 0;
3610 enum lsa_SidType type = SID_NAME_USE_NONE;
3611 fstring tmp;
3613 *pp_members = NULL;
3614 *p_num_members = 0;
3616 if (sid_check_is_in_builtin(alias)) {
3617 type = SID_NAME_ALIAS;
3620 if (sid_check_is_in_our_domain(alias)) {
3621 type = SID_NAME_ALIAS;
3624 if (type == SID_NAME_USE_NONE) {
3625 DEBUG(5, ("SID %s is neither in builtin nor in our domain!\n",
3626 sid_string_dbg(alias)));
3627 return NT_STATUS_NO_SUCH_ALIAS;
3630 if (asprintf(&filter,
3631 "(&(objectClass=%s)(sambaSid=%s)(sambaGroupType=%d))",
3632 LDAP_OBJ_GROUPMAP, sid_to_fstring(tmp, alias),
3633 type) < 0) {
3634 return NT_STATUS_NO_MEMORY;
3637 if (ldapsam_search_one_group(ldap_state, filter,
3638 &result) != LDAP_SUCCESS) {
3639 SAFE_FREE(filter);
3640 return NT_STATUS_NO_SUCH_ALIAS;
3643 count = ldap_count_entries(ldap_state->smbldap_state->ldap_struct,
3644 result);
3646 if (count < 1) {
3647 DEBUG(4, ("ldapsam_enum_aliasmem: Did not find alias\n"));
3648 ldap_msgfree(result);
3649 SAFE_FREE(filter);
3650 return NT_STATUS_NO_SUCH_ALIAS;
3653 if (count > 1) {
3654 DEBUG(1, ("ldapsam_enum_aliasmem: Duplicate entries for "
3655 "filter %s: count=%d\n", filter, count));
3656 ldap_msgfree(result);
3657 SAFE_FREE(filter);
3658 return NT_STATUS_NO_SUCH_ALIAS;
3661 SAFE_FREE(filter);
3663 entry = ldap_first_entry(ldap_state->smbldap_state->ldap_struct,
3664 result);
3666 if (!entry) {
3667 ldap_msgfree(result);
3668 return NT_STATUS_UNSUCCESSFUL;
3671 values = ldap_get_values(ldap_state->smbldap_state->ldap_struct,
3672 entry,
3673 get_attr_key2string(groupmap_attr_list,
3674 LDAP_ATTR_SID_LIST));
3676 if (values == NULL) {
3677 ldap_msgfree(result);
3678 return NT_STATUS_OK;
3681 count = ldap_count_values(values);
3683 for (i=0; i<count; i++) {
3684 DOM_SID member;
3685 NTSTATUS status;
3687 if (!string_to_sid(&member, values[i]))
3688 continue;
3690 status = add_sid_to_array(mem_ctx, &member, pp_members,
3691 &num_members);
3692 if (!NT_STATUS_IS_OK(status)) {
3693 ldap_value_free(values);
3694 ldap_msgfree(result);
3695 return status;
3699 *p_num_members = num_members;
3700 ldap_value_free(values);
3701 ldap_msgfree(result);
3703 return NT_STATUS_OK;
3706 static NTSTATUS ldapsam_alias_memberships(struct pdb_methods *methods,
3707 TALLOC_CTX *mem_ctx,
3708 const DOM_SID *domain_sid,
3709 const DOM_SID *members,
3710 size_t num_members,
3711 uint32 **pp_alias_rids,
3712 size_t *p_num_alias_rids)
3714 struct ldapsam_privates *ldap_state =
3715 (struct ldapsam_privates *)methods->private_data;
3716 LDAP *ldap_struct;
3718 const char *attrs[] = { LDAP_ATTRIBUTE_SID, NULL };
3720 LDAPMessage *result = NULL;
3721 LDAPMessage *entry = NULL;
3722 int i;
3723 int rc;
3724 char *filter;
3725 enum lsa_SidType type = SID_NAME_USE_NONE;
3727 *pp_alias_rids = NULL;
3728 *p_num_alias_rids = 0;
3730 if (sid_check_is_builtin(domain_sid)) {
3731 type = SID_NAME_ALIAS;
3734 if (sid_check_is_domain(domain_sid)) {
3735 type = SID_NAME_ALIAS;
3738 if (type == SID_NAME_USE_NONE) {
3739 DEBUG(5, ("SID %s is neither builtin nor domain!\n",
3740 sid_string_dbg(domain_sid)));
3741 return NT_STATUS_UNSUCCESSFUL;
3744 if (num_members == 0) {
3745 return NT_STATUS_OK;
3748 filter = talloc_asprintf(mem_ctx,
3749 "(&(|(objectclass=%s)(sambaGroupType=%d))(|",
3750 LDAP_OBJ_GROUPMAP, type);
3752 for (i=0; i<num_members; i++)
3753 filter = talloc_asprintf(mem_ctx, "%s(sambaSIDList=%s)",
3754 filter,
3755 sid_string_talloc(mem_ctx,
3756 &members[i]));
3758 filter = talloc_asprintf(mem_ctx, "%s))", filter);
3760 if (filter == NULL) {
3761 return NT_STATUS_NO_MEMORY;
3764 rc = smbldap_search(ldap_state->smbldap_state, lp_ldap_suffix(),
3765 LDAP_SCOPE_SUBTREE, filter, attrs, 0, &result);
3767 if (rc != LDAP_SUCCESS)
3768 return NT_STATUS_UNSUCCESSFUL;
3770 ldap_struct = ldap_state->smbldap_state->ldap_struct;
3772 for (entry = ldap_first_entry(ldap_struct, result);
3773 entry != NULL;
3774 entry = ldap_next_entry(ldap_struct, entry))
3776 fstring sid_str;
3777 DOM_SID sid;
3778 uint32 rid;
3780 if (!smbldap_get_single_attribute(ldap_struct, entry,
3781 LDAP_ATTRIBUTE_SID,
3782 sid_str,
3783 sizeof(sid_str)-1))
3784 continue;
3786 if (!string_to_sid(&sid, sid_str))
3787 continue;
3789 if (!sid_peek_check_rid(domain_sid, &sid, &rid))
3790 continue;
3792 if (!add_rid_to_array_unique(mem_ctx, rid, pp_alias_rids,
3793 p_num_alias_rids)) {
3794 ldap_msgfree(result);
3795 return NT_STATUS_NO_MEMORY;
3799 ldap_msgfree(result);
3800 return NT_STATUS_OK;
3803 static NTSTATUS ldapsam_set_account_policy_in_ldap(struct pdb_methods *methods,
3804 enum pdb_policy_type type,
3805 uint32 value)
3807 NTSTATUS ntstatus = NT_STATUS_UNSUCCESSFUL;
3808 int rc;
3809 LDAPMod **mods = NULL;
3810 fstring value_string;
3811 const char *policy_attr = NULL;
3813 struct ldapsam_privates *ldap_state =
3814 (struct ldapsam_privates *)methods->private_data;
3816 DEBUG(10,("ldapsam_set_account_policy_in_ldap\n"));
3818 if (!ldap_state->domain_dn) {
3819 return NT_STATUS_INVALID_PARAMETER;
3822 policy_attr = get_account_policy_attr(type);
3823 if (policy_attr == NULL) {
3824 DEBUG(0,("ldapsam_set_account_policy_in_ldap: invalid "
3825 "policy\n"));
3826 return ntstatus;
3829 slprintf(value_string, sizeof(value_string) - 1, "%i", value);
3831 smbldap_set_mod(&mods, LDAP_MOD_REPLACE, policy_attr, value_string);
3833 rc = smbldap_modify(ldap_state->smbldap_state, ldap_state->domain_dn,
3834 mods);
3836 ldap_mods_free(mods, True);
3838 if (rc != LDAP_SUCCESS) {
3839 return ntstatus;
3842 if (!cache_account_policy_set(type, value)) {
3843 DEBUG(0,("ldapsam_set_account_policy_in_ldap: failed to "
3844 "update local tdb cache\n"));
3845 return ntstatus;
3848 return NT_STATUS_OK;
3851 static NTSTATUS ldapsam_set_account_policy(struct pdb_methods *methods,
3852 enum pdb_policy_type type,
3853 uint32_t value)
3855 return ldapsam_set_account_policy_in_ldap(methods, type,
3856 value);
3859 static NTSTATUS ldapsam_get_account_policy_from_ldap(struct pdb_methods *methods,
3860 enum pdb_policy_type type,
3861 uint32 *value)
3863 NTSTATUS ntstatus = NT_STATUS_UNSUCCESSFUL;
3864 LDAPMessage *result = NULL;
3865 LDAPMessage *entry = NULL;
3866 int count;
3867 int rc;
3868 char **vals = NULL;
3869 char *filter;
3870 const char *policy_attr = NULL;
3872 struct ldapsam_privates *ldap_state =
3873 (struct ldapsam_privates *)methods->private_data;
3875 const char *attrs[2];
3877 DEBUG(10,("ldapsam_get_account_policy_from_ldap\n"));
3879 if (!ldap_state->domain_dn) {
3880 return NT_STATUS_INVALID_PARAMETER;
3883 policy_attr = get_account_policy_attr(type);
3884 if (!policy_attr) {
3885 DEBUG(0,("ldapsam_get_account_policy_from_ldap: invalid "
3886 "policy index: %d\n", type));
3887 return ntstatus;
3890 attrs[0] = policy_attr;
3891 attrs[1] = NULL;
3893 filter = talloc_asprintf(NULL, "(objectClass=%s)", LDAP_OBJ_DOMINFO);
3894 if (filter == NULL) {
3895 return NT_STATUS_NO_MEMORY;
3897 rc = smbldap_search(ldap_state->smbldap_state, ldap_state->domain_dn,
3898 LDAP_SCOPE_BASE, filter, attrs, 0,
3899 &result);
3901 if (rc != LDAP_SUCCESS) {
3902 return ntstatus;
3905 count = ldap_count_entries(priv2ld(ldap_state), result);
3906 if (count < 1) {
3907 goto out;
3910 entry = ldap_first_entry(priv2ld(ldap_state), result);
3911 if (entry == NULL) {
3912 goto out;
3915 vals = ldap_get_values(priv2ld(ldap_state), entry, policy_attr);
3916 if (vals == NULL) {
3917 goto out;
3920 *value = (uint32)atol(vals[0]);
3922 ntstatus = NT_STATUS_OK;
3924 out:
3925 if (vals)
3926 ldap_value_free(vals);
3927 ldap_msgfree(result);
3929 return ntstatus;
3932 /* wrapper around ldapsam_get_account_policy_from_ldap(), handles tdb as cache
3934 - if user hasn't decided to use account policies inside LDAP just reuse the
3935 old tdb values
3937 - if there is a valid cache entry, return that
3938 - if there is an LDAP entry, update cache and return
3939 - otherwise set to default, update cache and return
3941 Guenther
3943 static NTSTATUS ldapsam_get_account_policy(struct pdb_methods *methods,
3944 enum pdb_policy_type type,
3945 uint32_t *value)
3947 NTSTATUS ntstatus = NT_STATUS_UNSUCCESSFUL;
3949 if (cache_account_policy_get(type, value)) {
3950 DEBUG(11,("ldapsam_get_account_policy: got valid value from "
3951 "cache\n"));
3952 return NT_STATUS_OK;
3955 ntstatus = ldapsam_get_account_policy_from_ldap(methods, type,
3956 value);
3957 if (NT_STATUS_IS_OK(ntstatus)) {
3958 goto update_cache;
3961 DEBUG(10,("ldapsam_get_account_policy: failed to retrieve from "
3962 "ldap\n"));
3964 #if 0
3965 /* should we automagically migrate old tdb value here ? */
3966 if (account_policy_get(type, value))
3967 goto update_ldap;
3969 DEBUG(10,("ldapsam_get_account_policy: no tdb for %d, trying "
3970 "default\n", type));
3971 #endif
3973 if (!account_policy_get_default(type, value)) {
3974 return ntstatus;
3977 /* update_ldap: */
3979 ntstatus = ldapsam_set_account_policy(methods, type, *value);
3980 if (!NT_STATUS_IS_OK(ntstatus)) {
3981 return ntstatus;
3984 update_cache:
3986 if (!cache_account_policy_set(type, *value)) {
3987 DEBUG(0,("ldapsam_get_account_policy: failed to update local "
3988 "tdb as a cache\n"));
3989 return NT_STATUS_UNSUCCESSFUL;
3992 return NT_STATUS_OK;
3995 static NTSTATUS ldapsam_lookup_rids(struct pdb_methods *methods,
3996 const DOM_SID *domain_sid,
3997 int num_rids,
3998 uint32 *rids,
3999 const char **names,
4000 enum lsa_SidType *attrs)
4002 struct ldapsam_privates *ldap_state =
4003 (struct ldapsam_privates *)methods->private_data;
4004 LDAPMessage *msg = NULL;
4005 LDAPMessage *entry;
4006 char *allsids = NULL;
4007 int i, rc, num_mapped;
4008 NTSTATUS result = NT_STATUS_NO_MEMORY;
4009 TALLOC_CTX *mem_ctx;
4010 LDAP *ld;
4011 bool is_builtin;
4013 mem_ctx = talloc_new(NULL);
4014 if (mem_ctx == NULL) {
4015 DEBUG(0, ("talloc_new failed\n"));
4016 goto done;
4019 if (!sid_check_is_builtin(domain_sid) &&
4020 !sid_check_is_domain(domain_sid)) {
4021 result = NT_STATUS_INVALID_PARAMETER;
4022 goto done;
4025 if (num_rids == 0) {
4026 result = NT_STATUS_NONE_MAPPED;
4027 goto done;
4030 for (i=0; i<num_rids; i++)
4031 attrs[i] = SID_NAME_UNKNOWN;
4033 allsids = talloc_strdup(mem_ctx, "");
4034 if (allsids == NULL) {
4035 goto done;
4038 for (i=0; i<num_rids; i++) {
4039 DOM_SID sid;
4040 sid_compose(&sid, domain_sid, rids[i]);
4041 allsids = talloc_asprintf_append_buffer(
4042 allsids, "(sambaSid=%s)",
4043 sid_string_talloc(mem_ctx, &sid));
4044 if (allsids == NULL) {
4045 goto done;
4049 /* First look for users */
4052 char *filter;
4053 const char *ldap_attrs[] = { "uid", "sambaSid", NULL };
4055 filter = talloc_asprintf(
4056 mem_ctx, ("(&(objectClass=%s)(|%s))"),
4057 LDAP_OBJ_SAMBASAMACCOUNT, allsids);
4059 if (filter == NULL) {
4060 goto done;
4063 rc = smbldap_search(ldap_state->smbldap_state,
4064 lp_ldap_user_suffix(),
4065 LDAP_SCOPE_SUBTREE, filter, ldap_attrs, 0,
4066 &msg);
4067 talloc_autofree_ldapmsg(mem_ctx, msg);
4070 if (rc != LDAP_SUCCESS)
4071 goto done;
4073 ld = ldap_state->smbldap_state->ldap_struct;
4074 num_mapped = 0;
4076 for (entry = ldap_first_entry(ld, msg);
4077 entry != NULL;
4078 entry = ldap_next_entry(ld, entry)) {
4079 uint32 rid;
4080 int rid_index;
4081 const char *name;
4083 if (!ldapsam_extract_rid_from_entry(ld, entry, domain_sid,
4084 &rid)) {
4085 DEBUG(2, ("Could not find sid from ldap entry\n"));
4086 continue;
4089 name = smbldap_talloc_single_attribute(ld, entry, "uid",
4090 names);
4091 if (name == NULL) {
4092 DEBUG(2, ("Could not retrieve uid attribute\n"));
4093 continue;
4096 for (rid_index = 0; rid_index < num_rids; rid_index++) {
4097 if (rid == rids[rid_index])
4098 break;
4101 if (rid_index == num_rids) {
4102 DEBUG(2, ("Got a RID not asked for: %d\n", rid));
4103 continue;
4106 attrs[rid_index] = SID_NAME_USER;
4107 names[rid_index] = name;
4108 num_mapped += 1;
4111 if (num_mapped == num_rids) {
4112 /* No need to look for groups anymore -- we're done */
4113 result = NT_STATUS_OK;
4114 goto done;
4117 /* Same game for groups */
4120 char *filter;
4121 const char *ldap_attrs[] = { "cn", "displayName", "sambaSid",
4122 "sambaGroupType", NULL };
4124 filter = talloc_asprintf(
4125 mem_ctx, "(&(objectClass=%s)(|%s))",
4126 LDAP_OBJ_GROUPMAP, allsids);
4127 if (filter == NULL) {
4128 goto done;
4131 rc = smbldap_search(ldap_state->smbldap_state,
4132 lp_ldap_suffix(),
4133 LDAP_SCOPE_SUBTREE, filter, ldap_attrs, 0,
4134 &msg);
4135 talloc_autofree_ldapmsg(mem_ctx, msg);
4138 if (rc != LDAP_SUCCESS)
4139 goto done;
4141 /* ldap_struct might have changed due to a reconnect */
4143 ld = ldap_state->smbldap_state->ldap_struct;
4145 /* For consistency checks, we already checked we're only domain or builtin */
4147 is_builtin = sid_check_is_builtin(domain_sid);
4149 for (entry = ldap_first_entry(ld, msg);
4150 entry != NULL;
4151 entry = ldap_next_entry(ld, entry))
4153 uint32 rid;
4154 int rid_index;
4155 const char *attr;
4156 enum lsa_SidType type;
4157 const char *dn = smbldap_talloc_dn(mem_ctx, ld, entry);
4159 attr = smbldap_talloc_single_attribute(ld, entry, "sambaGroupType",
4160 mem_ctx);
4161 if (attr == NULL) {
4162 DEBUG(2, ("Could not extract type from ldap entry %s\n",
4163 dn));
4164 continue;
4167 type = (enum lsa_SidType)atol(attr);
4169 /* Consistency checks */
4170 if ((is_builtin && (type != SID_NAME_ALIAS)) ||
4171 (!is_builtin && ((type != SID_NAME_ALIAS) &&
4172 (type != SID_NAME_DOM_GRP)))) {
4173 DEBUG(2, ("Rejecting invalid group mapping entry %s\n", dn));
4176 if (!ldapsam_extract_rid_from_entry(ld, entry, domain_sid,
4177 &rid)) {
4178 DEBUG(2, ("Could not find sid from ldap entry %s\n", dn));
4179 continue;
4182 attr = smbldap_talloc_single_attribute(ld, entry, "displayName", names);
4184 if (attr == NULL) {
4185 DEBUG(10, ("Could not retrieve 'displayName' attribute from %s\n",
4186 dn));
4187 attr = smbldap_talloc_single_attribute(ld, entry, "cn", names);
4190 if (attr == NULL) {
4191 DEBUG(2, ("Could not retrieve naming attribute from %s\n",
4192 dn));
4193 continue;
4196 for (rid_index = 0; rid_index < num_rids; rid_index++) {
4197 if (rid == rids[rid_index])
4198 break;
4201 if (rid_index == num_rids) {
4202 DEBUG(2, ("Got a RID not asked for: %d\n", rid));
4203 continue;
4206 attrs[rid_index] = type;
4207 names[rid_index] = attr;
4208 num_mapped += 1;
4211 result = NT_STATUS_NONE_MAPPED;
4213 if (num_mapped > 0)
4214 result = (num_mapped == num_rids) ?
4215 NT_STATUS_OK : STATUS_SOME_UNMAPPED;
4216 done:
4217 TALLOC_FREE(mem_ctx);
4218 return result;
4221 static char *get_ldap_filter(TALLOC_CTX *mem_ctx, const char *username)
4223 char *filter = NULL;
4224 char *escaped = NULL;
4225 char *result = NULL;
4227 if (asprintf(&filter, "(&%s(objectclass=%s))",
4228 "(uid=%u)", LDAP_OBJ_SAMBASAMACCOUNT) < 0) {
4229 goto done;
4232 escaped = escape_ldap_string(talloc_tos(), username);
4233 if (escaped == NULL) goto done;
4235 result = talloc_string_sub(mem_ctx, filter, "%u", username);
4237 done:
4238 SAFE_FREE(filter);
4239 TALLOC_FREE(escaped);
4241 return result;
4244 const char **talloc_attrs(TALLOC_CTX *mem_ctx, ...)
4246 int i, num = 0;
4247 va_list ap;
4248 const char **result;
4250 va_start(ap, mem_ctx);
4251 while (va_arg(ap, const char *) != NULL)
4252 num += 1;
4253 va_end(ap);
4255 if ((result = TALLOC_ARRAY(mem_ctx, const char *, num+1)) == NULL) {
4256 return NULL;
4259 va_start(ap, mem_ctx);
4260 for (i=0; i<num; i++) {
4261 result[i] = talloc_strdup(result, va_arg(ap, const char*));
4262 if (result[i] == NULL) {
4263 talloc_free(result);
4264 va_end(ap);
4265 return NULL;
4268 va_end(ap);
4270 result[num] = NULL;
4271 return result;
4274 struct ldap_search_state {
4275 struct smbldap_state *connection;
4277 uint32 acct_flags;
4278 uint16 group_type;
4280 const char *base;
4281 int scope;
4282 const char *filter;
4283 const char **attrs;
4284 int attrsonly;
4285 void *pagedresults_cookie;
4287 LDAPMessage *entries, *current_entry;
4288 bool (*ldap2displayentry)(struct ldap_search_state *state,
4289 TALLOC_CTX *mem_ctx,
4290 LDAP *ld, LDAPMessage *entry,
4291 struct samr_displayentry *result);
4294 static bool ldapsam_search_firstpage(struct pdb_search *search)
4296 struct ldap_search_state *state =
4297 (struct ldap_search_state *)search->private_data;
4298 LDAP *ld;
4299 int rc = LDAP_OPERATIONS_ERROR;
4301 state->entries = NULL;
4303 if (state->connection->paged_results) {
4304 rc = smbldap_search_paged(state->connection, state->base,
4305 state->scope, state->filter,
4306 state->attrs, state->attrsonly,
4307 lp_ldap_page_size(), &state->entries,
4308 &state->pagedresults_cookie);
4311 if ((rc != LDAP_SUCCESS) || (state->entries == NULL)) {
4313 if (state->entries != NULL) {
4314 /* Left over from unsuccessful paged attempt */
4315 ldap_msgfree(state->entries);
4316 state->entries = NULL;
4319 rc = smbldap_search(state->connection, state->base,
4320 state->scope, state->filter, state->attrs,
4321 state->attrsonly, &state->entries);
4323 if ((rc != LDAP_SUCCESS) || (state->entries == NULL))
4324 return False;
4326 /* Ok, the server was lying. It told us it could do paged
4327 * searches when it could not. */
4328 state->connection->paged_results = False;
4331 ld = state->connection->ldap_struct;
4332 if ( ld == NULL) {
4333 DEBUG(5, ("Don't have an LDAP connection right after a "
4334 "search\n"));
4335 return False;
4337 state->current_entry = ldap_first_entry(ld, state->entries);
4339 if (state->current_entry == NULL) {
4340 ldap_msgfree(state->entries);
4341 state->entries = NULL;
4342 return false;
4345 return True;
4348 static bool ldapsam_search_nextpage(struct pdb_search *search)
4350 struct ldap_search_state *state =
4351 (struct ldap_search_state *)search->private_data;
4352 int rc;
4354 if (!state->connection->paged_results) {
4355 /* There is no next page when there are no paged results */
4356 return False;
4359 rc = smbldap_search_paged(state->connection, state->base,
4360 state->scope, state->filter, state->attrs,
4361 state->attrsonly, lp_ldap_page_size(),
4362 &state->entries,
4363 &state->pagedresults_cookie);
4365 if ((rc != LDAP_SUCCESS) || (state->entries == NULL))
4366 return False;
4368 state->current_entry = ldap_first_entry(state->connection->ldap_struct, state->entries);
4370 if (state->current_entry == NULL) {
4371 ldap_msgfree(state->entries);
4372 state->entries = NULL;
4373 return false;
4376 return True;
4379 static bool ldapsam_search_next_entry(struct pdb_search *search,
4380 struct samr_displayentry *entry)
4382 struct ldap_search_state *state =
4383 (struct ldap_search_state *)search->private_data;
4384 bool result;
4386 retry:
4387 if ((state->entries == NULL) && (state->pagedresults_cookie == NULL))
4388 return False;
4390 if ((state->entries == NULL) &&
4391 !ldapsam_search_nextpage(search))
4392 return False;
4394 result = state->ldap2displayentry(state, search,
4395 state->connection->ldap_struct,
4396 state->current_entry, entry);
4398 if (!result) {
4399 char *dn;
4400 dn = ldap_get_dn(state->connection->ldap_struct, state->current_entry);
4401 DEBUG(5, ("Skipping entry %s\n", dn != NULL ? dn : "<NULL>"));
4402 if (dn != NULL) ldap_memfree(dn);
4405 state->current_entry = ldap_next_entry(state->connection->ldap_struct, state->current_entry);
4407 if (state->current_entry == NULL) {
4408 ldap_msgfree(state->entries);
4409 state->entries = NULL;
4412 if (!result) goto retry;
4414 return True;
4417 static void ldapsam_search_end(struct pdb_search *search)
4419 struct ldap_search_state *state =
4420 (struct ldap_search_state *)search->private_data;
4421 int rc;
4423 if (state->pagedresults_cookie == NULL)
4424 return;
4426 if (state->entries != NULL)
4427 ldap_msgfree(state->entries);
4429 state->entries = NULL;
4430 state->current_entry = NULL;
4432 if (!state->connection->paged_results)
4433 return;
4435 /* Tell the LDAP server we're not interested in the rest anymore. */
4437 rc = smbldap_search_paged(state->connection, state->base, state->scope,
4438 state->filter, state->attrs,
4439 state->attrsonly, 0, &state->entries,
4440 &state->pagedresults_cookie);
4442 if (rc != LDAP_SUCCESS)
4443 DEBUG(5, ("Could not end search properly\n"));
4445 return;
4448 static bool ldapuser2displayentry(struct ldap_search_state *state,
4449 TALLOC_CTX *mem_ctx,
4450 LDAP *ld, LDAPMessage *entry,
4451 struct samr_displayentry *result)
4453 char **vals;
4454 size_t converted_size;
4455 DOM_SID sid;
4456 uint32 acct_flags;
4458 vals = ldap_get_values(ld, entry, "sambaAcctFlags");
4459 if ((vals == NULL) || (vals[0] == NULL)) {
4460 DEBUG(5, ("\"sambaAcctFlags\" not found\n"));
4461 return False;
4463 acct_flags = pdb_decode_acct_ctrl(vals[0]);
4464 ldap_value_free(vals);
4466 if ((state->acct_flags != 0) &&
4467 ((state->acct_flags & acct_flags) == 0))
4468 return False;
4470 result->acct_flags = acct_flags;
4471 result->account_name = "";
4472 result->fullname = "";
4473 result->description = "";
4475 vals = ldap_get_values(ld, entry, "uid");
4476 if ((vals == NULL) || (vals[0] == NULL)) {
4477 DEBUG(5, ("\"uid\" not found\n"));
4478 return False;
4480 if (!pull_utf8_talloc(mem_ctx,
4481 CONST_DISCARD(char **, &result->account_name),
4482 vals[0], &converted_size))
4484 DEBUG(0,("ldapuser2displayentry: pull_utf8_talloc failed: %s",
4485 strerror(errno)));
4488 ldap_value_free(vals);
4490 vals = ldap_get_values(ld, entry, "displayName");
4491 if ((vals == NULL) || (vals[0] == NULL))
4492 DEBUG(8, ("\"displayName\" not found\n"));
4493 else if (!pull_utf8_talloc(mem_ctx,
4494 CONST_DISCARD(char **, &result->fullname),
4495 vals[0], &converted_size))
4497 DEBUG(0,("ldapuser2displayentry: pull_utf8_talloc failed: %s",
4498 strerror(errno)));
4501 ldap_value_free(vals);
4503 vals = ldap_get_values(ld, entry, "description");
4504 if ((vals == NULL) || (vals[0] == NULL))
4505 DEBUG(8, ("\"description\" not found\n"));
4506 else if (!pull_utf8_talloc(mem_ctx,
4507 CONST_DISCARD(char **, &result->description),
4508 vals[0], &converted_size))
4510 DEBUG(0,("ldapuser2displayentry: pull_utf8_talloc failed: %s",
4511 strerror(errno)));
4514 ldap_value_free(vals);
4516 if ((result->account_name == NULL) ||
4517 (result->fullname == NULL) ||
4518 (result->description == NULL)) {
4519 DEBUG(0, ("talloc failed\n"));
4520 return False;
4523 vals = ldap_get_values(ld, entry, "sambaSid");
4524 if ((vals == NULL) || (vals[0] == NULL)) {
4525 DEBUG(0, ("\"objectSid\" not found\n"));
4526 return False;
4529 if (!string_to_sid(&sid, vals[0])) {
4530 DEBUG(0, ("Could not convert %s to SID\n", vals[0]));
4531 ldap_value_free(vals);
4532 return False;
4534 ldap_value_free(vals);
4536 if (!sid_peek_check_rid(get_global_sam_sid(), &sid, &result->rid)) {
4537 DEBUG(0, ("sid %s does not belong to our domain\n",
4538 sid_string_dbg(&sid)));
4539 return False;
4542 return True;
4546 static bool ldapsam_search_users(struct pdb_methods *methods,
4547 struct pdb_search *search,
4548 uint32 acct_flags)
4550 struct ldapsam_privates *ldap_state =
4551 (struct ldapsam_privates *)methods->private_data;
4552 struct ldap_search_state *state;
4554 state = talloc(search, struct ldap_search_state);
4555 if (state == NULL) {
4556 DEBUG(0, ("talloc failed\n"));
4557 return False;
4560 state->connection = ldap_state->smbldap_state;
4562 if ((acct_flags != 0) && ((acct_flags & ACB_NORMAL) != 0))
4563 state->base = lp_ldap_user_suffix();
4564 else if ((acct_flags != 0) &&
4565 ((acct_flags & (ACB_WSTRUST|ACB_SVRTRUST|ACB_DOMTRUST)) != 0))
4566 state->base = lp_ldap_machine_suffix();
4567 else
4568 state->base = lp_ldap_suffix();
4570 state->acct_flags = acct_flags;
4571 state->base = talloc_strdup(search, state->base);
4572 state->scope = LDAP_SCOPE_SUBTREE;
4573 state->filter = get_ldap_filter(search, "*");
4574 state->attrs = talloc_attrs(search, "uid", "sambaSid",
4575 "displayName", "description",
4576 "sambaAcctFlags", NULL);
4577 state->attrsonly = 0;
4578 state->pagedresults_cookie = NULL;
4579 state->entries = NULL;
4580 state->ldap2displayentry = ldapuser2displayentry;
4582 if ((state->filter == NULL) || (state->attrs == NULL)) {
4583 DEBUG(0, ("talloc failed\n"));
4584 return False;
4587 search->private_data = state;
4588 search->next_entry = ldapsam_search_next_entry;
4589 search->search_end = ldapsam_search_end;
4591 return ldapsam_search_firstpage(search);
4594 static bool ldapgroup2displayentry(struct ldap_search_state *state,
4595 TALLOC_CTX *mem_ctx,
4596 LDAP *ld, LDAPMessage *entry,
4597 struct samr_displayentry *result)
4599 char **vals;
4600 size_t converted_size;
4601 DOM_SID sid;
4602 uint16 group_type;
4604 result->account_name = "";
4605 result->fullname = "";
4606 result->description = "";
4609 vals = ldap_get_values(ld, entry, "sambaGroupType");
4610 if ((vals == NULL) || (vals[0] == NULL)) {
4611 DEBUG(5, ("\"sambaGroupType\" not found\n"));
4612 if (vals != NULL) {
4613 ldap_value_free(vals);
4615 return False;
4618 group_type = atoi(vals[0]);
4620 if ((state->group_type != 0) &&
4621 ((state->group_type != group_type))) {
4622 ldap_value_free(vals);
4623 return False;
4626 ldap_value_free(vals);
4628 /* display name is the NT group name */
4630 vals = ldap_get_values(ld, entry, "displayName");
4631 if ((vals == NULL) || (vals[0] == NULL)) {
4632 DEBUG(8, ("\"displayName\" not found\n"));
4634 /* fallback to the 'cn' attribute */
4635 vals = ldap_get_values(ld, entry, "cn");
4636 if ((vals == NULL) || (vals[0] == NULL)) {
4637 DEBUG(5, ("\"cn\" not found\n"));
4638 return False;
4640 if (!pull_utf8_talloc(mem_ctx,
4641 CONST_DISCARD(char **,
4642 &result->account_name),
4643 vals[0], &converted_size))
4645 DEBUG(0,("ldapgroup2displayentry: pull_utf8_talloc "
4646 "failed: %s", strerror(errno)));
4649 else if (!pull_utf8_talloc(mem_ctx,
4650 CONST_DISCARD(char **,
4651 &result->account_name),
4652 vals[0], &converted_size))
4654 DEBUG(0,("ldapgroup2displayentry: pull_utf8_talloc failed: %s",
4655 strerror(errno)));
4658 ldap_value_free(vals);
4660 vals = ldap_get_values(ld, entry, "description");
4661 if ((vals == NULL) || (vals[0] == NULL))
4662 DEBUG(8, ("\"description\" not found\n"));
4663 else if (!pull_utf8_talloc(mem_ctx,
4664 CONST_DISCARD(char **, &result->description),
4665 vals[0], &converted_size))
4667 DEBUG(0,("ldapgroup2displayentry: pull_utf8_talloc failed: %s",
4668 strerror(errno)));
4670 ldap_value_free(vals);
4672 if ((result->account_name == NULL) ||
4673 (result->fullname == NULL) ||
4674 (result->description == NULL)) {
4675 DEBUG(0, ("talloc failed\n"));
4676 return False;
4679 vals = ldap_get_values(ld, entry, "sambaSid");
4680 if ((vals == NULL) || (vals[0] == NULL)) {
4681 DEBUG(0, ("\"objectSid\" not found\n"));
4682 if (vals != NULL) {
4683 ldap_value_free(vals);
4685 return False;
4688 if (!string_to_sid(&sid, vals[0])) {
4689 DEBUG(0, ("Could not convert %s to SID\n", vals[0]));
4690 return False;
4693 ldap_value_free(vals);
4695 switch (group_type) {
4696 case SID_NAME_DOM_GRP:
4697 case SID_NAME_ALIAS:
4699 if (!sid_peek_check_rid(get_global_sam_sid(), &sid, &result->rid)
4700 && !sid_peek_check_rid(&global_sid_Builtin, &sid, &result->rid))
4702 DEBUG(0, ("%s is not in our domain\n",
4703 sid_string_dbg(&sid)));
4704 return False;
4706 break;
4708 default:
4709 DEBUG(0,("unkown group type: %d\n", group_type));
4710 return False;
4713 result->acct_flags = 0;
4715 return True;
4718 static bool ldapsam_search_grouptype(struct pdb_methods *methods,
4719 struct pdb_search *search,
4720 const DOM_SID *sid,
4721 enum lsa_SidType type)
4723 struct ldapsam_privates *ldap_state =
4724 (struct ldapsam_privates *)methods->private_data;
4725 struct ldap_search_state *state;
4726 fstring tmp;
4728 state = talloc(search, struct ldap_search_state);
4729 if (state == NULL) {
4730 DEBUG(0, ("talloc failed\n"));
4731 return False;
4734 state->connection = ldap_state->smbldap_state;
4736 state->base = talloc_strdup(search, lp_ldap_suffix());
4737 state->connection = ldap_state->smbldap_state;
4738 state->scope = LDAP_SCOPE_SUBTREE;
4739 state->filter = talloc_asprintf(search, "(&(objectclass=%s)"
4740 "(sambaGroupType=%d)(sambaSID=%s*))",
4741 LDAP_OBJ_GROUPMAP,
4742 type, sid_to_fstring(tmp, sid));
4743 state->attrs = talloc_attrs(search, "cn", "sambaSid",
4744 "displayName", "description",
4745 "sambaGroupType", NULL);
4746 state->attrsonly = 0;
4747 state->pagedresults_cookie = NULL;
4748 state->entries = NULL;
4749 state->group_type = type;
4750 state->ldap2displayentry = ldapgroup2displayentry;
4752 if ((state->filter == NULL) || (state->attrs == NULL)) {
4753 DEBUG(0, ("talloc failed\n"));
4754 return False;
4757 search->private_data = state;
4758 search->next_entry = ldapsam_search_next_entry;
4759 search->search_end = ldapsam_search_end;
4761 return ldapsam_search_firstpage(search);
4764 static bool ldapsam_search_groups(struct pdb_methods *methods,
4765 struct pdb_search *search)
4767 return ldapsam_search_grouptype(methods, search, get_global_sam_sid(), SID_NAME_DOM_GRP);
4770 static bool ldapsam_search_aliases(struct pdb_methods *methods,
4771 struct pdb_search *search,
4772 const DOM_SID *sid)
4774 return ldapsam_search_grouptype(methods, search, sid, SID_NAME_ALIAS);
4777 static uint32_t ldapsam_capabilities(struct pdb_methods *methods)
4779 return PDB_CAP_STORE_RIDS;
4782 static NTSTATUS ldapsam_get_new_rid(struct ldapsam_privates *priv,
4783 uint32 *rid)
4785 struct smbldap_state *smbldap_state = priv->smbldap_state;
4787 LDAPMessage *result = NULL;
4788 LDAPMessage *entry = NULL;
4789 LDAPMod **mods = NULL;
4790 NTSTATUS status;
4791 char *value;
4792 int rc;
4793 uint32 nextRid = 0;
4794 const char *dn;
4796 TALLOC_CTX *mem_ctx;
4798 mem_ctx = talloc_new(NULL);
4799 if (mem_ctx == NULL) {
4800 DEBUG(0, ("talloc_new failed\n"));
4801 return NT_STATUS_NO_MEMORY;
4804 status = smbldap_search_domain_info(smbldap_state, &result,
4805 get_global_sam_name(), False);
4806 if (!NT_STATUS_IS_OK(status)) {
4807 DEBUG(3, ("Could not get domain info: %s\n",
4808 nt_errstr(status)));
4809 goto done;
4812 talloc_autofree_ldapmsg(mem_ctx, result);
4814 entry = ldap_first_entry(priv2ld(priv), result);
4815 if (entry == NULL) {
4816 DEBUG(0, ("Could not get domain info entry\n"));
4817 status = NT_STATUS_INTERNAL_DB_CORRUPTION;
4818 goto done;
4821 /* Find the largest of the three attributes "sambaNextRid",
4822 "sambaNextGroupRid" and "sambaNextUserRid". I gave up on the
4823 concept of differentiating between user and group rids, and will
4824 use only "sambaNextRid" in the future. But for compatibility
4825 reasons I look if others have chosen different strategies -- VL */
4827 value = smbldap_talloc_single_attribute(priv2ld(priv), entry,
4828 "sambaNextRid", mem_ctx);
4829 if (value != NULL) {
4830 uint32 tmp = (uint32)strtoul(value, NULL, 10);
4831 nextRid = MAX(nextRid, tmp);
4834 value = smbldap_talloc_single_attribute(priv2ld(priv), entry,
4835 "sambaNextUserRid", mem_ctx);
4836 if (value != NULL) {
4837 uint32 tmp = (uint32)strtoul(value, NULL, 10);
4838 nextRid = MAX(nextRid, tmp);
4841 value = smbldap_talloc_single_attribute(priv2ld(priv), entry,
4842 "sambaNextGroupRid", mem_ctx);
4843 if (value != NULL) {
4844 uint32 tmp = (uint32)strtoul(value, NULL, 10);
4845 nextRid = MAX(nextRid, tmp);
4848 if (nextRid == 0) {
4849 nextRid = BASE_RID-1;
4852 nextRid += 1;
4854 smbldap_make_mod(priv2ld(priv), entry, &mods, "sambaNextRid",
4855 talloc_asprintf(mem_ctx, "%d", nextRid));
4856 talloc_autofree_ldapmod(mem_ctx, mods);
4858 if ((dn = smbldap_talloc_dn(mem_ctx, priv2ld(priv), entry)) == NULL) {
4859 status = NT_STATUS_NO_MEMORY;
4860 goto done;
4863 rc = smbldap_modify(smbldap_state, dn, mods);
4865 /* ACCESS_DENIED is used as a placeholder for "the modify failed,
4866 * please retry" */
4868 status = (rc == LDAP_SUCCESS) ? NT_STATUS_OK : NT_STATUS_ACCESS_DENIED;
4870 done:
4871 if (NT_STATUS_IS_OK(status)) {
4872 *rid = nextRid;
4875 TALLOC_FREE(mem_ctx);
4876 return status;
4879 static NTSTATUS ldapsam_new_rid_internal(struct pdb_methods *methods, uint32 *rid)
4881 int i;
4883 for (i=0; i<10; i++) {
4884 NTSTATUS result = ldapsam_get_new_rid(
4885 (struct ldapsam_privates *)methods->private_data, rid);
4886 if (NT_STATUS_IS_OK(result)) {
4887 return result;
4890 if (!NT_STATUS_EQUAL(result, NT_STATUS_ACCESS_DENIED)) {
4891 return result;
4894 /* The ldap update failed (maybe a race condition), retry */
4897 /* Tried 10 times, fail. */
4898 return NT_STATUS_ACCESS_DENIED;
4901 static bool ldapsam_new_rid(struct pdb_methods *methods, uint32 *rid)
4903 NTSTATUS result = ldapsam_new_rid_internal(methods, rid);
4904 return NT_STATUS_IS_OK(result) ? True : False;
4907 static bool ldapsam_sid_to_id(struct pdb_methods *methods,
4908 const DOM_SID *sid,
4909 union unid_t *id, enum lsa_SidType *type)
4911 struct ldapsam_privates *priv =
4912 (struct ldapsam_privates *)methods->private_data;
4913 char *filter;
4914 const char *attrs[] = { "sambaGroupType", "gidNumber", "uidNumber",
4915 NULL };
4916 LDAPMessage *result = NULL;
4917 LDAPMessage *entry = NULL;
4918 bool ret = False;
4919 char *value;
4920 int rc;
4922 TALLOC_CTX *mem_ctx;
4924 mem_ctx = talloc_new(NULL);
4925 if (mem_ctx == NULL) {
4926 DEBUG(0, ("talloc_new failed\n"));
4927 return False;
4930 filter = talloc_asprintf(mem_ctx,
4931 "(&(sambaSid=%s)"
4932 "(|(objectClass=%s)(objectClass=%s)))",
4933 sid_string_talloc(mem_ctx, sid),
4934 LDAP_OBJ_GROUPMAP, LDAP_OBJ_SAMBASAMACCOUNT);
4935 if (filter == NULL) {
4936 DEBUG(5, ("talloc_asprintf failed\n"));
4937 goto done;
4940 rc = smbldap_search_suffix(priv->smbldap_state, filter,
4941 attrs, &result);
4942 if (rc != LDAP_SUCCESS) {
4943 goto done;
4945 talloc_autofree_ldapmsg(mem_ctx, result);
4947 if (ldap_count_entries(priv2ld(priv), result) != 1) {
4948 DEBUG(10, ("Got %d entries, expected one\n",
4949 ldap_count_entries(priv2ld(priv), result)));
4950 goto done;
4953 entry = ldap_first_entry(priv2ld(priv), result);
4955 value = smbldap_talloc_single_attribute(priv2ld(priv), entry,
4956 "sambaGroupType", mem_ctx);
4958 if (value != NULL) {
4959 const char *gid_str;
4960 /* It's a group */
4962 gid_str = smbldap_talloc_single_attribute(
4963 priv2ld(priv), entry, "gidNumber", mem_ctx);
4964 if (gid_str == NULL) {
4965 DEBUG(1, ("%s has sambaGroupType but no gidNumber\n",
4966 smbldap_talloc_dn(mem_ctx, priv2ld(priv),
4967 entry)));
4968 goto done;
4971 id->gid = strtoul(gid_str, NULL, 10);
4972 *type = (enum lsa_SidType)strtoul(value, NULL, 10);
4973 store_gid_sid_cache(sid, id->gid);
4974 idmap_cache_set_sid2gid(sid, id->gid);
4975 ret = True;
4976 goto done;
4979 /* It must be a user */
4981 value = smbldap_talloc_single_attribute(priv2ld(priv), entry,
4982 "uidNumber", mem_ctx);
4983 if (value == NULL) {
4984 DEBUG(1, ("Could not find uidNumber in %s\n",
4985 smbldap_talloc_dn(mem_ctx, priv2ld(priv), entry)));
4986 goto done;
4989 id->uid = strtoul(value, NULL, 10);
4990 *type = SID_NAME_USER;
4991 store_uid_sid_cache(sid, id->uid);
4992 idmap_cache_set_sid2uid(sid, id->uid);
4994 ret = True;
4995 done:
4996 TALLOC_FREE(mem_ctx);
4997 return ret;
5001 * Find the SID for a uid.
5002 * This is shortcut is only used if ldapsam:trusted is set to true.
5004 static bool ldapsam_uid_to_sid(struct pdb_methods *methods, uid_t uid,
5005 DOM_SID *sid)
5007 struct ldapsam_privates *priv =
5008 (struct ldapsam_privates *)methods->private_data;
5009 char *filter;
5010 const char *attrs[] = { "sambaSID", NULL };
5011 LDAPMessage *result = NULL;
5012 LDAPMessage *entry = NULL;
5013 bool ret = false;
5014 char *user_sid_string;
5015 struct dom_sid user_sid;
5016 int rc;
5017 TALLOC_CTX *tmp_ctx = talloc_stackframe();
5019 filter = talloc_asprintf(tmp_ctx,
5020 "(&(uidNumber=%u)"
5021 "(objectClass=%s)"
5022 "(objectClass=%s))",
5023 (unsigned int)uid,
5024 LDAP_OBJ_POSIXACCOUNT,
5025 LDAP_OBJ_SAMBASAMACCOUNT);
5026 if (filter == NULL) {
5027 DEBUG(3, ("talloc_asprintf failed\n"));
5028 goto done;
5031 rc = smbldap_search_suffix(priv->smbldap_state, filter, attrs, &result);
5032 if (rc != LDAP_SUCCESS) {
5033 goto done;
5035 talloc_autofree_ldapmsg(tmp_ctx, result);
5037 if (ldap_count_entries(priv2ld(priv), result) != 1) {
5038 DEBUG(3, ("ERROR: Got %d entries for uid %u, expected one\n",
5039 ldap_count_entries(priv2ld(priv), result),
5040 (unsigned int)uid));
5041 goto done;
5044 entry = ldap_first_entry(priv2ld(priv), result);
5046 user_sid_string = smbldap_talloc_single_attribute(priv2ld(priv), entry,
5047 "sambaSID", tmp_ctx);
5048 if (user_sid_string == NULL) {
5049 DEBUG(1, ("Could not find sambaSID in object '%s'\n",
5050 smbldap_talloc_dn(tmp_ctx, priv2ld(priv), entry)));
5051 goto done;
5054 if (!string_to_sid(&user_sid, user_sid_string)) {
5055 DEBUG(3, ("Error calling sid_string_talloc for sid '%s'\n",
5056 user_sid_string));
5057 goto done;
5060 sid_copy(sid, &user_sid);
5062 store_uid_sid_cache(sid, uid);
5063 idmap_cache_set_sid2uid(sid, uid);
5065 ret = true;
5067 done:
5068 TALLOC_FREE(tmp_ctx);
5069 return ret;
5073 * Find the SID for a gid.
5074 * This is shortcut is only used if ldapsam:trusted is set to true.
5076 static bool ldapsam_gid_to_sid(struct pdb_methods *methods, gid_t gid,
5077 DOM_SID *sid)
5079 struct ldapsam_privates *priv =
5080 (struct ldapsam_privates *)methods->private_data;
5081 char *filter;
5082 const char *attrs[] = { "sambaSID", NULL };
5083 LDAPMessage *result = NULL;
5084 LDAPMessage *entry = NULL;
5085 bool ret = false;
5086 char *group_sid_string;
5087 DOM_SID group_sid;
5088 int rc;
5089 TALLOC_CTX *tmp_ctx = talloc_stackframe();
5091 filter = talloc_asprintf(tmp_ctx,
5092 "(&(gidNumber=%u)"
5093 "(objectClass=%s))",
5094 (unsigned int)gid,
5095 LDAP_OBJ_GROUPMAP);
5096 if (filter == NULL) {
5097 DEBUG(3, ("talloc_asprintf failed\n"));
5098 goto done;
5101 rc = smbldap_search_suffix(priv->smbldap_state, filter, attrs, &result);
5102 if (rc != LDAP_SUCCESS) {
5103 goto done;
5105 talloc_autofree_ldapmsg(tmp_ctx, result);
5107 if (ldap_count_entries(priv2ld(priv), result) != 1) {
5108 DEBUG(3, ("ERROR: Got %d entries for gid %u, expected one\n",
5109 ldap_count_entries(priv2ld(priv), result),
5110 (unsigned int)gid));
5111 goto done;
5114 entry = ldap_first_entry(priv2ld(priv), result);
5116 group_sid_string = smbldap_talloc_single_attribute(priv2ld(priv), entry,
5117 "sambaSID", tmp_ctx);
5118 if (group_sid_string == NULL) {
5119 DEBUG(1, ("Could not find sambaSID in object '%s'\n",
5120 smbldap_talloc_dn(tmp_ctx, priv2ld(priv), entry)));
5121 goto done;
5124 if (!string_to_sid(&group_sid, group_sid_string)) {
5125 DEBUG(3, ("Error calling sid_string_talloc for sid '%s'\n",
5126 group_sid_string));
5127 goto done;
5130 sid_copy(sid, &group_sid);
5132 store_gid_sid_cache(sid, gid);
5133 idmap_cache_set_sid2gid(sid, gid);
5135 ret = true;
5137 done:
5138 TALLOC_FREE(tmp_ctx);
5139 return ret;
5144 * The following functions are called only if
5145 * ldapsam:trusted and ldapsam:editposix are
5146 * set to true
5150 * ldapsam_create_user creates a new
5151 * posixAccount and sambaSamAccount object
5152 * in the ldap users subtree
5154 * The uid is allocated by winbindd.
5157 static NTSTATUS ldapsam_create_user(struct pdb_methods *my_methods,
5158 TALLOC_CTX *tmp_ctx, const char *name,
5159 uint32 acb_info, uint32 *rid)
5161 struct ldapsam_privates *ldap_state = (struct ldapsam_privates *)my_methods->private_data;
5162 LDAPMessage *entry = NULL;
5163 LDAPMessage *result = NULL;
5164 uint32 num_result;
5165 bool is_machine = False;
5166 bool add_posix = False;
5167 LDAPMod **mods = NULL;
5168 struct samu *user;
5169 char *filter;
5170 char *username;
5171 char *homedir;
5172 char *gidstr;
5173 char *uidstr;
5174 char *shell;
5175 const char *dn = NULL;
5176 DOM_SID group_sid;
5177 DOM_SID user_sid;
5178 gid_t gid = -1;
5179 uid_t uid = -1;
5180 NTSTATUS ret;
5181 int rc;
5183 if (((acb_info & ACB_NORMAL) && name[strlen(name)-1] == '$') ||
5184 acb_info & ACB_WSTRUST ||
5185 acb_info & ACB_SVRTRUST ||
5186 acb_info & ACB_DOMTRUST) {
5187 is_machine = True;
5190 username = escape_ldap_string(talloc_tos(), name);
5191 filter = talloc_asprintf(tmp_ctx, "(&(uid=%s)(objectClass=%s))",
5192 username, LDAP_OBJ_POSIXACCOUNT);
5193 TALLOC_FREE(username);
5195 rc = smbldap_search_suffix(ldap_state->smbldap_state, filter, NULL, &result);
5196 if (rc != LDAP_SUCCESS) {
5197 DEBUG(0,("ldapsam_create_user: ldap search failed!\n"));
5198 return NT_STATUS_ACCESS_DENIED;
5200 talloc_autofree_ldapmsg(tmp_ctx, result);
5202 num_result = ldap_count_entries(priv2ld(ldap_state), result);
5204 if (num_result > 1) {
5205 DEBUG (0, ("ldapsam_create_user: More than one user with name [%s] ?!\n", name));
5206 return NT_STATUS_INTERNAL_DB_CORRUPTION;
5209 if (num_result == 1) {
5210 char *tmp;
5211 /* check if it is just a posix account.
5212 * or if there is a sid attached to this entry
5215 entry = ldap_first_entry(priv2ld(ldap_state), result);
5216 if (!entry) {
5217 return NT_STATUS_UNSUCCESSFUL;
5220 tmp = smbldap_talloc_single_attribute(priv2ld(ldap_state), entry, "sambaSID", tmp_ctx);
5221 if (tmp) {
5222 DEBUG (1, ("ldapsam_create_user: The user [%s] already exist!\n", name));
5223 return NT_STATUS_USER_EXISTS;
5226 /* it is just a posix account, retrieve the dn for later use */
5227 dn = smbldap_talloc_dn(tmp_ctx, priv2ld(ldap_state), entry);
5228 if (!dn) {
5229 DEBUG(0,("ldapsam_create_user: Out of memory!\n"));
5230 return NT_STATUS_NO_MEMORY;
5234 if (num_result == 0) {
5235 add_posix = True;
5238 /* Create the basic samu structure and generate the mods for the ldap commit */
5239 if (!NT_STATUS_IS_OK((ret = ldapsam_new_rid_internal(my_methods, rid)))) {
5240 DEBUG(1, ("ldapsam_create_user: Could not allocate a new RID\n"));
5241 return ret;
5244 sid_compose(&user_sid, get_global_sam_sid(), *rid);
5246 user = samu_new(tmp_ctx);
5247 if (!user) {
5248 DEBUG(1,("ldapsam_create_user: Unable to allocate user struct\n"));
5249 return NT_STATUS_NO_MEMORY;
5252 if (!pdb_set_username(user, name, PDB_SET)) {
5253 DEBUG(1,("ldapsam_create_user: Unable to fill user structs\n"));
5254 return NT_STATUS_UNSUCCESSFUL;
5256 if (!pdb_set_domain(user, get_global_sam_name(), PDB_SET)) {
5257 DEBUG(1,("ldapsam_create_user: Unable to fill user structs\n"));
5258 return NT_STATUS_UNSUCCESSFUL;
5260 if (is_machine) {
5261 if (acb_info & ACB_NORMAL) {
5262 if (!pdb_set_acct_ctrl(user, ACB_WSTRUST, PDB_SET)) {
5263 DEBUG(1,("ldapsam_create_user: Unable to fill user structs\n"));
5264 return NT_STATUS_UNSUCCESSFUL;
5266 } else {
5267 if (!pdb_set_acct_ctrl(user, acb_info, PDB_SET)) {
5268 DEBUG(1,("ldapsam_create_user: Unable to fill user structs\n"));
5269 return NT_STATUS_UNSUCCESSFUL;
5272 } else {
5273 if (!pdb_set_acct_ctrl(user, ACB_NORMAL | ACB_DISABLED, PDB_SET)) {
5274 DEBUG(1,("ldapsam_create_user: Unable to fill user structs\n"));
5275 return NT_STATUS_UNSUCCESSFUL;
5279 if (!pdb_set_user_sid(user, &user_sid, PDB_SET)) {
5280 DEBUG(1,("ldapsam_create_user: Unable to fill user structs\n"));
5281 return NT_STATUS_UNSUCCESSFUL;
5284 if (!init_ldap_from_sam(ldap_state, NULL, &mods, user, element_is_set_or_changed)) {
5285 DEBUG(1,("ldapsam_create_user: Unable to fill user structs\n"));
5286 return NT_STATUS_UNSUCCESSFUL;
5289 if (ldap_state->schema_ver != SCHEMAVER_SAMBASAMACCOUNT) {
5290 DEBUG(1,("ldapsam_create_user: Unsupported schema version\n"));
5292 smbldap_set_mod(&mods, LDAP_MOD_ADD, "objectClass", LDAP_OBJ_SAMBASAMACCOUNT);
5294 if (add_posix) {
5295 char *escape_name;
5297 DEBUG(3,("ldapsam_create_user: Creating new posix user\n"));
5299 /* retrieve the Domain Users group gid */
5300 if (!sid_compose(&group_sid, get_global_sam_sid(), DOMAIN_GROUP_RID_USERS) ||
5301 !sid_to_gid(&group_sid, &gid)) {
5302 DEBUG (0, ("ldapsam_create_user: Unable to get the Domain Users gid: bailing out!\n"));
5303 return NT_STATUS_INVALID_PRIMARY_GROUP;
5306 /* lets allocate a new userid for this user */
5307 if (!winbind_allocate_uid(&uid)) {
5308 DEBUG (0, ("ldapsam_create_user: Unable to allocate a new user id: bailing out!\n"));
5309 return NT_STATUS_UNSUCCESSFUL;
5313 if (is_machine) {
5314 /* TODO: choose a more appropriate default for machines */
5315 homedir = talloc_sub_specified(tmp_ctx, lp_template_homedir(), "SMB_workstations_home", ldap_state->domain_name, uid, gid);
5316 shell = talloc_strdup(tmp_ctx, "/bin/false");
5317 } else {
5318 homedir = talloc_sub_specified(tmp_ctx, lp_template_homedir(), name, ldap_state->domain_name, uid, gid);
5319 shell = talloc_sub_specified(tmp_ctx, lp_template_shell(), name, ldap_state->domain_name, uid, gid);
5321 uidstr = talloc_asprintf(tmp_ctx, "%u", (unsigned int)uid);
5322 gidstr = talloc_asprintf(tmp_ctx, "%u", (unsigned int)gid);
5324 escape_name = escape_rdn_val_string_alloc(name);
5325 if (!escape_name) {
5326 DEBUG (0, ("ldapsam_create_user: Out of memory!\n"));
5327 return NT_STATUS_NO_MEMORY;
5330 if (is_machine) {
5331 dn = talloc_asprintf(tmp_ctx, "uid=%s,%s", escape_name, lp_ldap_machine_suffix ());
5332 } else {
5333 dn = talloc_asprintf(tmp_ctx, "uid=%s,%s", escape_name, lp_ldap_user_suffix ());
5336 SAFE_FREE(escape_name);
5338 if (!homedir || !shell || !uidstr || !gidstr || !dn) {
5339 DEBUG (0, ("ldapsam_create_user: Out of memory!\n"));
5340 return NT_STATUS_NO_MEMORY;
5343 smbldap_set_mod(&mods, LDAP_MOD_ADD, "objectClass", LDAP_OBJ_ACCOUNT);
5344 smbldap_set_mod(&mods, LDAP_MOD_ADD, "objectClass", LDAP_OBJ_POSIXACCOUNT);
5345 smbldap_set_mod(&mods, LDAP_MOD_ADD, "cn", name);
5346 smbldap_set_mod(&mods, LDAP_MOD_ADD, "uidNumber", uidstr);
5347 smbldap_set_mod(&mods, LDAP_MOD_ADD, "gidNumber", gidstr);
5348 smbldap_set_mod(&mods, LDAP_MOD_ADD, "homeDirectory", homedir);
5349 smbldap_set_mod(&mods, LDAP_MOD_ADD, "loginShell", shell);
5352 talloc_autofree_ldapmod(tmp_ctx, mods);
5354 if (add_posix) {
5355 rc = smbldap_add(ldap_state->smbldap_state, dn, mods);
5356 } else {
5357 rc = smbldap_modify(ldap_state->smbldap_state, dn, mods);
5360 if (rc != LDAP_SUCCESS) {
5361 DEBUG(0,("ldapsam_create_user: failed to create a new user [%s] (dn = %s)\n", name ,dn));
5362 return NT_STATUS_UNSUCCESSFUL;
5365 DEBUG(2,("ldapsam_create_user: added account [%s] in the LDAP database\n", name));
5367 flush_pwnam_cache();
5369 return NT_STATUS_OK;
5372 static NTSTATUS ldapsam_delete_user(struct pdb_methods *my_methods, TALLOC_CTX *tmp_ctx, struct samu *sam_acct)
5374 struct ldapsam_privates *ldap_state = (struct ldapsam_privates *)my_methods->private_data;
5375 LDAPMessage *result = NULL;
5376 LDAPMessage *entry = NULL;
5377 int num_result;
5378 const char *dn;
5379 char *filter;
5380 int rc;
5382 DEBUG(0,("ldapsam_delete_user: Attempt to delete user [%s]\n", pdb_get_username(sam_acct)));
5384 filter = talloc_asprintf(tmp_ctx,
5385 "(&(uid=%s)"
5386 "(objectClass=%s)"
5387 "(objectClass=%s))",
5388 pdb_get_username(sam_acct),
5389 LDAP_OBJ_POSIXACCOUNT,
5390 LDAP_OBJ_SAMBASAMACCOUNT);
5391 if (filter == NULL) {
5392 return NT_STATUS_NO_MEMORY;
5395 rc = smbldap_search_suffix(ldap_state->smbldap_state, filter, NULL, &result);
5396 if (rc != LDAP_SUCCESS) {
5397 DEBUG(0,("ldapsam_delete_user: user search failed!\n"));
5398 return NT_STATUS_UNSUCCESSFUL;
5400 talloc_autofree_ldapmsg(tmp_ctx, result);
5402 num_result = ldap_count_entries(priv2ld(ldap_state), result);
5404 if (num_result == 0) {
5405 DEBUG(0,("ldapsam_delete_user: user not found!\n"));
5406 return NT_STATUS_NO_SUCH_USER;
5409 if (num_result > 1) {
5410 DEBUG (0, ("ldapsam_delete_user: More than one user with name [%s] ?!\n", pdb_get_username(sam_acct)));
5411 return NT_STATUS_INTERNAL_DB_CORRUPTION;
5414 entry = ldap_first_entry(priv2ld(ldap_state), result);
5415 if (!entry) {
5416 return NT_STATUS_UNSUCCESSFUL;
5419 /* it is just a posix account, retrieve the dn for later use */
5420 dn = smbldap_talloc_dn(tmp_ctx, priv2ld(ldap_state), entry);
5421 if (!dn) {
5422 DEBUG(0,("ldapsam_delete_user: Out of memory!\n"));
5423 return NT_STATUS_NO_MEMORY;
5426 /* try to remove memberships first */
5428 NTSTATUS status;
5429 struct dom_sid *sids = NULL;
5430 gid_t *gids = NULL;
5431 size_t num_groups = 0;
5432 int i;
5433 uint32_t user_rid = pdb_get_user_rid(sam_acct);
5435 status = ldapsam_enum_group_memberships(my_methods,
5436 tmp_ctx,
5437 sam_acct,
5438 &sids,
5439 &gids,
5440 &num_groups);
5441 if (!NT_STATUS_IS_OK(status)) {
5442 goto delete_dn;
5445 for (i=0; i < num_groups; i++) {
5447 uint32_t group_rid;
5449 sid_peek_rid(&sids[i], &group_rid);
5451 ldapsam_del_groupmem(my_methods,
5452 tmp_ctx,
5453 group_rid,
5454 user_rid);
5458 delete_dn:
5460 rc = smbldap_delete(ldap_state->smbldap_state, dn);
5461 if (rc != LDAP_SUCCESS) {
5462 return NT_STATUS_UNSUCCESSFUL;
5465 flush_pwnam_cache();
5467 return NT_STATUS_OK;
5471 * ldapsam_create_group creates a new
5472 * posixGroup and sambaGroupMapping object
5473 * in the ldap groups subtree
5475 * The gid is allocated by winbindd.
5478 static NTSTATUS ldapsam_create_dom_group(struct pdb_methods *my_methods,
5479 TALLOC_CTX *tmp_ctx,
5480 const char *name,
5481 uint32 *rid)
5483 struct ldapsam_privates *ldap_state = (struct ldapsam_privates *)my_methods->private_data;
5484 NTSTATUS ret;
5485 LDAPMessage *entry = NULL;
5486 LDAPMessage *result = NULL;
5487 uint32 num_result;
5488 bool is_new_entry = False;
5489 LDAPMod **mods = NULL;
5490 char *filter;
5491 char *groupsidstr;
5492 char *groupname;
5493 char *grouptype;
5494 char *gidstr;
5495 const char *dn = NULL;
5496 DOM_SID group_sid;
5497 gid_t gid = -1;
5498 int rc;
5500 groupname = escape_ldap_string(talloc_tos(), name);
5501 filter = talloc_asprintf(tmp_ctx, "(&(cn=%s)(objectClass=%s))",
5502 groupname, LDAP_OBJ_POSIXGROUP);
5503 TALLOC_FREE(groupname);
5505 rc = smbldap_search_suffix(ldap_state->smbldap_state, filter, NULL, &result);
5506 if (rc != LDAP_SUCCESS) {
5507 DEBUG(0,("ldapsam_create_group: ldap search failed!\n"));
5508 return NT_STATUS_UNSUCCESSFUL;
5510 talloc_autofree_ldapmsg(tmp_ctx, result);
5512 num_result = ldap_count_entries(priv2ld(ldap_state), result);
5514 if (num_result > 1) {
5515 DEBUG (0, ("ldapsam_create_group: There exists more than one group with name [%s]: bailing out!\n", name));
5516 return NT_STATUS_INTERNAL_DB_CORRUPTION;
5519 if (num_result == 1) {
5520 char *tmp;
5521 /* check if it is just a posix group.
5522 * or if there is a sid attached to this entry
5525 entry = ldap_first_entry(priv2ld(ldap_state), result);
5526 if (!entry) {
5527 return NT_STATUS_UNSUCCESSFUL;
5530 tmp = smbldap_talloc_single_attribute(priv2ld(ldap_state), entry, "sambaSID", tmp_ctx);
5531 if (tmp) {
5532 DEBUG (1, ("ldapsam_create_group: The group [%s] already exist!\n", name));
5533 return NT_STATUS_GROUP_EXISTS;
5536 /* it is just a posix group, retrieve the gid and the dn for later use */
5537 tmp = smbldap_talloc_single_attribute(priv2ld(ldap_state), entry, "gidNumber", tmp_ctx);
5538 if (!tmp) {
5539 DEBUG (1, ("ldapsam_create_group: Couldn't retrieve the gidNumber for [%s]?!?!\n", name));
5540 return NT_STATUS_INTERNAL_DB_CORRUPTION;
5543 gid = strtoul(tmp, NULL, 10);
5545 dn = smbldap_talloc_dn(tmp_ctx, priv2ld(ldap_state), entry);
5546 if (!dn) {
5547 DEBUG(0,("ldapsam_create_group: Out of memory!\n"));
5548 return NT_STATUS_NO_MEMORY;
5552 if (num_result == 0) {
5553 char *escape_name;
5555 DEBUG(3,("ldapsam_create_user: Creating new posix group\n"));
5557 is_new_entry = True;
5559 /* lets allocate a new groupid for this group */
5560 if (!winbind_allocate_gid(&gid)) {
5561 DEBUG (0, ("ldapsam_create_group: Unable to allocate a new group id: bailing out!\n"));
5562 return NT_STATUS_UNSUCCESSFUL;
5565 gidstr = talloc_asprintf(tmp_ctx, "%u", (unsigned int)gid);
5567 escape_name = escape_rdn_val_string_alloc(name);
5568 if (!escape_name) {
5569 DEBUG (0, ("ldapsam_create_group: Out of memory!\n"));
5570 return NT_STATUS_NO_MEMORY;
5573 dn = talloc_asprintf(tmp_ctx, "cn=%s,%s", escape_name, lp_ldap_group_suffix());
5575 SAFE_FREE(escape_name);
5577 if (!gidstr || !dn) {
5578 DEBUG (0, ("ldapsam_create_group: Out of memory!\n"));
5579 return NT_STATUS_NO_MEMORY;
5582 smbldap_set_mod(&mods, LDAP_MOD_ADD, "objectclass", LDAP_OBJ_POSIXGROUP);
5583 smbldap_set_mod(&mods, LDAP_MOD_ADD, "cn", name);
5584 smbldap_set_mod(&mods, LDAP_MOD_ADD, "gidNumber", gidstr);
5587 if (!NT_STATUS_IS_OK((ret = ldapsam_new_rid_internal(my_methods, rid)))) {
5588 DEBUG(1, ("ldapsam_create_group: Could not allocate a new RID\n"));
5589 return ret;
5592 sid_compose(&group_sid, get_global_sam_sid(), *rid);
5594 groupsidstr = talloc_strdup(tmp_ctx, sid_string_talloc(tmp_ctx,
5595 &group_sid));
5596 grouptype = talloc_asprintf(tmp_ctx, "%d", SID_NAME_DOM_GRP);
5598 if (!groupsidstr || !grouptype) {
5599 DEBUG(0,("ldapsam_create_group: Out of memory!\n"));
5600 return NT_STATUS_NO_MEMORY;
5603 smbldap_set_mod(&mods, LDAP_MOD_ADD, "objectClass", LDAP_OBJ_GROUPMAP);
5604 smbldap_set_mod(&mods, LDAP_MOD_ADD, "sambaSid", groupsidstr);
5605 smbldap_set_mod(&mods, LDAP_MOD_ADD, "sambaGroupType", grouptype);
5606 smbldap_set_mod(&mods, LDAP_MOD_ADD, "displayName", name);
5607 talloc_autofree_ldapmod(tmp_ctx, mods);
5609 if (is_new_entry) {
5610 rc = smbldap_add(ldap_state->smbldap_state, dn, mods);
5611 #if 0
5612 if (rc == LDAP_OBJECT_CLASS_VIOLATION) {
5613 /* This call may fail with rfc2307bis schema */
5614 /* Retry adding a structural class */
5615 smbldap_set_mod(&mods, LDAP_MOD_ADD, "objectClass", "????");
5616 rc = smbldap_add(ldap_state->smbldap_state, dn, mods);
5618 #endif
5619 } else {
5620 rc = smbldap_modify(ldap_state->smbldap_state, dn, mods);
5623 if (rc != LDAP_SUCCESS) {
5624 DEBUG(0,("ldapsam_create_group: failed to create a new group [%s] (dn = %s)\n", name ,dn));
5625 return NT_STATUS_UNSUCCESSFUL;
5628 DEBUG(2,("ldapsam_create_group: added group [%s] in the LDAP database\n", name));
5630 return NT_STATUS_OK;
5633 static NTSTATUS ldapsam_delete_dom_group(struct pdb_methods *my_methods, TALLOC_CTX *tmp_ctx, uint32 rid)
5635 struct ldapsam_privates *ldap_state = (struct ldapsam_privates *)my_methods->private_data;
5636 LDAPMessage *result = NULL;
5637 LDAPMessage *entry = NULL;
5638 int num_result;
5639 const char *dn;
5640 char *gidstr;
5641 char *filter;
5642 DOM_SID group_sid;
5643 int rc;
5645 /* get the group sid */
5646 sid_compose(&group_sid, get_global_sam_sid(), rid);
5648 filter = talloc_asprintf(tmp_ctx,
5649 "(&(sambaSID=%s)"
5650 "(objectClass=%s)"
5651 "(objectClass=%s))",
5652 sid_string_talloc(tmp_ctx, &group_sid),
5653 LDAP_OBJ_POSIXGROUP,
5654 LDAP_OBJ_GROUPMAP);
5655 if (filter == NULL) {
5656 return NT_STATUS_NO_MEMORY;
5659 rc = smbldap_search_suffix(ldap_state->smbldap_state, filter, NULL, &result);
5660 if (rc != LDAP_SUCCESS) {
5661 DEBUG(1,("ldapsam_delete_dom_group: group search failed!\n"));
5662 return NT_STATUS_UNSUCCESSFUL;
5664 talloc_autofree_ldapmsg(tmp_ctx, result);
5666 num_result = ldap_count_entries(priv2ld(ldap_state), result);
5668 if (num_result == 0) {
5669 DEBUG(1,("ldapsam_delete_dom_group: group not found!\n"));
5670 return NT_STATUS_NO_SUCH_GROUP;
5673 if (num_result > 1) {
5674 DEBUG (0, ("ldapsam_delete_dom_group: More than one group with the same SID ?!\n"));
5675 return NT_STATUS_INTERNAL_DB_CORRUPTION;
5678 entry = ldap_first_entry(priv2ld(ldap_state), result);
5679 if (!entry) {
5680 return NT_STATUS_UNSUCCESSFUL;
5683 /* here it is, retrieve the dn for later use */
5684 dn = smbldap_talloc_dn(tmp_ctx, priv2ld(ldap_state), entry);
5685 if (!dn) {
5686 DEBUG(0,("ldapsam_delete_dom_group: Out of memory!\n"));
5687 return NT_STATUS_NO_MEMORY;
5690 gidstr = smbldap_talloc_single_attribute(priv2ld(ldap_state), entry, "gidNumber", tmp_ctx);
5691 if (!gidstr) {
5692 DEBUG (0, ("ldapsam_delete_dom_group: Unable to find the group's gid!\n"));
5693 return NT_STATUS_INTERNAL_DB_CORRUPTION;
5696 /* check no user have this group marked as primary group */
5697 filter = talloc_asprintf(tmp_ctx,
5698 "(&(gidNumber=%s)"
5699 "(objectClass=%s)"
5700 "(objectClass=%s))",
5701 gidstr,
5702 LDAP_OBJ_POSIXACCOUNT,
5703 LDAP_OBJ_SAMBASAMACCOUNT);
5705 rc = smbldap_search_suffix(ldap_state->smbldap_state, filter, NULL, &result);
5706 if (rc != LDAP_SUCCESS) {
5707 DEBUG(1,("ldapsam_delete_dom_group: accounts search failed!\n"));
5708 return NT_STATUS_UNSUCCESSFUL;
5710 talloc_autofree_ldapmsg(tmp_ctx, result);
5712 num_result = ldap_count_entries(priv2ld(ldap_state), result);
5714 if (num_result != 0) {
5715 DEBUG(3,("ldapsam_delete_dom_group: Can't delete group, it is a primary group for %d users\n", num_result));
5716 return NT_STATUS_MEMBERS_PRIMARY_GROUP;
5719 rc = smbldap_delete(ldap_state->smbldap_state, dn);
5720 if (rc != LDAP_SUCCESS) {
5721 return NT_STATUS_UNSUCCESSFUL;
5724 return NT_STATUS_OK;
5727 static NTSTATUS ldapsam_change_groupmem(struct pdb_methods *my_methods,
5728 TALLOC_CTX *tmp_ctx,
5729 uint32 group_rid,
5730 uint32 member_rid,
5731 int modop)
5733 struct ldapsam_privates *ldap_state = (struct ldapsam_privates *)my_methods->private_data;
5734 LDAPMessage *entry = NULL;
5735 LDAPMessage *result = NULL;
5736 uint32 num_result;
5737 LDAPMod **mods = NULL;
5738 char *filter;
5739 char *uidstr;
5740 const char *dn = NULL;
5741 DOM_SID group_sid;
5742 DOM_SID member_sid;
5743 int rc;
5745 switch (modop) {
5746 case LDAP_MOD_ADD:
5747 DEBUG(1,("ldapsam_change_groupmem: add new member(rid=%d) to a domain group(rid=%d)", member_rid, group_rid));
5748 break;
5749 case LDAP_MOD_DELETE:
5750 DEBUG(1,("ldapsam_change_groupmem: delete member(rid=%d) from a domain group(rid=%d)", member_rid, group_rid));
5751 break;
5752 default:
5753 return NT_STATUS_UNSUCCESSFUL;
5756 /* get member sid */
5757 sid_compose(&member_sid, get_global_sam_sid(), member_rid);
5759 /* get the group sid */
5760 sid_compose(&group_sid, get_global_sam_sid(), group_rid);
5762 filter = talloc_asprintf(tmp_ctx,
5763 "(&(sambaSID=%s)"
5764 "(objectClass=%s)"
5765 "(objectClass=%s))",
5766 sid_string_talloc(tmp_ctx, &member_sid),
5767 LDAP_OBJ_POSIXACCOUNT,
5768 LDAP_OBJ_SAMBASAMACCOUNT);
5769 if (filter == NULL) {
5770 return NT_STATUS_NO_MEMORY;
5773 /* get the member uid */
5774 rc = smbldap_search_suffix(ldap_state->smbldap_state, filter, NULL, &result);
5775 if (rc != LDAP_SUCCESS) {
5776 DEBUG(1,("ldapsam_change_groupmem: member search failed!\n"));
5777 return NT_STATUS_UNSUCCESSFUL;
5779 talloc_autofree_ldapmsg(tmp_ctx, result);
5781 num_result = ldap_count_entries(priv2ld(ldap_state), result);
5783 if (num_result == 0) {
5784 DEBUG(1,("ldapsam_change_groupmem: member not found!\n"));
5785 return NT_STATUS_NO_SUCH_MEMBER;
5788 if (num_result > 1) {
5789 DEBUG (0, ("ldapsam_change_groupmem: More than one account with the same SID ?!\n"));
5790 return NT_STATUS_INTERNAL_DB_CORRUPTION;
5793 entry = ldap_first_entry(priv2ld(ldap_state), result);
5794 if (!entry) {
5795 return NT_STATUS_UNSUCCESSFUL;
5798 if (modop == LDAP_MOD_DELETE) {
5799 /* check if we are trying to remove the member from his primary group */
5800 char *gidstr;
5801 gid_t user_gid, group_gid;
5803 gidstr = smbldap_talloc_single_attribute(priv2ld(ldap_state), entry, "gidNumber", tmp_ctx);
5804 if (!gidstr) {
5805 DEBUG (0, ("ldapsam_change_groupmem: Unable to find the member's gid!\n"));
5806 return NT_STATUS_INTERNAL_DB_CORRUPTION;
5809 user_gid = strtoul(gidstr, NULL, 10);
5811 if (!sid_to_gid(&group_sid, &group_gid)) {
5812 DEBUG (0, ("ldapsam_change_groupmem: Unable to get group gid from SID!\n"));
5813 return NT_STATUS_UNSUCCESSFUL;
5816 if (user_gid == group_gid) {
5817 DEBUG (3, ("ldapsam_change_groupmem: can't remove user from its own primary group!\n"));
5818 return NT_STATUS_MEMBERS_PRIMARY_GROUP;
5822 /* here it is, retrieve the uid for later use */
5823 uidstr = smbldap_talloc_single_attribute(priv2ld(ldap_state), entry, "uid", tmp_ctx);
5824 if (!uidstr) {
5825 DEBUG (0, ("ldapsam_change_groupmem: Unable to find the member's name!\n"));
5826 return NT_STATUS_INTERNAL_DB_CORRUPTION;
5829 filter = talloc_asprintf(tmp_ctx,
5830 "(&(sambaSID=%s)"
5831 "(objectClass=%s)"
5832 "(objectClass=%s))",
5833 sid_string_talloc(tmp_ctx, &group_sid),
5834 LDAP_OBJ_POSIXGROUP,
5835 LDAP_OBJ_GROUPMAP);
5837 /* get the group */
5838 rc = smbldap_search_suffix(ldap_state->smbldap_state, filter, NULL, &result);
5839 if (rc != LDAP_SUCCESS) {
5840 DEBUG(1,("ldapsam_change_groupmem: group search failed!\n"));
5841 return NT_STATUS_UNSUCCESSFUL;
5843 talloc_autofree_ldapmsg(tmp_ctx, result);
5845 num_result = ldap_count_entries(priv2ld(ldap_state), result);
5847 if (num_result == 0) {
5848 DEBUG(1,("ldapsam_change_groupmem: group not found!\n"));
5849 return NT_STATUS_NO_SUCH_GROUP;
5852 if (num_result > 1) {
5853 DEBUG (0, ("ldapsam_change_groupmem: More than one group with the same SID ?!\n"));
5854 return NT_STATUS_INTERNAL_DB_CORRUPTION;
5857 entry = ldap_first_entry(priv2ld(ldap_state), result);
5858 if (!entry) {
5859 return NT_STATUS_UNSUCCESSFUL;
5862 /* here it is, retrieve the dn for later use */
5863 dn = smbldap_talloc_dn(tmp_ctx, priv2ld(ldap_state), entry);
5864 if (!dn) {
5865 DEBUG(0,("ldapsam_change_groupmem: Out of memory!\n"));
5866 return NT_STATUS_NO_MEMORY;
5869 smbldap_set_mod(&mods, modop, "memberUid", uidstr);
5871 talloc_autofree_ldapmod(tmp_ctx, mods);
5873 rc = smbldap_modify(ldap_state->smbldap_state, dn, mods);
5874 if (rc != LDAP_SUCCESS) {
5875 if (rc == LDAP_TYPE_OR_VALUE_EXISTS && modop == LDAP_MOD_ADD) {
5876 DEBUG(1,("ldapsam_change_groupmem: member is already in group, add failed!\n"));
5877 return NT_STATUS_MEMBER_IN_GROUP;
5879 if (rc == LDAP_NO_SUCH_ATTRIBUTE && modop == LDAP_MOD_DELETE) {
5880 DEBUG(1,("ldapsam_change_groupmem: member is not in group, delete failed!\n"));
5881 return NT_STATUS_MEMBER_NOT_IN_GROUP;
5883 return NT_STATUS_UNSUCCESSFUL;
5886 return NT_STATUS_OK;
5889 static NTSTATUS ldapsam_add_groupmem(struct pdb_methods *my_methods,
5890 TALLOC_CTX *tmp_ctx,
5891 uint32 group_rid,
5892 uint32 member_rid)
5894 return ldapsam_change_groupmem(my_methods, tmp_ctx, group_rid, member_rid, LDAP_MOD_ADD);
5896 static NTSTATUS ldapsam_del_groupmem(struct pdb_methods *my_methods,
5897 TALLOC_CTX *tmp_ctx,
5898 uint32 group_rid,
5899 uint32 member_rid)
5901 return ldapsam_change_groupmem(my_methods, tmp_ctx, group_rid, member_rid, LDAP_MOD_DELETE);
5904 static NTSTATUS ldapsam_set_primary_group(struct pdb_methods *my_methods,
5905 TALLOC_CTX *mem_ctx,
5906 struct samu *sampass)
5908 struct ldapsam_privates *ldap_state = (struct ldapsam_privates *)my_methods->private_data;
5909 LDAPMessage *entry = NULL;
5910 LDAPMessage *result = NULL;
5911 uint32 num_result;
5912 LDAPMod **mods = NULL;
5913 char *filter;
5914 char *escape_username;
5915 char *gidstr;
5916 const char *dn = NULL;
5917 gid_t gid;
5918 int rc;
5920 DEBUG(0,("ldapsam_set_primary_group: Attempt to set primary group for user [%s]\n", pdb_get_username(sampass)));
5922 if (!sid_to_gid(pdb_get_group_sid(sampass), &gid)) {
5923 DEBUG(0,("ldapsam_set_primary_group: failed to retrieve gid from user's group SID!\n"));
5924 return NT_STATUS_UNSUCCESSFUL;
5926 gidstr = talloc_asprintf(mem_ctx, "%u", (unsigned int)gid);
5927 if (!gidstr) {
5928 DEBUG(0,("ldapsam_set_primary_group: Out of Memory!\n"));
5929 return NT_STATUS_NO_MEMORY;
5932 escape_username = escape_ldap_string(talloc_tos(),
5933 pdb_get_username(sampass));
5934 if (escape_username== NULL) {
5935 return NT_STATUS_NO_MEMORY;
5938 filter = talloc_asprintf(mem_ctx,
5939 "(&(uid=%s)"
5940 "(objectClass=%s)"
5941 "(objectClass=%s))",
5942 escape_username,
5943 LDAP_OBJ_POSIXACCOUNT,
5944 LDAP_OBJ_SAMBASAMACCOUNT);
5946 TALLOC_FREE(escape_username);
5948 if (filter == NULL) {
5949 return NT_STATUS_NO_MEMORY;
5952 rc = smbldap_search_suffix(ldap_state->smbldap_state, filter, NULL, &result);
5953 if (rc != LDAP_SUCCESS) {
5954 DEBUG(0,("ldapsam_set_primary_group: user search failed!\n"));
5955 return NT_STATUS_UNSUCCESSFUL;
5957 talloc_autofree_ldapmsg(mem_ctx, result);
5959 num_result = ldap_count_entries(priv2ld(ldap_state), result);
5961 if (num_result == 0) {
5962 DEBUG(0,("ldapsam_set_primary_group: user not found!\n"));
5963 return NT_STATUS_NO_SUCH_USER;
5966 if (num_result > 1) {
5967 DEBUG (0, ("ldapsam_set_primary_group: More than one user with name [%s] ?!\n", pdb_get_username(sampass)));
5968 return NT_STATUS_INTERNAL_DB_CORRUPTION;
5971 entry = ldap_first_entry(priv2ld(ldap_state), result);
5972 if (!entry) {
5973 return NT_STATUS_UNSUCCESSFUL;
5976 /* retrieve the dn for later use */
5977 dn = smbldap_talloc_dn(mem_ctx, priv2ld(ldap_state), entry);
5978 if (!dn) {
5979 DEBUG(0,("ldapsam_set_primary_group: Out of memory!\n"));
5980 return NT_STATUS_NO_MEMORY;
5983 /* remove the old one, and add the new one, this way we do not risk races */
5984 smbldap_make_mod(priv2ld(ldap_state), entry, &mods, "gidNumber", gidstr);
5986 if (mods == NULL) {
5987 return NT_STATUS_OK;
5990 rc = smbldap_modify(ldap_state->smbldap_state, dn, mods);
5992 if (rc != LDAP_SUCCESS) {
5993 DEBUG(0,("ldapsam_set_primary_group: failed to modify [%s] primary group to [%s]\n",
5994 pdb_get_username(sampass), gidstr));
5995 return NT_STATUS_UNSUCCESSFUL;
5998 flush_pwnam_cache();
6000 return NT_STATUS_OK;
6004 /**********************************************************************
6005 trusted domains functions
6006 *********************************************************************/
6008 static char *trusteddom_dn(struct ldapsam_privates *ldap_state,
6009 const char *domain)
6011 return talloc_asprintf(talloc_tos(), "sambaDomainName=%s,%s", domain,
6012 ldap_state->domain_dn);
6015 static bool get_trusteddom_pw_int(struct ldapsam_privates *ldap_state,
6016 TALLOC_CTX *mem_ctx,
6017 const char *domain, LDAPMessage **entry)
6019 int rc;
6020 char *filter;
6021 int scope = LDAP_SCOPE_SUBTREE;
6022 const char **attrs = NULL; /* NULL: get all attrs */
6023 int attrsonly = 0; /* 0: return values too */
6024 LDAPMessage *result = NULL;
6025 char *trusted_dn;
6026 uint32 num_result;
6028 filter = talloc_asprintf(talloc_tos(),
6029 "(&(objectClass=%s)(sambaDomainName=%s))",
6030 LDAP_OBJ_TRUSTDOM_PASSWORD, domain);
6032 trusted_dn = trusteddom_dn(ldap_state, domain);
6033 if (trusted_dn == NULL) {
6034 return False;
6036 rc = smbldap_search(ldap_state->smbldap_state, trusted_dn, scope,
6037 filter, attrs, attrsonly, &result);
6039 if (result != NULL) {
6040 talloc_autofree_ldapmsg(mem_ctx, result);
6043 if (rc == LDAP_NO_SUCH_OBJECT) {
6044 *entry = NULL;
6045 return True;
6048 if (rc != LDAP_SUCCESS) {
6049 return False;
6052 num_result = ldap_count_entries(priv2ld(ldap_state), result);
6054 if (num_result > 1) {
6055 DEBUG(1, ("ldapsam_get_trusteddom_pw: more than one "
6056 "%s object for domain '%s'?!\n",
6057 LDAP_OBJ_TRUSTDOM_PASSWORD, domain));
6058 return False;
6061 if (num_result == 0) {
6062 DEBUG(1, ("ldapsam_get_trusteddom_pw: no "
6063 "%s object for domain %s.\n",
6064 LDAP_OBJ_TRUSTDOM_PASSWORD, domain));
6065 *entry = NULL;
6066 } else {
6067 *entry = ldap_first_entry(priv2ld(ldap_state), result);
6070 return True;
6073 static bool ldapsam_get_trusteddom_pw(struct pdb_methods *methods,
6074 const char *domain,
6075 char** pwd,
6076 DOM_SID *sid,
6077 time_t *pass_last_set_time)
6079 struct ldapsam_privates *ldap_state =
6080 (struct ldapsam_privates *)methods->private_data;
6081 LDAPMessage *entry = NULL;
6083 DEBUG(10, ("ldapsam_get_trusteddom_pw called for domain %s\n", domain));
6085 if (!get_trusteddom_pw_int(ldap_state, talloc_tos(), domain, &entry) ||
6086 (entry == NULL))
6088 return False;
6091 /* password */
6092 if (pwd != NULL) {
6093 char *pwd_str;
6094 pwd_str = smbldap_talloc_single_attribute(priv2ld(ldap_state),
6095 entry, "sambaClearTextPassword", talloc_tos());
6096 if (pwd_str == NULL) {
6097 return False;
6099 /* trusteddom_pw routines do not use talloc yet... */
6100 *pwd = SMB_STRDUP(pwd_str);
6101 if (*pwd == NULL) {
6102 return False;
6106 /* last change time */
6107 if (pass_last_set_time != NULL) {
6108 char *time_str;
6109 time_str = smbldap_talloc_single_attribute(priv2ld(ldap_state),
6110 entry, "sambaPwdLastSet", talloc_tos());
6111 if (time_str == NULL) {
6112 return False;
6114 *pass_last_set_time = (time_t)atol(time_str);
6117 /* domain sid */
6118 if (sid != NULL) {
6119 char *sid_str;
6120 struct dom_sid dom_sid;
6121 sid_str = smbldap_talloc_single_attribute(priv2ld(ldap_state),
6122 entry, "sambaSID",
6123 talloc_tos());
6124 if (sid_str == NULL) {
6125 return False;
6127 if (!string_to_sid(&dom_sid, sid_str)) {
6128 return False;
6130 sid_copy(sid, &dom_sid);
6133 return True;
6136 static bool ldapsam_set_trusteddom_pw(struct pdb_methods *methods,
6137 const char* domain,
6138 const char* pwd,
6139 const DOM_SID *sid)
6141 struct ldapsam_privates *ldap_state =
6142 (struct ldapsam_privates *)methods->private_data;
6143 LDAPMessage *entry = NULL;
6144 LDAPMod **mods = NULL;
6145 char *prev_pwd = NULL;
6146 char *trusted_dn = NULL;
6147 int rc;
6149 DEBUG(10, ("ldapsam_set_trusteddom_pw called for domain %s\n", domain));
6152 * get the current entry (if there is one) in order to put the
6153 * current password into the previous password attribute
6155 if (!get_trusteddom_pw_int(ldap_state, talloc_tos(), domain, &entry)) {
6156 return False;
6159 mods = NULL;
6160 smbldap_make_mod(priv2ld(ldap_state), entry, &mods, "objectClass",
6161 LDAP_OBJ_TRUSTDOM_PASSWORD);
6162 smbldap_make_mod(priv2ld(ldap_state), entry, &mods, "sambaDomainName",
6163 domain);
6164 smbldap_make_mod(priv2ld(ldap_state), entry, &mods, "sambaSID",
6165 sid_string_tos(sid));
6166 smbldap_make_mod(priv2ld(ldap_state), entry, &mods, "sambaPwdLastSet",
6167 talloc_asprintf(talloc_tos(), "%li", (long int)time(NULL)));
6168 smbldap_make_mod(priv2ld(ldap_state), entry, &mods,
6169 "sambaClearTextPassword", pwd);
6171 if (entry != NULL) {
6172 prev_pwd = smbldap_talloc_single_attribute(priv2ld(ldap_state),
6173 entry, "sambaClearTextPassword", talloc_tos());
6174 if (prev_pwd != NULL) {
6175 smbldap_make_mod(priv2ld(ldap_state), entry, &mods,
6176 "sambaPreviousClearTextPassword",
6177 prev_pwd);
6181 talloc_autofree_ldapmod(talloc_tos(), mods);
6183 trusted_dn = trusteddom_dn(ldap_state, domain);
6184 if (trusted_dn == NULL) {
6185 return False;
6187 if (entry == NULL) {
6188 rc = smbldap_add(ldap_state->smbldap_state, trusted_dn, mods);
6189 } else {
6190 rc = smbldap_modify(ldap_state->smbldap_state, trusted_dn, mods);
6193 if (rc != LDAP_SUCCESS) {
6194 DEBUG(1, ("error writing trusted domain password!\n"));
6195 return False;
6198 return True;
6201 static bool ldapsam_del_trusteddom_pw(struct pdb_methods *methods,
6202 const char *domain)
6204 int rc;
6205 struct ldapsam_privates *ldap_state =
6206 (struct ldapsam_privates *)methods->private_data;
6207 LDAPMessage *entry = NULL;
6208 const char *trusted_dn;
6210 if (!get_trusteddom_pw_int(ldap_state, talloc_tos(), domain, &entry)) {
6211 return False;
6214 if (entry == NULL) {
6215 DEBUG(5, ("ldapsam_del_trusteddom_pw: no such trusted domain: "
6216 "%s\n", domain));
6217 return True;
6220 trusted_dn = smbldap_talloc_dn(talloc_tos(), priv2ld(ldap_state),
6221 entry);
6222 if (trusted_dn == NULL) {
6223 DEBUG(0,("ldapsam_del_trusteddom_pw: Out of memory!\n"));
6224 return False;
6227 rc = smbldap_delete(ldap_state->smbldap_state, trusted_dn);
6228 if (rc != LDAP_SUCCESS) {
6229 return False;
6232 return True;
6235 static NTSTATUS ldapsam_enum_trusteddoms(struct pdb_methods *methods,
6236 TALLOC_CTX *mem_ctx,
6237 uint32 *num_domains,
6238 struct trustdom_info ***domains)
6240 int rc;
6241 struct ldapsam_privates *ldap_state =
6242 (struct ldapsam_privates *)methods->private_data;
6243 char *filter;
6244 int scope = LDAP_SCOPE_SUBTREE;
6245 const char *attrs[] = { "sambaDomainName", "sambaSID", NULL };
6246 int attrsonly = 0; /* 0: return values too */
6247 LDAPMessage *result = NULL;
6248 LDAPMessage *entry = NULL;
6250 filter = talloc_asprintf(talloc_tos(), "(objectClass=%s)",
6251 LDAP_OBJ_TRUSTDOM_PASSWORD);
6253 rc = smbldap_search(ldap_state->smbldap_state,
6254 ldap_state->domain_dn,
6255 scope,
6256 filter,
6257 attrs,
6258 attrsonly,
6259 &result);
6261 if (result != NULL) {
6262 talloc_autofree_ldapmsg(mem_ctx, result);
6265 if (rc != LDAP_SUCCESS) {
6266 return NT_STATUS_UNSUCCESSFUL;
6269 *num_domains = 0;
6270 if (!(*domains = TALLOC_ARRAY(mem_ctx, struct trustdom_info *, 1))) {
6271 DEBUG(1, ("talloc failed\n"));
6272 return NT_STATUS_NO_MEMORY;
6275 for (entry = ldap_first_entry(priv2ld(ldap_state), result);
6276 entry != NULL;
6277 entry = ldap_next_entry(priv2ld(ldap_state), entry))
6279 char *dom_name, *dom_sid_str;
6280 struct trustdom_info *dom_info;
6282 dom_info = TALLOC_P(*domains, struct trustdom_info);
6283 if (dom_info == NULL) {
6284 DEBUG(1, ("talloc failed\n"));
6285 return NT_STATUS_NO_MEMORY;
6288 dom_name = smbldap_talloc_single_attribute(priv2ld(ldap_state),
6289 entry,
6290 "sambaDomainName",
6291 talloc_tos());
6292 if (dom_name == NULL) {
6293 DEBUG(1, ("talloc failed\n"));
6294 return NT_STATUS_NO_MEMORY;
6296 dom_info->name = dom_name;
6298 dom_sid_str = smbldap_talloc_single_attribute(
6299 priv2ld(ldap_state), entry, "sambaSID",
6300 talloc_tos());
6301 if (dom_sid_str == NULL) {
6302 DEBUG(1, ("talloc failed\n"));
6303 return NT_STATUS_NO_MEMORY;
6305 if (!string_to_sid(&dom_info->sid, dom_sid_str)) {
6306 DEBUG(1, ("Error calling string_to_sid on SID %s\n",
6307 dom_sid_str));
6308 return NT_STATUS_UNSUCCESSFUL;
6311 ADD_TO_ARRAY(*domains, struct trustdom_info *, dom_info,
6312 domains, num_domains);
6314 if (*domains == NULL) {
6315 DEBUG(1, ("talloc failed\n"));
6316 return NT_STATUS_NO_MEMORY;
6320 DEBUG(5, ("ldapsam_enum_trusteddoms: got %d domains\n", *num_domains));
6321 return NT_STATUS_OK;
6325 /**********************************************************************
6326 Housekeeping
6327 *********************************************************************/
6329 static void free_private_data(void **vp)
6331 struct ldapsam_privates **ldap_state = (struct ldapsam_privates **)vp;
6333 smbldap_free_struct(&(*ldap_state)->smbldap_state);
6335 if ((*ldap_state)->result != NULL) {
6336 ldap_msgfree((*ldap_state)->result);
6337 (*ldap_state)->result = NULL;
6339 if ((*ldap_state)->domain_dn != NULL) {
6340 SAFE_FREE((*ldap_state)->domain_dn);
6343 *ldap_state = NULL;
6345 /* No need to free any further, as it is talloc()ed */
6348 /*********************************************************************
6349 Intitalise the parts of the pdb_methods structure that are common to
6350 all pdb_ldap modes
6351 *********************************************************************/
6353 static NTSTATUS pdb_init_ldapsam_common(struct pdb_methods **pdb_method, const char *location)
6355 NTSTATUS nt_status;
6356 struct ldapsam_privates *ldap_state;
6358 if (!NT_STATUS_IS_OK(nt_status = make_pdb_method( pdb_method ))) {
6359 return nt_status;
6362 (*pdb_method)->name = "ldapsam";
6364 (*pdb_method)->getsampwnam = ldapsam_getsampwnam;
6365 (*pdb_method)->getsampwsid = ldapsam_getsampwsid;
6366 (*pdb_method)->add_sam_account = ldapsam_add_sam_account;
6367 (*pdb_method)->update_sam_account = ldapsam_update_sam_account;
6368 (*pdb_method)->delete_sam_account = ldapsam_delete_sam_account;
6369 (*pdb_method)->rename_sam_account = ldapsam_rename_sam_account;
6371 (*pdb_method)->getgrsid = ldapsam_getgrsid;
6372 (*pdb_method)->getgrgid = ldapsam_getgrgid;
6373 (*pdb_method)->getgrnam = ldapsam_getgrnam;
6374 (*pdb_method)->add_group_mapping_entry = ldapsam_add_group_mapping_entry;
6375 (*pdb_method)->update_group_mapping_entry = ldapsam_update_group_mapping_entry;
6376 (*pdb_method)->delete_group_mapping_entry = ldapsam_delete_group_mapping_entry;
6377 (*pdb_method)->enum_group_mapping = ldapsam_enum_group_mapping;
6379 (*pdb_method)->get_account_policy = ldapsam_get_account_policy;
6380 (*pdb_method)->set_account_policy = ldapsam_set_account_policy;
6382 (*pdb_method)->get_seq_num = ldapsam_get_seq_num;
6384 (*pdb_method)->capabilities = ldapsam_capabilities;
6385 (*pdb_method)->new_rid = ldapsam_new_rid;
6387 (*pdb_method)->get_trusteddom_pw = ldapsam_get_trusteddom_pw;
6388 (*pdb_method)->set_trusteddom_pw = ldapsam_set_trusteddom_pw;
6389 (*pdb_method)->del_trusteddom_pw = ldapsam_del_trusteddom_pw;
6390 (*pdb_method)->enum_trusteddoms = ldapsam_enum_trusteddoms;
6392 /* TODO: Setup private data and free */
6394 if ( !(ldap_state = TALLOC_ZERO_P(*pdb_method, struct ldapsam_privates)) ) {
6395 DEBUG(0, ("pdb_init_ldapsam_common: talloc() failed for ldapsam private_data!\n"));
6396 return NT_STATUS_NO_MEMORY;
6399 nt_status = smbldap_init(*pdb_method, pdb_get_event_context(),
6400 location, &ldap_state->smbldap_state);
6402 if ( !NT_STATUS_IS_OK(nt_status) ) {
6403 return nt_status;
6406 if ( !(ldap_state->domain_name = talloc_strdup(*pdb_method, get_global_sam_name()) ) ) {
6407 return NT_STATUS_NO_MEMORY;
6410 (*pdb_method)->private_data = ldap_state;
6412 (*pdb_method)->free_private_data = free_private_data;
6414 return NT_STATUS_OK;
6417 /**********************************************************************
6418 Initialise the 'compat' mode for pdb_ldap
6419 *********************************************************************/
6421 NTSTATUS pdb_init_ldapsam_compat(struct pdb_methods **pdb_method, const char *location)
6423 NTSTATUS nt_status;
6424 struct ldapsam_privates *ldap_state;
6425 char *uri = talloc_strdup( NULL, location );
6427 trim_char( uri, '\"', '\"' );
6428 nt_status = pdb_init_ldapsam_common( pdb_method, uri );
6429 if ( uri )
6430 TALLOC_FREE( uri );
6432 if ( !NT_STATUS_IS_OK(nt_status) ) {
6433 return nt_status;
6436 (*pdb_method)->name = "ldapsam_compat";
6438 ldap_state = (struct ldapsam_privates *)((*pdb_method)->private_data);
6439 ldap_state->schema_ver = SCHEMAVER_SAMBAACCOUNT;
6441 sid_copy(&ldap_state->domain_sid, get_global_sam_sid());
6443 return NT_STATUS_OK;
6446 /**********************************************************************
6447 Initialise the normal mode for pdb_ldap
6448 *********************************************************************/
6450 NTSTATUS pdb_init_ldapsam(struct pdb_methods **pdb_method, const char *location)
6452 NTSTATUS nt_status;
6453 struct ldapsam_privates *ldap_state = NULL;
6454 uint32 alg_rid_base;
6455 char *alg_rid_base_string = NULL;
6456 LDAPMessage *result = NULL;
6457 LDAPMessage *entry = NULL;
6458 DOM_SID ldap_domain_sid;
6459 DOM_SID secrets_domain_sid;
6460 char *domain_sid_string = NULL;
6461 char *dn = NULL;
6462 char *uri = talloc_strdup( NULL, location );
6464 trim_char( uri, '\"', '\"' );
6465 nt_status = pdb_init_ldapsam_common(pdb_method, uri);
6467 TALLOC_FREE(uri);
6469 if (!NT_STATUS_IS_OK(nt_status)) {
6470 return nt_status;
6473 (*pdb_method)->name = "ldapsam";
6475 (*pdb_method)->add_aliasmem = ldapsam_add_aliasmem;
6476 (*pdb_method)->del_aliasmem = ldapsam_del_aliasmem;
6477 (*pdb_method)->enum_aliasmem = ldapsam_enum_aliasmem;
6478 (*pdb_method)->enum_alias_memberships = ldapsam_alias_memberships;
6479 (*pdb_method)->search_users = ldapsam_search_users;
6480 (*pdb_method)->search_groups = ldapsam_search_groups;
6481 (*pdb_method)->search_aliases = ldapsam_search_aliases;
6483 if (lp_parm_bool(-1, "ldapsam", "trusted", False)) {
6484 (*pdb_method)->enum_group_members = ldapsam_enum_group_members;
6485 (*pdb_method)->enum_group_memberships =
6486 ldapsam_enum_group_memberships;
6487 (*pdb_method)->lookup_rids = ldapsam_lookup_rids;
6488 (*pdb_method)->sid_to_id = ldapsam_sid_to_id;
6489 (*pdb_method)->uid_to_sid = ldapsam_uid_to_sid;
6490 (*pdb_method)->gid_to_sid = ldapsam_gid_to_sid;
6492 if (lp_parm_bool(-1, "ldapsam", "editposix", False)) {
6493 (*pdb_method)->create_user = ldapsam_create_user;
6494 (*pdb_method)->delete_user = ldapsam_delete_user;
6495 (*pdb_method)->create_dom_group = ldapsam_create_dom_group;
6496 (*pdb_method)->delete_dom_group = ldapsam_delete_dom_group;
6497 (*pdb_method)->add_groupmem = ldapsam_add_groupmem;
6498 (*pdb_method)->del_groupmem = ldapsam_del_groupmem;
6499 (*pdb_method)->set_unix_primary_group = ldapsam_set_primary_group;
6503 ldap_state = (struct ldapsam_privates *)((*pdb_method)->private_data);
6504 ldap_state->schema_ver = SCHEMAVER_SAMBASAMACCOUNT;
6506 /* Try to setup the Domain Name, Domain SID, algorithmic rid base */
6508 nt_status = smbldap_search_domain_info(ldap_state->smbldap_state,
6509 &result,
6510 ldap_state->domain_name, True);
6512 if ( !NT_STATUS_IS_OK(nt_status) ) {
6513 DEBUG(2, ("pdb_init_ldapsam: WARNING: Could not get domain "
6514 "info, nor add one to the domain\n"));
6515 DEBUGADD(2, ("pdb_init_ldapsam: Continuing on regardless, "
6516 "will be unable to allocate new users/groups, "
6517 "and will risk BDCs having inconsistant SIDs\n"));
6518 sid_copy(&ldap_state->domain_sid, get_global_sam_sid());
6519 return NT_STATUS_OK;
6522 /* Given that the above might fail, everything below this must be
6523 * optional */
6525 entry = ldap_first_entry(ldap_state->smbldap_state->ldap_struct,
6526 result);
6527 if (!entry) {
6528 DEBUG(0, ("pdb_init_ldapsam: Could not get domain info "
6529 "entry\n"));
6530 ldap_msgfree(result);
6531 return NT_STATUS_UNSUCCESSFUL;
6534 dn = smbldap_talloc_dn(talloc_tos(), ldap_state->smbldap_state->ldap_struct, entry);
6535 if (!dn) {
6536 ldap_msgfree(result);
6537 return NT_STATUS_UNSUCCESSFUL;
6540 ldap_state->domain_dn = smb_xstrdup(dn);
6541 TALLOC_FREE(dn);
6543 domain_sid_string = smbldap_talloc_single_attribute(
6544 ldap_state->smbldap_state->ldap_struct,
6545 entry,
6546 get_userattr_key2string(ldap_state->schema_ver,
6547 LDAP_ATTR_USER_SID),
6548 talloc_tos());
6550 if (domain_sid_string) {
6551 bool found_sid;
6552 if (!string_to_sid(&ldap_domain_sid, domain_sid_string)) {
6553 DEBUG(1, ("pdb_init_ldapsam: SID [%s] could not be "
6554 "read as a valid SID\n", domain_sid_string));
6555 ldap_msgfree(result);
6556 TALLOC_FREE(domain_sid_string);
6557 return NT_STATUS_INVALID_PARAMETER;
6559 found_sid = secrets_fetch_domain_sid(ldap_state->domain_name,
6560 &secrets_domain_sid);
6561 if (!found_sid || !sid_equal(&secrets_domain_sid,
6562 &ldap_domain_sid)) {
6563 DEBUG(1, ("pdb_init_ldapsam: Resetting SID for domain "
6564 "%s based on pdb_ldap results %s -> %s\n",
6565 ldap_state->domain_name,
6566 sid_string_dbg(&secrets_domain_sid),
6567 sid_string_dbg(&ldap_domain_sid)));
6569 /* reset secrets.tdb sid */
6570 secrets_store_domain_sid(ldap_state->domain_name,
6571 &ldap_domain_sid);
6572 DEBUG(1, ("New global sam SID: %s\n",
6573 sid_string_dbg(get_global_sam_sid())));
6575 sid_copy(&ldap_state->domain_sid, &ldap_domain_sid);
6576 TALLOC_FREE(domain_sid_string);
6579 alg_rid_base_string = smbldap_talloc_single_attribute(
6580 ldap_state->smbldap_state->ldap_struct,
6581 entry,
6582 get_attr_key2string( dominfo_attr_list,
6583 LDAP_ATTR_ALGORITHMIC_RID_BASE ),
6584 talloc_tos());
6585 if (alg_rid_base_string) {
6586 alg_rid_base = (uint32)atol(alg_rid_base_string);
6587 if (alg_rid_base != algorithmic_rid_base()) {
6588 DEBUG(0, ("The value of 'algorithmic RID base' has "
6589 "changed since the LDAP\n"
6590 "database was initialised. Aborting. \n"));
6591 ldap_msgfree(result);
6592 TALLOC_FREE(alg_rid_base_string);
6593 return NT_STATUS_UNSUCCESSFUL;
6595 TALLOC_FREE(alg_rid_base_string);
6597 ldap_msgfree(result);
6599 return NT_STATUS_OK;
6602 NTSTATUS pdb_ldap_init(void)
6604 NTSTATUS nt_status;
6605 if (!NT_STATUS_IS_OK(nt_status = smb_register_passdb(PASSDB_INTERFACE_VERSION, "ldapsam", pdb_init_ldapsam)))
6606 return nt_status;
6608 if (!NT_STATUS_IS_OK(nt_status = smb_register_passdb(PASSDB_INTERFACE_VERSION, "ldapsam_compat", pdb_init_ldapsam_compat)))
6609 return nt_status;
6611 /* Let pdb_nds register backends */
6612 pdb_nds_init();
6614 return NT_STATUS_OK;