750b71fb1c8ac79a2d88c4b62eb587a51cc84267
[tprouty/samba.git] / source / passdb / pdb_ldap.c
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
10     
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.
15    
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.
20    
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/>.
23    
24 */
25
26 /* TODO:
27 *  persistent connections: if using NSS LDAP, many connections are made
28 *      however, using only one within Samba would be nice
29 *  
30 *  Clean up SSL stuff, compile on OpenLDAP 1.x, 2.x, and Netscape SDK
31 *
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)
35 *
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)
38 */
39
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
44 */
45
46 #include "includes.h"
47
48 #undef DBGC_CLASS
49 #define DBGC_CLASS DBGC_PASSDB
50
51 #include <lber.h>
52 #include <ldap.h>
53
54 /*
55  * Work around versions of the LDAP client libs that don't have the OIDs
56  * defined, or have them defined under the old name.  
57  * This functionality is really a factor of the server, not the client 
58  *
59  */
60
61 #if defined(LDAP_EXOP_X_MODIFY_PASSWD) && !defined(LDAP_EXOP_MODIFY_PASSWD)
62 #define LDAP_EXOP_MODIFY_PASSWD LDAP_EXOP_X_MODIFY_PASSWD
63 #elif !defined(LDAP_EXOP_MODIFY_PASSWD)
64 #define LDAP_EXOP_MODIFY_PASSWD "1.3.6.1.4.1.4203.1.11.1"
65 #endif
66
67 #if defined(LDAP_EXOP_X_MODIFY_PASSWD_ID) && !defined(LDAP_EXOP_MODIFY_PASSWD_ID)
68 #define LDAP_TAG_EXOP_MODIFY_PASSWD_ID LDAP_EXOP_X_MODIFY_PASSWD_ID
69 #elif !defined(LDAP_EXOP_MODIFY_PASSWD_ID)
70 #define LDAP_TAG_EXOP_MODIFY_PASSWD_ID        ((ber_tag_t) 0x80U)
71 #endif
72
73 #if defined(LDAP_EXOP_X_MODIFY_PASSWD_NEW) && !defined(LDAP_EXOP_MODIFY_PASSWD_NEW)
74 #define LDAP_TAG_EXOP_MODIFY_PASSWD_NEW LDAP_EXOP_X_MODIFY_PASSWD_NEW
75 #elif !defined(LDAP_EXOP_MODIFY_PASSWD_NEW)
76 #define LDAP_TAG_EXOP_MODIFY_PASSWD_NEW       ((ber_tag_t) 0x82U)
77 #endif
78
79
80 #include "smbldap.h"
81
82 /**********************************************************************
83  Simple helper function to make stuff better readable
84  **********************************************************************/
85
86 static LDAP *priv2ld(struct ldapsam_privates *priv)
87 {
88         return priv->smbldap_state->ldap_struct;
89 }
90
91 /**********************************************************************
92  Get the attribute name given a user schame version.
93  **********************************************************************/
94  
95 static const char* get_userattr_key2string( int schema_ver, int key )
96 {
97         switch ( schema_ver ) {
98                 case SCHEMAVER_SAMBAACCOUNT:
99                         return get_attr_key2string( attrib_map_v22, key );
100                         
101                 case SCHEMAVER_SAMBASAMACCOUNT:
102                         return get_attr_key2string( attrib_map_v30, key );
103                         
104                 default:
105                         DEBUG(0,("get_userattr_key2string: unknown schema version specified\n"));
106                         break;
107         }
108         return NULL;
109 }
110
111 /**********************************************************************
112  Return the list of attribute names given a user schema version.
113 **********************************************************************/
114
115 const char** get_userattr_list( TALLOC_CTX *mem_ctx, int schema_ver )
116 {
117         switch ( schema_ver ) {
118                 case SCHEMAVER_SAMBAACCOUNT:
119                         return get_attr_list( mem_ctx, attrib_map_v22 );
120                         
121                 case SCHEMAVER_SAMBASAMACCOUNT:
122                         return get_attr_list( mem_ctx, attrib_map_v30 );
123                 default:
124                         DEBUG(0,("get_userattr_list: unknown schema version specified!\n"));
125                         break;
126         }
127         
128         return NULL;
129 }
130
131 /**************************************************************************
132  Return the list of attribute names to delete given a user schema version.
133 **************************************************************************/
134
135 static const char** get_userattr_delete_list( TALLOC_CTX *mem_ctx,
136                                               int schema_ver )
137 {
138         switch ( schema_ver ) {
139                 case SCHEMAVER_SAMBAACCOUNT:
140                         return get_attr_list( mem_ctx,
141                                               attrib_map_to_delete_v22 );
142                         
143                 case SCHEMAVER_SAMBASAMACCOUNT:
144                         return get_attr_list( mem_ctx,
145                                               attrib_map_to_delete_v30 );
146                 default:
147                         DEBUG(0,("get_userattr_delete_list: unknown schema version specified!\n"));
148                         break;
149         }
150         
151         return NULL;
152 }
153
154
155 /*******************************************************************
156  Generate the LDAP search filter for the objectclass based on the 
157  version of the schema we are using.
158 ******************************************************************/
159
160 static const char* get_objclass_filter( int schema_ver )
161 {
162         fstring objclass_filter;
163         char *result;
164         
165         switch( schema_ver ) {
166                 case SCHEMAVER_SAMBAACCOUNT:
167                         fstr_sprintf( objclass_filter, "(objectclass=%s)", LDAP_OBJ_SAMBAACCOUNT );
168                         break;
169                 case SCHEMAVER_SAMBASAMACCOUNT:
170                         fstr_sprintf( objclass_filter, "(objectclass=%s)", LDAP_OBJ_SAMBASAMACCOUNT );
171                         break;
172                 default:
173                         DEBUG(0,("get_objclass_filter: Invalid schema version specified!\n"));
174                         objclass_filter[0] = '\0';
175                         break;
176         }
177         
178         result = talloc_strdup(talloc_tos(), objclass_filter);
179         SMB_ASSERT(result != NULL);
180         return result;
181 }
182
183 /*****************************************************************
184  Scan a sequence number off OpenLDAP's syncrepl contextCSN
185 ******************************************************************/
186
187 static NTSTATUS ldapsam_get_seq_num(struct pdb_methods *my_methods, time_t *seq_num)
188 {
189         struct ldapsam_privates *ldap_state = (struct ldapsam_privates *)my_methods->private_data;
190         NTSTATUS ntstatus = NT_STATUS_UNSUCCESSFUL;
191         LDAPMessage *msg = NULL;
192         LDAPMessage *entry = NULL;
193         TALLOC_CTX *mem_ctx;
194         char **values = NULL;
195         int rc, num_result, num_values, rid;
196         char *suffix = NULL;
197         char *tok;
198         const char *p;
199         const char **attrs;
200
201         /* Unfortunatly there is no proper way to detect syncrepl-support in
202          * smbldap_connect_system(). The syncrepl OIDs are submitted for publication
203          * but do not show up in the root-DSE yet. Neither we can query the
204          * subschema-context for the syncProviderSubentry or syncConsumerSubentry
205          * objectclass. Currently we require lp_ldap_suffix() to show up as
206          * namingContext.  -  Guenther
207          */
208
209         if (!lp_parm_bool(-1, "ldapsam", "syncrepl_seqnum", False)) {
210                 return ntstatus;
211         }
212
213         if (!seq_num) {
214                 DEBUG(3,("ldapsam_get_seq_num: no sequence_number\n"));
215                 return ntstatus;
216         }
217
218         if (!smbldap_has_naming_context(ldap_state->smbldap_state->ldap_struct, lp_ldap_suffix())) {
219                 DEBUG(3,("ldapsam_get_seq_num: DIT not configured to hold %s "
220                          "as top-level namingContext\n", lp_ldap_suffix()));
221                 return ntstatus;
222         }
223
224         mem_ctx = talloc_init("ldapsam_get_seq_num");
225
226         if (mem_ctx == NULL)
227                 return NT_STATUS_NO_MEMORY;
228
229         if ((attrs = TALLOC_ARRAY(mem_ctx, const char *, 2)) == NULL) {
230                 ntstatus = NT_STATUS_NO_MEMORY;
231                 goto done;
232         }
233
234         /* if we got a syncrepl-rid (up to three digits long) we speak with a consumer */
235         rid = lp_parm_int(-1, "ldapsam", "syncrepl_rid", -1);
236         if (rid > 0) {
237
238                 /* consumer syncreplCookie: */
239                 /* csn=20050126161620Z#0000001#00#00000 */
240                 attrs[0] = talloc_strdup(mem_ctx, "syncreplCookie");
241                 attrs[1] = NULL;
242                 suffix = talloc_asprintf(mem_ctx,
243                                 "cn=syncrepl%d,%s", rid, lp_ldap_suffix());
244                 if (!suffix) {
245                         ntstatus = NT_STATUS_NO_MEMORY;
246                         goto done;
247                 }
248         } else {
249
250                 /* provider contextCSN */
251                 /* 20050126161620Z#000009#00#000000 */
252                 attrs[0] = talloc_strdup(mem_ctx, "contextCSN");
253                 attrs[1] = NULL;
254                 suffix = talloc_asprintf(mem_ctx,
255                                 "cn=ldapsync,%s", lp_ldap_suffix());
256
257                 if (!suffix) {
258                         ntstatus = NT_STATUS_NO_MEMORY;
259                         goto done;
260                 }
261         }
262
263         rc = smbldap_search(ldap_state->smbldap_state, suffix,
264                             LDAP_SCOPE_BASE, "(objectclass=*)", attrs, 0, &msg);
265
266         if (rc != LDAP_SUCCESS) {
267                 goto done;
268         }
269
270         num_result = ldap_count_entries(ldap_state->smbldap_state->ldap_struct, msg);
271         if (num_result != 1) {
272                 DEBUG(3,("ldapsam_get_seq_num: Expected one entry, got %d\n", num_result));
273                 goto done;
274         }
275
276         entry = ldap_first_entry(ldap_state->smbldap_state->ldap_struct, msg);
277         if (entry == NULL) {
278                 DEBUG(3,("ldapsam_get_seq_num: Could not retrieve entry\n"));
279                 goto done;
280         }
281
282         values = ldap_get_values(ldap_state->smbldap_state->ldap_struct, entry, attrs[0]);
283         if (values == NULL) {
284                 DEBUG(3,("ldapsam_get_seq_num: no values\n"));
285                 goto done;
286         }
287
288         num_values = ldap_count_values(values);
289         if (num_values == 0) {
290                 DEBUG(3,("ldapsam_get_seq_num: not a single value\n"));
291                 goto done;
292         }
293
294         p = values[0];
295         if (!next_token_talloc(mem_ctx, &p, &tok, "#")) {
296                 DEBUG(0,("ldapsam_get_seq_num: failed to parse sequence number\n"));
297                 goto done;
298         }
299
300         p = tok;
301         if (!strncmp(p, "csn=", strlen("csn=")))
302                 p += strlen("csn=");
303
304         DEBUG(10,("ldapsam_get_seq_num: got %s: %s\n", attrs[0], p));
305
306         *seq_num = generalized_to_unix_time(p);
307
308         /* very basic sanity check */
309         if (*seq_num <= 0) {
310                 DEBUG(3,("ldapsam_get_seq_num: invalid sequence number: %d\n", 
311                         (int)*seq_num));
312                 goto done;
313         }
314
315         ntstatus = NT_STATUS_OK;
316
317  done:
318         if (values != NULL)
319                 ldap_value_free(values);
320         if (msg != NULL)
321                 ldap_msgfree(msg);
322         if (mem_ctx)
323                 talloc_destroy(mem_ctx);
324
325         return ntstatus;
326 }
327
328 /*******************************************************************
329  Run the search by name.
330 ******************************************************************/
331
332 int ldapsam_search_suffix_by_name(struct ldapsam_privates *ldap_state,
333                                           const char *user,
334                                           LDAPMessage ** result,
335                                           const char **attr)
336 {
337         char *filter = NULL;
338         char *escape_user = escape_ldap_string_alloc(user);
339         int ret = -1;
340
341         if (!escape_user) {
342                 return LDAP_NO_MEMORY;
343         }
344
345         /*
346          * in the filter expression, replace %u with the real name
347          * so in ldap filter, %u MUST exist :-)
348          */
349         filter = talloc_asprintf(talloc_tos(), "(&%s%s)", "(uid=%u)",
350                 get_objclass_filter(ldap_state->schema_ver));
351         if (!filter) {
352                 return LDAP_NO_MEMORY;
353         }
354         /*
355          * have to use this here because $ is filtered out
356          * in string_sub
357          */
358
359         filter = talloc_all_string_sub(talloc_tos(),
360                                 filter, "%u", escape_user);
361         if (!filter) {
362                 return LDAP_NO_MEMORY;
363         }
364         SAFE_FREE(escape_user);
365
366         ret = smbldap_search_suffix(ldap_state->smbldap_state,
367                         filter, attr, result);
368         TALLOC_FREE(filter);
369         return ret;
370 }
371
372 /*******************************************************************
373  Run the search by rid.
374 ******************************************************************/
375
376 static int ldapsam_search_suffix_by_rid (struct ldapsam_privates *ldap_state,
377                                          uint32 rid, LDAPMessage ** result,
378                                          const char **attr)
379 {
380         char *filter = NULL;
381         int rc;
382
383         filter = talloc_asprintf(talloc_tos(), "(&(rid=%i)%s)", rid,
384                 get_objclass_filter(ldap_state->schema_ver));
385         if (!filter) {
386                 return LDAP_NO_MEMORY;
387         }
388
389         rc = smbldap_search_suffix(ldap_state->smbldap_state,
390                         filter, attr, result);
391         TALLOC_FREE(filter);
392         return rc;
393 }
394
395 /*******************************************************************
396  Run the search by SID.
397 ******************************************************************/
398
399 static int ldapsam_search_suffix_by_sid (struct ldapsam_privates *ldap_state,
400                                  const DOM_SID *sid, LDAPMessage ** result,
401                                  const char **attr)
402 {
403         char *filter = NULL;
404         int rc;
405         fstring sid_string;
406
407         filter = talloc_asprintf(talloc_tos(), "(&(%s=%s)%s)",
408                 get_userattr_key2string(ldap_state->schema_ver,
409                         LDAP_ATTR_USER_SID),
410                 sid_to_string(sid_string, sid),
411                 get_objclass_filter(ldap_state->schema_ver));
412         if (!filter) {
413                 return LDAP_NO_MEMORY;
414         }
415
416         rc = smbldap_search_suffix(ldap_state->smbldap_state,
417                         filter, attr, result);
418
419         TALLOC_FREE(filter);
420         return rc;
421 }
422
423 /*******************************************************************
424  Delete complete object or objectclass and attrs from
425  object found in search_result depending on lp_ldap_delete_dn
426 ******************************************************************/
427
428 static int ldapsam_delete_entry(struct ldapsam_privates *priv,
429                                 TALLOC_CTX *mem_ctx,
430                                 LDAPMessage *entry,
431                                 const char *objectclass,
432                                 const char **attrs)
433 {
434         LDAPMod **mods = NULL;
435         char *name;
436         const char *dn;
437         BerElement *ptr = NULL;
438
439         dn = smbldap_talloc_dn(mem_ctx, priv2ld(priv), entry);
440         if (dn == NULL) {
441                 return LDAP_NO_MEMORY;
442         }
443
444         if (lp_ldap_delete_dn()) {
445                 return smbldap_delete(priv->smbldap_state, dn);
446         }
447
448         /* Ok, delete only the SAM attributes */
449         
450         for (name = ldap_first_attribute(priv2ld(priv), entry, &ptr);
451              name != NULL;
452              name = ldap_next_attribute(priv2ld(priv), entry, ptr)) {
453                 const char **attrib;
454
455                 /* We are only allowed to delete the attributes that
456                    really exist. */
457
458                 for (attrib = attrs; *attrib != NULL; attrib++) {
459                         if (strequal(*attrib, name)) {
460                                 DEBUG(10, ("ldapsam_delete_entry: deleting "
461                                            "attribute %s\n", name));
462                                 smbldap_set_mod(&mods, LDAP_MOD_DELETE, name,
463                                                 NULL);
464                         }
465                 }
466                 ldap_memfree(name);
467         }
468
469         if (ptr != NULL) {
470                 ber_free(ptr, 0);
471         }
472
473         smbldap_set_mod(&mods, LDAP_MOD_DELETE, "objectClass", objectclass);
474         talloc_autofree_ldapmod(mem_ctx, mods);
475
476         return smbldap_modify(priv->smbldap_state, dn, mods);
477 }
478
479 static time_t ldapsam_get_entry_timestamp( struct ldapsam_privates *ldap_state, LDAPMessage * entry)
480 {
481         char *temp;
482         struct tm tm;
483
484         temp = smbldap_talloc_single_attribute(ldap_state->smbldap_state->ldap_struct, entry,
485                         get_userattr_key2string(ldap_state->schema_ver,LDAP_ATTR_MOD_TIMESTAMP),
486                         talloc_tos());
487         if (!temp) {
488                 return (time_t) 0;
489         }
490
491         if ( !strptime(temp, "%Y%m%d%H%M%SZ", &tm)) {
492                 DEBUG(2,("ldapsam_get_entry_timestamp: strptime failed on: %s\n",
493                         (char*)temp));
494                 TALLOC_FREE(temp);
495                 return (time_t) 0;
496         }
497         TALLOC_FREE(temp);
498         tzset();
499         return timegm(&tm);
500 }
501
502 /**********************************************************************
503  Initialize struct samu from an LDAP query.
504  (Based on init_sam_from_buffer in pdb_tdb.c)
505 *********************************************************************/
506
507 static bool init_sam_from_ldap(struct ldapsam_privates *ldap_state,
508                                 struct samu * sampass,
509                                 LDAPMessage * entry)
510 {
511         time_t  logon_time,
512                         logoff_time,
513                         kickoff_time,
514                         pass_last_set_time,
515                         pass_can_change_time,
516                         pass_must_change_time,
517                         ldap_entry_time,
518                         bad_password_time;
519         char *username = NULL,
520                         *domain = NULL,
521                         *nt_username = NULL,
522                         *fullname = NULL,
523                         *homedir = NULL,
524                         *dir_drive = NULL,
525                         *logon_script = NULL,
526                         *profile_path = NULL,
527                         *acct_desc = NULL,
528                         *workstations = NULL,
529                         *munged_dial = NULL;
530         uint32          user_rid;
531         uint8           smblmpwd[LM_HASH_LEN],
532                         smbntpwd[NT_HASH_LEN];
533         bool            use_samba_attrs = True;
534         uint32          acct_ctrl = 0;
535         uint16          logon_divs;
536         uint16          bad_password_count = 0,
537                         logon_count = 0;
538         uint32 hours_len;
539         uint8           hours[MAX_HOURS_LEN];
540         char *temp = NULL;
541         LOGIN_CACHE     *cache_entry = NULL;
542         uint32          pwHistLen;
543         bool expand_explicit = lp_passdb_expand_explicit();
544         bool ret = false;
545         TALLOC_CTX *ctx = talloc_init("init_sam_from_ldap");
546
547         if (!ctx) {
548                 return false;
549         }
550         if (sampass == NULL || ldap_state == NULL || entry == NULL) {
551                 DEBUG(0, ("init_sam_from_ldap: NULL parameters found!\n"));
552                 goto fn_exit;
553         }
554
555         if (priv2ld(ldap_state) == NULL) {
556                 DEBUG(0, ("init_sam_from_ldap: ldap_state->smbldap_state->"
557                           "ldap_struct is NULL!\n"));
558                 goto fn_exit;
559         }
560
561         if (!(username = smbldap_talloc_single_attribute(priv2ld(ldap_state),
562                                         entry,
563                                         "uid",
564                                         ctx))) {
565                 DEBUG(1, ("init_sam_from_ldap: No uid attribute found for "
566                           "this user!\n"));
567                 goto fn_exit;
568         }
569
570         DEBUG(2, ("init_sam_from_ldap: Entry found for user: %s\n", username));
571
572         nt_username = talloc_strdup(ctx, username);
573         if (!nt_username) {
574                 goto fn_exit;
575         }
576
577         domain = talloc_strdup(ctx, ldap_state->domain_name);
578         if (!domain) {
579                 goto fn_exit;
580         }
581
582         pdb_set_username(sampass, username, PDB_SET);
583
584         pdb_set_domain(sampass, domain, PDB_DEFAULT);
585         pdb_set_nt_username(sampass, nt_username, PDB_SET);
586
587         /* deal with different attributes between the schema first */
588
589         if ( ldap_state->schema_ver == SCHEMAVER_SAMBASAMACCOUNT ) {
590                 if ((temp = smbldap_talloc_single_attribute(
591                                 ldap_state->smbldap_state->ldap_struct,
592                                 entry,
593                                 get_userattr_key2string(ldap_state->schema_ver,
594                                         LDAP_ATTR_USER_SID),
595                                 ctx))!=NULL) {
596                         pdb_set_user_sid_from_string(sampass, temp, PDB_SET);
597                 }
598         } else {
599                 if ((temp = smbldap_talloc_single_attribute(
600                                 ldap_state->smbldap_state->ldap_struct,
601                                 entry,
602                                 get_userattr_key2string(ldap_state->schema_ver,
603                                         LDAP_ATTR_USER_RID),
604                                 ctx))!=NULL) {
605                         user_rid = (uint32)atol(temp);
606                         pdb_set_user_sid_from_rid(sampass, user_rid, PDB_SET);
607                 }
608         }
609
610         if (pdb_get_init_flags(sampass,PDB_USERSID) == PDB_DEFAULT) {
611                 DEBUG(1, ("init_sam_from_ldap: no %s or %s attribute found for this user %s\n", 
612                         get_userattr_key2string(ldap_state->schema_ver,
613                                 LDAP_ATTR_USER_SID),
614                         get_userattr_key2string(ldap_state->schema_ver,
615                                 LDAP_ATTR_USER_RID),
616                         username));
617                 return False;
618         }
619
620         temp = smbldap_talloc_single_attribute(
621                         ldap_state->smbldap_state->ldap_struct,
622                         entry,
623                         get_userattr_key2string(ldap_state->schema_ver,
624                                 LDAP_ATTR_PWD_LAST_SET),
625                         ctx);
626         if (temp) {
627                 pass_last_set_time = (time_t) atol(temp);
628                 pdb_set_pass_last_set_time(sampass,
629                                 pass_last_set_time, PDB_SET);
630         }
631
632         temp = smbldap_talloc_single_attribute(
633                         ldap_state->smbldap_state->ldap_struct,
634                         entry,
635                         get_userattr_key2string(ldap_state->schema_ver,
636                                 LDAP_ATTR_LOGON_TIME),
637                         ctx);
638         if (temp) {
639                 logon_time = (time_t) atol(temp);
640                 pdb_set_logon_time(sampass, logon_time, PDB_SET);
641         }
642
643         temp = smbldap_talloc_single_attribute(
644                         ldap_state->smbldap_state->ldap_struct,
645                         entry,
646                         get_userattr_key2string(ldap_state->schema_ver,
647                                 LDAP_ATTR_LOGOFF_TIME),
648                         ctx);
649         if (temp) {
650                 logoff_time = (time_t) atol(temp);
651                 pdb_set_logoff_time(sampass, logoff_time, PDB_SET);
652         }
653
654         temp = smbldap_talloc_single_attribute(
655                         ldap_state->smbldap_state->ldap_struct,
656                         entry,
657                         get_userattr_key2string(ldap_state->schema_ver,
658                                 LDAP_ATTR_KICKOFF_TIME),
659                         ctx);
660         if (temp) {
661                 kickoff_time = (time_t) atol(temp);
662                 pdb_set_kickoff_time(sampass, kickoff_time, PDB_SET);
663         }
664
665         temp = smbldap_talloc_single_attribute(
666                         ldap_state->smbldap_state->ldap_struct,
667                         entry,
668                         get_userattr_key2string(ldap_state->schema_ver,
669                                 LDAP_ATTR_PWD_CAN_CHANGE),
670                         ctx);
671         if (temp) {
672                 pass_can_change_time = (time_t) atol(temp);
673                 pdb_set_pass_can_change_time(sampass,
674                                 pass_can_change_time, PDB_SET);
675         }
676
677         temp = smbldap_talloc_single_attribute(
678                         ldap_state->smbldap_state->ldap_struct,
679                         entry,
680                         get_userattr_key2string(ldap_state->schema_ver,
681                                 LDAP_ATTR_PWD_MUST_CHANGE),
682                         ctx);
683         if (temp) {
684                 pass_must_change_time = (time_t) atol(temp);
685                 pdb_set_pass_must_change_time(sampass,
686                                 pass_must_change_time, PDB_SET);
687         }
688
689         /* recommend that 'gecos' and 'displayName' should refer to the same
690          * attribute OID.  userFullName depreciated, only used by Samba
691          * primary rules of LDAP: don't make a new attribute when one is already defined
692          * that fits your needs; using cn then displayName rather than 'userFullName'
693          */
694
695         fullname = smbldap_talloc_single_attribute(
696                         ldap_state->smbldap_state->ldap_struct,
697                         entry,
698                         get_userattr_key2string(ldap_state->schema_ver,
699                                 LDAP_ATTR_DISPLAY_NAME),
700                         ctx);
701         if (fullname) {
702                 pdb_set_fullname(sampass, fullname, PDB_SET);
703         } else {
704                 fullname = smbldap_talloc_single_attribute(
705                                 ldap_state->smbldap_state->ldap_struct,
706                                 entry,
707                                 get_userattr_key2string(ldap_state->schema_ver,
708                                         LDAP_ATTR_CN),
709                                 ctx);
710                 if (fullname) {
711                         pdb_set_fullname(sampass, fullname, PDB_SET);
712                 }
713         }
714
715         dir_drive = smbldap_talloc_single_attribute(
716                         ldap_state->smbldap_state->ldap_struct,
717                         entry,
718                         get_userattr_key2string(ldap_state->schema_ver,
719                                 LDAP_ATTR_HOME_DRIVE),
720                         ctx);
721         if (dir_drive) {
722                 pdb_set_dir_drive(sampass, dir_drive, PDB_SET);
723         } else {
724                 pdb_set_dir_drive( sampass, lp_logon_drive(), PDB_DEFAULT );
725         }
726
727         homedir = smbldap_talloc_single_attribute(
728                         ldap_state->smbldap_state->ldap_struct,
729                         entry,
730                         get_userattr_key2string(ldap_state->schema_ver,
731                                 LDAP_ATTR_HOME_PATH),
732                         ctx);
733         if (homedir) {
734                 if (expand_explicit) {
735                         homedir = talloc_sub_basic(ctx,
736                                                 username,
737                                                 domain,
738                                                 homedir);
739                         if (!homedir) {
740                                 goto fn_exit;
741                         }
742                 }
743                 pdb_set_homedir(sampass, homedir, PDB_SET);
744         } else {
745                 pdb_set_homedir(sampass,
746                         talloc_sub_basic(ctx, username, domain,
747                                          lp_logon_home()),
748                         PDB_DEFAULT);
749         }
750
751         logon_script = smbldap_talloc_single_attribute(
752                         ldap_state->smbldap_state->ldap_struct,
753                         entry,
754                         get_userattr_key2string(ldap_state->schema_ver,
755                                 LDAP_ATTR_LOGON_SCRIPT),
756                         ctx);
757         if (logon_script) {
758                 if (expand_explicit) {
759                         logon_script = talloc_sub_basic(ctx,
760                                                 username,
761                                                 domain,
762                                                 logon_script);
763                         if (!logon_script) {
764                                 goto fn_exit;
765                         }
766                 }
767                 pdb_set_logon_script(sampass, logon_script, PDB_SET);
768         } else {
769                 pdb_set_logon_script(sampass,
770                         talloc_sub_basic(ctx, username, domain,
771                                          lp_logon_script()),
772                         PDB_DEFAULT );
773         }
774
775         profile_path = smbldap_talloc_single_attribute(
776                         ldap_state->smbldap_state->ldap_struct,
777                         entry,
778                         get_userattr_key2string(ldap_state->schema_ver,
779                                 LDAP_ATTR_PROFILE_PATH),
780                         ctx);
781         if (profile_path) {
782                 if (expand_explicit) {
783                         profile_path = talloc_sub_basic(ctx,
784                                                 username,
785                                                 domain,
786                                                 profile_path);
787                         if (!profile_path) {
788                                 goto fn_exit;
789                         }
790                 }
791                 pdb_set_profile_path(sampass, profile_path, PDB_SET);
792         } else {
793                 pdb_set_profile_path(sampass,
794                         talloc_sub_basic(ctx, username, domain,
795                                           lp_logon_path()),
796                         PDB_DEFAULT );
797         }
798
799         acct_desc = smbldap_talloc_single_attribute(
800                         ldap_state->smbldap_state->ldap_struct,
801                         entry,
802                         get_userattr_key2string(ldap_state->schema_ver,
803                                 LDAP_ATTR_DESC),
804                         ctx);
805         if (acct_desc) {
806                 pdb_set_acct_desc(sampass, acct_desc, PDB_SET);
807         }
808
809         workstations = smbldap_talloc_single_attribute(
810                         ldap_state->smbldap_state->ldap_struct,
811                         entry,
812                         get_userattr_key2string(ldap_state->schema_ver,
813                                 LDAP_ATTR_USER_WKS),
814                         ctx);
815         if (workstations) {
816                 pdb_set_workstations(sampass, workstations, PDB_SET);
817         }
818
819         munged_dial = smbldap_talloc_single_attribute(
820                         ldap_state->smbldap_state->ldap_struct,
821                         entry,
822                         get_userattr_key2string(ldap_state->schema_ver,
823                                 LDAP_ATTR_MUNGED_DIAL),
824                         ctx);
825         if (munged_dial) {
826                 pdb_set_munged_dial(sampass, munged_dial, PDB_SET);
827         }
828
829         /* FIXME: hours stuff should be cleaner */
830
831         logon_divs = 168;
832         hours_len = 21;
833         memset(hours, 0xff, hours_len);
834
835         if (ldap_state->is_nds_ldap) {
836                 char *user_dn;
837                 size_t pwd_len;
838                 char clear_text_pw[512];
839
840                 /* Make call to Novell eDirectory ldap extension to get clear text password.
841                         NOTE: This will only work if we have an SSL connection to eDirectory. */
842                 user_dn = smbldap_get_dn(ldap_state->smbldap_state->ldap_struct, entry);
843                 if (user_dn != NULL) {
844                         DEBUG(3, ("init_sam_from_ldap: smbldap_get_dn(%s) returned '%s'\n", username, user_dn));
845
846                         pwd_len = sizeof(clear_text_pw);
847                         if (pdb_nds_get_password(ldap_state->smbldap_state, user_dn, &pwd_len, clear_text_pw) == LDAP_SUCCESS) {
848                                 nt_lm_owf_gen(clear_text_pw, smbntpwd, smblmpwd);
849                                 if (!pdb_set_lanman_passwd(sampass, smblmpwd, PDB_SET)) {
850                                         SAFE_FREE(user_dn);
851                                         return False;
852                                 }
853                                 ZERO_STRUCT(smblmpwd);
854                                 if (!pdb_set_nt_passwd(sampass, smbntpwd, PDB_SET)) {
855                                         SAFE_FREE(user_dn);
856                                         return False;
857                                 }
858                                 ZERO_STRUCT(smbntpwd);
859                                 use_samba_attrs = False;
860                         }
861
862                         SAFE_FREE(user_dn);
863
864                 } else {
865                         DEBUG(0, ("init_sam_from_ldap: failed to get user_dn for '%s'\n", username));
866                 }
867         }
868
869         if (use_samba_attrs) {
870                 temp = smbldap_talloc_single_attribute(
871                                 ldap_state->smbldap_state->ldap_struct,
872                                 entry,
873                                 get_userattr_key2string(ldap_state->schema_ver,
874                                         LDAP_ATTR_LMPW),
875                                 ctx);
876                 if (temp) {
877                         pdb_gethexpwd(temp, smblmpwd);
878                         memset((char *)temp, '\0', strlen(temp)+1);
879                         if (!pdb_set_lanman_passwd(sampass, smblmpwd, PDB_SET)) {
880                                 goto fn_exit;
881                         }
882                         ZERO_STRUCT(smblmpwd);
883                 }
884
885                 temp = smbldap_talloc_single_attribute(
886                                 ldap_state->smbldap_state->ldap_struct,
887                                 entry,
888                                 get_userattr_key2string(ldap_state->schema_ver,
889                                         LDAP_ATTR_NTPW),
890                                 ctx);
891                 if (temp) {
892                         pdb_gethexpwd(temp, smbntpwd);
893                         memset((char *)temp, '\0', strlen(temp)+1);
894                         if (!pdb_set_nt_passwd(sampass, smbntpwd, PDB_SET)) {
895                                 goto fn_exit;
896                         }
897                         ZERO_STRUCT(smbntpwd);
898                 }
899         }
900
901         pwHistLen = 0;
902
903         pdb_get_account_policy(AP_PASSWORD_HISTORY, &pwHistLen);
904         if (pwHistLen > 0){
905                 uint8 *pwhist = NULL;
906                 int i;
907                 char *history_string = TALLOC_ARRAY(ctx, char,
908                                                 MAX_PW_HISTORY_LEN*64);
909
910                 if (!history_string) {
911                         goto fn_exit;
912                 }
913
914                 pwHistLen = MIN(pwHistLen, MAX_PW_HISTORY_LEN);
915
916                 if ((pwhist = TALLOC_ARRAY(ctx, uint8,
917                                         pwHistLen * PW_HISTORY_ENTRY_LEN)) ==
918                                 NULL){
919                         DEBUG(0, ("init_sam_from_ldap: talloc failed!\n"));
920                         goto fn_exit;
921                 }
922                 memset(pwhist, '\0', pwHistLen * PW_HISTORY_ENTRY_LEN);
923
924                 if (smbldap_get_single_attribute(
925                                 ldap_state->smbldap_state->ldap_struct,
926                                 entry,
927                                 get_userattr_key2string(ldap_state->schema_ver,
928                                         LDAP_ATTR_PWD_HISTORY),
929                                 history_string,
930                                 MAX_PW_HISTORY_LEN*64)) {
931                         bool hex_failed = false;
932                         for (i = 0; i < pwHistLen; i++){
933                                 /* Get the 16 byte salt. */
934                                 if (!pdb_gethexpwd(&history_string[i*64],
935                                         &pwhist[i*PW_HISTORY_ENTRY_LEN])) {
936                                         hex_failed = true;
937                                         break;
938                                 }
939                                 /* Get the 16 byte MD5 hash of salt+passwd. */
940                                 if (!pdb_gethexpwd(&history_string[(i*64)+32],
941                                         &pwhist[(i*PW_HISTORY_ENTRY_LEN)+
942                                                 PW_HISTORY_SALT_LEN])) {
943                                         hex_failed = True;
944                                         break;
945                                 }
946                         }
947                         if (hex_failed) {
948                                 DEBUG(0,("init_sam_from_ldap: Failed to get password history for user %s\n",
949                                         username));
950                                 memset(pwhist, '\0', pwHistLen * PW_HISTORY_ENTRY_LEN);
951                         }
952                 }
953                 if (!pdb_set_pw_history(sampass, pwhist, pwHistLen, PDB_SET)){
954                         goto fn_exit;
955                 }
956         }
957
958         temp = smbldap_talloc_single_attribute(
959                         ldap_state->smbldap_state->ldap_struct,
960                         entry,
961                         get_userattr_key2string(ldap_state->schema_ver,
962                                 LDAP_ATTR_ACB_INFO),
963                         ctx);
964         if (temp) {
965                 acct_ctrl = pdb_decode_acct_ctrl(temp);
966
967                 if (acct_ctrl == 0) {
968                         acct_ctrl |= ACB_NORMAL;
969                 }
970
971                 pdb_set_acct_ctrl(sampass, acct_ctrl, PDB_SET);
972         } else {
973                 acct_ctrl |= ACB_NORMAL;
974         }
975
976         pdb_set_hours_len(sampass, hours_len, PDB_SET);
977         pdb_set_logon_divs(sampass, logon_divs, PDB_SET);
978
979         temp = smbldap_talloc_single_attribute(
980                         ldap_state->smbldap_state->ldap_struct,
981                         entry,
982                         get_userattr_key2string(ldap_state->schema_ver,
983                                 LDAP_ATTR_BAD_PASSWORD_COUNT),
984                         ctx);
985         if (temp) {
986                 bad_password_count = (uint32) atol(temp);
987                 pdb_set_bad_password_count(sampass,
988                                 bad_password_count, PDB_SET);
989         }
990
991         temp = smbldap_talloc_single_attribute(
992                         ldap_state->smbldap_state->ldap_struct,
993                         entry,
994                         get_userattr_key2string(ldap_state->schema_ver,
995                                 LDAP_ATTR_BAD_PASSWORD_TIME),
996                         ctx);
997         if (temp) {
998                 bad_password_time = (time_t) atol(temp);
999                 pdb_set_bad_password_time(sampass, bad_password_time, PDB_SET);
1000         }
1001
1002
1003         temp = smbldap_talloc_single_attribute(
1004                         ldap_state->smbldap_state->ldap_struct,
1005                         entry,
1006                         get_userattr_key2string(ldap_state->schema_ver,
1007                                 LDAP_ATTR_LOGON_COUNT),
1008                         ctx);
1009         if (temp) {
1010                 logon_count = (uint32) atol(temp);
1011                 pdb_set_logon_count(sampass, logon_count, PDB_SET);
1012         }
1013
1014         /* pdb_set_unknown_6(sampass, unknown6, PDB_SET); */
1015
1016         temp = smbldap_talloc_single_attribute(
1017                         ldap_state->smbldap_state->ldap_struct,
1018                         entry,
1019                         get_userattr_key2string(ldap_state->schema_ver,
1020                                 LDAP_ATTR_LOGON_HOURS),
1021                         ctx);
1022         if (temp) {
1023                 pdb_gethexhours(temp, hours);
1024                 memset((char *)temp, '\0', strlen(temp) +1);
1025                 pdb_set_hours(sampass, hours, PDB_SET);
1026                 ZERO_STRUCT(hours);
1027         }
1028
1029         if (lp_parm_bool(-1, "ldapsam", "trusted", False)) {
1030                 temp = smbldap_talloc_single_attribute(
1031                                 priv2ld(ldap_state),
1032                                 entry,
1033                                 "uidNumber",
1034                                 ctx);
1035                 if (temp) {
1036                         /* We've got a uid, feed the cache */
1037                         uid_t uid = strtoul(temp, NULL, 10);
1038                         store_uid_sid_cache(pdb_get_user_sid(sampass), uid);
1039                 }
1040         }
1041
1042         /* check the timestamp of the cache vs ldap entry */
1043         if (!(ldap_entry_time = ldapsam_get_entry_timestamp(ldap_state,
1044                                                             entry))) {
1045                 ret = true;
1046                 goto fn_exit;
1047         }
1048
1049         /* see if we have newer updates */
1050         if (!(cache_entry = login_cache_read(sampass))) {
1051                 DEBUG (9, ("No cache entry, bad count = %u, bad time = %u\n",
1052                            (unsigned int)pdb_get_bad_password_count(sampass),
1053                            (unsigned int)pdb_get_bad_password_time(sampass)));
1054                 ret = true;
1055                 goto fn_exit;
1056         }
1057
1058         DEBUG(7, ("ldap time is %u, cache time is %u, bad time = %u\n",
1059                   (unsigned int)ldap_entry_time,
1060                   (unsigned int)cache_entry->entry_timestamp,
1061                   (unsigned int)cache_entry->bad_password_time));
1062
1063         if (ldap_entry_time > cache_entry->entry_timestamp) {
1064                 /* cache is older than directory , so
1065                    we need to delete the entry but allow the
1066                    fields to be written out */
1067                 login_cache_delentry(sampass);
1068         } else {
1069                 /* read cache in */
1070                 pdb_set_acct_ctrl(sampass,
1071                                   pdb_get_acct_ctrl(sampass) |
1072                                   (cache_entry->acct_ctrl & ACB_AUTOLOCK),
1073                                   PDB_SET);
1074                 pdb_set_bad_password_count(sampass,
1075                                            cache_entry->bad_password_count,
1076                                            PDB_SET);
1077                 pdb_set_bad_password_time(sampass,
1078                                           cache_entry->bad_password_time,
1079                                           PDB_SET);
1080         }
1081
1082         ret = true;
1083
1084   fn_exit:
1085
1086         TALLOC_FREE(ctx);
1087         SAFE_FREE(cache_entry);
1088         return ret;
1089 }
1090
1091 /**********************************************************************
1092  Initialize the ldap db from a struct samu. Called on update.
1093  (Based on init_buffer_from_sam in pdb_tdb.c)
1094 *********************************************************************/
1095
1096 static bool init_ldap_from_sam (struct ldapsam_privates *ldap_state,
1097                                 LDAPMessage *existing,
1098                                 LDAPMod *** mods, struct samu * sampass,
1099                                 bool (*need_update)(const struct samu *,
1100                                                     enum pdb_elements))
1101 {
1102         char *temp = NULL;
1103         uint32 rid;
1104
1105         if (mods == NULL || sampass == NULL) {
1106                 DEBUG(0, ("init_ldap_from_sam: NULL parameters found!\n"));
1107                 return False;
1108         }
1109
1110         *mods = NULL;
1111
1112         /*
1113          * took out adding "objectclass: sambaAccount"
1114          * do this on a per-mod basis
1115          */
1116         if (need_update(sampass, PDB_USERNAME)) {
1117                 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods, 
1118                               "uid", pdb_get_username(sampass));
1119                 if (ldap_state->is_nds_ldap) {
1120                         smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods, 
1121                                       "cn", pdb_get_username(sampass));
1122                         smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods, 
1123                                       "sn", pdb_get_username(sampass));
1124                 }
1125         }
1126
1127         DEBUG(2, ("init_ldap_from_sam: Setting entry for user: %s\n", pdb_get_username(sampass)));
1128
1129         /* only update the RID if we actually need to */
1130         if (need_update(sampass, PDB_USERSID)) {
1131                 fstring sid_string;
1132                 const DOM_SID *user_sid = pdb_get_user_sid(sampass);
1133
1134                 switch ( ldap_state->schema_ver ) {
1135                         case SCHEMAVER_SAMBAACCOUNT:
1136                                 if (!sid_peek_check_rid(&ldap_state->domain_sid, user_sid, &rid)) {
1137                                         DEBUG(1, ("init_ldap_from_sam: User's SID (%s) is not for this domain (%s), cannot add to LDAP!\n", 
1138                                                   sid_string_static(user_sid),
1139                                                   sid_string_static(&ldap_state->domain_sid)));
1140                                         return False;
1141                                 }
1142                                 if (asprintf(&temp, "%i", rid) < 0) {
1143                                         return false;
1144                                 }
1145                                 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1146                                         get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_USER_RID), 
1147                                         temp);
1148                                 SAFE_FREE(temp);
1149                                 break;
1150
1151                         case SCHEMAVER_SAMBASAMACCOUNT:
1152                                 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1153                                         get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_USER_SID), 
1154                                         sid_to_string(sid_string, user_sid));
1155                                 break;
1156
1157                         default:
1158                                 DEBUG(0,("init_ldap_from_sam: unknown schema version specified\n"));
1159                                 break;
1160                 }
1161         }
1162
1163         /* we don't need to store the primary group RID - so leaving it
1164            'free' to hang off the unix primary group makes life easier */
1165
1166         if (need_update(sampass, PDB_GROUPSID)) {
1167                 fstring sid_string;
1168                 const DOM_SID *group_sid = pdb_get_group_sid(sampass);
1169
1170                 switch ( ldap_state->schema_ver ) {
1171                         case SCHEMAVER_SAMBAACCOUNT:
1172                                 if (!sid_peek_check_rid(&ldap_state->domain_sid, group_sid, &rid)) {
1173                                         DEBUG(1, ("init_ldap_from_sam: User's Primary Group SID (%s) is not for this domain (%s), cannot add to LDAP!\n",
1174                                                   sid_string_static(group_sid),
1175                                                   sid_string_static(&ldap_state->domain_sid)));
1176                                         return False;
1177                                 }
1178
1179                                 if (asprintf(&temp, "%i", rid) < 0) {
1180                                         return false;
1181                                 }
1182                                 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1183                                         get_userattr_key2string(ldap_state->schema_ver, 
1184                                         LDAP_ATTR_PRIMARY_GROUP_RID), temp);
1185                                 SAFE_FREE(temp);
1186                                 break;
1187
1188                         case SCHEMAVER_SAMBASAMACCOUNT:
1189                                 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1190                                         get_userattr_key2string(ldap_state->schema_ver, 
1191                                         LDAP_ATTR_PRIMARY_GROUP_SID), sid_to_string(sid_string, group_sid));
1192                                 break;
1193
1194                         default:
1195                                 DEBUG(0,("init_ldap_from_sam: unknown schema version specified\n"));
1196                                 break;
1197                 }
1198
1199         }
1200
1201         /* displayName, cn, and gecos should all be the same
1202          *  most easily accomplished by giving them the same OID
1203          *  gecos isn't set here b/c it should be handled by the
1204          *  add-user script
1205          *  We change displayName only and fall back to cn if
1206          *  it does not exist.
1207          */
1208
1209         if (need_update(sampass, PDB_FULLNAME))
1210                 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1211                         get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_DISPLAY_NAME), 
1212                         pdb_get_fullname(sampass));
1213
1214         if (need_update(sampass, PDB_ACCTDESC))
1215                 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1216                         get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_DESC), 
1217                         pdb_get_acct_desc(sampass));
1218
1219         if (need_update(sampass, PDB_WORKSTATIONS))
1220                 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1221                         get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_USER_WKS), 
1222                         pdb_get_workstations(sampass));
1223
1224         if (need_update(sampass, PDB_MUNGEDDIAL))
1225                 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1226                         get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_MUNGED_DIAL), 
1227                         pdb_get_munged_dial(sampass));
1228
1229         if (need_update(sampass, PDB_SMBHOME))
1230                 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1231                         get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_HOME_PATH), 
1232                         pdb_get_homedir(sampass));
1233
1234         if (need_update(sampass, PDB_DRIVE))
1235                 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1236                         get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_HOME_DRIVE), 
1237                         pdb_get_dir_drive(sampass));
1238
1239         if (need_update(sampass, PDB_LOGONSCRIPT))
1240                 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1241                         get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_LOGON_SCRIPT), 
1242                         pdb_get_logon_script(sampass));
1243
1244         if (need_update(sampass, PDB_PROFILE))
1245                 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1246                         get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_PROFILE_PATH), 
1247                         pdb_get_profile_path(sampass));
1248
1249         if (asprintf(&temp, "%li", pdb_get_logon_time(sampass)) < 0) {
1250                 return false;
1251         }
1252         if (need_update(sampass, PDB_LOGONTIME))
1253                 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1254                         get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_LOGON_TIME), temp);
1255         SAFE_FREE(temp);
1256
1257         if (asprintf(&temp, "%li", pdb_get_logoff_time(sampass)) < 0) {
1258                 return false;
1259         }
1260         if (need_update(sampass, PDB_LOGOFFTIME))
1261                 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1262                         get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_LOGOFF_TIME), temp);
1263         SAFE_FREE(temp);
1264
1265         if (asprintf(&temp, "%li", pdb_get_kickoff_time(sampass)) < 0) {
1266                 return false;
1267         }
1268         if (need_update(sampass, PDB_KICKOFFTIME))
1269                 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1270                         get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_KICKOFF_TIME), temp);
1271         SAFE_FREE(temp);
1272
1273         if (asprintf(&temp, "%li", pdb_get_pass_can_change_time_noncalc(sampass)) < 0) {
1274                 return false;
1275         }
1276         if (need_update(sampass, PDB_CANCHANGETIME))
1277                 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1278                         get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_PWD_CAN_CHANGE), temp);
1279         SAFE_FREE(temp);
1280
1281         if (asprintf(&temp, "%li", pdb_get_pass_must_change_time(sampass)) < 0) {
1282                 return false;
1283         }
1284         if (need_update(sampass, PDB_MUSTCHANGETIME))
1285                 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1286                         get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_PWD_MUST_CHANGE), temp);
1287         SAFE_FREE(temp);
1288
1289         if ((pdb_get_acct_ctrl(sampass)&(ACB_WSTRUST|ACB_SVRTRUST|ACB_DOMTRUST))
1290                         || (lp_ldap_passwd_sync()!=LDAP_PASSWD_SYNC_ONLY)) {
1291
1292                 if (need_update(sampass, PDB_LMPASSWD)) {
1293                         const uchar *lm_pw = pdb_get_lanman_passwd(sampass);
1294                         if (lm_pw) {
1295                                 char pwstr[34];
1296                                 pdb_sethexpwd(pwstr, lm_pw,
1297                                               pdb_get_acct_ctrl(sampass));
1298                                 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1299                                                  get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_LMPW), 
1300                                                  pwstr);
1301                         } else {
1302                                 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1303                                                  get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_LMPW), 
1304                                                  NULL);
1305                         }
1306                 }
1307                 if (need_update(sampass, PDB_NTPASSWD)) {
1308                         const uchar *nt_pw = pdb_get_nt_passwd(sampass);
1309                         if (nt_pw) {
1310                                 char pwstr[34];
1311                                 pdb_sethexpwd(pwstr, nt_pw,
1312                                               pdb_get_acct_ctrl(sampass));
1313                                 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1314                                                  get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_NTPW), 
1315                                                  pwstr);
1316                         } else {
1317                                 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1318                                                  get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_NTPW), 
1319                                                  NULL);
1320                         }
1321                 }
1322
1323                 if (need_update(sampass, PDB_PWHISTORY)) {
1324                         char *pwstr = NULL;
1325                         uint32 pwHistLen = 0;
1326                         pdb_get_account_policy(AP_PASSWORD_HISTORY, &pwHistLen);
1327
1328                         pwstr = SMB_MALLOC_ARRAY(char, 1024);
1329                         if (!pwstr) {
1330                                 return false;
1331                         }
1332                         if (pwHistLen == 0) {
1333                                 /* Remove any password history from the LDAP store. */
1334                                 memset(pwstr, '0', 64); /* NOTE !!!! '0' *NOT '\0' */
1335                                 pwstr[64] = '\0';
1336                         } else {
1337                                 int i;
1338                                 uint32 currHistLen = 0;
1339                                 const uint8 *pwhist = pdb_get_pw_history(sampass, &currHistLen);
1340                                 if (pwhist != NULL) {
1341                                         /* We can only store (1024-1/64 password history entries. */
1342                                         pwHistLen = MIN(pwHistLen, ((1024-1)/64));
1343                                         for (i=0; i< pwHistLen && i < currHistLen; i++) {
1344                                                 /* Store the salt. */
1345                                                 pdb_sethexpwd(&pwstr[i*64], &pwhist[i*PW_HISTORY_ENTRY_LEN], 0);
1346                                                 /* Followed by the md5 hash of salt + md4 hash */
1347                                                 pdb_sethexpwd(&pwstr[(i*64)+32],
1348                                                         &pwhist[(i*PW_HISTORY_ENTRY_LEN)+PW_HISTORY_SALT_LEN], 0);
1349                                                 DEBUG(100, ("pwstr=%s\n", pwstr));
1350                                         }
1351                                 }
1352                         }
1353                         smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1354                                          get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_PWD_HISTORY), 
1355                                          pwstr);
1356                         SAFE_FREE(pwstr);
1357                 }
1358
1359                 if (need_update(sampass, PDB_PASSLASTSET)) {
1360                         if (asprintf(&temp, "%li",
1361                                 pdb_get_pass_last_set_time(sampass)) < 0) {
1362                                 return false;
1363                         }
1364                         smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1365                                 get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_PWD_LAST_SET), 
1366                                 temp);
1367                         SAFE_FREE(temp);
1368                 }
1369         }
1370
1371         if (need_update(sampass, PDB_HOURS)) {
1372                 const uint8 *hours = pdb_get_hours(sampass);
1373                 if (hours) {
1374                         char hourstr[44];
1375                         pdb_sethexhours(hourstr, hours);
1376                         smbldap_make_mod(ldap_state->smbldap_state->ldap_struct,
1377                                 existing,
1378                                 mods,
1379                                 get_userattr_key2string(ldap_state->schema_ver,
1380                                                 LDAP_ATTR_LOGON_HOURS),
1381                                 hourstr);
1382                 }
1383         }
1384
1385         if (need_update(sampass, PDB_ACCTCTRL))
1386                 smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, existing, mods,
1387                         get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_ACB_INFO), 
1388                         pdb_encode_acct_ctrl (pdb_get_acct_ctrl(sampass), NEW_PW_FORMAT_SPACE_PADDED_LEN));
1389
1390         /* password lockout cache:
1391            - If we are now autolocking or clearing, we write to ldap
1392            - If we are clearing, we delete the cache entry
1393            - If the count is > 0, we update the cache
1394
1395            This even means when autolocking, we cache, just in case the
1396            update doesn't work, and we have to cache the autolock flag */
1397
1398         if (need_update(sampass, PDB_BAD_PASSWORD_COUNT))  /* &&
1399             need_update(sampass, PDB_BAD_PASSWORD_TIME)) */ {
1400                 uint16 badcount = pdb_get_bad_password_count(sampass);
1401                 time_t badtime = pdb_get_bad_password_time(sampass);
1402                 uint32 pol;
1403                 pdb_get_account_policy(AP_BAD_ATTEMPT_LOCKOUT, &pol);
1404
1405                 DEBUG(3, ("updating bad password fields, policy=%u, count=%u, time=%u\n",
1406                         (unsigned int)pol, (unsigned int)badcount, (unsigned int)badtime));
1407
1408                 if ((badcount >= pol) || (badcount == 0)) {
1409                         DEBUG(7, ("making mods to update ldap, count=%u, time=%u\n",
1410                                 (unsigned int)badcount, (unsigned int)badtime));
1411                         if (asprintf(&temp, "%li", (long)badcount) < 0) {
1412                                 return false;
1413                         }
1414                         smbldap_make_mod(
1415                                 ldap_state->smbldap_state->ldap_struct,
1416                                 existing, mods,
1417                                 get_userattr_key2string(
1418                                         ldap_state->schema_ver,
1419                                         LDAP_ATTR_BAD_PASSWORD_COUNT),
1420                                 temp);
1421                         SAFE_FREE(temp);
1422
1423                         if (asprintf(&temp, "%li", badtime) < 0) {
1424                                 return false;
1425                         }
1426                         smbldap_make_mod(
1427                                 ldap_state->smbldap_state->ldap_struct,
1428                                 existing, mods,
1429                                 get_userattr_key2string(
1430                                         ldap_state->schema_ver,
1431                                         LDAP_ATTR_BAD_PASSWORD_TIME),
1432                                 temp);
1433                         SAFE_FREE(temp);
1434                 }
1435                 if (badcount == 0) {
1436                         DEBUG(7, ("bad password count is reset, deleting login cache entry for %s\n", pdb_get_nt_username(sampass)));
1437                         login_cache_delentry(sampass);
1438                 } else {
1439                         LOGIN_CACHE cache_entry;
1440
1441                         cache_entry.entry_timestamp = time(NULL);
1442                         cache_entry.acct_ctrl = pdb_get_acct_ctrl(sampass);
1443                         cache_entry.bad_password_count = badcount;
1444                         cache_entry.bad_password_time = badtime;
1445
1446                         DEBUG(7, ("Updating bad password count and time in login cache\n"));
1447                         login_cache_write(sampass, cache_entry);
1448                 }
1449         }
1450
1451         return True;
1452 }
1453
1454 /**********************************************************************
1455  Connect to LDAP server for password enumeration.
1456 *********************************************************************/
1457
1458 static NTSTATUS ldapsam_setsampwent(struct pdb_methods *my_methods, bool update, uint32 acb_mask)
1459 {
1460         struct ldapsam_privates *ldap_state = (struct ldapsam_privates *)my_methods->private_data;
1461         int rc;
1462         char *filter = NULL;
1463         const char *suffix;
1464         const char **attr_list;
1465         bool machine_mask = False, user_mask = False;
1466         NTSTATUS status = NT_STATUS_OK;
1467         TALLOC_CTX *ctx = talloc_init("ldapsam_setsampwent");
1468
1469         if (!ctx) {
1470                 return NT_STATUS_NO_MEMORY;
1471         }
1472         filter = talloc_asprintf(ctx, "(&%s%s)", "(uid=%u)",
1473                 get_objclass_filter(ldap_state->schema_ver));
1474         if (!filter) {
1475                 status = NT_STATUS_NO_MEMORY;
1476                 goto out;
1477         }
1478
1479         filter = talloc_all_string_sub(ctx, filter, "%u", "*");
1480         if (!filter) {
1481                 status = NT_STATUS_NO_MEMORY;
1482                 goto out;
1483         }
1484
1485         machine_mask    = ((acb_mask != 0) && (acb_mask & (ACB_WSTRUST|ACB_SVRTRUST|ACB_DOMTRUST)));
1486         user_mask       = ((acb_mask != 0) && (acb_mask & ACB_NORMAL));
1487
1488         if (machine_mask) {
1489                 suffix = lp_ldap_machine_suffix();
1490         } else if (user_mask) {
1491                 suffix = lp_ldap_user_suffix();
1492         } else {
1493                 suffix = lp_ldap_suffix();
1494         }
1495
1496         DEBUG(10,("ldapsam_setsampwent: LDAP Query for acb_mask 0x%x will use suffix %s\n", 
1497                 acb_mask, suffix));
1498
1499         attr_list = get_userattr_list(NULL, ldap_state->schema_ver);
1500         rc = smbldap_search(ldap_state->smbldap_state, suffix, LDAP_SCOPE_SUBTREE, filter, 
1501                             attr_list, 0, &ldap_state->result);
1502         TALLOC_FREE( attr_list );
1503
1504         if (rc != LDAP_SUCCESS) {
1505                 DEBUG(0, ("ldapsam_setsampwent: LDAP search failed: %s\n", ldap_err2string(rc)));
1506                 DEBUG(3, ("ldapsam_setsampwent: Query was: %s, %s\n", suffix, filter));
1507                 ldap_msgfree(ldap_state->result);
1508                 ldap_state->result = NULL;
1509                 status = NT_STATUS_UNSUCCESSFUL;
1510                 goto out;
1511         }
1512
1513         DEBUG(2, ("ldapsam_setsampwent: %d entries in the base %s\n",
1514                 ldap_count_entries(ldap_state->smbldap_state->ldap_struct,
1515                 ldap_state->result), suffix));
1516
1517         ldap_state->entry = ldap_first_entry(ldap_state->smbldap_state->ldap_struct,
1518                                  ldap_state->result);
1519         ldap_state->index = 0;
1520
1521   out:
1522
1523         TALLOC_FREE(ctx);
1524         return status;
1525 }
1526
1527 /**********************************************************************
1528  End enumeration of the LDAP password list.
1529 *********************************************************************/
1530
1531 static void ldapsam_endsampwent(struct pdb_methods *my_methods)
1532 {
1533         struct ldapsam_privates *ldap_state = (struct ldapsam_privates *)my_methods->private_data;
1534         if (ldap_state->result) {
1535                 ldap_msgfree(ldap_state->result);
1536                 ldap_state->result = NULL;
1537         }
1538 }
1539
1540 /**********************************************************************
1541 Get the next entry in the LDAP password database.
1542 *********************************************************************/
1543
1544 static NTSTATUS ldapsam_getsampwent(struct pdb_methods *my_methods,
1545                                     struct samu *user)
1546 {
1547         NTSTATUS ret = NT_STATUS_UNSUCCESSFUL;
1548         struct ldapsam_privates *ldap_state =
1549                 (struct ldapsam_privates *)my_methods->private_data;
1550         bool bret = False;
1551
1552         while (!bret) {
1553                 if (!ldap_state->entry)
1554                         return ret;
1555                 
1556                 ldap_state->index++;
1557                 bret = init_sam_from_ldap(ldap_state, user, ldap_state->entry);
1558                 
1559                 ldap_state->entry = ldap_next_entry(priv2ld(ldap_state),
1560                                                     ldap_state->entry); 
1561         }
1562
1563         return NT_STATUS_OK;
1564 }
1565
1566 static void append_attr(TALLOC_CTX *mem_ctx, const char ***attr_list,
1567                         const char *new_attr)
1568 {
1569         int i;
1570
1571         if (new_attr == NULL) {
1572                 return;
1573         }
1574
1575         for (i=0; (*attr_list)[i] != NULL; i++) {
1576                 ;
1577         }
1578
1579         (*attr_list) = TALLOC_REALLOC_ARRAY(mem_ctx, (*attr_list),
1580                                             const char *,  i+2);
1581         SMB_ASSERT((*attr_list) != NULL);
1582         (*attr_list)[i] = talloc_strdup((*attr_list), new_attr);
1583         (*attr_list)[i+1] = NULL;
1584 }
1585
1586 /**********************************************************************
1587 Get struct samu entry from LDAP by username.
1588 *********************************************************************/
1589
1590 static NTSTATUS ldapsam_getsampwnam(struct pdb_methods *my_methods, struct samu *user, const char *sname)
1591 {
1592         NTSTATUS ret = NT_STATUS_UNSUCCESSFUL;
1593         struct ldapsam_privates *ldap_state = (struct ldapsam_privates *)my_methods->private_data;
1594         LDAPMessage *result = NULL;
1595         LDAPMessage *entry = NULL;
1596         int count;
1597         const char ** attr_list;
1598         int rc;
1599         
1600         attr_list = get_userattr_list( user, ldap_state->schema_ver );
1601         append_attr(user, &attr_list,
1602                     get_userattr_key2string(ldap_state->schema_ver,
1603                                             LDAP_ATTR_MOD_TIMESTAMP));
1604         append_attr(user, &attr_list, "uidNumber");
1605         rc = ldapsam_search_suffix_by_name(ldap_state, sname, &result,
1606                                            attr_list);
1607         TALLOC_FREE( attr_list );
1608
1609         if ( rc != LDAP_SUCCESS ) 
1610                 return NT_STATUS_NO_SUCH_USER;
1611         
1612         count = ldap_count_entries(ldap_state->smbldap_state->ldap_struct, result);
1613         
1614         if (count < 1) {
1615                 DEBUG(4, ("ldapsam_getsampwnam: Unable to locate user [%s] count=%d\n", sname, count));
1616                 ldap_msgfree(result);
1617                 return NT_STATUS_NO_SUCH_USER;
1618         } else if (count > 1) {
1619                 DEBUG(1, ("ldapsam_getsampwnam: Duplicate entries for this user [%s] Failing. count=%d\n", sname, count));
1620                 ldap_msgfree(result);
1621                 return NT_STATUS_NO_SUCH_USER;
1622         }
1623
1624         entry = ldap_first_entry(ldap_state->smbldap_state->ldap_struct, result);
1625         if (entry) {
1626                 if (!init_sam_from_ldap(ldap_state, user, entry)) {
1627                         DEBUG(1,("ldapsam_getsampwnam: init_sam_from_ldap failed for user '%s'!\n", sname));
1628                         ldap_msgfree(result);
1629                         return NT_STATUS_NO_SUCH_USER;
1630                 }
1631                 pdb_set_backend_private_data(user, result, NULL,
1632                                              my_methods, PDB_CHANGED);
1633                 talloc_autofree_ldapmsg(user, result);
1634                 ret = NT_STATUS_OK;
1635         } else {
1636                 ldap_msgfree(result);
1637         }
1638         return ret;
1639 }
1640
1641 static int ldapsam_get_ldap_user_by_sid(struct ldapsam_privates *ldap_state, 
1642                                    const DOM_SID *sid, LDAPMessage **result) 
1643 {
1644         int rc = -1;
1645         const char ** attr_list;
1646         uint32 rid;
1647
1648         switch ( ldap_state->schema_ver ) {
1649                 case SCHEMAVER_SAMBASAMACCOUNT: {
1650                         TALLOC_CTX *tmp_ctx = talloc_new(NULL);
1651                         if (tmp_ctx == NULL) {
1652                                 return LDAP_NO_MEMORY;
1653                         }
1654
1655                         attr_list = get_userattr_list(tmp_ctx,
1656                                                       ldap_state->schema_ver);
1657                         append_attr(tmp_ctx, &attr_list,
1658                                     get_userattr_key2string(
1659                                             ldap_state->schema_ver,
1660                                             LDAP_ATTR_MOD_TIMESTAMP));
1661                         append_attr(tmp_ctx, &attr_list, "uidNumber");
1662                         rc = ldapsam_search_suffix_by_sid(ldap_state, sid,
1663                                                           result, attr_list);
1664                         TALLOC_FREE(tmp_ctx);
1665
1666                         if ( rc != LDAP_SUCCESS ) 
1667                                 return rc;
1668                         break;
1669                 }
1670                         
1671                 case SCHEMAVER_SAMBAACCOUNT:
1672                         if (!sid_peek_check_rid(&ldap_state->domain_sid, sid, &rid)) {
1673                                 return rc;
1674                         }
1675                 
1676                         attr_list = get_userattr_list(NULL,
1677                                                       ldap_state->schema_ver);
1678                         rc = ldapsam_search_suffix_by_rid(ldap_state, rid, result, attr_list );
1679                         TALLOC_FREE( attr_list );
1680
1681                         if ( rc != LDAP_SUCCESS ) 
1682                                 return rc;
1683                         break;
1684         }
1685         return rc;
1686 }
1687
1688 /**********************************************************************
1689  Get struct samu entry from LDAP by SID.
1690 *********************************************************************/
1691
1692 static NTSTATUS ldapsam_getsampwsid(struct pdb_methods *my_methods, struct samu * user, const DOM_SID *sid)
1693 {
1694         struct ldapsam_privates *ldap_state = (struct ldapsam_privates *)my_methods->private_data;
1695         LDAPMessage *result = NULL;
1696         LDAPMessage *entry = NULL;
1697         int count;
1698         int rc;
1699         fstring sid_string;
1700
1701         rc = ldapsam_get_ldap_user_by_sid(ldap_state, 
1702                                           sid, &result); 
1703         if (rc != LDAP_SUCCESS)
1704                 return NT_STATUS_NO_SUCH_USER;
1705
1706         count = ldap_count_entries(ldap_state->smbldap_state->ldap_struct, result);
1707         
1708         if (count < 1) {
1709                 DEBUG(4, ("ldapsam_getsampwsid: Unable to locate SID [%s] count=%d\n", sid_to_string(sid_string, sid),
1710                        count));
1711                 ldap_msgfree(result);
1712                 return NT_STATUS_NO_SUCH_USER;
1713         }  else if (count > 1) {
1714                 DEBUG(1, ("ldapsam_getsampwsid: More than one user with SID [%s]. Failing. count=%d\n", sid_to_string(sid_string, sid),
1715                        count));
1716                 ldap_msgfree(result);
1717                 return NT_STATUS_NO_SUCH_USER;
1718         }
1719
1720         entry = ldap_first_entry(ldap_state->smbldap_state->ldap_struct, result);
1721         if (!entry) {
1722                 ldap_msgfree(result);
1723                 return NT_STATUS_NO_SUCH_USER;
1724         }
1725
1726         if (!init_sam_from_ldap(ldap_state, user, entry)) {
1727                 DEBUG(1,("ldapsam_getsampwsid: init_sam_from_ldap failed!\n"));
1728                 ldap_msgfree(result);
1729                 return NT_STATUS_NO_SUCH_USER;
1730         }
1731
1732         pdb_set_backend_private_data(user, result, NULL,
1733                                      my_methods, PDB_CHANGED);
1734         talloc_autofree_ldapmsg(user, result);
1735         return NT_STATUS_OK;
1736 }       
1737
1738 /********************************************************************
1739  Do the actual modification - also change a plaintext passord if 
1740  it it set.
1741 **********************************************************************/
1742
1743 static NTSTATUS ldapsam_modify_entry(struct pdb_methods *my_methods, 
1744                                      struct samu *newpwd, char *dn,
1745                                      LDAPMod **mods, int ldap_op, 
1746                                      bool (*need_update)(const struct samu *, enum pdb_elements))
1747 {
1748         struct ldapsam_privates *ldap_state = (struct ldapsam_privates *)my_methods->private_data;
1749         int rc;
1750         
1751         if (!newpwd || !dn) {
1752                 return NT_STATUS_INVALID_PARAMETER;
1753         }
1754         
1755         if (!mods) {
1756                 DEBUG(5,("ldapsam_modify_entry: mods is empty: nothing to modify\n"));
1757                 /* may be password change below however */
1758         } else {
1759                 switch(ldap_op) {
1760                         case LDAP_MOD_ADD:
1761                                 if (ldap_state->is_nds_ldap) {
1762                                         smbldap_set_mod(&mods, LDAP_MOD_ADD, 
1763                                                         "objectclass", 
1764                                                         "inetOrgPerson");
1765                                 } else {
1766                                         smbldap_set_mod(&mods, LDAP_MOD_ADD, 
1767                                                         "objectclass", 
1768                                                         LDAP_OBJ_ACCOUNT);
1769                                 }
1770                                 rc = smbldap_add(ldap_state->smbldap_state, 
1771                                                  dn, mods);
1772                                 break;
1773                         case LDAP_MOD_REPLACE: 
1774                                 rc = smbldap_modify(ldap_state->smbldap_state, 
1775                                                     dn ,mods);
1776                                 break;
1777                         default:        
1778                                 DEBUG(0,("ldapsam_modify_entry: Wrong LDAP operation type: %d!\n", 
1779                                          ldap_op));
1780                                 return NT_STATUS_INVALID_PARAMETER;
1781                 }
1782                 
1783                 if (rc!=LDAP_SUCCESS) {
1784                         return NT_STATUS_UNSUCCESSFUL;
1785                 }  
1786         }
1787         
1788         if (!(pdb_get_acct_ctrl(newpwd)&(ACB_WSTRUST|ACB_SVRTRUST|ACB_DOMTRUST)) &&
1789                         (lp_ldap_passwd_sync() != LDAP_PASSWD_SYNC_OFF) &&
1790                         need_update(newpwd, PDB_PLAINTEXT_PW) &&
1791                         (pdb_get_plaintext_passwd(newpwd)!=NULL)) {
1792                 BerElement *ber;
1793                 struct berval *bv;
1794                 char *retoid = NULL;
1795                 struct berval *retdata = NULL;
1796                 char *utf8_password;
1797                 char *utf8_dn;
1798
1799                 if (!ldap_state->is_nds_ldap) {
1800
1801                         if (!smbldap_has_extension(ldap_state->smbldap_state->ldap_struct, 
1802                                                    LDAP_EXOP_MODIFY_PASSWD)) {
1803                                 DEBUG(2, ("ldap password change requested, but LDAP "
1804                                           "server does not support it -- ignoring\n"));
1805                                 return NT_STATUS_OK;
1806                         }
1807                 }
1808
1809                 if (push_utf8_allocate(&utf8_password, pdb_get_plaintext_passwd(newpwd)) == (size_t)-1) {
1810                         return NT_STATUS_NO_MEMORY;
1811                 }
1812
1813                 if (push_utf8_allocate(&utf8_dn, dn) == (size_t)-1) {
1814                         SAFE_FREE(utf8_password);
1815                         return NT_STATUS_NO_MEMORY;
1816                 }
1817
1818                 if ((ber = ber_alloc_t(LBER_USE_DER))==NULL) {
1819                         DEBUG(0,("ber_alloc_t returns NULL\n"));
1820                         SAFE_FREE(utf8_password);
1821                         SAFE_FREE(utf8_dn);
1822                         return NT_STATUS_UNSUCCESSFUL;
1823                 }
1824
1825                 ber_printf (ber, "{");
1826                 ber_printf (ber, "ts", LDAP_TAG_EXOP_MODIFY_PASSWD_ID, utf8_dn);
1827                 ber_printf (ber, "ts", LDAP_TAG_EXOP_MODIFY_PASSWD_NEW, utf8_password);
1828                 ber_printf (ber, "n}");
1829
1830                 if ((rc = ber_flatten (ber, &bv))<0) {
1831                         DEBUG(0,("ldapsam_modify_entry: ber_flatten returns a value <0\n"));
1832                         ber_free(ber,1);
1833                         SAFE_FREE(utf8_dn);
1834                         SAFE_FREE(utf8_password);
1835                         return NT_STATUS_UNSUCCESSFUL;
1836                 }
1837                 
1838                 SAFE_FREE(utf8_dn);
1839                 SAFE_FREE(utf8_password);
1840                 ber_free(ber, 1);
1841
1842                 if (!ldap_state->is_nds_ldap) {
1843                         rc = smbldap_extended_operation(ldap_state->smbldap_state, 
1844                                                         LDAP_EXOP_MODIFY_PASSWD,
1845                                                         bv, NULL, NULL, &retoid, 
1846                                                         &retdata);
1847                 } else {
1848                         rc = pdb_nds_set_password(ldap_state->smbldap_state, dn,
1849                                                         pdb_get_plaintext_passwd(newpwd));
1850                 }
1851                 if (rc != LDAP_SUCCESS) {
1852                         char *ld_error = NULL;
1853
1854                         if (rc == LDAP_OBJECT_CLASS_VIOLATION) {
1855                                 DEBUG(3, ("Could not set userPassword "
1856                                           "attribute due to an objectClass "
1857                                           "violation -- ignoring\n"));
1858                                 ber_bvfree(bv);
1859                                 return NT_STATUS_OK;
1860                         }
1861
1862                         ldap_get_option(ldap_state->smbldap_state->ldap_struct, LDAP_OPT_ERROR_STRING,
1863                                         &ld_error);
1864                         DEBUG(0,("ldapsam_modify_entry: LDAP Password could not be changed for user %s: %s\n\t%s\n",
1865                                 pdb_get_username(newpwd), ldap_err2string(rc), ld_error?ld_error:"unknown"));
1866                         SAFE_FREE(ld_error);
1867                         ber_bvfree(bv);
1868                         return NT_STATUS_UNSUCCESSFUL;
1869                 } else {
1870                         DEBUG(3,("ldapsam_modify_entry: LDAP Password changed for user %s\n",pdb_get_username(newpwd)));
1871 #ifdef DEBUG_PASSWORD
1872                         DEBUG(100,("ldapsam_modify_entry: LDAP Password changed to %s\n",pdb_get_plaintext_passwd(newpwd)));
1873 #endif    
1874                         if (retdata)
1875                                 ber_bvfree(retdata);
1876                         if (retoid)
1877                                 ldap_memfree(retoid);
1878                 }
1879                 ber_bvfree(bv);
1880         }
1881         return NT_STATUS_OK;
1882 }
1883
1884 /**********************************************************************
1885  Delete entry from LDAP for username.
1886 *********************************************************************/
1887
1888 static NTSTATUS ldapsam_delete_sam_account(struct pdb_methods *my_methods,
1889                                            struct samu * sam_acct)
1890 {
1891         struct ldapsam_privates *priv =
1892                 (struct ldapsam_privates *)my_methods->private_data;
1893         const char *sname;
1894         int rc;
1895         LDAPMessage *msg, *entry;
1896         NTSTATUS result = NT_STATUS_NO_MEMORY;
1897         const char **attr_list;
1898         TALLOC_CTX *mem_ctx;
1899
1900         if (!sam_acct) {
1901                 DEBUG(0, ("ldapsam_delete_sam_account: sam_acct was NULL!\n"));
1902                 return NT_STATUS_INVALID_PARAMETER;
1903         }
1904
1905         sname = pdb_get_username(sam_acct);
1906
1907         DEBUG(3, ("ldapsam_delete_sam_account: Deleting user %s from "
1908                   "LDAP.\n", sname));
1909
1910         mem_ctx = talloc_new(NULL);
1911         if (mem_ctx == NULL) {
1912                 DEBUG(0, ("talloc_new failed\n"));
1913                 goto done;
1914         }
1915
1916         attr_list = get_userattr_delete_list(mem_ctx, priv->schema_ver );
1917         if (attr_list == NULL) {
1918                 goto done;
1919         }
1920
1921         rc = ldapsam_search_suffix_by_name(priv, sname, &msg, attr_list);
1922
1923         if ((rc != LDAP_SUCCESS) ||
1924             (ldap_count_entries(priv2ld(priv), msg) != 1) ||
1925             ((entry = ldap_first_entry(priv2ld(priv), msg)) == NULL)) {
1926                 DEBUG(5, ("Could not find user %s\n", sname));
1927                 result = NT_STATUS_NO_SUCH_USER;
1928                 goto done;
1929         }
1930         
1931         rc = ldapsam_delete_entry(
1932                 priv, mem_ctx, entry,
1933                 priv->schema_ver == SCHEMAVER_SAMBASAMACCOUNT ?
1934                 LDAP_OBJ_SAMBASAMACCOUNT : LDAP_OBJ_SAMBAACCOUNT,
1935                 attr_list);
1936
1937         result = (rc == LDAP_SUCCESS) ?
1938                 NT_STATUS_OK : NT_STATUS_ACCESS_DENIED;
1939
1940  done:
1941         TALLOC_FREE(mem_ctx);
1942         return result;
1943 }
1944
1945 /**********************************************************************
1946  Helper function to determine for update_sam_account whether
1947  we need LDAP modification.
1948 *********************************************************************/
1949
1950 static bool element_is_changed(const struct samu *sampass,
1951                                enum pdb_elements element)
1952 {
1953         return IS_SAM_CHANGED(sampass, element);
1954 }
1955
1956 /**********************************************************************
1957  Update struct samu.
1958 *********************************************************************/
1959
1960 static NTSTATUS ldapsam_update_sam_account(struct pdb_methods *my_methods, struct samu * newpwd)
1961 {
1962         NTSTATUS ret = NT_STATUS_UNSUCCESSFUL;
1963         struct ldapsam_privates *ldap_state = (struct ldapsam_privates *)my_methods->private_data;
1964         int rc = 0;
1965         char *dn;
1966         LDAPMessage *result = NULL;
1967         LDAPMessage *entry = NULL;
1968         LDAPMod **mods = NULL;
1969         const char **attr_list;
1970
1971         result = (LDAPMessage *)pdb_get_backend_private_data(newpwd, my_methods);
1972         if (!result) {
1973                 attr_list = get_userattr_list(NULL, ldap_state->schema_ver);
1974                 if (pdb_get_username(newpwd) == NULL) {
1975                         return NT_STATUS_INVALID_PARAMETER;
1976                 }
1977                 rc = ldapsam_search_suffix_by_name(ldap_state, pdb_get_username(newpwd), &result, attr_list );
1978                 TALLOC_FREE( attr_list );
1979                 if (rc != LDAP_SUCCESS) {
1980                         return NT_STATUS_UNSUCCESSFUL;
1981                 }
1982                 pdb_set_backend_private_data(newpwd, result, NULL,
1983                                              my_methods, PDB_CHANGED);
1984                 talloc_autofree_ldapmsg(newpwd, result);
1985         }
1986
1987         if (ldap_count_entries(ldap_state->smbldap_state->ldap_struct, result) == 0) {
1988                 DEBUG(0, ("ldapsam_update_sam_account: No user to modify!\n"));
1989                 return NT_STATUS_UNSUCCESSFUL;
1990         }
1991
1992         entry = ldap_first_entry(ldap_state->smbldap_state->ldap_struct, result);
1993         dn = smbldap_get_dn(ldap_state->smbldap_state->ldap_struct, entry);
1994         if (!dn) {
1995                 return NT_STATUS_UNSUCCESSFUL;
1996         }
1997
1998         DEBUG(4, ("ldapsam_update_sam_account: user %s to be modified has dn: %s\n", pdb_get_username(newpwd), dn));
1999
2000         if (!init_ldap_from_sam(ldap_state, entry, &mods, newpwd,
2001                                 element_is_changed)) {
2002                 DEBUG(0, ("ldapsam_update_sam_account: init_ldap_from_sam failed!\n"));
2003                 SAFE_FREE(dn);
2004                 if (mods != NULL)
2005                         ldap_mods_free(mods,True);
2006                 return NT_STATUS_UNSUCCESSFUL;
2007         }
2008         
2009         if (mods == NULL) {
2010                 DEBUG(4,("ldapsam_update_sam_account: mods is empty: nothing to update for user: %s\n",
2011                          pdb_get_username(newpwd)));
2012                 SAFE_FREE(dn);
2013                 return NT_STATUS_OK;
2014         }
2015         
2016         ret = ldapsam_modify_entry(my_methods,newpwd,dn,mods,LDAP_MOD_REPLACE, element_is_changed);
2017         ldap_mods_free(mods,True);
2018         SAFE_FREE(dn);
2019
2020         /*
2021          * We need to set the backend private data to NULL here. For example
2022          * setuserinfo level 25 does a pdb_update_sam_account twice on the
2023          * same one, and with the explicit delete / add logic for attribute
2024          * values the second time we would use the wrong "old" value which
2025          * does not exist in LDAP anymore. Thus the LDAP server would refuse
2026          * the update.
2027          * The existing LDAPMessage is still being auto-freed by the
2028          * destructor.
2029          */
2030         pdb_set_backend_private_data(newpwd, NULL, NULL, my_methods,
2031                                      PDB_CHANGED);
2032
2033         if (!NT_STATUS_IS_OK(ret)) {
2034                 return ret;
2035         }
2036
2037         DEBUG(2, ("ldapsam_update_sam_account: successfully modified uid = %s in the LDAP database\n",
2038                   pdb_get_username(newpwd)));
2039         return NT_STATUS_OK;
2040 }
2041
2042 /***************************************************************************
2043  Renames a struct samu
2044  - The "rename user script" has full responsibility for changing everything
2045 ***************************************************************************/
2046
2047 static NTSTATUS ldapsam_rename_sam_account(struct pdb_methods *my_methods,
2048                                            struct samu *old_acct,
2049                                            const char *newname)
2050 {
2051         const char *oldname;
2052         int rc;
2053         char *rename_script = NULL;
2054         fstring oldname_lower, newname_lower;
2055
2056         if (!old_acct) {
2057                 DEBUG(0, ("ldapsam_rename_sam_account: old_acct was NULL!\n"));
2058                 return NT_STATUS_INVALID_PARAMETER;
2059         }
2060         if (!newname) {
2061                 DEBUG(0, ("ldapsam_rename_sam_account: newname was NULL!\n"));
2062                 return NT_STATUS_INVALID_PARAMETER;
2063         }
2064
2065         oldname = pdb_get_username(old_acct);
2066
2067         /* rename the posix user */
2068         rename_script = SMB_STRDUP(lp_renameuser_script());
2069         if (rename_script) {
2070                 return NT_STATUS_NO_MEMORY;
2071         }
2072
2073         if (!(*rename_script)) {
2074                 SAFE_FREE(rename_script);
2075                 return NT_STATUS_ACCESS_DENIED;
2076         }
2077
2078         DEBUG (3, ("ldapsam_rename_sam_account: Renaming user %s to %s.\n",
2079                    oldname, newname));
2080
2081         /* We have to allow the account name to end with a '$'.
2082            Also, follow the semantics in _samr_create_user() and lower case the
2083            posix name but preserve the case in passdb */
2084
2085         fstrcpy( oldname_lower, oldname );
2086         strlower_m( oldname_lower );
2087         fstrcpy( newname_lower, newname );
2088         strlower_m( newname_lower );
2089         rename_script = realloc_string_sub2(rename_script,
2090                                         "%unew",
2091                                         newname_lower,
2092                                         true,
2093                                         true);
2094         if (rename_script) {
2095                 return NT_STATUS_NO_MEMORY;
2096         }
2097         rename_script = realloc_string_sub2(rename_script,
2098                                         "%uold",
2099                                         oldname_lower,
2100                                         true,
2101                                         true);
2102         rc = smbrun(rename_script, NULL);
2103
2104         DEBUG(rc ? 0 : 3,("Running the command `%s' gave %d\n",
2105                           rename_script, rc));
2106
2107         SAFE_FREE(rename_script);
2108
2109         if (rc == 0) {
2110                 smb_nscd_flush_user_cache();
2111         }
2112
2113         if (rc)
2114                 return NT_STATUS_UNSUCCESSFUL;
2115
2116         return NT_STATUS_OK;
2117 }
2118
2119 /**********************************************************************
2120  Helper function to determine for update_sam_account whether
2121  we need LDAP modification.
2122  *********************************************************************/
2123
2124 static bool element_is_set_or_changed(const struct samu *sampass,
2125                                       enum pdb_elements element)
2126 {
2127         return (IS_SAM_SET(sampass, element) ||
2128                 IS_SAM_CHANGED(sampass, element));
2129 }
2130
2131 /**********************************************************************
2132  Add struct samu to LDAP.
2133 *********************************************************************/
2134
2135 static NTSTATUS ldapsam_add_sam_account(struct pdb_methods *my_methods, struct samu * newpwd)
2136 {
2137         NTSTATUS ret = NT_STATUS_UNSUCCESSFUL;
2138         struct ldapsam_privates *ldap_state = (struct ldapsam_privates *)my_methods->private_data;
2139         int rc;
2140         LDAPMessage     *result = NULL;
2141         LDAPMessage     *entry  = NULL;
2142         LDAPMod         **mods = NULL;
2143         int             ldap_op = LDAP_MOD_REPLACE;
2144         uint32          num_result;
2145         const char      **attr_list;
2146         char *escape_user = NULL;
2147         const char      *username = pdb_get_username(newpwd);
2148         const DOM_SID   *sid = pdb_get_user_sid(newpwd);
2149         char *filter = NULL;
2150         char *dn = NULL;
2151         fstring         sid_string;
2152         NTSTATUS status = NT_STATUS_UNSUCCESSFUL;
2153         TALLOC_CTX *ctx = talloc_init("ldapsam_add_sam_account");
2154
2155         if (!ctx) {
2156                 return NT_STATUS_NO_MEMORY;
2157         }
2158
2159         if (!username || !*username) {
2160                 DEBUG(0, ("ldapsam_add_sam_account: Cannot add user without a username!\n"));
2161                 status = NT_STATUS_INVALID_PARAMETER;
2162                 goto fn_exit;
2163         }
2164
2165         /* free this list after the second search or in case we exit on failure */
2166         attr_list = get_userattr_list(ctx, ldap_state->schema_ver);
2167
2168         rc = ldapsam_search_suffix_by_name (ldap_state, username, &result, attr_list);
2169
2170         if (rc != LDAP_SUCCESS) {
2171                 goto fn_exit;
2172         }
2173
2174         if (ldap_count_entries(ldap_state->smbldap_state->ldap_struct, result) != 0) {
2175                 DEBUG(0,("ldapsam_add_sam_account: User '%s' already in the base, with samba attributes\n", 
2176                          username));
2177                 goto fn_exit;
2178         }
2179         ldap_msgfree(result);
2180         result = NULL;
2181
2182         if (element_is_set_or_changed(newpwd, PDB_USERSID)) {
2183                 rc = ldapsam_get_ldap_user_by_sid(ldap_state,
2184                                                   sid, &result);
2185                 if (rc == LDAP_SUCCESS) {
2186                         if (ldap_count_entries(ldap_state->smbldap_state->ldap_struct, result) != 0) {
2187                                 DEBUG(0,("ldapsam_add_sam_account: SID '%s' already in the base, with samba attributes\n", 
2188                                          sid_to_string(sid_string, sid)));
2189                                 goto fn_exit;
2190                         }
2191                         ldap_msgfree(result);
2192                         result = NULL;
2193                 }
2194         }
2195
2196         /* does the entry already exist but without a samba attributes?
2197            we need to return the samba attributes here */
2198
2199         escape_user = escape_ldap_string_alloc( username );
2200         filter = talloc_strdup(attr_list, "(uid=%u)");
2201         if (!filter) {
2202                 status = NT_STATUS_NO_MEMORY;
2203                 goto fn_exit;
2204         }
2205         filter = talloc_all_string_sub(attr_list, filter, "%u", escape_user);
2206         if (!filter) {
2207                 status = NT_STATUS_NO_MEMORY;
2208                 goto fn_exit;
2209         }
2210         SAFE_FREE(escape_user);
2211
2212         rc = smbldap_search_suffix(ldap_state->smbldap_state,
2213                                    filter, attr_list, &result);
2214         if ( rc != LDAP_SUCCESS ) {
2215                 goto fn_exit;
2216         }
2217
2218         num_result = ldap_count_entries(ldap_state->smbldap_state->ldap_struct, result);
2219
2220         if (num_result > 1) {
2221                 DEBUG (0, ("ldapsam_add_sam_account: More than one user with that uid exists: bailing out!\n"));
2222                 goto fn_exit;
2223         }
2224
2225         /* Check if we need to update an existing entry */
2226         if (num_result == 1) {
2227                 char *tmp;
2228
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                 tmp = smbldap_get_dn(ldap_state->smbldap_state->ldap_struct, entry);
2233                 if (!tmp) {
2234                         goto fn_exit;
2235                 }
2236                 dn = talloc_asprintf(ctx, "%s", tmp);
2237                 SAFE_FREE(tmp);
2238                 if (!dn) {
2239                         status = NT_STATUS_NO_MEMORY;
2240                         goto fn_exit;
2241                 }
2242
2243         } else if (ldap_state->schema_ver == SCHEMAVER_SAMBASAMACCOUNT) {
2244
2245                 /* There might be a SID for this account already - say an idmap entry */
2246
2247                 filter = talloc_asprintf(ctx,
2248                                 "(&(%s=%s)(|(objectClass=%s)(objectClass=%s)))",
2249                                  get_userattr_key2string(ldap_state->schema_ver,
2250                                          LDAP_ATTR_USER_SID),
2251                                  sid_string_talloc(ctx, sid),
2252                                  LDAP_OBJ_IDMAP_ENTRY,
2253                                  LDAP_OBJ_SID_ENTRY);
2254                 if (!filter) {
2255                         status = NT_STATUS_NO_MEMORY;
2256                         goto fn_exit;
2257                 }
2258
2259                 /* free old result before doing a new search */
2260                 if (result != NULL) {
2261                         ldap_msgfree(result);
2262                         result = NULL;
2263                 }
2264                 rc = smbldap_search_suffix(ldap_state->smbldap_state,
2265                                            filter, attr_list, &result);
2266
2267                 if ( rc != LDAP_SUCCESS ) {
2268                         goto fn_exit;
2269                 }
2270
2271                 num_result = ldap_count_entries(ldap_state->smbldap_state->ldap_struct, result);
2272
2273                 if (num_result > 1) {
2274                         DEBUG (0, ("ldapsam_add_sam_account: More than one user with specified Sid exists: bailing out!\n"));
2275                         goto fn_exit;
2276                 }
2277
2278                 /* Check if we need to update an existing entry */
2279                 if (num_result == 1) {
2280                         char *tmp;
2281
2282                         DEBUG(3,("ldapsam_add_sam_account: User exists without samba attributes: adding them\n"));
2283                         ldap_op = LDAP_MOD_REPLACE;
2284                         entry = ldap_first_entry (ldap_state->smbldap_state->ldap_struct, result);
2285                         tmp = smbldap_get_dn (ldap_state->smbldap_state->ldap_struct, entry);
2286                         if (!tmp) {
2287                                 goto fn_exit;
2288                         }
2289                         dn = talloc_asprintf(ctx, "%s", tmp);
2290                         SAFE_FREE(tmp);
2291                         if (!dn) {
2292                                 status = NT_STATUS_NO_MEMORY;
2293                                 goto fn_exit;
2294                         }
2295                 }
2296         }
2297
2298         if (num_result == 0) {
2299                 char *escape_username;
2300                 /* Check if we need to add an entry */
2301                 DEBUG(3,("ldapsam_add_sam_account: Adding new user\n"));
2302                 ldap_op = LDAP_MOD_ADD;
2303
2304                 escape_username = escape_rdn_val_string_alloc(username);
2305                 if (!escape_username) {
2306                         status = NT_STATUS_NO_MEMORY;
2307                         goto fn_exit;
2308                 }
2309
2310                 if (username[strlen(username)-1] == '$') {
2311                         dn = talloc_asprintf(ctx,
2312                                         "uid=%s,%s",
2313                                         escape_username,
2314                                         lp_ldap_machine_suffix());
2315                 } else {
2316                         dn = talloc_asprintf(ctx,
2317                                         "uid=%s,%s",
2318                                         escape_username,
2319                                         lp_ldap_user_suffix());
2320                 }
2321
2322                 SAFE_FREE(escape_username);
2323                 if (!dn) {
2324                         status = NT_STATUS_NO_MEMORY;
2325                         goto fn_exit;
2326                 }
2327         }
2328
2329         if (!init_ldap_from_sam(ldap_state, entry, &mods, newpwd,
2330                                 element_is_set_or_changed)) {
2331                 DEBUG(0, ("ldapsam_add_sam_account: init_ldap_from_sam failed!\n"));
2332                 if (mods != NULL) {
2333                         ldap_mods_free(mods, true);
2334                 }
2335                 goto fn_exit;
2336         }
2337
2338         if (mods == NULL) {
2339                 DEBUG(0,("ldapsam_add_sam_account: mods is empty: nothing to add for user: %s\n",pdb_get_username(newpwd)));
2340                 goto fn_exit;
2341         }
2342         switch ( ldap_state->schema_ver ) {
2343                 case SCHEMAVER_SAMBAACCOUNT:
2344                         smbldap_set_mod(&mods, LDAP_MOD_ADD, "objectclass", LDAP_OBJ_SAMBAACCOUNT);
2345                         break;
2346                 case SCHEMAVER_SAMBASAMACCOUNT:
2347                         smbldap_set_mod(&mods, LDAP_MOD_ADD, "objectclass", LDAP_OBJ_SAMBASAMACCOUNT);
2348                         break;
2349                 default:
2350                         DEBUG(0,("ldapsam_add_sam_account: invalid schema version specified\n"));
2351                         break;
2352         }
2353
2354         ret = ldapsam_modify_entry(my_methods,newpwd,dn,mods,ldap_op, element_is_set_or_changed);
2355         if (!NT_STATUS_IS_OK(ret)) {
2356                 DEBUG(0,("ldapsam_add_sam_account: failed to modify/add user with uid = %s (dn = %s)\n",
2357                          pdb_get_username(newpwd),dn));
2358                 ldap_mods_free(mods, true);
2359                 goto fn_exit;
2360         }
2361
2362         DEBUG(2,("ldapsam_add_sam_account: added: uid == %s in the LDAP database\n", pdb_get_username(newpwd)));
2363         ldap_mods_free(mods, true);
2364
2365         status = NT_STATUS_OK;
2366
2367   fn_exit:
2368
2369         TALLOC_FREE(ctx);
2370         SAFE_FREE(escape_user);
2371         if (result) {
2372                 ldap_msgfree(result);
2373         }
2374         return status;
2375 }
2376
2377 /**********************************************************************
2378  *********************************************************************/
2379
2380 static int ldapsam_search_one_group (struct ldapsam_privates *ldap_state,
2381                                      const char *filter,
2382                                      LDAPMessage ** result)
2383 {
2384         int scope = LDAP_SCOPE_SUBTREE;
2385         int rc;
2386         const char **attr_list;
2387
2388         attr_list = get_attr_list(NULL, groupmap_attr_list);
2389         rc = smbldap_search(ldap_state->smbldap_state,
2390                             lp_ldap_group_suffix (), scope,
2391                             filter, attr_list, 0, result);
2392         TALLOC_FREE(attr_list);
2393
2394         return rc;
2395 }
2396
2397 /**********************************************************************
2398  *********************************************************************/
2399
2400 static bool init_group_from_ldap(struct ldapsam_privates *ldap_state,
2401                                  GROUP_MAP *map, LDAPMessage *entry)
2402 {
2403         char *temp = NULL;
2404         TALLOC_CTX *ctx = talloc_init("init_group_from_ldap");
2405
2406         if (ldap_state == NULL || map == NULL || entry == NULL ||
2407                         ldap_state->smbldap_state->ldap_struct == NULL) {
2408                 DEBUG(0, ("init_group_from_ldap: NULL parameters found!\n"));
2409                 TALLOC_FREE(ctx);
2410                 return false;
2411         }
2412
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_GIDNUMBER),
2418                         ctx);
2419         if (!temp) {
2420                 DEBUG(0, ("init_group_from_ldap: Mandatory attribute %s not found\n", 
2421                         get_attr_key2string( groupmap_attr_list, LDAP_ATTR_GIDNUMBER)));
2422                 TALLOC_FREE(ctx);
2423                 return false;
2424         }
2425         DEBUG(2, ("init_group_from_ldap: Entry found for group: %s\n", temp));
2426
2427         map->gid = (gid_t)atol(temp);
2428
2429         TALLOC_FREE(temp);
2430         temp = smbldap_talloc_single_attribute(
2431                         ldap_state->smbldap_state->ldap_struct,
2432                         entry,
2433                         get_attr_key2string(groupmap_attr_list,
2434                                 LDAP_ATTR_GROUP_SID),
2435                         ctx);
2436         if (!temp) {
2437                 DEBUG(0, ("init_group_from_ldap: Mandatory attribute %s not found\n",
2438                         get_attr_key2string( groupmap_attr_list, LDAP_ATTR_GROUP_SID)));
2439                 TALLOC_FREE(ctx);
2440                 return false;
2441         }
2442
2443         if (!string_to_sid(&map->sid, temp)) {
2444                 DEBUG(1, ("SID string [%s] could not be read as a valid SID\n", temp));
2445                 TALLOC_FREE(ctx);
2446                 return false;
2447         }
2448
2449         TALLOC_FREE(temp);
2450         temp = smbldap_talloc_single_attribute(
2451                         ldap_state->smbldap_state->ldap_struct,
2452                         entry,
2453                         get_attr_key2string(groupmap_attr_list,
2454                                 LDAP_ATTR_GROUP_TYPE),
2455                         ctx);
2456         if (!temp) {
2457                 DEBUG(0, ("init_group_from_ldap: Mandatory attribute %s not found\n",
2458                         get_attr_key2string( groupmap_attr_list, LDAP_ATTR_GROUP_TYPE)));
2459                 TALLOC_FREE(ctx);
2460                 return false;
2461         }
2462         map->sid_name_use = (enum lsa_SidType)atol(temp);
2463
2464         if ((map->sid_name_use < SID_NAME_USER) ||
2465                         (map->sid_name_use > SID_NAME_UNKNOWN)) {
2466                 DEBUG(0, ("init_group_from_ldap: Unknown Group type: %d\n", map->sid_name_use));
2467                 TALLOC_FREE(ctx);
2468                 return false;
2469         }
2470
2471         TALLOC_FREE(temp);
2472         temp = smbldap_talloc_single_attribute(
2473                         ldap_state->smbldap_state->ldap_struct,
2474                         entry,
2475                         get_attr_key2string(groupmap_attr_list,
2476                                 LDAP_ATTR_DISPLAY_NAME),
2477                         ctx);
2478         if (!temp) {
2479                 temp = smbldap_talloc_single_attribute(
2480                                 ldap_state->smbldap_state->ldap_struct,
2481                                 entry,
2482                                 get_attr_key2string(groupmap_attr_list,
2483                                         LDAP_ATTR_CN),
2484                                 ctx);
2485                 if (!temp) {
2486                         DEBUG(0, ("init_group_from_ldap: Attributes cn not found either \
2487 for gidNumber(%lu)\n",(unsigned long)map->gid));
2488                         TALLOC_FREE(ctx);
2489                         return false;
2490                 }
2491         }
2492         fstrcpy(map->nt_name, temp);
2493
2494         TALLOC_FREE(temp);
2495         temp = smbldap_talloc_single_attribute(
2496                         ldap_state->smbldap_state->ldap_struct,
2497                         entry,
2498                         get_attr_key2string(groupmap_attr_list,
2499                                 LDAP_ATTR_DESC),
2500                         ctx);
2501         if (!temp) {
2502                 temp = talloc_strdup(ctx, "");
2503                 if (!temp) {
2504                         TALLOC_FREE(ctx);
2505                         return false;
2506                 }
2507         }
2508         fstrcpy(map->comment, temp);
2509
2510         if (lp_parm_bool(-1, "ldapsam", "trusted", false)) {
2511                 store_gid_sid_cache(&map->sid, map->gid);
2512         }
2513
2514         TALLOC_FREE(ctx);
2515         return true;
2516 }
2517
2518 /**********************************************************************
2519  *********************************************************************/
2520
2521 static NTSTATUS ldapsam_getgroup(struct pdb_methods *methods,
2522                                  const char *filter,
2523                                  GROUP_MAP *map)
2524 {
2525         struct ldapsam_privates *ldap_state =
2526                 (struct ldapsam_privates *)methods->private_data;
2527         LDAPMessage *result = NULL;
2528         LDAPMessage *entry = NULL;
2529         int count;
2530
2531         if (ldapsam_search_one_group(ldap_state, filter, &result)
2532             != LDAP_SUCCESS) {
2533                 return NT_STATUS_NO_SUCH_GROUP;
2534         }
2535
2536         count = ldap_count_entries(priv2ld(ldap_state), result);
2537
2538         if (count < 1) {
2539                 DEBUG(4, ("ldapsam_getgroup: Did not find group, filter was "
2540                           "%s\n", filter));
2541                 ldap_msgfree(result);
2542                 return NT_STATUS_NO_SUCH_GROUP;
2543         }
2544
2545         if (count > 1) {
2546                 DEBUG(1, ("ldapsam_getgroup: Duplicate entries for filter %s: "
2547                           "count=%d\n", filter, count));
2548                 ldap_msgfree(result);
2549                 return NT_STATUS_NO_SUCH_GROUP;
2550         }
2551
2552         entry = ldap_first_entry(priv2ld(ldap_state), result);
2553
2554         if (!entry) {
2555                 ldap_msgfree(result);
2556                 return NT_STATUS_UNSUCCESSFUL;
2557         }
2558
2559         if (!init_group_from_ldap(ldap_state, map, entry)) {
2560                 DEBUG(1, ("ldapsam_getgroup: init_group_from_ldap failed for "
2561                           "group filter %s\n", filter));
2562                 ldap_msgfree(result);
2563                 return NT_STATUS_NO_SUCH_GROUP;
2564         }
2565
2566         ldap_msgfree(result);
2567         return NT_STATUS_OK;
2568 }
2569
2570 /**********************************************************************
2571  *********************************************************************/
2572
2573 static NTSTATUS ldapsam_getgrsid(struct pdb_methods *methods, GROUP_MAP *map,
2574                                  DOM_SID sid)
2575 {
2576         char *filter = NULL;
2577         NTSTATUS status;
2578
2579         if (asprintf(&filter, "(&(objectClass=%s)(%s=%s))",
2580                 LDAP_OBJ_GROUPMAP,
2581                 get_attr_key2string(groupmap_attr_list, LDAP_ATTR_GROUP_SID),
2582                 sid_string_static(&sid)) < 0) {
2583                 return NT_STATUS_NO_MEMORY;
2584         }
2585
2586         status = ldapsam_getgroup(methods, filter, map);
2587         SAFE_FREE(filter);
2588         return status;
2589 }
2590
2591 /**********************************************************************
2592  *********************************************************************/
2593
2594 static NTSTATUS ldapsam_getgrgid(struct pdb_methods *methods, GROUP_MAP *map,
2595                                  gid_t gid)
2596 {
2597         char *filter = NULL;
2598         NTSTATUS status;
2599
2600         if (asprintf(&filter, "(&(objectClass=%s)(%s=%lu))",
2601                 LDAP_OBJ_GROUPMAP,
2602                 get_attr_key2string(groupmap_attr_list, LDAP_ATTR_GIDNUMBER),
2603                 (unsigned long)gid) < 0) {
2604                 return NT_STATUS_NO_MEMORY;
2605         }
2606
2607         status = ldapsam_getgroup(methods, filter, map);
2608         SAFE_FREE(filter);
2609         return status;
2610 }
2611
2612 /**********************************************************************
2613  *********************************************************************/
2614
2615 static NTSTATUS ldapsam_getgrnam(struct pdb_methods *methods, GROUP_MAP *map,
2616                                  const char *name)
2617 {
2618         char *filter = NULL;
2619         char *escape_name = escape_ldap_string_alloc(name);
2620         NTSTATUS status;
2621
2622         if (!escape_name) {
2623                 return NT_STATUS_NO_MEMORY;
2624         }
2625
2626         if (asprintf(&filter, "(&(objectClass=%s)(|(%s=%s)(%s=%s)))",
2627                 LDAP_OBJ_GROUPMAP,
2628                 get_attr_key2string(groupmap_attr_list, LDAP_ATTR_DISPLAY_NAME), escape_name,
2629                 get_attr_key2string(groupmap_attr_list, LDAP_ATTR_CN),
2630                 escape_name) < 0) {
2631                 SAFE_FREE(escape_name);
2632                 return NT_STATUS_NO_MEMORY;
2633         }
2634
2635         SAFE_FREE(escape_name);
2636         status = ldapsam_getgroup(methods, filter, map);
2637         SAFE_FREE(filter);
2638         return status;
2639 }
2640
2641 static bool ldapsam_extract_rid_from_entry(LDAP *ldap_struct,
2642                                            LDAPMessage *entry,
2643                                            const DOM_SID *domain_sid,
2644                                            uint32 *rid)
2645 {
2646         fstring str;
2647         DOM_SID sid;
2648
2649         if (!smbldap_get_single_attribute(ldap_struct, entry, "sambaSID",
2650                                           str, sizeof(str)-1)) {
2651                 DEBUG(10, ("Could not find sambaSID attribute\n"));
2652                 return False;
2653         }
2654
2655         if (!string_to_sid(&sid, str)) {
2656                 DEBUG(10, ("Could not convert string %s to sid\n", str));
2657                 return False;
2658         }
2659
2660         if (sid_compare_domain(&sid, domain_sid) != 0) {
2661                 DEBUG(10, ("SID %s is not in expected domain %s\n",
2662                            str, sid_string_static(domain_sid)));
2663                 return False;
2664         }
2665
2666         if (!sid_peek_rid(&sid, rid)) {
2667                 DEBUG(10, ("Could not peek into RID\n"));
2668                 return False;
2669         }
2670
2671         return True;
2672 }
2673
2674 static NTSTATUS ldapsam_enum_group_members(struct pdb_methods *methods,
2675                                            TALLOC_CTX *mem_ctx,
2676                                            const DOM_SID *group,
2677                                            uint32 **pp_member_rids,
2678                                            size_t *p_num_members)
2679 {
2680         struct ldapsam_privates *ldap_state =
2681                 (struct ldapsam_privates *)methods->private_data;
2682         struct smbldap_state *conn = ldap_state->smbldap_state;
2683         const char *id_attrs[] = { "memberUid", "gidNumber", NULL };
2684         const char *sid_attrs[] = { "sambaSID", NULL };
2685         NTSTATUS ret = NT_STATUS_UNSUCCESSFUL;
2686         LDAPMessage *result = NULL;
2687         LDAPMessage *entry;
2688         char *filter;
2689         char **values = NULL;
2690         char **memberuid;
2691         char *gidstr;
2692         int rc, count;
2693
2694         *pp_member_rids = NULL;
2695         *p_num_members = 0;
2696
2697         filter = talloc_asprintf(mem_ctx,
2698                                  "(&(objectClass=%s)"
2699                                  "(objectClass=%s)"
2700                                  "(sambaSID=%s))",
2701                                  LDAP_OBJ_POSIXGROUP,
2702                                  LDAP_OBJ_GROUPMAP,
2703                                  sid_string_talloc(mem_ctx, group));
2704         if (filter == NULL) {
2705                 ret = NT_STATUS_NO_MEMORY;
2706                 goto done;
2707         }
2708
2709         rc = smbldap_search(conn, lp_ldap_group_suffix(),
2710                             LDAP_SCOPE_SUBTREE, filter, id_attrs, 0,
2711                             &result);
2712
2713         if (rc != LDAP_SUCCESS)
2714                 goto done;
2715
2716         talloc_autofree_ldapmsg(mem_ctx, result);
2717
2718         count = ldap_count_entries(conn->ldap_struct, result);
2719
2720         if (count > 1) {
2721                 DEBUG(1, ("Found more than one groupmap entry for %s\n",
2722                           sid_string_static(group)));
2723                 ret = NT_STATUS_INTERNAL_DB_CORRUPTION;
2724                 goto done;
2725         }
2726
2727         if (count == 0) {
2728                 ret = NT_STATUS_NO_SUCH_GROUP;
2729                 goto done;
2730         }
2731
2732         entry = ldap_first_entry(conn->ldap_struct, result);
2733         if (entry == NULL)
2734                 goto done;
2735
2736         gidstr = smbldap_talloc_single_attribute(priv2ld(ldap_state), entry, "gidNumber", mem_ctx);
2737         if (!gidstr) {
2738                 DEBUG (0, ("ldapsam_enum_group_members: Unable to find the group's gid!\n"));
2739                 ret = NT_STATUS_INTERNAL_DB_CORRUPTION;
2740                 goto done;
2741         }
2742
2743         values = ldap_get_values(conn->ldap_struct, entry, "memberUid");
2744
2745         if (values) {
2746
2747                 filter = talloc_asprintf(mem_ctx, "(&(objectClass=%s)(|", LDAP_OBJ_SAMBASAMACCOUNT);
2748                 if (filter == NULL) {
2749                         ret = NT_STATUS_NO_MEMORY;
2750                         goto done;
2751                 }
2752
2753                 for (memberuid = values; *memberuid != NULL; memberuid += 1) {
2754                         char *escape_memberuid;
2755
2756                         escape_memberuid = escape_ldap_string_alloc(*memberuid);
2757                         if (escape_memberuid == NULL) {
2758                                 ret = NT_STATUS_NO_MEMORY;
2759                                 goto done;
2760                         }
2761                         
2762                         filter = talloc_asprintf_append_buffer(filter, "(uid=%s)", escape_memberuid);
2763                         if (filter == NULL) {
2764                                 SAFE_FREE(escape_memberuid);
2765                                 ret = NT_STATUS_NO_MEMORY;
2766                                 goto done;
2767                         }
2768
2769                         SAFE_FREE(escape_memberuid);
2770                 }
2771
2772                 filter = talloc_asprintf_append_buffer(filter, "))");
2773                 if (filter == NULL) {
2774                         ret = NT_STATUS_NO_MEMORY;
2775                         goto done;
2776                 }
2777
2778                 rc = smbldap_search(conn, lp_ldap_user_suffix(),
2779                                     LDAP_SCOPE_SUBTREE, filter, sid_attrs, 0,
2780                                     &result);
2781
2782                 if (rc != LDAP_SUCCESS)
2783                         goto done;
2784
2785                 count = ldap_count_entries(conn->ldap_struct, result);
2786                 DEBUG(10,("ldapsam_enum_group_members: found %d accounts\n", count));
2787
2788                 talloc_autofree_ldapmsg(mem_ctx, result);
2789
2790                 for (entry = ldap_first_entry(conn->ldap_struct, result);
2791                      entry != NULL;
2792                      entry = ldap_next_entry(conn->ldap_struct, entry))
2793                 {
2794                         char *sidstr;
2795                         DOM_SID sid;
2796                         uint32 rid;
2797
2798                         sidstr = smbldap_talloc_single_attribute(conn->ldap_struct,
2799                                                                  entry, "sambaSID",
2800                                                                  mem_ctx);
2801                         if (!sidstr) {
2802                                 DEBUG(0, ("Severe DB error, sambaSamAccount can't miss "
2803                                           "the sambaSID attribute\n"));
2804                                 ret = NT_STATUS_INTERNAL_DB_CORRUPTION;
2805                                 goto done;
2806                         }
2807
2808                         if (!string_to_sid(&sid, sidstr))
2809                                 goto done;
2810
2811                         if (!sid_check_is_in_our_domain(&sid)) {
2812                                 DEBUG(0, ("Inconsistent SAM -- group member uid not "
2813                                           "in our domain\n"));
2814                                 ret = NT_STATUS_INTERNAL_DB_CORRUPTION;
2815                                 goto done;
2816                         }
2817
2818                         sid_peek_rid(&sid, &rid);
2819
2820                         if (!add_rid_to_array_unique(mem_ctx, rid, pp_member_rids,
2821                                                 p_num_members)) {
2822                                 ret = NT_STATUS_NO_MEMORY;
2823                                 goto done;
2824                         }
2825                 }
2826         }
2827
2828         filter = talloc_asprintf(mem_ctx,
2829                                  "(&(objectClass=%s)"
2830                                  "(gidNumber=%s))",
2831                                  LDAP_OBJ_SAMBASAMACCOUNT,
2832                                  gidstr);
2833
2834         rc = smbldap_search(conn, lp_ldap_user_suffix(),
2835                             LDAP_SCOPE_SUBTREE, filter, sid_attrs, 0,
2836                             &result);
2837
2838         if (rc != LDAP_SUCCESS)
2839                 goto done;
2840
2841         talloc_autofree_ldapmsg(mem_ctx, result);
2842
2843         for (entry = ldap_first_entry(conn->ldap_struct, result);
2844              entry != NULL;
2845              entry = ldap_next_entry(conn->ldap_struct, entry))
2846         {
2847                 uint32 rid;
2848
2849                 if (!ldapsam_extract_rid_from_entry(conn->ldap_struct,
2850                                                     entry,
2851                                                     get_global_sam_sid(),
2852                                                     &rid)) {
2853                         DEBUG(0, ("Severe DB error, sambaSamAccount can't miss "
2854                                   "the sambaSID attribute\n"));
2855                         ret = NT_STATUS_INTERNAL_DB_CORRUPTION;
2856                         goto done;
2857                 }
2858
2859                 if (!add_rid_to_array_unique(mem_ctx, rid, pp_member_rids,
2860                                         p_num_members)) {
2861                         ret = NT_STATUS_NO_MEMORY;
2862                         goto done;
2863                 }
2864         }
2865
2866         ret = NT_STATUS_OK;
2867         
2868  done:
2869
2870         if (values)
2871                 ldap_value_free(values);
2872
2873         return ret;
2874 }
2875
2876 static NTSTATUS ldapsam_enum_group_memberships(struct pdb_methods *methods,
2877                                                TALLOC_CTX *mem_ctx,
2878                                                struct samu *user,
2879                                                DOM_SID **pp_sids,
2880                                                gid_t **pp_gids,
2881                                                size_t *p_num_groups)
2882 {
2883         struct ldapsam_privates *ldap_state =
2884                 (struct ldapsam_privates *)methods->private_data;
2885         struct smbldap_state *conn = ldap_state->smbldap_state;
2886         char *filter;
2887         const char *attrs[] = { "gidNumber", "sambaSID", NULL };
2888         char *escape_name;
2889         int rc, count;
2890         LDAPMessage *result = NULL;
2891         LDAPMessage *entry;
2892         NTSTATUS ret = NT_STATUS_UNSUCCESSFUL;
2893         size_t num_sids, num_gids;
2894         char *gidstr;
2895         gid_t primary_gid = -1;
2896
2897         *pp_sids = NULL;
2898         num_sids = 0;
2899
2900         if (pdb_get_username(user) == NULL) {
2901                 return NT_STATUS_INVALID_PARAMETER;
2902         }
2903
2904         escape_name = escape_ldap_string_alloc(pdb_get_username(user));
2905         if (escape_name == NULL)
2906                 return NT_STATUS_NO_MEMORY;
2907
2908         /* retrieve the users primary gid */
2909         filter = talloc_asprintf(mem_ctx,
2910                                  "(&(objectClass=%s)(uid=%s))",
2911                                  LDAP_OBJ_SAMBASAMACCOUNT,
2912                                  escape_name);
2913         if (filter == NULL) {
2914                 ret = NT_STATUS_NO_MEMORY;
2915                 goto done;
2916         }
2917
2918         rc = smbldap_search(conn, lp_ldap_user_suffix(),
2919                             LDAP_SCOPE_SUBTREE, filter, attrs, 0, &result);
2920
2921         if (rc != LDAP_SUCCESS)
2922                 goto done;
2923
2924         talloc_autofree_ldapmsg(mem_ctx, result);
2925
2926         count = ldap_count_entries(priv2ld(ldap_state), result);
2927
2928         switch (count) {
2929         case 0: 
2930                 DEBUG(1, ("User account [%s] not found!\n", pdb_get_username(user)));
2931                 ret = NT_STATUS_NO_SUCH_USER;
2932                 goto done;
2933         case 1:
2934                 entry = ldap_first_entry(priv2ld(ldap_state), result);
2935
2936                 gidstr = smbldap_talloc_single_attribute(priv2ld(ldap_state), entry, "gidNumber", mem_ctx);
2937                 if (!gidstr) {
2938                         DEBUG (1, ("Unable to find the member's gid!\n"));
2939                         ret = NT_STATUS_INTERNAL_DB_CORRUPTION;
2940                         goto done;
2941                 }
2942                 primary_gid = strtoul(gidstr, NULL, 10);
2943                 break;
2944         default:
2945                 DEBUG(1, ("found more than one account with the same user name ?!\n"));
2946                 ret = NT_STATUS_INTERNAL_DB_CORRUPTION;
2947                 goto done;
2948         }
2949
2950         filter = talloc_asprintf(mem_ctx,
2951                                  "(&(objectClass=%s)(|(memberUid=%s)(gidNumber=%d)))",
2952                                  LDAP_OBJ_POSIXGROUP, escape_name, primary_gid);
2953         if (filter == NULL) {
2954                 ret = NT_STATUS_NO_MEMORY;
2955                 goto done;
2956         }
2957
2958         rc = smbldap_search(conn, lp_ldap_group_suffix(),
2959                             LDAP_SCOPE_SUBTREE, filter, attrs, 0, &result);
2960
2961         if (rc != LDAP_SUCCESS)
2962                 goto done;
2963
2964         talloc_autofree_ldapmsg(mem_ctx, result);
2965
2966         num_gids = 0;
2967         *pp_gids = NULL;
2968
2969         num_sids = 0;
2970         *pp_sids = NULL;
2971
2972         /* We need to add the primary group as the first gid/sid */
2973
2974         if (!add_gid_to_array_unique(mem_ctx, primary_gid, pp_gids, &num_gids)) {
2975                 ret = NT_STATUS_NO_MEMORY;
2976                 goto done;
2977         }
2978
2979         /* This sid will be replaced later */
2980
2981         if (!add_sid_to_array_unique(mem_ctx, &global_sid_NULL, pp_sids, &num_sids)) {
2982                 ret = NT_STATUS_NO_MEMORY;
2983                 goto done;
2984         }
2985
2986         for (entry = ldap_first_entry(conn->ldap_struct, result);
2987              entry != NULL;
2988              entry = ldap_next_entry(conn->ldap_struct, entry))
2989         {
2990                 fstring str;
2991                 DOM_SID sid;
2992                 gid_t gid;
2993                 char *end;
2994
2995                 if (!smbldap_get_single_attribute(conn->ldap_struct,
2996                                                   entry, "sambaSID",
2997                                                   str, sizeof(str)-1))
2998                         continue;
2999
3000                 if (!string_to_sid(&sid, str))
3001                         goto done;
3002
3003                 if (!smbldap_get_single_attribute(conn->ldap_struct,
3004                                                   entry, "gidNumber",
3005                                                   str, sizeof(str)-1))
3006                         continue;
3007
3008                 gid = strtoul(str, &end, 10);
3009
3010                 if (PTR_DIFF(end, str) != strlen(str))
3011                         goto done;
3012
3013                 if (gid == primary_gid) {
3014                         sid_copy(&(*pp_sids)[0], &sid);
3015                 } else {
3016                         if (!add_gid_to_array_unique(mem_ctx, gid, pp_gids,
3017                                                 &num_gids)) {
3018                                 ret = NT_STATUS_NO_MEMORY;
3019                                 goto done;
3020                         }
3021                         if (!add_sid_to_array_unique(mem_ctx, &sid, pp_sids,
3022                                                 &num_sids)) {
3023                                 ret = NT_STATUS_NO_MEMORY;
3024                                 goto done;
3025                         }
3026                 }
3027         }
3028
3029         if (sid_compare(&global_sid_NULL, &(*pp_sids)[0]) == 0) {
3030                 DEBUG(3, ("primary group of [%s] not found\n",
3031                           pdb_get_username(user)));
3032                 goto done;
3033         }
3034
3035         *p_num_groups = num_sids;
3036
3037         ret = NT_STATUS_OK;
3038
3039  done:
3040
3041         SAFE_FREE(escape_name);
3042         return ret;
3043 }
3044
3045 /**********************************************************************
3046  * Augment a posixGroup object with a sambaGroupMapping domgroup
3047  *********************************************************************/
3048
3049 static NTSTATUS ldapsam_map_posixgroup(TALLOC_CTX *mem_ctx,
3050                                        struct ldapsam_privates *ldap_state,
3051                                        GROUP_MAP *map)
3052 {
3053         const char *filter, *dn;
3054         LDAPMessage *msg, *entry;
3055         LDAPMod **mods;
3056         int rc;
3057
3058         filter = talloc_asprintf(mem_ctx,
3059                                  "(&(objectClass=posixGroup)(gidNumber=%u))",
3060                                  map->gid);
3061         if (filter == NULL) {
3062                 return NT_STATUS_NO_MEMORY;
3063         }
3064
3065         rc = smbldap_search_suffix(ldap_state->smbldap_state, filter,
3066                                    get_attr_list(mem_ctx, groupmap_attr_list),
3067                                    &msg);
3068         talloc_autofree_ldapmsg(mem_ctx, msg);
3069
3070         if ((rc != LDAP_SUCCESS) ||
3071             (ldap_count_entries(ldap_state->smbldap_state->ldap_struct, msg) != 1) ||
3072             ((entry = ldap_first_entry(ldap_state->smbldap_state->ldap_struct, msg)) == NULL)) {
3073                 return NT_STATUS_NO_SUCH_GROUP;
3074         }
3075
3076         dn = smbldap_talloc_dn(mem_ctx, ldap_state->smbldap_state->ldap_struct, entry);
3077         if (dn == NULL) {
3078                 return NT_STATUS_NO_MEMORY;
3079         }
3080
3081         mods = NULL;
3082         smbldap_set_mod(&mods, LDAP_MOD_ADD, "objectClass",
3083                         "sambaGroupMapping");
3084         smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, entry, &mods, "sambaSid",
3085                          sid_string_static(&map->sid));
3086         smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, entry, &mods, "sambaGroupType",
3087                          talloc_asprintf(mem_ctx, "%d", map->sid_name_use));
3088         smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, entry, &mods, "displayName",
3089                          map->nt_name);
3090         smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, entry, &mods, "description",
3091                          map->comment);
3092         talloc_autofree_ldapmod(mem_ctx, mods);
3093
3094         rc = smbldap_modify(ldap_state->smbldap_state, dn, mods);
3095         if (rc != LDAP_SUCCESS) {
3096                 return NT_STATUS_ACCESS_DENIED;
3097         }
3098
3099         return NT_STATUS_OK;
3100 }
3101
3102 static NTSTATUS ldapsam_add_group_mapping_entry(struct pdb_methods *methods,
3103                                                 GROUP_MAP *map)
3104 {
3105         struct ldapsam_privates *ldap_state =
3106                 (struct ldapsam_privates *)methods->private_data;
3107         LDAPMessage *msg = NULL;
3108         LDAPMod **mods = NULL;
3109         const char *attrs[] = { NULL };
3110         char *filter;
3111
3112         char *dn;
3113         TALLOC_CTX *mem_ctx;
3114         NTSTATUS result;
3115
3116         DOM_SID sid;
3117
3118         int rc;
3119
3120         mem_ctx = talloc_new(NULL);
3121         if (mem_ctx == NULL) {
3122                 DEBUG(0, ("talloc_new failed\n"));
3123                 return NT_STATUS_NO_MEMORY;
3124         }
3125
3126         filter = talloc_asprintf(mem_ctx, "(sambaSid=%s)",
3127                                  sid_string_talloc(mem_ctx, &map->sid));
3128         if (filter == NULL) {
3129                 result = NT_STATUS_NO_MEMORY;
3130                 goto done;
3131         }
3132
3133         rc = smbldap_search(ldap_state->smbldap_state, lp_ldap_suffix(),
3134                             LDAP_SCOPE_SUBTREE, filter, attrs, True, &msg);
3135         talloc_autofree_ldapmsg(mem_ctx, msg);
3136
3137         if ((rc == LDAP_SUCCESS) &&
3138             (ldap_count_entries(ldap_state->smbldap_state->ldap_struct, msg) > 0)) {
3139
3140                 DEBUG(3, ("SID %s already present in LDAP, refusing to add "
3141                           "group mapping entry\n",
3142                           sid_string_static(&map->sid)));
3143                 result = NT_STATUS_GROUP_EXISTS;
3144                 goto done;
3145         }
3146
3147         switch (map->sid_name_use) {
3148
3149         case SID_NAME_DOM_GRP:
3150                 /* To map a domain group we need to have a posix group
3151                    to attach to. */
3152                 result = ldapsam_map_posixgroup(mem_ctx, ldap_state, map);
3153                 goto done;
3154                 break;
3155
3156         case SID_NAME_ALIAS:
3157                 if (!sid_check_is_in_our_domain(&map->sid) 
3158                         && !sid_check_is_in_builtin(&map->sid) ) 
3159                 {
3160                         DEBUG(3, ("Refusing to map sid %s as an alias, not in our domain\n",
3161                                   sid_string_static(&map->sid)));
3162                         result = NT_STATUS_INVALID_PARAMETER;
3163                         goto done;
3164                 }
3165                 break;
3166
3167         default:
3168                 DEBUG(3, ("Got invalid use '%s' for mapping\n",
3169                           sid_type_lookup(map->sid_name_use)));
3170                 result = NT_STATUS_INVALID_PARAMETER;
3171                 goto done;
3172         }
3173
3174         /* Domain groups have been mapped in a separate routine, we have to
3175          * create an alias now */
3176
3177         if (map->gid == -1) {
3178                 DEBUG(10, ("Refusing to map gid==-1\n"));
3179                 result = NT_STATUS_INVALID_PARAMETER;
3180                 goto done;
3181         }
3182
3183         if (pdb_gid_to_sid(map->gid, &sid)) {
3184                 DEBUG(3, ("Gid %d is already mapped to SID %s, refusing to "
3185                           "add\n", map->gid, sid_string_static(&sid)));
3186                 result = NT_STATUS_GROUP_EXISTS;
3187                 goto done;
3188         }
3189
3190         /* Ok, enough checks done. It's still racy to go ahead now, but that's
3191          * the best we can get out of LDAP. */
3192
3193         dn = talloc_asprintf(mem_ctx, "sambaSid=%s,%s",
3194                              sid_string_talloc(mem_ctx, &map->sid),
3195                              lp_ldap_group_suffix());
3196         if (dn == NULL) {
3197                 result = NT_STATUS_NO_MEMORY;
3198                 goto done;
3199         }
3200
3201         mods = NULL;
3202
3203         smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, NULL, &mods, "objectClass",
3204                          "sambaSidEntry");
3205         smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, NULL, &mods, "objectClass",
3206                          "sambaGroupMapping");
3207
3208         smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, NULL, &mods, "sambaSid",
3209                          sid_string_talloc(mem_ctx, &map->sid));
3210         smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, NULL, &mods, "sambaGroupType",
3211                          talloc_asprintf(mem_ctx, "%d", map->sid_name_use));
3212         smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, NULL, &mods, "displayName",
3213                          map->nt_name);
3214         smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, NULL, &mods, "description",
3215                          map->comment);
3216         smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, NULL, &mods, "gidNumber",
3217                          talloc_asprintf(mem_ctx, "%u", map->gid));
3218         talloc_autofree_ldapmod(mem_ctx, mods);
3219
3220         rc = smbldap_add(ldap_state->smbldap_state, dn, mods);
3221
3222         result = (rc == LDAP_SUCCESS) ?
3223                 NT_STATUS_OK : NT_STATUS_ACCESS_DENIED;
3224
3225  done:
3226         TALLOC_FREE(mem_ctx);
3227         return result;
3228 }
3229
3230 /**********************************************************************
3231  * Update a group mapping entry. We're quite strict about what can be changed:
3232  * Only the description and displayname may be changed. It simply does not
3233  * make any sense to change the SID, gid or the type in a mapping.
3234  *********************************************************************/
3235
3236 static NTSTATUS ldapsam_update_group_mapping_entry(struct pdb_methods *methods,
3237                                                    GROUP_MAP *map)
3238 {
3239         struct ldapsam_privates *ldap_state =
3240                 (struct ldapsam_privates *)methods->private_data;
3241         int rc;
3242         const char *filter, *dn;
3243         LDAPMessage *msg = NULL;
3244         LDAPMessage *entry = NULL;
3245         LDAPMod **mods = NULL;
3246         TALLOC_CTX *mem_ctx;
3247         NTSTATUS result;
3248
3249         mem_ctx = talloc_new(NULL);
3250         if (mem_ctx == NULL) {
3251                 DEBUG(0, ("talloc_new failed\n"));
3252                 return NT_STATUS_NO_MEMORY;
3253         }
3254
3255         /* Make 100% sure that sid, gid and type are not changed by looking up
3256          * exactly the values we're given in LDAP. */
3257
3258         filter = talloc_asprintf(mem_ctx, "(&(objectClass=%s)"
3259                                  "(sambaSid=%s)(gidNumber=%u)"
3260                                  "(sambaGroupType=%d))",
3261                                  LDAP_OBJ_GROUPMAP,
3262                                  sid_string_talloc(mem_ctx, &map->sid),
3263                                  map->gid, map->sid_name_use);
3264         if (filter == NULL) {
3265                 result = NT_STATUS_NO_MEMORY;
3266                 goto done;
3267         }
3268
3269         rc = smbldap_search_suffix(ldap_state->smbldap_state, filter,
3270                                    get_attr_list(mem_ctx, groupmap_attr_list),
3271                                    &msg);
3272         talloc_autofree_ldapmsg(mem_ctx, msg);
3273
3274         if ((rc != LDAP_SUCCESS) ||
3275             (ldap_count_entries(ldap_state->smbldap_state->ldap_struct, msg) != 1) ||
3276             ((entry = ldap_first_entry(ldap_state->smbldap_state->ldap_struct, msg)) == NULL)) {
3277                 result = NT_STATUS_NO_SUCH_GROUP;
3278                 goto done;
3279         }
3280
3281         dn = smbldap_talloc_dn(mem_ctx, ldap_state->smbldap_state->ldap_struct, entry);
3282
3283         if (dn == NULL) {
3284                 result = NT_STATUS_NO_MEMORY;
3285                 goto done;
3286         }
3287
3288         mods = NULL;
3289         smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, entry, &mods, "displayName",
3290                          map->nt_name);
3291         smbldap_make_mod(ldap_state->smbldap_state->ldap_struct, entry, &mods, "description",
3292                          map->comment);
3293         talloc_autofree_ldapmod(mem_ctx, mods);
3294
3295         if (mods == NULL) {
3296                 DEBUG(4, ("ldapsam_update_group_mapping_entry: mods is empty: "
3297                           "nothing to do\n"));
3298                 result = NT_STATUS_OK;
3299                 goto done;
3300         }
3301
3302         rc = smbldap_modify(ldap_state->smbldap_state, dn, mods);
3303
3304         if (rc != LDAP_SUCCESS) {
3305                 result = NT_STATUS_ACCESS_DENIED;
3306                 goto done;
3307         }
3308
3309         DEBUG(2, ("ldapsam_update_group_mapping_entry: successfully modified "
3310                   "group %lu in LDAP\n", (unsigned long)map->gid));
3311
3312         result = NT_STATUS_OK;
3313
3314  done:
3315         TALLOC_FREE(mem_ctx);
3316         return result;
3317 }
3318
3319 /**********************************************************************
3320  *********************************************************************/
3321
3322 static NTSTATUS ldapsam_delete_group_mapping_entry(struct pdb_methods *methods,
3323                                                    DOM_SID sid)
3324 {
3325         struct ldapsam_privates *priv =
3326                 (struct ldapsam_privates *)methods->private_data;
3327         LDAPMessage *msg, *entry;
3328         int rc;
3329         NTSTATUS result;
3330         TALLOC_CTX *mem_ctx;
3331         char *filter;
3332
3333         mem_ctx = talloc_new(NULL);
3334         if (mem_ctx == NULL) {
3335                 DEBUG(0, ("talloc_new failed\n"));
3336                 return NT_STATUS_NO_MEMORY;
3337         }
3338
3339         filter = talloc_asprintf(mem_ctx, "(&(objectClass=%s)(%s=%s))",
3340                                  LDAP_OBJ_GROUPMAP, LDAP_ATTRIBUTE_SID,
3341                                  sid_string_talloc(mem_ctx, &sid));
3342         if (filter == NULL) {
3343                 result = NT_STATUS_NO_MEMORY;
3344                 goto done;
3345         }
3346         rc = smbldap_search_suffix(priv->smbldap_state, filter,
3347                                    get_attr_list(mem_ctx, groupmap_attr_list),
3348                                    &msg);
3349         talloc_autofree_ldapmsg(mem_ctx, msg);
3350
3351         if ((rc != LDAP_SUCCESS) ||
3352             (ldap_count_entries(priv2ld(priv), msg) != 1) ||
3353             ((entry = ldap_first_entry(priv2ld(priv), msg)) == NULL)) {
3354                 result = NT_STATUS_NO_SUCH_GROUP;
3355                 goto done;
3356         }
3357
3358         rc = ldapsam_delete_entry(priv, mem_ctx, entry, LDAP_OBJ_GROUPMAP,
3359                                   get_attr_list(mem_ctx,
3360                                                 groupmap_attr_list_to_delete));
3361  
3362         if ((rc == LDAP_NAMING_VIOLATION) ||
3363             (rc == LDAP_OBJECT_CLASS_VIOLATION)) {
3364                 const char *attrs[] = { "sambaGroupType", "description",
3365                                         "displayName", "sambaSIDList",
3366                                         NULL };
3367
3368                 /* Second try. Don't delete the sambaSID attribute, this is
3369                    for "old" entries that are tacked on a winbind
3370                    sambaIdmapEntry. */
3371
3372                 rc = ldapsam_delete_entry(priv, mem_ctx, entry,
3373                                           LDAP_OBJ_GROUPMAP, attrs);
3374         }
3375
3376         if ((rc == LDAP_NAMING_VIOLATION) ||
3377             (rc == LDAP_OBJECT_CLASS_VIOLATION)) {
3378                 const char *attrs[] = { "sambaGroupType", "description",
3379                                         "displayName", "sambaSIDList",
3380                                         "gidNumber", NULL };
3381
3382                 /* Third try. This is a post-3.0.21 alias (containing only
3383                  * sambaSidEntry and sambaGroupMapping classes), we also have
3384                  * to delete the gidNumber attribute, only the sambaSidEntry
3385                  * remains */
3386
3387                 rc = ldapsam_delete_entry(priv, mem_ctx, entry,
3388                                           LDAP_OBJ_GROUPMAP, attrs);
3389         }
3390
3391         result = (rc == LDAP_SUCCESS) ? NT_STATUS_OK : NT_STATUS_UNSUCCESSFUL;
3392
3393  done:
3394         TALLOC_FREE(mem_ctx);
3395         return result;
3396  }
3397
3398 /**********************************************************************
3399  *********************************************************************/
3400
3401 static NTSTATUS ldapsam_setsamgrent(struct pdb_methods *my_methods,
3402                                     bool update)
3403 {
3404         struct ldapsam_privates *ldap_state =
3405                 (struct ldapsam_privates *)my_methods->private_data;
3406         char *filter = NULL;
3407         int rc;
3408         const char **attr_list;
3409
3410         filter = talloc_asprintf(NULL, "(objectclass=%s)", LDAP_OBJ_GROUPMAP);
3411         if (!filter) {
3412                 return NT_STATUS_NO_MEMORY;
3413         }
3414         attr_list = get_attr_list( NULL, groupmap_attr_list );
3415         rc = smbldap_search(ldap_state->smbldap_state, lp_ldap_group_suffix(),
3416                             LDAP_SCOPE_SUBTREE, filter,
3417                             attr_list, 0, &ldap_state->result);
3418         TALLOC_FREE(attr_list);
3419
3420         if (rc != LDAP_SUCCESS) {
3421                 DEBUG(0, ("ldapsam_setsamgrent: LDAP search failed: %s\n",
3422                           ldap_err2string(rc)));
3423                 DEBUG(3, ("ldapsam_setsamgrent: Query was: %s, %s\n",
3424                           lp_ldap_group_suffix(), filter));
3425                 ldap_msgfree(ldap_state->result);
3426                 ldap_state->result = NULL;
3427                 TALLOC_FREE(filter);
3428                 return NT_STATUS_UNSUCCESSFUL;
3429         }
3430
3431         TALLOC_FREE(filter);
3432
3433         DEBUG(2, ("ldapsam_setsamgrent: %d entries in the base!\n",
3434                   ldap_count_entries(ldap_state->smbldap_state->ldap_struct,
3435                                      ldap_state->result)));
3436
3437         ldap_state->entry =
3438                 ldap_first_entry(ldap_state->smbldap_state->ldap_struct,
3439                                  ldap_state->result);
3440         ldap_state->index = 0;
3441
3442         return NT_STATUS_OK;
3443 }
3444
3445 /**********************************************************************
3446  *********************************************************************/
3447
3448 static void ldapsam_endsamgrent(struct pdb_methods *my_methods)
3449 {
3450         ldapsam_endsampwent(my_methods);
3451 }
3452
3453 /**********************************************************************
3454  *********************************************************************/
3455
3456 static NTSTATUS ldapsam_getsamgrent(struct pdb_methods *my_methods,
3457                                     GROUP_MAP *map)
3458 {
3459         NTSTATUS ret = NT_STATUS_UNSUCCESSFUL;
3460         struct ldapsam_privates *ldap_state =
3461                 (struct ldapsam_privates *)my_methods->private_data;
3462         bool bret = False;
3463
3464         while (!bret) {
3465                 if (!ldap_state->entry)
3466                         return ret;
3467                 
3468                 ldap_state->index++;
3469                 bret = init_group_from_ldap(ldap_state, map,
3470                                             ldap_state->entry);
3471                 
3472                 ldap_state->entry =
3473                         ldap_next_entry(ldap_state->smbldap_state->ldap_struct,
3474                                         ldap_state->entry);     
3475         }
3476
3477         return NT_STATUS_OK;
3478 }
3479
3480 /**********************************************************************
3481  *********************************************************************/
3482
3483 static NTSTATUS ldapsam_enum_group_mapping(struct pdb_methods *methods,
3484                                            const DOM_SID *domsid, enum lsa_SidType sid_name_use,
3485                                            GROUP_MAP **pp_rmap,
3486                                            size_t *p_num_entries,
3487                                            bool unix_only)
3488 {
3489         GROUP_MAP map;
3490         size_t entries = 0;
3491
3492         *p_num_entries = 0;
3493         *pp_rmap = NULL;
3494
3495         if (!NT_STATUS_IS_OK(ldapsam_setsamgrent(methods, False))) {
3496                 DEBUG(0, ("ldapsam_enum_group_mapping: Unable to open "
3497                           "passdb\n"));
3498                 return NT_STATUS_ACCESS_DENIED;
3499         }
3500
3501         while (NT_STATUS_IS_OK(ldapsam_getsamgrent(methods, &map))) {
3502                 if (sid_name_use != SID_NAME_UNKNOWN &&
3503                     sid_name_use != map.sid_name_use) {
3504                         DEBUG(11,("ldapsam_enum_group_mapping: group %s is "
3505                                   "not of the requested type\n", map.nt_name));
3506                         continue;
3507                 }
3508                 if (unix_only==ENUM_ONLY_MAPPED && map.gid==-1) {
3509                         DEBUG(11,("ldapsam_enum_group_mapping: group %s is "
3510                                   "non mapped\n", map.nt_name));
3511                         continue;
3512                 }
3513
3514                 (*pp_rmap)=SMB_REALLOC_ARRAY((*pp_rmap), GROUP_MAP, entries+1);
3515                 if (!(*pp_rmap)) {
3516                         DEBUG(0,("ldapsam_enum_group_mapping: Unable to "
3517                                  "enlarge group map!\n"));
3518                         return NT_STATUS_UNSUCCESSFUL;
3519                 }
3520
3521                 (*pp_rmap)[entries] = map;
3522
3523                 entries += 1;
3524
3525         }
3526         ldapsam_endsamgrent(methods);
3527
3528         *p_num_entries = entries;
3529
3530         return NT_STATUS_OK;
3531 }
3532
3533 static NTSTATUS ldapsam_modify_aliasmem(struct pdb_methods *methods,
3534                                         const DOM_SID *alias,
3535                                         const DOM_SID *member,
3536                                         int modop)
3537 {
3538         struct ldapsam_privates *ldap_state =
3539                 (struct ldapsam_privates *)methods->private_data;
3540         char *dn = NULL;
3541         LDAPMessage *result = NULL;
3542         LDAPMessage *entry = NULL;
3543         int count;
3544         LDAPMod **mods = NULL;
3545         int rc;
3546         enum lsa_SidType type = SID_NAME_USE_NONE;
3547
3548         char *filter = NULL;
3549
3550         if (sid_check_is_in_builtin(alias)) {
3551                 type = SID_NAME_ALIAS;
3552         }
3553
3554         if (sid_check_is_in_our_domain(alias)) {
3555                 type = SID_NAME_ALIAS;
3556         }
3557
3558         if (type == SID_NAME_USE_NONE) {
3559                 DEBUG(5, ("SID %s is neither in builtin nor in our domain!\n",
3560                           sid_string_static(alias)));
3561                 return NT_STATUS_NO_SUCH_ALIAS;
3562         }
3563
3564         if (asprintf(&filter,
3565                      "(&(objectClass=%s)(sambaSid=%s)(sambaGroupType=%d))",
3566                      LDAP_OBJ_GROUPMAP, sid_string_static(alias),
3567                      type) < 0) {
3568                 return NT_STATUS_NO_MEMORY;
3569         }
3570
3571         if (ldapsam_search_one_group(ldap_state, filter,
3572                                      &result) != LDAP_SUCCESS) {
3573                 SAFE_FREE(filter);
3574                 return NT_STATUS_NO_SUCH_ALIAS;
3575         }
3576
3577         count = ldap_count_entries(ldap_state->smbldap_state->ldap_struct,
3578                                    result);
3579
3580         if (count < 1) {
3581                 DEBUG(4, ("ldapsam_modify_aliasmem: Did not find alias\n"));
3582                 ldap_msgfree(result);
3583                 SAFE_FREE(filter);
3584                 return NT_STATUS_NO_SUCH_ALIAS;
3585         }
3586
3587         if (count > 1) {
3588                 DEBUG(1, ("ldapsam_modify_aliasmem: Duplicate entries for "
3589                           "filter %s: count=%d\n", filter, count));
3590                 ldap_msgfree(result);
3591                 SAFE_FREE(filter);
3592                 return NT_STATUS_NO_SUCH_ALIAS;
3593         }
3594
3595         SAFE_FREE(filter);
3596
3597         entry = ldap_first_entry(ldap_state->smbldap_state->ldap_struct,
3598                                  result);
3599
3600         if (!entry) {
3601                 ldap_msgfree(result);
3602                 return NT_STATUS_UNSUCCESSFUL;
3603         }
3604
3605         dn = smbldap_get_dn(ldap_state->smbldap_state->ldap_struct, entry);
3606         if (!dn) {
3607                 ldap_msgfree(result);
3608                 return NT_STATUS_UNSUCCESSFUL;
3609         }
3610
3611         smbldap_set_mod(&mods, modop,
3612                         get_attr_key2string(groupmap_attr_list,
3613                                             LDAP_ATTR_SID_LIST),
3614                         sid_string_static(member));
3615
3616         rc = smbldap_modify(ldap_state->smbldap_state, dn, mods);
3617
3618         ldap_mods_free(mods, True);
3619         ldap_msgfree(result);
3620         SAFE_FREE(dn);
3621
3622         if (rc == LDAP_TYPE_OR_VALUE_EXISTS) {
3623                 return NT_STATUS_MEMBER_IN_ALIAS;
3624         }
3625
3626         if (rc == LDAP_NO_SUCH_ATTRIBUTE) {
3627                 return NT_STATUS_MEMBER_NOT_IN_ALIAS;
3628         }
3629
3630         if (rc != LDAP_SUCCESS) {
3631                 return NT_STATUS_UNSUCCESSFUL;
3632         }
3633
3634         return NT_STATUS_OK;
3635 }
3636
3637 static NTSTATUS ldapsam_add_aliasmem(struct pdb_methods *methods,
3638                                      const DOM_SID *alias,
3639                                      const DOM_SID *member)
3640 {
3641         return ldapsam_modify_aliasmem(methods, alias, member, LDAP_MOD_ADD);
3642 }
3643
3644 static NTSTATUS ldapsam_del_aliasmem(struct pdb_methods *methods,
3645                                      const DOM_SID *alias,
3646                                      const DOM_SID *member)
3647 {
3648         return ldapsam_modify_aliasmem(methods, alias, member,
3649                                        LDAP_MOD_DELETE);
3650 }
3651
3652 static NTSTATUS ldapsam_enum_aliasmem(struct pdb_methods *methods,
3653                                       const DOM_SID *alias,
3654                                       DOM_SID **pp_members,
3655                                       size_t *p_num_members)
3656 {
3657         struct ldapsam_privates *ldap_state =
3658                 (struct ldapsam_privates *)methods->private_data;
3659         LDAPMessage *result = NULL;
3660         LDAPMessage *entry = NULL;
3661         int count;
3662         char **values = NULL;
3663         int i;
3664         char *filter = NULL;
3665         size_t num_members = 0;
3666         enum lsa_SidType type = SID_NAME_USE_NONE;
3667
3668         *pp_members = NULL;
3669         *p_num_members = 0;
3670
3671         if (sid_check_is_in_builtin(alias)) {
3672                 type = SID_NAME_ALIAS;
3673         }
3674
3675         if (sid_check_is_in_our_domain(alias)) {
3676                 type = SID_NAME_ALIAS;
3677         }
3678
3679         if (type == SID_NAME_USE_NONE) {
3680                 DEBUG(5, ("SID %s is neither in builtin nor in our domain!\n",
3681                           sid_string_static(alias)));
3682                 return NT_STATUS_NO_SUCH_ALIAS;
3683         }
3684
3685         if (asprintf(&filter,
3686                      "(&(objectClass=%s)(sambaSid=%s)(sambaGroupType=%d))",
3687                      LDAP_OBJ_GROUPMAP, sid_string_static(alias),
3688                      type) < 0) {
3689                 return NT_STATUS_NO_MEMORY;
3690         }
3691
3692         if (ldapsam_search_one_group(ldap_state, filter,
3693                                      &result) != LDAP_SUCCESS) {
3694                 SAFE_FREE(filter);
3695                 return NT_STATUS_NO_SUCH_ALIAS;
3696         }
3697
3698         count = ldap_count_entries(ldap_state->smbldap_state->ldap_struct,
3699                                    result);
3700
3701         if (count < 1) {
3702                 DEBUG(4, ("ldapsam_enum_aliasmem: Did not find alias\n"));
3703                 ldap_msgfree(result);
3704                 SAFE_FREE(filter);
3705                 return NT_STATUS_NO_SUCH_ALIAS;
3706         }
3707
3708         if (count > 1) {
3709                 DEBUG(1, ("ldapsam_enum_aliasmem: Duplicate entries for "
3710                           "filter %s: count=%d\n", filter, count));
3711                 ldap_msgfree(result);
3712                 SAFE_FREE(filter);
3713                 return NT_STATUS_NO_SUCH_ALIAS;
3714         }
3715
3716         SAFE_FREE(filter);
3717
3718         entry = ldap_first_entry(ldap_state->smbldap_state->ldap_struct,
3719                                  result);
3720
3721         if (!entry) {
3722                 ldap_msgfree(result);
3723                 return NT_STATUS_UNSUCCESSFUL;
3724         }
3725
3726         values = ldap_get_values(ldap_state->smbldap_state->ldap_struct,
3727                                  entry,
3728                                  get_attr_key2string(groupmap_attr_list,
3729                                                      LDAP_ATTR_SID_LIST));
3730
3731         if (values == NULL) {
3732                 ldap_msgfree(result);
3733                 return NT_STATUS_OK;
3734         }
3735
3736         count = ldap_count_values(values);
3737
3738         for (i=0; i<count; i++) {
3739                 DOM_SID member;
3740
3741                 if (!string_to_sid(&member, values[i]))
3742                         continue;
3743
3744                 if (!add_sid_to_array(NULL, &member, pp_members, &num_members)) {
3745                         ldap_value_free(values);
3746                         ldap_msgfree(result);
3747                         return NT_STATUS_NO_MEMORY;
3748                 }
3749         }
3750
3751         *p_num_members = num_members;
3752         ldap_value_free(values);
3753         ldap_msgfree(result);
3754
3755         return NT_STATUS_OK;
3756 }
3757
3758 static NTSTATUS ldapsam_alias_memberships(struct pdb_methods *methods,
3759                                           TALLOC_CTX *mem_ctx,
3760                                           const DOM_SID *domain_sid,
3761                                           const DOM_SID *members,
3762                                           size_t num_members,
3763                                           uint32 **pp_alias_rids,
3764                                           size_t *p_num_alias_rids)
3765 {
3766         struct ldapsam_privates *ldap_state =
3767                 (struct ldapsam_privates *)methods->private_data;
3768         LDAP *ldap_struct;
3769
3770         const char *attrs[] = { LDAP_ATTRIBUTE_SID, NULL };
3771
3772         LDAPMessage *result = NULL;
3773         LDAPMessage *entry = NULL;
3774         int i;
3775         int rc;
3776         char *filter;
3777         enum lsa_SidType type = SID_NAME_USE_NONE;
3778
3779         if (sid_check_is_builtin(domain_sid)) {
3780                 type = SID_NAME_ALIAS;
3781         }
3782
3783         if (sid_check_is_domain(domain_sid)) {
3784                 type = SID_NAME_ALIAS;
3785         }
3786
3787         if (type == SID_NAME_USE_NONE) {
3788                 DEBUG(5, ("SID %s is neither builtin nor domain!\n",
3789                           sid_string_static(domain_sid)));
3790                 return NT_STATUS_UNSUCCESSFUL;
3791         }
3792
3793         filter = talloc_asprintf(mem_ctx,
3794                                  "(&(|(objectclass=%s)(sambaGroupType=%d))(|",
3795                                  LDAP_OBJ_GROUPMAP, type);
3796
3797         for (i=0; i<num_members; i++)
3798                 filter = talloc_asprintf(mem_ctx, "%s(sambaSIDList=%s)",
3799                                          filter,
3800                                          sid_string_talloc(mem_ctx,
3801                                                            &members[i]));
3802
3803         filter = talloc_asprintf(mem_ctx, "%s))", filter);
3804
3805         if (filter == NULL) {
3806                 return NT_STATUS_NO_MEMORY;
3807         }
3808
3809         rc = smbldap_search(ldap_state->smbldap_state, lp_ldap_group_suffix(),
3810                             LDAP_SCOPE_SUBTREE, filter, attrs, 0, &result);
3811
3812         if (rc != LDAP_SUCCESS)
3813                 return NT_STATUS_UNSUCCESSFUL;
3814
3815         ldap_struct = ldap_state->smbldap_state->ldap_struct;
3816
3817         for (entry = ldap_first_entry(ldap_struct, result);
3818              entry != NULL;
3819              entry = ldap_next_entry(ldap_struct, entry))
3820         {
3821                 fstring sid_str;
3822                 DOM_SID sid;
3823                 uint32 rid;
3824
3825                 if (!smbldap_get_single_attribute(ldap_struct, entry,
3826                                                   LDAP_ATTRIBUTE_SID,
3827                                                   sid_str,
3828                                                   sizeof(sid_str)-1))
3829                         continue;
3830
3831                 if (!string_to_sid(&sid, sid_str))
3832                         continue;
3833
3834                 if (!sid_peek_check_rid(domain_sid, &sid, &rid))
3835                         continue;
3836
3837                 if (!add_rid_to_array_unique(mem_ctx, rid, pp_alias_rids,
3838                                         p_num_alias_rids)) {
3839                         ldap_msgfree(result);
3840                         return NT_STATUS_NO_MEMORY;
3841                 }
3842         }
3843
3844         ldap_msgfree(result);
3845         return NT_STATUS_OK;
3846 }
3847
3848 static NTSTATUS ldapsam_set_account_policy_in_ldap(struct pdb_methods *methods,
3849                                                    int policy_index,
3850                                                    uint32 value)
3851 {
3852         NTSTATUS ntstatus = NT_STATUS_UNSUCCESSFUL;
3853         int rc;
3854         LDAPMod **mods = NULL;
3855         fstring value_string;
3856         const char *policy_attr = NULL;
3857
3858         struct ldapsam_privates *ldap_state =
3859                 (struct ldapsam_privates *)methods->private_data;
3860
3861         DEBUG(10,("ldapsam_set_account_policy_in_ldap\n"));
3862
3863         if (!ldap_state->domain_dn) {
3864                 return NT_STATUS_INVALID_PARAMETER;
3865         }
3866
3867         policy_attr = get_account_policy_attr(policy_index);
3868         if (policy_attr == NULL) {
3869                 DEBUG(0,("ldapsam_set_account_policy_in_ldap: invalid "
3870                          "policy\n"));
3871                 return ntstatus;
3872         }
3873
3874         slprintf(value_string, sizeof(value_string) - 1, "%i", value);
3875
3876         smbldap_set_mod(&mods, LDAP_MOD_REPLACE, policy_attr, value_string);
3877
3878         rc = smbldap_modify(ldap_state->smbldap_state, ldap_state->domain_dn,
3879                             mods);
3880
3881         ldap_mods_free(mods, True);
3882
3883         if (rc != LDAP_SUCCESS) {
3884                 return ntstatus;
3885         }
3886
3887         if (!cache_account_policy_set(policy_index, value)) {
3888                 DEBUG(0,("ldapsam_set_account_policy_in_ldap: failed to "
3889                          "update local tdb cache\n"));
3890                 return ntstatus;
3891         }
3892
3893         return NT_STATUS_OK;
3894 }
3895
3896 static NTSTATUS ldapsam_set_account_policy(struct pdb_methods *methods,
3897                                            int policy_index, uint32 value)
3898 {
3899         return ldapsam_set_account_policy_in_ldap(methods, policy_index,
3900                                                   value);
3901 }
3902
3903 static NTSTATUS ldapsam_get_account_policy_from_ldap(struct pdb_methods *methods,
3904                                                      int policy_index,
3905                                                      uint32 *value)
3906 {
3907         NTSTATUS ntstatus = NT_STATUS_UNSUCCESSFUL;
3908         LDAPMessage *result = NULL;
3909         LDAPMessage *entry = NULL;
3910         int count;
3911         int rc;
3912         char **vals = NULL;
3913         const char *policy_attr = NULL;
3914
3915         struct ldapsam_privates *ldap_state =
3916                 (struct ldapsam_privates *)methods->private_data;
3917
3918         const char *attrs[2];
3919
3920         DEBUG(10,("ldapsam_get_account_policy_from_ldap\n"));
3921
3922         if (!ldap_state->domain_dn) {
3923                 return NT_STATUS_INVALID_PARAMETER;
3924         }
3925
3926         policy_attr = get_account_policy_attr(policy_index);
3927         if (!policy_attr) {
3928                 DEBUG(0,("ldapsam_get_account_policy_from_ldap: invalid "
3929                          "policy index: %d\n", policy_index));
3930                 return ntstatus;
3931         }
3932
3933         attrs[0] = policy_attr;
3934         attrs[1] = NULL;
3935
3936         rc = smbldap_search(ldap_state->smbldap_state, ldap_state->domain_dn,
3937                             LDAP_SCOPE_BASE, "(objectclass=*)", attrs, 0,
3938                             &result);
3939
3940         if (rc != LDAP_SUCCESS) {
3941                 return ntstatus;
3942         }
3943
3944         count = ldap_count_entries(priv2ld(ldap_state), result);
3945         if (count < 1) {
3946                 goto out;
3947         }
3948
3949         entry = ldap_first_entry(priv2ld(ldap_state), result);
3950         if (entry == NULL) {
3951                 goto out;
3952         }
3953
3954         vals = ldap_get_values(priv2ld(ldap_state), entry, policy_attr);
3955         if (vals == NULL) {
3956                 goto out;
3957         }
3958
3959         *value = (uint32)atol(vals[0]);
3960         
3961         ntstatus = NT_STATUS_OK;
3962
3963 out:
3964         if (vals)
3965                 ldap_value_free(vals);
3966         ldap_msgfree(result);
3967
3968         return ntstatus;
3969 }
3970
3971 /* wrapper around ldapsam_get_account_policy_from_ldap(), handles tdb as cache 
3972
3973    - if user hasn't decided to use account policies inside LDAP just reuse the
3974      old tdb values
3975    
3976    - if there is a valid cache entry, return that
3977    - if there is an LDAP entry, update cache and return 
3978    - otherwise set to default, update cache and return
3979
3980    Guenther
3981 */
3982 static NTSTATUS ldapsam_get_account_policy(struct pdb_methods *methods,
3983                                            int policy_index, uint32 *value)
3984 {
3985         NTSTATUS ntstatus = NT_STATUS_UNSUCCESSFUL;
3986
3987         if (cache_account_policy_get(policy_index, value)) {
3988                 DEBUG(11,("ldapsam_get_account_policy: got valid value from "
3989                           "cache\n"));
3990                 return NT_STATUS_OK;
3991         }
3992
3993         ntstatus = ldapsam_get_account_policy_from_ldap(methods, policy_index,
3994                                                         value);
3995         if (NT_STATUS_IS_OK(ntstatus)) {
3996                 goto update_cache;
3997         }
3998
3999         DEBUG(10,("ldapsam_get_account_policy: failed to retrieve from "
4000                   "ldap\n"));
4001
4002 #if 0
4003         /* should we automagically migrate old tdb value here ? */
4004         if (account_policy_get(policy_index, value))
4005                 goto update_ldap;
4006
4007         DEBUG(10,("ldapsam_get_account_policy: no tdb for %d, trying "
4008                   "default\n", policy_index));
4009 #endif
4010
4011         if (!account_policy_get_default(policy_index, value)) {
4012                 return ntstatus;
4013         }
4014         
4015 /* update_ldap: */
4016  
4017         ntstatus = ldapsam_set_account_policy(methods, policy_index, *value);
4018         if (!NT_STATUS_IS_OK(ntstatus)) {
4019                 return ntstatus;
4020         }
4021                 
4022  update_cache:
4023  
4024         if (!cache_account_policy_set(policy_index, *value)) {
4025                 DEBUG(0,("ldapsam_get_account_policy: failed to update local "
4026                          "tdb as a cache\n"));
4027                 return NT_STATUS_UNSUCCESSFUL;
4028         }
4029
4030         return NT_STATUS_OK;
4031 }
4032
4033 static NTSTATUS ldapsam_lookup_rids(struct pdb_methods *methods,
4034                                     const DOM_SID *domain_sid,
4035                                     int num_rids,
4036                                     uint32 *rids,
4037                                     const char **names,
4038                                     enum lsa_SidType *attrs)
4039 {
4040         struct ldapsam_privates *ldap_state =
4041                 (struct ldapsam_privates *)methods->private_data;
4042         LDAPMessage *msg = NULL;
4043         LDAPMessage *entry;
4044         char *allsids = NULL;
4045         int i, rc, num_mapped;
4046         NTSTATUS result = NT_STATUS_NO_MEMORY;
4047         TALLOC_CTX *mem_ctx;
4048         LDAP *ld;
4049         bool is_builtin;
4050
4051         mem_ctx = talloc_new(NULL);
4052         if (mem_ctx == NULL) {
4053                 DEBUG(0, ("talloc_new failed\n"));
4054                 goto done;
4055         }
4056
4057         if (!sid_check_is_builtin(domain_sid) &&
4058             !sid_check_is_domain(domain_sid)) {
4059                 result = NT_STATUS_INVALID_PARAMETER;
4060                 goto done;
4061         }
4062
4063         for (i=0; i<num_rids; i++)
4064                 attrs[i] = SID_NAME_UNKNOWN;
4065
4066         allsids = talloc_strdup(mem_ctx, "");
4067         if (allsids == NULL) {
4068                 goto done;
4069         }
4070
4071         for (i=0; i<num_rids; i++) {
4072                 DOM_SID sid;
4073                 sid_compose(&sid, domain_sid, rids[i]);
4074                 allsids = talloc_asprintf_append_buffer(allsids, "(sambaSid=%s)",
4075                                                  sid_string_static(&sid));
4076                 if (allsids == NULL) {
4077                         goto done;
4078                 }
4079         }
4080
4081         /* First look for users */
4082
4083         {
4084                 char *filter;
4085                 const char *ldap_attrs[] = { "uid", "sambaSid", NULL };
4086
4087                 filter = talloc_asprintf(
4088                         mem_ctx, ("(&(objectClass=%s)(|%s))"),
4089                         LDAP_OBJ_SAMBASAMACCOUNT, allsids);
4090
4091                 if (filter == NULL) {
4092                         goto done;
4093                 }
4094
4095                 rc = smbldap_search(ldap_state->smbldap_state,
4096                                     lp_ldap_user_suffix(),
4097                                     LDAP_SCOPE_SUBTREE, filter, ldap_attrs, 0,
4098                                     &msg);
4099                 talloc_autofree_ldapmsg(mem_ctx, msg);
4100         }
4101
4102         if (rc != LDAP_SUCCESS)
4103                 goto done;
4104
4105         ld = ldap_state->smbldap_state->ldap_struct;
4106         num_mapped = 0;
4107
4108         for (entry = ldap_first_entry(ld, msg);
4109              entry != NULL;
4110              entry = ldap_next_entry(ld, entry)) {
4111                 uint32 rid;
4112                 int rid_index;
4113                 const char *name;
4114
4115                 if (!ldapsam_extract_rid_from_entry(ld, entry, domain_sid,
4116                                                     &rid)) {
4117                         DEBUG(2, ("Could not find sid from ldap entry\n"));
4118                         continue;
4119                 }
4120
4121                 name = smbldap_talloc_single_attribute(ld, entry, "uid",
4122                                                        names);
4123                 if (name == NULL) {
4124                         DEBUG(2, ("Could not retrieve uid attribute\n"));
4125                         continue;
4126                 }
4127
4128                 for (rid_index = 0; rid_index < num_rids; rid_index++) {
4129                         if (rid == rids[rid_index])
4130                                 break;
4131                 }
4132
4133                 if (rid_index == num_rids) {
4134                         DEBUG(2, ("Got a RID not asked for: %d\n", rid));
4135                         continue;
4136                 }
4137
4138                 attrs[rid_index] = SID_NAME_USER;
4139                 names[rid_index] = name;
4140                 num_mapped += 1;
4141         }
4142
4143         if (num_mapped == num_rids) {
4144                 /* No need to look for groups anymore -- we're done */
4145                 result = NT_STATUS_OK;
4146                 goto done;
4147         }
4148
4149         /* Same game for groups */
4150
4151         {
4152                 char *filter;
4153                 const char *ldap_attrs[] = { "cn", "displayName", "sambaSid",
4154                                              "sambaGroupType", NULL };
4155
4156                 filter = talloc_asprintf(
4157                         mem_ctx, "(&(objectClass=%s)(|%s))",
4158                         LDAP_OBJ_GROUPMAP, allsids);
4159                 if (filter == NULL) {
4160                         goto done;
4161                 }
4162
4163                 rc = smbldap_search(ldap_state->smbldap_state,
4164                                     lp_ldap_group_suffix(),
4165                                     LDAP_SCOPE_SUBTREE, filter, ldap_attrs, 0,
4166                                     &msg);
4167                 talloc_autofree_ldapmsg(mem_ctx, msg);
4168         }
4169
4170         if (rc != LDAP_SUCCESS)
4171                 goto done;
4172
4173         /* ldap_struct might have changed due to a reconnect */
4174
4175         ld = ldap_state->smbldap_state->ldap_struct;
4176
4177         /* For consistency checks, we already checked we're only domain or builtin */
4178
4179         is_builtin = sid_check_is_builtin(domain_sid);
4180
4181         for (entry = ldap_first_entry(ld, msg);
4182              entry != NULL;
4183              entry = ldap_next_entry(ld, entry))
4184         {
4185                 uint32 rid;
4186                 int rid_index;
4187                 const char *attr;
4188                 enum lsa_SidType type;
4189                 const char *dn = smbldap_talloc_dn(mem_ctx, ld, entry);
4190
4191                 attr = smbldap_talloc_single_attribute(ld, entry, "sambaGroupType",
4192                                                        mem_ctx);
4193                 if (attr == NULL) {
4194                         DEBUG(2, ("Could not extract type from ldap entry %s\n",
4195                                   dn));
4196                         continue;
4197                 }
4198
4199                 type = (enum lsa_SidType)atol(attr);
4200
4201                 /* Consistency checks */
4202                 if ((is_builtin && (type != SID_NAME_ALIAS)) ||
4203                     (!is_builtin && ((type != SID_NAME_ALIAS) &&
4204                                      (type != SID_NAME_DOM_GRP)))) {
4205                         DEBUG(2, ("Rejecting invalid group mapping entry %s\n", dn));
4206                 }
4207
4208                 if (!ldapsam_extract_rid_from_entry(ld, entry, domain_sid,
4209                                                     &rid)) {
4210                         DEBUG(2, ("Could not find sid from ldap entry %s\n", dn));
4211                         continue;
4212                 }
4213
4214                 attr = smbldap_talloc_single_attribute(ld, entry, "displayName", names);
4215
4216                 if (attr == NULL) {
4217                         DEBUG(10, ("Could not retrieve 'displayName' attribute from %s\n",
4218                                    dn));
4219                         attr = smbldap_talloc_single_attribute(ld, entry, "cn", names);
4220                 }
4221
4222                 if (attr == NULL) {
4223                         DEBUG(2, ("Could not retrieve naming attribute from %s\n",
4224                                   dn));
4225                         continue;
4226                 }
4227
4228                 for (rid_index = 0; rid_index < num_rids; rid_index++) {
4229                         if (rid == rids[rid_index])
4230                                 break;
4231                 }
4232
4233                 if (rid_index == num_rids) {
4234                         DEBUG(2, ("Got a RID not asked for: %d\n", rid));
4235                         continue;
4236                 }
4237
4238                 attrs[rid_index] = type;
4239                 names[rid_index] = attr;
4240                 num_mapped += 1;
4241         }
4242
4243         result = NT_STATUS_NONE_MAPPED;
4244
4245         if (num_mapped > 0)
4246                 result = (num_mapped == num_rids) ?
4247                         NT_STATUS_OK : STATUS_SOME_UNMAPPED;
4248  done:
4249         TALLOC_FREE(mem_ctx);
4250         return result;
4251 }
4252
4253 static char *get_ldap_filter(TALLOC_CTX *mem_ctx, const char *username)
4254 {
4255         char *filter = NULL;
4256         char *escaped = NULL;
4257         char *result = NULL;
4258
4259         asprintf(&filter, "(&%s(objectclass=sambaSamAccount))",
4260                  "(uid=%u)");
4261         if (filter == NULL) goto done;
4262
4263         escaped = escape_ldap_string_alloc(username);
4264         if (escaped == NULL) goto done;
4265
4266         result = talloc_string_sub(mem_ctx, filter, "%u", username);
4267
4268  done:
4269         SAFE_FREE(filter);
4270         SAFE_FREE(escaped);
4271
4272         return result;
4273 }
4274
4275 const char **talloc_attrs(TALLOC_CTX *mem_ctx, ...)
4276 {
4277         int i, num = 0;
4278         va_list ap;
4279         const char **result;
4280
4281         va_start(ap, mem_ctx);
4282         while (va_arg(ap, const char *) != NULL)
4283                 num += 1;
4284         va_end(ap);
4285
4286         if ((result = TALLOC_ARRAY(mem_ctx, const char *, num+1)) == NULL) {
4287                 return NULL;
4288         }
4289
4290         va_start(ap, mem_ctx);
4291         for (i=0; i<num; i++) {
4292                 result[i] = talloc_strdup(result, va_arg(ap, const char*));
4293                 if (result[i] == NULL) {
4294                         talloc_free(result);
4295                         return NULL;
4296                 }
4297         }
4298         va_end(ap);
4299
4300         result[num] = NULL;
4301         return result;
4302 }
4303
4304 struct ldap_search_state {
4305         struct smbldap_state *connection;
4306
4307         uint32 acct_flags;
4308         uint16 group_type;
4309
4310         const char *base;
4311         int scope;
4312         const char *filter;
4313         const char **attrs;
4314         int attrsonly;
4315         void *pagedresults_cookie;
4316
4317         LDAPMessage *entries, *current_entry;
4318         bool (*ldap2displayentry)(struct ldap_search_state *state,
4319                                   TALLOC_CTX *mem_ctx,
4320                                   LDAP *ld, LDAPMessage *entry,
4321                                   struct samr_displayentry *result);
4322 };
4323
4324 static bool ldapsam_search_firstpage(struct pdb_search *search)
4325 {
4326         struct ldap_search_state *state =
4327                 (struct ldap_search_state *)search->private_data;
4328         LDAP *ld;
4329         int rc = LDAP_OPERATIONS_ERROR;
4330
4331         state->entries = NULL;
4332
4333         if (state->connection->paged_results) {
4334                 rc = smbldap_search_paged(state->connection, state->base,
4335                                           state->scope, state->filter,
4336                                           state->attrs, state->attrsonly,
4337                                           lp_ldap_page_size(), &state->entries,
4338                                           &state->pagedresults_cookie);
4339         }
4340
4341         if ((rc != LDAP_SUCCESS) || (state->entries == NULL)) {
4342
4343                 if (state->entries != NULL) {
4344                         /* Left over from unsuccessful paged attempt */
4345                         ldap_msgfree(state->entries);
4346                         state->entries = NULL;
4347                 }
4348
4349                 rc = smbldap_search(state->connection, state->base,
4350                                     state->scope, state->filter, state->attrs,
4351                                     state->attrsonly, &state->entries);
4352
4353                 if ((rc != LDAP_SUCCESS) || (state->entries == NULL))
4354                         return False;
4355
4356                 /* Ok, the server was lying. It told us it could do paged
4357                  * searches when it could not. */
4358                 state->connection->paged_results = False;
4359         }
4360
4361         ld = state->connection->ldap_struct;
4362         if ( ld == NULL) {
4363                 DEBUG(5, ("Don't have an LDAP connection right after a "
4364                           "search\n"));
4365                 return False;
4366         }
4367         state->current_entry = ldap_first_entry(ld, state->entries);
4368
4369         if (state->current_entry == NULL) {
4370                 ldap_msgfree(state->entries);
4371                 state->entries = NULL;
4372         }
4373
4374         return True;
4375 }
4376
4377 static bool ldapsam_search_nextpage(struct pdb_search *search)
4378 {
4379         struct ldap_search_state *state =
4380                 (struct ldap_search_state *)search->private_data;
4381         int rc;
4382
4383         if (!state->connection->paged_results) {
4384                 /* There is no next page when there are no paged results */
4385                 return False;
4386         }
4387
4388         rc = smbldap_search_paged(state->connection, state->base,
4389                                   state->scope, state->filter, state->attrs,
4390                                   state->attrsonly, lp_ldap_page_size(),
4391                                   &state->entries,
4392                                   &state->pagedresults_cookie);
4393
4394         if ((rc != LDAP_SUCCESS) || (state->entries == NULL))
4395                 return False;
4396
4397         state->current_entry = ldap_first_entry(state->connection->ldap_struct, state->entries);
4398
4399         if (state->current_entry == NULL) {
4400                 ldap_msgfree(state->entries);
4401                 state->entries = NULL;
4402         }
4403
4404         return True;
4405 }
4406
4407 static bool ldapsam_search_next_entry(struct pdb_search *search,
4408                                       struct samr_displayentry *entry)
4409 {
4410         struct ldap_search_state *state =
4411                 (struct ldap_search_state *)search->private_data;
4412         bool result;
4413
4414  retry:
4415         if ((state->entries == NULL) && (state->pagedresults_cookie == NULL))
4416                 return False;
4417
4418         if ((state->entries == NULL) &&
4419             !ldapsam_search_nextpage(search))
4420                     return False;
4421
4422         result = state->ldap2displayentry(state, search->mem_ctx, state->connection->ldap_struct,
4423                                           state->current_entry, entry);
4424
4425         if (!result) {
4426                 char *dn;
4427                 dn = ldap_get_dn(state->connection->ldap_struct, state->current_entry);
4428                 DEBUG(5, ("Skipping entry %s\n", dn != NULL ? dn : "<NULL>"));
4429                 if (dn != NULL) ldap_memfree(dn);
4430         }
4431
4432         state->current_entry = ldap_next_entry(state->connection->ldap_struct, state->current_entry);
4433
4434         if (state->current_entry == NULL) {
4435                 ldap_msgfree(state->entries);
4436                 state->entries = NULL;
4437         }
4438
4439         if (!result) goto retry;
4440
4441         return True;
4442 }
4443
4444 static void ldapsam_search_end(struct pdb_search *search)
4445 {
4446         struct ldap_search_state *state =
4447                 (struct ldap_search_state *)search->private_data;
4448         int rc;
4449
4450         if (state->pagedresults_cookie == NULL)
4451                 return;
4452
4453         if (state->entries != NULL)
4454                 ldap_msgfree(state->entries);
4455
4456         state->entries = NULL;
4457         state->current_entry = NULL;
4458
4459         if (!state->connection->paged_results)
4460                 return;
4461
4462         /* Tell the LDAP server we're not interested in the rest anymore. */
4463
4464         rc = smbldap_search_paged(state->connection, state->base, state->scope,
4465                                   state->filter, state->attrs,
4466                                   state->attrsonly, 0, &state->entries,
4467                                   &state->pagedresults_cookie);
4468
4469         if (rc != LDAP_SUCCESS)
4470                 DEBUG(5, ("Could not end search properly\n"));
4471
4472         return;
4473 }
4474
4475 static bool ldapuser2displayentry(struct ldap_search_state *state,
4476                                   TALLOC_CTX *mem_ctx,
4477                                   LDAP *ld, LDAPMessage *entry,
4478                                   struct samr_displayentry *result)
4479 {
4480         char **vals;
4481         DOM_SID sid;
4482         uint32 acct_flags;
4483
4484         vals = ldap_get_values(ld, entry, "sambaAcctFlags");
4485         if ((vals == NULL) || (vals[0] == NULL)) {
4486                 DEBUG(5, ("\"sambaAcctFlags\" not found\n"));
4487                 return False;
4488         }
4489         acct_flags = pdb_decode_acct_ctrl(vals[0]);
4490         ldap_value_free(vals);
4491
4492         if ((state->acct_flags != 0) &&
4493             ((state->acct_flags & acct_flags) == 0))
4494                 return False;           
4495
4496         result->acct_flags = acct_flags;
4497         result->account_name = "";
4498         result->fullname = "";
4499         result->description = "";
4500
4501         vals = ldap_get_values(ld, entry, "uid");
4502         if ((vals == NULL) || (vals[0] == NULL)) {
4503                 DEBUG(5, ("\"uid\" not found\n"));
4504                 return False;
4505         }
4506         pull_utf8_talloc(mem_ctx,
4507                          CONST_DISCARD(char **, &result->account_name),
4508                          vals[0]);
4509         ldap_value_free(vals);
4510
4511         vals = ldap_get_values(ld, entry, "displayName");
4512         if ((vals == NULL) || (vals[0] == NULL))
4513                 DEBUG(8, ("\"displayName\" not found\n"));
4514         else
4515                 pull_utf8_talloc(mem_ctx,
4516                                  CONST_DISCARD(char **, &result->fullname),
4517                                  vals[0]);
4518         ldap_value_free(vals);
4519
4520         vals = ldap_get_values(ld, entry, "description");
4521         if ((vals == NULL) || (vals[0] == NULL))
4522                 DEBUG(8, ("\"description\" not found\n"));
4523         else
4524                 pull_utf8_talloc(mem_ctx,
4525                                  CONST_DISCARD(char **, &result->description),
4526                                  vals[0]);
4527         ldap_value_free(vals);
4528
4529         if ((result->account_name == NULL) ||
4530             (result->fullname == NULL) ||
4531             (result->description == NULL)) {
4532                 DEBUG(0, ("talloc failed\n"));
4533                 return False;
4534         }
4535         
4536         vals = ldap_get_values(ld, entry, "sambaSid");
4537         if ((vals == NULL) || (vals[0] == NULL)) {
4538                 DEBUG(0, ("\"objectSid\" not found\n"));
4539                 return False;
4540         }
4541
4542         if (!string_to_sid(&sid, vals[0])) {
4543                 DEBUG(0, ("Could not convert %s to SID\n", vals[0]));
4544                 ldap_value_free(vals);
4545                 return False;
4546         }
4547         ldap_value_free(vals);
4548
4549         if (!sid_peek_check_rid(get_global_sam_sid(), &sid, &result->rid)) {
4550                 DEBUG(0, ("sid %s does not belong to our domain\n",
4551                           sid_string_static(&sid)));
4552                 return False;
4553         }
4554
4555         return True;
4556 }
4557
4558
4559 static bool ldapsam_search_users(struct pdb_methods *methods,
4560                                  struct pdb_search *search,
4561                                  uint32 acct_flags)
4562 {
4563         struct ldapsam_privates *ldap_state =
4564                 (struct ldapsam_privates *)methods->private_data;
4565         struct ldap_search_state *state;
4566
4567         state = TALLOC_P(search->mem_ctx, struct ldap_search_state);
4568         if (state == NULL) {
4569                 DEBUG(0, ("talloc failed\n"));
4570                 return False;
4571         }
4572
4573         state->connection = ldap_state->smbldap_state;
4574
4575         if ((acct_flags != 0) && ((acct_flags & ACB_NORMAL) != 0))
4576                 state->base = lp_ldap_user_suffix();
4577         else if ((acct_flags != 0) &&
4578                  ((acct_flags & (ACB_WSTRUST|ACB_SVRTRUST|ACB_DOMTRUST)) != 0))
4579                 state->base = lp_ldap_machine_suffix();
4580         else
4581                 state->base = lp_ldap_suffix();
4582
4583         state->acct_flags = acct_flags;
4584         state->base = talloc_strdup(search->mem_ctx, state->base);
4585         state->scope = LDAP_SCOPE_SUBTREE;
4586         state->filter = get_ldap_filter(search->mem_ctx, "*");
4587         state->attrs = talloc_attrs(search->mem_ctx, "uid", "sambaSid",
4588                                     "displayName", "description",
4589                                     "sambaAcctFlags", NULL);
4590         state->attrsonly = 0;
4591         state->pagedresults_cookie = NULL;
4592         state->entries = NULL;
4593         state->ldap2displayentry = ldapuser2displayentry;
4594
4595         if ((state->filter == NULL) || (state->attrs == NULL)) {
4596                 DEBUG(0, ("talloc failed\n"));
4597                 return False;
4598         }
4599
4600         search->private_data = state;
4601         search->next_entry = ldapsam_search_next_entry;
4602         search->search_end = ldapsam_search_end;
4603
4604         return ldapsam_search_firstpage(search);
4605 }
4606
4607 static bool ldapgroup2displayentry(struct ldap_search_state *state,
4608                                    TALLOC_CTX *mem_ctx,
4609                                    LDAP *ld, LDAPMessage *entry,
4610                                    struct samr_displayentry *result)
4611 {
4612         char **vals;
4613         DOM_SID sid;
4614         uint16 group_type;
4615
4616         result->account_name = "";
4617         result->fullname = "";
4618         result->description = "";
4619
4620
4621         vals = ldap_get_values(ld, entry, "sambaGroupType");
4622         if ((vals == NULL) || (vals[0] == NULL)) {
4623                 DEBUG(5, ("\"sambaGroupType\" not found\n"));
4624                 if (vals != NULL) {
4625                         ldap_value_free(vals);
4626                 }
4627                 return False;
4628         }
4629
4630         group_type = atoi(vals[0]);
4631
4632         if ((state->group_type != 0) &&
4633             ((state->group_type != group_type))) {
4634                 ldap_value_free(vals);
4635                 return False;
4636         }
4637
4638         ldap_value_free(vals);
4639
4640         /* display name is the NT group name */
4641
4642         vals = ldap_get_values(ld, entry, "displayName");
4643         if ((vals == NULL) || (vals[0] == NULL)) {
4644                 DEBUG(8, ("\"displayName\" not found\n"));
4645
4646                 /* fallback to the 'cn' attribute */
4647                 vals = ldap_get_values(ld, entry, "cn");
4648                 if ((vals == NULL) || (vals[0] == NULL)) {
4649                         DEBUG(5, ("\"cn\" not found\n"));
4650                         return False;
4651                 }
4652                 pull_utf8_talloc(mem_ctx,
4653                                  CONST_DISCARD(char **, &result->account_name),
4654                                  vals[0]);
4655         }
4656         else {
4657                 pull_utf8_talloc(mem_ctx,
4658                                  CONST_DISCARD(char **, &result->account_name),
4659                                  vals[0]);
4660         }
4661
4662         ldap_value_free(vals);
4663
4664         vals = ldap_get_values(ld, entry, "description");
4665         if ((vals == NULL) || (vals[0] == NULL))
4666                 DEBUG(8, ("\"description\" not found\n"));
4667         else
4668                 pull_utf8_talloc(mem_ctx,
4669                                  CONST_DISCARD(char **, &result->description),
4670                                  vals[0]);
4671         ldap_value_free(vals);
4672
4673         if ((result->account_name == NULL) ||
4674             (result->fullname == NULL) ||
4675             (result->description == NULL)) {
4676                 DEBUG(0, ("talloc failed\n"));
4677                 return False;
4678         }
4679         
4680         vals = ldap_get_values(ld, entry, "sambaSid");
4681         if ((vals == NULL) || (vals[0] == NULL)) {
4682                 DEBUG(0, ("\"objectSid\" not found\n"));
4683                 if (vals != NULL) {
4684                         ldap_value_free(vals);
4685                 }
4686                 return False;
4687         }
4688
4689         if (!string_to_sid(&sid, vals[0])) {
4690                 DEBUG(0, ("Could not convert %s to SID\n", vals[0]));
4691                 return False;
4692         }
4693
4694         ldap_value_free(vals);
4695
4696         switch (group_type) {
4697                 case SID_NAME_DOM_GRP:
4698                 case SID_NAME_ALIAS:
4699
4700                         if (!sid_peek_check_rid(get_global_sam_sid(), &sid, &result->rid) 
4701                                 && !sid_peek_check_rid(&global_sid_Builtin, &sid, &result->rid)) 
4702                         {
4703                                 DEBUG(0, ("%s is not in our domain\n",
4704                                           sid_string_static(&sid)));
4705                                 return False;
4706                         }
4707                         break;
4708         
4709                 default:
4710                         DEBUG(0,("unkown group type: %d\n", group_type));
4711                         return False;
4712         }
4713         
4714         return True;
4715 }
4716
4717 static bool ldapsam_search_grouptype(struct pdb_methods *methods,
4718                                      struct pdb_search *search,
4719                                      const DOM_SID *sid,
4720                                      enum lsa_SidType type)
4721 {
4722         struct ldapsam_privates *ldap_state =
4723                 (struct ldapsam_privates *)methods->private_data;
4724         struct ldap_search_state *state;
4725
4726         state = TALLOC_P(search->mem_ctx, struct ldap_search_state);
4727         if (state == NULL) {
4728                 DEBUG(0, ("talloc failed\n"));
4729                 return False;
4730         }
4731
4732         state->connection = ldap_state->smbldap_state;
4733
4734         state->base = talloc_strdup(search->mem_ctx, lp_ldap_group_suffix());
4735         state->connection = ldap_state->smbldap_state;
4736         state->scope = LDAP_SCOPE_SUBTREE;
4737         state->filter = talloc_asprintf(search->mem_ctx,
4738                                         "(&(objectclass=sambaGroupMapping)"
4739                                         "(sambaGroupType=%d)(sambaSID=%s*))", 
4740                                         type, sid_string_static(sid));
4741         state->attrs = talloc_attrs(search->mem_ctx, "cn", "sambaSid",
4742                                     "displayName", "description",
4743                                     "sambaGroupType", NULL);
4744         state->attrsonly = 0;
4745         state->pagedresults_cookie = NULL;
4746         state->entries = NULL;
4747         state->group_type = type;
4748         state->ldap2displayentry = ldapgroup2displayentry;
4749
4750         if ((state->filter == NULL) || (state->attrs == NULL)) {
4751                 DEBUG(0, ("talloc failed\n"));
4752                 return False;
4753         }
4754
4755         search->private_data = state;
4756         search->next_entry = ldapsam_search_next_entry;
4757         search->search_end = ldapsam_search_end;
4758
4759         return ldapsam_search_firstpage(search);
4760 }
4761
4762 static bool ldapsam_search_groups(struct pdb_methods *methods,
4763                                   struct pdb_search *search)
4764 {
4765         return ldapsam_search_grouptype(methods, search, get_global_sam_sid(), SID_NAME_DOM_GRP);
4766 }
4767
4768 static bool ldapsam_search_aliases(struct pdb_methods *methods,
4769                                    struct pdb_search *search,
4770                                    const DOM_SID *sid)
4771 {
4772         return ldapsam_search_grouptype(methods, search, sid, SID_NAME_ALIAS);
4773 }
4774
4775 static bool ldapsam_rid_algorithm(struct pdb_methods *methods)
4776 {
4777         return False;
4778 }
4779
4780 static NTSTATUS ldapsam_get_new_rid(struct ldapsam_privates *priv,
4781                                     uint32 *rid)
4782 {
4783         struct smbldap_state *smbldap_state = priv->smbldap_state;
4784
4785         LDAPMessage *result = NULL;
4786         LDAPMessage *entry = NULL;
4787         LDAPMod **mods = NULL;
4788         NTSTATUS status;
4789         char *value;
4790         int rc;
4791         uint32 nextRid = 0;
4792         const char *dn;
4793
4794         TALLOC_CTX *mem_ctx;
4795
4796         mem_ctx = talloc_new(NULL);
4797         if (mem_ctx == NULL) {
4798                 DEBUG(0, ("talloc_new failed\n"));
4799                 return NT_STATUS_NO_MEMORY;
4800         }
4801
4802         status = smbldap_search_domain_info(smbldap_state, &result,
4803                                             get_global_sam_name(), False);
4804         if (!NT_STATUS_IS_OK(status)) {
4805                 DEBUG(3, ("Could not get domain info: %s\n",
4806                           nt_errstr(status)));
4807                 goto done;
4808         }
4809
4810         talloc_autofree_ldapmsg(mem_ctx, result);
4811
4812         entry = ldap_first_entry(priv2ld(priv), result);
4813         if (entry == NULL) {
4814                 DEBUG(0, ("Could not get domain info entry\n"));
4815                 status = NT_STATUS_INTERNAL_DB_CORRUPTION;
4816                 goto done;
4817         }
4818
4819         /* Find the largest of the three attributes "sambaNextRid",
4820            "sambaNextGroupRid" and "sambaNextUserRid". I gave up on the
4821            concept of differentiating between user and group rids, and will
4822            use only "sambaNextRid" in the future. But for compatibility
4823            reasons I look if others have chosen different strategies -- VL */
4824
4825         value = smbldap_talloc_single_attribute(priv2ld(priv), entry,
4826                                                 "sambaNextRid", mem_ctx);
4827         if (value != NULL) {
4828                 uint32 tmp = (uint32)strtoul(value, NULL, 10);
4829                 nextRid = MAX(nextRid, tmp);
4830         }
4831
4832         value = smbldap_talloc_single_attribute(priv2ld(priv), entry,
4833                                                 "sambaNextUserRid", mem_ctx);
4834         if (value != NULL) {
4835                 uint32 tmp = (uint32)strtoul(value, NULL, 10);
4836                 nextRid = MAX(nextRid, tmp);
4837         }
4838
4839         value = smbldap_talloc_single_attribute(priv2ld(priv), entry,
4840                                                 "sambaNextGroupRid", mem_ctx);
4841         if (value != NULL) {
4842                 uint32 tmp = (uint32)strtoul(value, NULL, 10);
4843                 nextRid = MAX(nextRid, tmp);
4844         }
4845
4846         if (nextRid == 0) {
4847                 nextRid = BASE_RID-1;
4848         }
4849
4850         nextRid += 1;
4851
4852         smbldap_make_mod(priv2ld(priv), entry, &mods, "sambaNextRid",
4853                          talloc_asprintf(mem_ctx, "%d", nextRid));
4854         talloc_autofree_ldapmod(mem_ctx, mods);
4855
4856         if ((dn = smbldap_talloc_dn(mem_ctx, priv2ld(priv), entry)) == NULL) {
4857                 status = NT_STATUS_NO_MEMORY;
4858                 goto done;
4859         }
4860
4861         rc = smbldap_modify(smbldap_state, dn, mods);
4862
4863         /* ACCESS_DENIED is used as a placeholder for "the modify failed,
4864          * please retry" */
4865
4866         status = (rc == LDAP_SUCCESS) ? NT_STATUS_OK : NT_STATUS_ACCESS_DENIED;
4867
4868  done:
4869         if (NT_STATUS_IS_OK(status)) {
4870                 *rid = nextRid;
4871         }
4872
4873         TALLOC_FREE(mem_ctx);
4874         return status;
4875 }
4876
4877 static NTSTATUS ldapsam_new_rid_internal(struct pdb_methods *methods, uint32 *rid)
4878 {
4879         int i;
4880
4881         for (i=0; i<10; i++) {
4882                 NTSTATUS result = ldapsam_get_new_rid(
4883                         (struct ldapsam_privates *)methods->private_data, rid);
4884                 if (NT_STATUS_IS_OK(result)) {
4885                         return result;
4886                 }
4887
4888                 if (!NT_STATUS_EQUAL(result, NT_STATUS_ACCESS_DENIED)) {
4889                         return result;
4890                 }
4891
4892                 /* The ldap update failed (maybe a race condition), retry */
4893         }
4894
4895         /* Tried 10 times, fail. */
4896         return NT_STATUS_ACCESS_DENIED;
4897 }
4898
4899 static bool ldapsam_new_rid(struct pdb_methods *methods, uint32 *rid)
4900 {
4901         NTSTATUS result = ldapsam_new_rid_internal(methods, rid);
4902         return NT_STATUS_IS_OK(result) ? True : False;
4903 }
4904
4905 static bool ldapsam_sid_to_id(struct pdb_methods *methods,
4906                               const DOM_SID *sid,
4907                               union unid_t *id, enum lsa_SidType *type)
4908 {
4909         struct ldapsam_privates *priv =
4910                 (struct ldapsam_privates *)methods->private_data;
4911         char *filter;
4912         const char *attrs[] = { "sambaGroupType", "gidNumber", "uidNumber",
4913                                 NULL };
4914         LDAPMessage *result = NULL;
4915         LDAPMessage *entry = NULL;
4916         bool ret = False;
4917         char *value;
4918         int rc;
4919
4920         TALLOC_CTX *mem_ctx;
4921
4922         mem_ctx = talloc_new(NULL);
4923         if (mem_ctx == NULL) {
4924                 DEBUG(0, ("talloc_new failed\n"));
4925                 return False;
4926         }
4927
4928         filter = talloc_asprintf(mem_ctx,
4929                                  "(&(sambaSid=%s)"
4930                                  "(|(objectClass=%s)(objectClass=%s)))",
4931                                  sid_string_talloc(mem_ctx, sid),
4932                                  LDAP_OBJ_GROUPMAP, LDAP_OBJ_SAMBASAMACCOUNT);
4933         if (filter == NULL) {
4934                 DEBUG(5, ("talloc_asprintf failed\n"));
4935                 goto done;
4936         }
4937
4938         rc = smbldap_search_suffix(priv->smbldap_state, filter,
4939                                    attrs, &result);
4940         if (rc != LDAP_SUCCESS) {
4941                 goto done;
4942         }
4943         talloc_autofree_ldapmsg(mem_ctx, result);
4944
4945         if (ldap_count_entries(priv2ld(priv), result) != 1) {
4946                 DEBUG(10, ("Got %d entries, expected one\n",
4947                            ldap_count_entries(priv2ld(priv), result)));
4948                 goto done;
4949         }
4950
4951         entry = ldap_first_entry(priv2ld(priv), result);
4952
4953         value = smbldap_talloc_single_attribute(priv2ld(priv), entry,
4954                                                 "sambaGroupType", mem_ctx);
4955
4956         if (value != NULL) {
4957                 const char *gid_str;
4958                 /* It's a group */
4959
4960                 gid_str = smbldap_talloc_single_attribute(
4961                         priv2ld(priv), entry, "gidNumber", mem_ctx);
4962                 if (gid_str == NULL) {
4963                         DEBUG(1, ("%s has sambaGroupType but no gidNumber\n",
4964                                   smbldap_talloc_dn(mem_ctx, priv2ld(priv),
4965                                                     entry)));
4966                         goto done;
4967                 }
4968
4969                 id->gid = strtoul(gid_str, NULL, 10);
4970                 *type = (enum lsa_SidType)strtoul(value, NULL, 10);
4971                 ret = True;
4972                 goto done;
4973         }
4974
4975         /* It must be a user */
4976
4977         value = smbldap_talloc_single_attribute(priv2ld(priv), entry,
4978                                                 "uidNumber", mem_ctx);
4979         if (value == NULL) {
4980                 DEBUG(1, ("Could not find uidNumber in %s\n",
4981                           smbldap_talloc_dn(mem_ctx, priv2ld(priv), entry)));
4982                 goto done;
4983         }
4984
4985         id->uid = strtoul(value, NULL, 10);
4986         *type = SID_NAME_USER;
4987
4988         ret = True;
4989  done:
4990         TALLOC_FREE(mem_ctx);
4991         return ret;
4992 }
4993
4994 /*
4995  * The following functions is called only if
4996  * ldapsam:trusted and ldapsam:editposix are
4997  * set to true
4998  */
4999
5000 /*
5001  * ldapsam_create_user creates a new
5002  * posixAccount and sambaSamAccount object
5003  * in the ldap users subtree
5004  *
5005  * The uid is allocated by winbindd.
5006  */
5007
5008 static NTSTATUS ldapsam_create_user(struct pdb_methods *my_methods,
5009                                     TALLOC_CTX *tmp_ctx, const char *name,
5010                                     uint32 acb_info, uint32 *rid)
5011 {
5012         struct ldapsam_privates *ldap_state = (struct ldapsam_privates *)my_methods->private_data;
5013         LDAPMessage *entry = NULL;
5014         LDAPMessage *result = NULL;
5015         uint32 num_result;
5016         bool is_machine = False;
5017         bool add_posix = False;
5018         LDAPMod **mods = NULL;
5019         struct samu *user;
5020         char *filter;
5021         char *username;
5022         char *homedir;
5023         char *gidstr;
5024         char *uidstr;
5025         char *shell;
5026         const char *dn = NULL;
5027         DOM_SID group_sid;
5028         DOM_SID user_sid;
5029         gid_t gid = -1;
5030         uid_t uid = -1;
5031         NTSTATUS ret;
5032         int rc;
5033         
5034         if (((acb_info & ACB_NORMAL) && name[strlen(name)-1] == '$') ||
5035               acb_info & ACB_WSTRUST ||
5036               acb_info & ACB_SVRTRUST ||
5037               acb_info & ACB_DOMTRUST) {
5038                 is_machine = True;
5039         }
5040
5041         username = escape_ldap_string_alloc(name);
5042         filter = talloc_asprintf(tmp_ctx, "(&(uid=%s)(objectClass=%s))",
5043                                  username, LDAP_OBJ_POSIXACCOUNT);
5044         SAFE_FREE(username);
5045
5046         rc = smbldap_search_suffix(ldap_state->smbldap_state, filter, NULL, &result);
5047         if (rc != LDAP_SUCCESS) {
5048                 DEBUG(0,("ldapsam_create_user: ldap search failed!\n"));
5049                 return NT_STATUS_UNSUCCESSFUL;
5050         }
5051         talloc_autofree_ldapmsg(tmp_ctx, result);
5052
5053         num_result = ldap_count_entries(priv2ld(ldap_state), result);
5054
5055         if (num_result > 1) {
5056                 DEBUG (0, ("ldapsam_create_user: More than one user with name [%s] ?!\n", name));
5057                 return NT_STATUS_INTERNAL_DB_CORRUPTION;
5058         }
5059         
5060         if (num_result == 1) {
5061                 char *tmp;
5062                 /* check if it is just a posix account.
5063                  * or if there is a sid attached to this entry
5064                  */
5065
5066                 entry = ldap_first_entry(priv2ld(ldap_state), result);
5067                 if (!entry) {
5068                         return NT_STATUS_UNSUCCESSFUL;
5069                 }
5070
5071                 tmp = smbldap_talloc_single_attribute(priv2ld(ldap_state), entry, "sambaSID", tmp_ctx);
5072                 if (tmp) {
5073                         DEBUG (1, ("ldapsam_create_user: The user [%s] already exist!\n", name));
5074                         return NT_STATUS_USER_EXISTS;
5075                 }
5076
5077                 /* it is just a posix account, retrieve the dn for later use */
5078                 dn = smbldap_talloc_dn(tmp_ctx, priv2ld(ldap_state), entry);
5079                 if (!dn) {
5080                         DEBUG(0,("ldapsam_create_user: Out of memory!\n"));
5081                         return NT_STATUS_NO_MEMORY;
5082                 }
5083         }
5084
5085         if (num_result == 0) {
5086                 add_posix = True;
5087         }
5088         
5089         /* Create the basic samu structure and generate the mods for the ldap commit */
5090         if (!NT_STATUS_IS_OK((ret = ldapsam_new_rid_internal(my_methods, rid)))) {
5091                 DEBUG(1, ("ldapsam_create_user: Could not allocate a new RID\n"));
5092                 return ret;
5093         }
5094
5095         sid_compose(&user_sid, get_global_sam_sid(), *rid);
5096
5097         user = samu_new(tmp_ctx);
5098         if (!user) {
5099                 DEBUG(1,("ldapsam_create_user: Unable to allocate user struct\n"));
5100                 return NT_STATUS_NO_MEMORY;
5101         }
5102
5103         if (!pdb_set_username(user, name, PDB_SET)) {
5104                 DEBUG(1,("ldapsam_create_user: Unable to fill user structs\n"));
5105                 return NT_STATUS_UNSUCCESSFUL;
5106         }
5107         if (!pdb_set_domain(user, get_global_sam_name(), PDB_SET)) {
5108                 DEBUG(1,("ldapsam_create_user: Unable to fill user structs\n"));
5109                 return NT_STATUS_UNSUCCESSFUL;
5110         }
5111         if (is_machine) {
5112                 if (acb_info & ACB_NORMAL) {
5113                         if (!pdb_set_acct_ctrl(user, ACB_WSTRUST, PDB_SET)) {
5114                                 DEBUG(1,("ldapsam_create_user: Unable to fill user structs\n"));
5115                                 return NT_STATUS_UNSUCCESSFUL;
5116                         }
5117                 } else {
5118                         if (!pdb_set_acct_ctrl(user, acb_info, PDB_SET)) {
5119                                 DEBUG(1,("ldapsam_create_user: Unable to fill user structs\n"));
5120                                 return NT_STATUS_UNSUCCESSFUL;
5121                         }
5122                 }
5123         } else {
5124                 if (!pdb_set_acct_ctrl(user, ACB_NORMAL | ACB_DISABLED, PDB_SET)) {
5125                         DEBUG(1,("ldapsam_create_user: Unable to fill user structs\n"));
5126                         return NT_STATUS_UNSUCCESSFUL;
5127                 }
5128         }
5129
5130         if (!pdb_set_user_sid(user, &user_sid, PDB_SET)) {
5131                 DEBUG(1,("ldapsam_create_user: Unable to fill user structs\n"));
5132                 return NT_STATUS_UNSUCCESSFUL;
5133         }
5134
5135         if (!init_ldap_from_sam(ldap_state, NULL, &mods, user, element_is_set_or_changed)) {
5136                 DEBUG(1,("ldapsam_create_user: Unable to fill user structs\n"));
5137                 return NT_STATUS_UNSUCCESSFUL;
5138         }
5139
5140         if (ldap_state->schema_ver != SCHEMAVER_SAMBASAMACCOUNT) {
5141                 DEBUG(1,("ldapsam_create_user: Unsupported schema version\n"));
5142         }
5143         smbldap_set_mod(&mods, LDAP_MOD_ADD, "objectClass", LDAP_OBJ_SAMBASAMACCOUNT);
5144
5145         if (add_posix) {
5146                 char *escape_name;
5147
5148                 DEBUG(3,("ldapsam_create_user: Creating new posix user\n"));
5149
5150                 /* retrieve the Domain Users group gid */
5151                 if (!sid_compose(&group_sid, get_global_sam_sid(), DOMAIN_GROUP_RID_USERS) ||
5152                     !sid_to_gid(&group_sid, &gid)) {
5153                         DEBUG (0, ("ldapsam_create_user: Unable to get the Domain Users gid: bailing out!\n"));
5154                         return NT_STATUS_INVALID_PRIMARY_GROUP;
5155                 }
5156
5157                 /* lets allocate a new userid for this user */
5158                 if (!winbind_allocate_uid(&uid)) {
5159                         DEBUG (0, ("ldapsam_create_user: Unable to allocate a new user id: bailing out!\n"));
5160                         return NT_STATUS_UNSUCCESSFUL;
5161                 }
5162
5163
5164                 if (is_machine) {
5165                         /* TODO: choose a more appropriate default for machines */
5166                         homedir = talloc_sub_specified(tmp_ctx, lp_template_homedir(), "SMB_workstations_home", ldap_state->domain_name, uid, gid);
5167                         shell = talloc_strdup(tmp_ctx, "/bin/false");
5168                 } else {
5169                         homedir = talloc_sub_specified(tmp_ctx, lp_template_homedir(), name, ldap_state->domain_name, uid, gid);
5170                         shell = talloc_sub_specified(tmp_ctx, lp_template_shell(), name, ldap_state->domain_name, uid, gid);
5171                 }
5172                 uidstr = talloc_asprintf(tmp_ctx, "%d", uid);
5173                 gidstr = talloc_asprintf(tmp_ctx, "%d", gid);
5174
5175                 escape_name = escape_rdn_val_string_alloc(name);
5176                 if (!escape_name) {
5177                         DEBUG (0, ("ldapsam_create_user: Out of memory!\n"));
5178                         return NT_STATUS_NO_MEMORY;
5179                 }
5180
5181                 if (is_machine) {
5182                         dn = talloc_asprintf(tmp_ctx, "uid=%s,%s", escape_name, lp_ldap_machine_suffix ());
5183                 } else {
5184                         dn = talloc_asprintf(tmp_ctx, "uid=%s,%s", escape_name, lp_ldap_user_suffix ());
5185                 }
5186
5187                 SAFE_FREE(escape_name);
5188
5189                 if (!homedir || !shell || !uidstr || !gidstr || !dn) {
5190                         DEBUG (0, ("ldapsam_create_user: Out of memory!\n"));
5191                         return NT_STATUS_NO_MEMORY;
5192                 }
5193
5194                 smbldap_set_mod(&mods, LDAP_MOD_ADD, "objectClass", LDAP_OBJ_ACCOUNT);
5195                 smbldap_set_mod(&mods, LDAP_MOD_ADD, "objectClass", LDAP_OBJ_POSIXACCOUNT);
5196                 smbldap_set_mod(&mods, LDAP_MOD_ADD, "cn", name);
5197                 smbldap_set_mod(&mods, LDAP_MOD_ADD, "uidNumber", uidstr);
5198                 smbldap_set_mod(&mods, LDAP_MOD_ADD, "gidNumber", gidstr);
5199                 smbldap_set_mod(&mods, LDAP_MOD_ADD, "homeDirectory", homedir);
5200                 smbldap_set_mod(&mods, LDAP_MOD_ADD, "loginShell", shell);
5201         }
5202
5203         talloc_autofree_ldapmod(tmp_ctx, mods);
5204
5205         if (add_posix) {        
5206                 rc = smbldap_add(ldap_state->smbldap_state, dn, mods);
5207         } else {
5208                 rc = smbldap_modify(ldap_state->smbldap_state, dn, mods);
5209         }       
5210
5211         if (rc != LDAP_SUCCESS) {
5212                 DEBUG(0,("ldapsam_create_user: failed to create a new user [%s] (dn = %s)\n", name ,dn));
5213                 return NT_STATUS_UNSUCCESSFUL;
5214         }
5215
5216         DEBUG(2,("ldapsam_create_user: added account [%s] in the LDAP database\n", name));
5217
5218         flush_pwnam_cache();
5219
5220         return NT_STATUS_OK;
5221 }
5222
5223 static NTSTATUS ldapsam_delete_user(struct pdb_methods *my_methods, TALLOC_CTX *tmp_ctx, struct samu *sam_acct)
5224 {
5225         struct ldapsam_privates *ldap_state = (struct ldapsam_privates *)my_methods->private_data;
5226         LDAPMessage *result = NULL;
5227         LDAPMessage *entry = NULL;
5228         int num_result;
5229         const char *dn;
5230         char *filter;
5231         int rc;
5232
5233         DEBUG(0,("ldapsam_delete_user: Attempt to delete user [%s]\n", pdb_get_username(sam_acct)));
5234         
5235         filter = talloc_asprintf(tmp_ctx,
5236                                  "(&(uid=%s)"
5237                                  "(objectClass=%s)"
5238                                  "(objectClass=%s))",
5239                                  pdb_get_username(sam_acct),
5240                                  LDAP_OBJ_POSIXACCOUNT,
5241                                  LDAP_OBJ_SAMBASAMACCOUNT);
5242         if (filter == NULL) {
5243                 return NT_STATUS_NO_MEMORY;
5244         }
5245
5246         rc = smbldap_search_suffix(ldap_state->smbldap_state, filter, NULL, &result);
5247         if (rc != LDAP_SUCCESS) {
5248                 DEBUG(0,("ldapsam_delete_user: user search failed!\n"));
5249                 return NT_STATUS_UNSUCCESSFUL;
5250         }
5251         talloc_autofree_ldapmsg(tmp_ctx, result);
5252
5253         num_result = ldap_count_entries(priv2ld(ldap_state), result);
5254
5255         if (num_result == 0) {
5256                 DEBUG(0,("ldapsam_delete_user: user not found!\n"));
5257                 return NT_STATUS_NO_SUCH_USER;
5258         }
5259
5260         if (num_result > 1) {
5261                 DEBUG (0, ("ldapsam_delete_user: More than one user with name [%s] ?!\n", pdb_get_username(sam_acct)));
5262                 return NT_STATUS_INTERNAL_DB_CORRUPTION;
5263         }
5264
5265         entry = ldap_first_entry(priv2ld(ldap_state), result);
5266         if (!entry) {
5267                 return NT_STATUS_UNSUCCESSFUL;
5268         }
5269
5270         /* it is just a posix account, retrieve the dn for later use */
5271         dn = smbldap_talloc_dn(tmp_ctx, priv2ld(ldap_state), entry);
5272         if (!dn) {
5273                 DEBUG(0,("ldapsam_delete_user: Out of memory!\n"));
5274                 return NT_STATUS_NO_MEMORY;
5275         }
5276
5277         rc = smbldap_delete(ldap_state->smbldap_state, dn);
5278         if (rc != LDAP_SUCCESS) {
5279                 return NT_STATUS_UNSUCCESSFUL;
5280         }
5281
5282         flush_pwnam_cache();
5283
5284         return NT_STATUS_OK;
5285 }
5286
5287 /*
5288  * ldapsam_create_group creates a new
5289  * posixGroup and sambaGroupMapping object
5290  * in the ldap groups subtree
5291  *
5292  * The gid is allocated by winbindd.
5293  */
5294
5295 static NTSTATUS ldapsam_create_dom_group(struct pdb_methods *my_methods,
5296                                          TALLOC_CTX *tmp_ctx,
5297                                          const char *name,
5298                                          uint32 *rid)
5299 {
5300         struct ldapsam_privates *ldap_state = (struct ldapsam_privates *)my_methods->private_data;
5301         NTSTATUS ret;
5302         LDAPMessage *entry = NULL;
5303         LDAPMessage *result = NULL;
5304         uint32 num_result;
5305         bool is_new_entry = False;
5306         LDAPMod **mods = NULL;
5307         char *filter;
5308         char *groupsidstr;
5309         char *groupname;
5310         char *grouptype;
5311         char *gidstr;
5312         const char *dn = NULL;
5313         DOM_SID group_sid;
5314         gid_t gid = -1;
5315         int rc;
5316         
5317         groupname = escape_ldap_string_alloc(name);
5318         filter = talloc_asprintf(tmp_ctx, "(&(cn=%s)(objectClass=%s))",
5319                                  groupname, LDAP_OBJ_POSIXGROUP);
5320         SAFE_FREE(groupname);
5321
5322         rc = smbldap_search_suffix(ldap_state->smbldap_state, filter, NULL, &result);
5323         if (rc != LDAP_SUCCESS) {
5324                 DEBUG(0,("ldapsam_create_group: ldap search failed!\n"));
5325                 return NT_STATUS_UNSUCCESSFUL;
5326         }
5327         talloc_autofree_ldapmsg(tmp_ctx, result);
5328
5329         num_result = ldap_count_entries(priv2ld(ldap_state), result);
5330
5331         if (num_result > 1) {
5332                 DEBUG (0, ("ldapsam_create_group: There exists more than one group with name [%s]: bailing out!\n", name));
5333                 return NT_STATUS_INTERNAL_DB_CORRUPTION;
5334         }
5335         
5336         if (num_result == 1) {
5337                 char *tmp;
5338                 /* check if it is just a posix group.
5339                  * or if there is a sid attached to this entry
5340                  */
5341
5342                 entry = ldap_first_entry(priv2ld(ldap_state), result);
5343                 if (!entry) {
5344                         return NT_STATUS_UNSUCCESSFUL;
5345                 }
5346
5347                 tmp = smbldap_talloc_single_attribute(priv2ld(ldap_state), entry, "sambaSID", tmp_ctx);
5348                 if (tmp) {
5349                         DEBUG (1, ("ldapsam_create_group: The group [%s] already exist!\n", name));
5350                         return NT_STATUS_GROUP_EXISTS;
5351                 }
5352
5353                 /* it is just a posix group, retrieve the gid and the dn for later use */
5354                 tmp = smbldap_talloc_single_attribute(priv2ld(ldap_state), entry, "gidNumber", tmp_ctx);
5355                 if (!tmp) {
5356                         DEBUG (1, ("ldapsam_create_group: Couldn't retrieve the gidNumber for [%s]?!?!\n", name));
5357                         return NT_STATUS_INTERNAL_DB_CORRUPTION;
5358                 }
5359                 
5360                 gid = strtoul(tmp, NULL, 10);
5361
5362                 dn = smbldap_talloc_dn(tmp_ctx, priv2ld(ldap_state), entry);
5363                 if (!dn) {
5364                         DEBUG(0,("ldapsam_create_group: Out of memory!\n"));
5365                         return NT_STATUS_NO_MEMORY;
5366                 }
5367         }
5368
5369         if (num_result == 0) {
5370                 char *escape_name;
5371
5372                 DEBUG(3,("ldapsam_create_user: Creating new posix group\n"));
5373
5374                 is_new_entry = True;
5375         
5376                 /* lets allocate a new groupid for this group */
5377                 if (!winbind_allocate_gid(&gid)) {
5378                         DEBUG (0, ("ldapsam_create_group: Unable to allocate a new group id: bailing out!\n"));
5379                         return NT_STATUS_UNSUCCESSFUL;
5380                 }
5381
5382                 gidstr = talloc_asprintf(tmp_ctx, "%d", gid);
5383
5384                 escape_name = escape_rdn_val_string_alloc(name);
5385                 if (!escape_name) {
5386                         DEBUG (0, ("ldapsam_create_group: Out of memory!\n"));
5387                         return NT_STATUS_NO_MEMORY;
5388                 }
5389
5390                 dn = talloc_asprintf(tmp_ctx, "cn=%s,%s", escape_name, lp_ldap_group_suffix());
5391
5392                 SAFE_FREE(escape_name);
5393
5394                 if (!gidstr || !dn) {
5395                         DEBUG (0, ("ldapsam_create_group: Out of memory!\n"));
5396                         return NT_STATUS_NO_MEMORY;
5397                 }
5398
5399                 smbldap_set_mod(&mods, LDAP_MOD_ADD, "objectclass", LDAP_OBJ_POSIXGROUP);
5400                 smbldap_set_mod(&mods, LDAP_MOD_ADD, "cn", name);
5401                 smbldap_set_mod(&mods, LDAP_MOD_ADD, "gidNumber", gidstr);
5402         }
5403
5404         if (!NT_STATUS_IS_OK((ret = ldapsam_new_rid_internal(my_methods, rid)))) {
5405                 DEBUG(1, ("ldapsam_create_group: Could not allocate a new RID\n"));
5406                 return ret;
5407         }
5408
5409         sid_compose(&group_sid, get_global_sam_sid(), *rid);
5410
5411         groupsidstr = talloc_strdup(tmp_ctx, sid_string_talloc(tmp_ctx,
5412                                                                &group_sid));
5413         grouptype = talloc_asprintf(tmp_ctx, "%d", SID_NAME_DOM_GRP);
5414
5415         if (!groupsidstr || !grouptype) {
5416                 DEBUG(0,("ldapsam_create_group: Out of memory!\n"));
5417                 return NT_STATUS_NO_MEMORY;
5418         }
5419
5420         smbldap_set_mod(&mods, LDAP_MOD_ADD, "objectClass", LDAP_OBJ_GROUPMAP);
5421         smbldap_set_mod(&mods, LDAP_MOD_ADD, "sambaSid", groupsidstr);
5422         smbldap_set_mod(&mods, LDAP_MOD_ADD, "sambaGroupType", grouptype);
5423         smbldap_set_mod(&mods, LDAP_MOD_ADD, "displayName", name);
5424         talloc_autofree_ldapmod(tmp_ctx, mods);
5425
5426         if (is_new_entry) {     
5427                 rc = smbldap_add(ldap_state->smbldap_state, dn, mods);
5428 #if 0
5429                 if (rc == LDAP_OBJECT_CLASS_VIOLATION) {
5430                         /* This call may fail with rfc2307bis schema */
5431                         /* Retry adding a structural class */
5432                         smbldap_set_mod(&mods, LDAP_MOD_ADD, "objectClass", "????");
5433                         rc = smbldap_add(ldap_state->smbldap_state, dn, mods);
5434                 }
5435 #endif
5436         } else {
5437                 rc = smbldap_modify(ldap_state->smbldap_state, dn, mods);
5438         }       
5439
5440         if (rc != LDAP_SUCCESS) {
5441                 DEBUG(0,("ldapsam_create_group: failed to create a new group [%s] (dn = %s)\n", name ,dn));
5442                 return NT_STATUS_UNSUCCESSFUL;
5443         }
5444
5445         DEBUG(2,("ldapsam_create_group: added group [%s] in the LDAP database\n", name));
5446
5447         return NT_STATUS_OK;
5448 }
5449
5450 static NTSTATUS ldapsam_delete_dom_group(struct pdb_methods *my_methods, TALLOC_CTX *tmp_ctx, uint32 rid)
5451 {
5452         struct ldapsam_privates *ldap_state = (struct ldapsam_privates *)my_methods->private_data;
5453         LDAPMessage *result = NULL;
5454         LDAPMessage *entry = NULL;
5455         int num_result;
5456         const char *dn;
5457         char *gidstr;
5458         char *filter;
5459         DOM_SID group_sid;
5460         int rc;
5461
5462         /* get the group sid */
5463         sid_compose(&group_sid, get_global_sam_sid(), rid);
5464
5465         filter = talloc_asprintf(tmp_ctx,
5466                                  "(&(sambaSID=%s)"
5467                                  "(objectClass=%s)"
5468                                  "(objectClass=%s))",
5469                                  sid_string_talloc(tmp_ctx, &group_sid),
5470                                  LDAP_OBJ_POSIXGROUP,
5471                                  LDAP_OBJ_GROUPMAP);
5472         if (filter == NULL) {
5473                 return NT_STATUS_NO_MEMORY;
5474         }
5475
5476         rc = smbldap_search_suffix(ldap_state->smbldap_state, filter, NULL, &result);
5477         if (rc != LDAP_SUCCESS) {
5478                 DEBUG(1,("ldapsam_delete_dom_group: group search failed!\n"));
5479                 return NT_STATUS_UNSUCCESSFUL;
5480         }
5481         talloc_autofree_ldapmsg(tmp_ctx, result);
5482
5483         num_result = ldap_count_entries(priv2ld(ldap_state), result);
5484
5485         if (num_result == 0) {
5486                 DEBUG(1,("ldapsam_delete_dom_group: group not found!\n"));
5487                 return NT_STATUS_NO_SUCH_GROUP;
5488         }
5489
5490         if (num_result > 1) {
5491                 DEBUG (0, ("ldapsam_delete_dom_group: More than one group with the same SID ?!\n"));
5492                 return NT_STATUS_INTERNAL_DB_CORRUPTION;
5493         }
5494
5495         entry = ldap_first_entry(priv2ld(ldap_state), result);
5496         if (!entry) {
5497                 return NT_STATUS_UNSUCCESSFUL;
5498         }
5499
5500         /* here it is, retrieve the dn for later use */
5501         dn = smbldap_talloc_dn(tmp_ctx, priv2ld(ldap_state), entry);
5502         if (!dn) {
5503                 DEBUG(0,("ldapsam_delete_dom_group: Out of memory!\n"));
5504                 return NT_STATUS_NO_MEMORY;
5505         }
5506
5507         gidstr = smbldap_talloc_single_attribute(priv2ld(ldap_state), entry, "gidNumber", tmp_ctx);
5508         if (!gidstr) {
5509                 DEBUG (0, ("ldapsam_delete_dom_group: Unable to find the group's gid!\n"));
5510                 return NT_STATUS_INTERNAL_DB_CORRUPTION;
5511         }
5512
5513         /* check no user have this group marked as primary group */
5514         filter = talloc_asprintf(tmp_ctx,
5515                                  "(&(gidNumber=%s)"
5516                                  "(objectClass=%s)"
5517                                  "(objectClass=%s))",
5518                                  gidstr,
5519                                  LDAP_OBJ_POSIXACCOUNT,
5520                                  LDAP_OBJ_SAMBASAMACCOUNT);
5521
5522         rc = smbldap_search_suffix(ldap_state->smbldap_state, filter, NULL, &result);
5523         if (rc != LDAP_SUCCESS) {
5524                 DEBUG(1,("ldapsam_delete_dom_group: accounts search failed!\n"));
5525                 return NT_STATUS_UNSUCCESSFUL;
5526         }
5527         talloc_autofree_ldapmsg(tmp_ctx, result);
5528
5529         num_result = ldap_count_entries(priv2ld(ldap_state), result);
5530
5531         if (num_result != 0) {
5532                 DEBUG(3,("ldapsam_delete_dom_group: Can't delete group, it is a primary group for %d users\n", num_result));
5533                 return NT_STATUS_MEMBERS_PRIMARY_GROUP;
5534         }
5535
5536         rc = smbldap_delete(ldap_state->smbldap_state, dn);
5537         if (rc != LDAP_SUCCESS) {
5538                 return NT_STATUS_UNSUCCESSFUL;
5539         }
5540
5541         return NT_STATUS_OK;
5542 }
5543
5544 static NTSTATUS ldapsam_change_groupmem(struct pdb_methods *my_methods,
5545                                         TALLOC_CTX *tmp_ctx,
5546                                         uint32 group_rid,
5547                                         uint32 member_rid,
5548                                         int modop)
5549 {
5550         struct ldapsam_privates *ldap_state = (struct ldapsam_privates *)my_methods->private_data;
5551         LDAPMessage *entry = NULL;
5552         LDAPMessage *result = NULL;
5553         uint32 num_result;
5554         LDAPMod **mods = NULL;
5555         char *filter;
5556         char *uidstr;
5557         const char *dn = NULL;
5558         DOM_SID group_sid;
5559         DOM_SID member_sid;
5560         int rc;
5561
5562         switch (modop) {
5563         case LDAP_MOD_ADD:
5564                 DEBUG(1,("ldapsam_change_groupmem: add new member(rid=%d) to a domain group(rid=%d)", member_rid, group_rid));
5565                 break;
5566         case LDAP_MOD_DELETE:
5567                 DEBUG(1,("ldapsam_change_groupmem: delete member(rid=%d) from a domain group(rid=%d)", member_rid, group_rid));
5568                 break;
5569         default:
5570                 return NT_STATUS_UNSUCCESSFUL;
5571         }
5572         
5573         /* get member sid  */
5574         sid_compose(&member_sid, get_global_sam_sid(), member_rid);
5575
5576         /* get the group sid */
5577         sid_compose(&group_sid, get_global_sam_sid(), group_rid);
5578
5579         filter = talloc_asprintf(tmp_ctx,
5580                                  "(&(sambaSID=%s)"
5581                                  "(objectClass=%s)"
5582                                  "(objectClass=%s))",
5583                                  sid_string_talloc(tmp_ctx, &member_sid),
5584                                  LDAP_OBJ_POSIXACCOUNT,
5585                                  LDAP_OBJ_SAMBASAMACCOUNT);
5586         if (filter == NULL) {
5587                 return NT_STATUS_NO_MEMORY;
5588         }
5589
5590         /* get the member uid */
5591         rc = smbldap_search_suffix(ldap_state->smbldap_state, filter, NULL, &result);
5592         if (rc != LDAP_SUCCESS) {
5593                 DEBUG(1,("ldapsam_change_groupmem: member search failed!\n"));
5594                 return NT_STATUS_UNSUCCESSFUL;
5595         }
5596         talloc_autofree_ldapmsg(tmp_ctx, result);
5597
5598         num_result = ldap_count_entries(priv2ld(ldap_state), result);
5599
5600         if (num_result == 0) {
5601                 DEBUG(1,("ldapsam_change_groupmem: member not found!\n"));
5602                 return NT_STATUS_NO_SUCH_MEMBER;
5603         }
5604
5605         if (num_result > 1) {
5606                 DEBUG (0, ("ldapsam_change_groupmem: More than one account with the same SID ?!\n"));
5607                 return NT_STATUS_INTERNAL_DB_CORRUPTION;
5608         }
5609
5610         entry = ldap_first_entry(priv2ld(ldap_state), result);
5611         if (!entry) {
5612                 return NT_STATUS_UNSUCCESSFUL;
5613         }
5614
5615         if (modop == LDAP_MOD_DELETE) {
5616                 /* check if we are trying to remove the member from his primary group */
5617                 char *gidstr;
5618                 gid_t user_gid, group_gid;
5619                 
5620                 gidstr = smbldap_talloc_single_attribute(priv2ld(ldap_state), entry, "gidNumber", tmp_ctx);
5621                 if (!gidstr) {
5622                         DEBUG (0, ("ldapsam_change_groupmem: Unable to find the member's gid!\n"));
5623                         return NT_STATUS_INTERNAL_DB_CORRUPTION;
5624                 }
5625
5626                 user_gid = strtoul(gidstr, NULL, 10);
5627         
5628                 if (!sid_to_gid(&group_sid, &group_gid)) {
5629                         DEBUG (0, ("ldapsam_change_groupmem: Unable to get group gid from SID!\n"));
5630                         return NT_STATUS_UNSUCCESSFUL;
5631                 }
5632
5633                 if (user_gid == group_gid) {
5634                         DEBUG (3, ("ldapsam_change_groupmem: can't remove user from its own primary group!\n"));
5635                         return NT_STATUS_MEMBERS_PRIMARY_GROUP;
5636                 }
5637         }
5638
5639         /* here it is, retrieve the uid for later use */
5640         uidstr = smbldap_talloc_single_attribute(priv2ld(ldap_state), entry, "uid", tmp_ctx);
5641         if (!uidstr) {
5642                 DEBUG (0, ("ldapsam_change_groupmem: Unable to find the member's name!\n"));
5643                 return NT_STATUS_INTERNAL_DB_CORRUPTION;
5644         }
5645
5646         filter = talloc_asprintf(tmp_ctx,
5647                                  "(&(sambaSID=%s)"
5648                                  "(objectClass=%s)"
5649                                  "(objectClass=%s))",
5650                                  sid_string_talloc(tmp_ctx, &group_sid),
5651                                  LDAP_OBJ_POSIXGROUP,
5652                                  LDAP_OBJ_GROUPMAP);
5653
5654         /* get the group */
5655         rc = smbldap_search_suffix(ldap_state->smbldap_state, filter, NULL, &result);
5656         if (rc != LDAP_SUCCESS) {
5657                 DEBUG(1,("ldapsam_change_groupmem: group search failed!\n"));
5658                 return NT_STATUS_UNSUCCESSFUL;
5659         }
5660         talloc_autofree_ldapmsg(tmp_ctx, result);
5661
5662         num_result = ldap_count_entries(priv2ld(ldap_state), result);
5663
5664         if (num_result == 0) {
5665                 DEBUG(1,("ldapsam_change_groupmem: group not found!\n"));
5666                 return NT_STATUS_NO_SUCH_GROUP;
5667         }
5668
5669         if (num_result > 1) {
5670                 DEBUG (0, ("ldapsam_change_groupmem: More than one group with the same SID ?!\n"));
5671                 return NT_STATUS_INTERNAL_DB_CORRUPTION;
5672         }
5673
5674         entry = ldap_first_entry(priv2ld(ldap_state), result);
5675         if (!entry) {
5676                 return NT_STATUS_UNSUCCESSFUL;
5677         }
5678
5679         /* here it is, retrieve the dn for later use */
5680         dn = smbldap_talloc_dn(tmp_ctx, priv2ld(ldap_state), entry);
5681         if (!dn) {
5682                 DEBUG(0,("ldapsam_change_groupmem: Out of memory!\n"));
5683                 return NT_STATUS_NO_MEMORY;
5684         }
5685
5686         smbldap_set_mod(&mods, modop, "memberUid", uidstr);
5687
5688         talloc_autofree_ldapmod(tmp_ctx, mods);
5689
5690         rc = smbldap_modify(ldap_state->smbldap_state, dn, mods);
5691         if (rc != LDAP_SUCCESS) {
5692                 if (rc == LDAP_TYPE_OR_VALUE_EXISTS && modop == LDAP_MOD_ADD) {
5693                         DEBUG(1,("ldapsam_change_groupmem: member is already in group, add failed!\n"));
5694                         return NT_STATUS_MEMBER_IN_GROUP;
5695                 }
5696                 if (rc == LDAP_NO_SUCH_ATTRIBUTE && modop == LDAP_MOD_DELETE) {
5697                         DEBUG(1,("ldapsam_change_groupmem: member is not in group, delete failed!\n"));
5698                         return NT_STATUS_MEMBER_NOT_IN_GROUP;
5699                 }
5700                 return NT_STATUS_UNSUCCESSFUL;
5701         }
5702         
5703         return NT_STATUS_OK;
5704 }
5705
5706 static NTSTATUS ldapsam_add_groupmem(struct pdb_methods *my_methods,
5707                                      TALLOC_CTX *tmp_ctx,
5708                                      uint32 group_rid,
5709                                      uint32 member_rid)
5710 {
5711         return ldapsam_change_groupmem(my_methods, tmp_ctx, group_rid, member_rid, LDAP_MOD_ADD);
5712 }
5713 static NTSTATUS ldapsam_del_groupmem(struct pdb_methods *my_methods,
5714                                      TALLOC_CTX *tmp_ctx,
5715                                      uint32 group_rid,
5716                                      uint32 member_rid)
5717 {
5718         return ldapsam_change_groupmem(my_methods, tmp_ctx, group_rid, member_rid, LDAP_MOD_DELETE);
5719 }
5720
5721 static NTSTATUS ldapsam_set_primary_group(struct pdb_methods *my_methods,
5722                                           TALLOC_CTX *mem_ctx,
5723                                           struct samu *sampass)
5724 {
5725         struct ldapsam_privates *ldap_state = (struct ldapsam_privates *)my_methods->private_data;
5726         LDAPMessage *entry = NULL;
5727         LDAPMessage *result = NULL;
5728         uint32 num_result;
5729         LDAPMod **mods = NULL;
5730         char *filter;
5731         char *escape_username;
5732         char *gidstr;
5733         const char *dn = NULL;
5734         gid_t gid;
5735         int rc;
5736
5737         DEBUG(0,("ldapsam_set_primary_group: Attempt to set primary group for user [%s]\n", pdb_get_username(sampass)));
5738
5739         if (!sid_to_gid(pdb_get_group_sid(sampass), &gid)) {
5740                 DEBUG(0,("ldapsam_set_primary_group: failed to retieve gid from user's group SID!\n"));
5741                 return NT_STATUS_UNSUCCESSFUL;
5742         }
5743         gidstr = talloc_asprintf(mem_ctx, "%d", gid);
5744         if (!gidstr) {
5745                 DEBUG(0,("ldapsam_set_primary_group: Out of Memory!\n"));
5746                 return NT_STATUS_NO_MEMORY;
5747         }
5748
5749         escape_username = escape_ldap_string_alloc(pdb_get_username(sampass));
5750         if (escape_username== NULL) {
5751                 return NT_STATUS_NO_MEMORY;
5752         }
5753
5754         filter = talloc_asprintf(mem_ctx,
5755                                  "(&(uid=%s)"
5756                                  "(objectClass=%s)"
5757                                  "(objectClass=%s))",
5758                                  escape_username,
5759                                  LDAP_OBJ_POSIXACCOUNT,
5760                                  LDAP_OBJ_SAMBASAMACCOUNT);
5761
5762         SAFE_FREE(escape_username);
5763
5764         if (filter == NULL) {
5765                 return NT_STATUS_NO_MEMORY;
5766         }
5767
5768         rc = smbldap_search_suffix(ldap_state->smbldap_state, filter, NULL, &result);
5769         if (rc != LDAP_SUCCESS) {
5770                 DEBUG(0,("ldapsam_set_primary_group: user search failed!\n"));
5771                 return NT_STATUS_UNSUCCESSFUL;
5772         }
5773         talloc_autofree_ldapmsg(mem_ctx, result);
5774
5775         num_result = ldap_count_entries(priv2ld(ldap_state), result);
5776
5777         if (num_result == 0) {
5778                 DEBUG(0,("ldapsam_set_primary_group: user not found!\n"));
5779                 return NT_STATUS_NO_SUCH_USER;
5780         }
5781
5782         if (num_result > 1) {
5783                 DEBUG (0, ("ldapsam_set_primary_group: More than one user with name [%s] ?!\n", pdb_get_username(sampass)));
5784                 return NT_STATUS_INTERNAL_DB_CORRUPTION;
5785         }
5786
5787         entry = ldap_first_entry(priv2ld(ldap_state), result);
5788         if (!entry) {
5789                 return NT_STATUS_UNSUCCESSFUL;
5790         }
5791
5792         /* retrieve the dn for later use */
5793         dn = smbldap_talloc_dn(mem_ctx, priv2ld(ldap_state), entry);
5794         if (!dn) {
5795                 DEBUG(0,("ldapsam_set_primary_group: Out of memory!\n"));
5796                 return NT_STATUS_NO_MEMORY;
5797         }
5798
5799         /* remove the old one, and add the new one, this way we do not risk races */
5800         smbldap_make_mod(priv2ld(ldap_state), entry, &mods, "gidNumber", gidstr);
5801
5802         if (mods == NULL) {
5803                 return NT_STATUS_OK;
5804         }
5805
5806         rc = smbldap_modify(ldap_state->smbldap_state, dn, mods);
5807
5808         if (rc != LDAP_SUCCESS) {
5809                 DEBUG(0,("ldapsam_set_primary_group: failed to modify [%s] primary group to [%s]\n",
5810                          pdb_get_username(sampass), gidstr));
5811                 return NT_STATUS_UNSUCCESSFUL;
5812         }
5813
5814         flush_pwnam_cache();
5815
5816         return NT_STATUS_OK;
5817 }
5818
5819
5820 /**********************************************************************
5821  trusted domains functions
5822  *********************************************************************/
5823
5824 static char *trusteddom_dn(struct ldapsam_privates *ldap_state,
5825                            const char *domain)
5826 {
5827         return talloc_asprintf(talloc_tos(), "sambaDomainName=%s,%s", domain,
5828                                ldap_state->domain_dn);
5829 }
5830
5831 static bool get_trusteddom_pw_int(struct ldapsam_privates *ldap_state,
5832                                   const char *domain, LDAPMessage **entry)
5833 {
5834         int rc;
5835         char *filter;
5836         int scope = LDAP_SCOPE_SUBTREE;
5837         const char **attrs = NULL; /* NULL: get all attrs */
5838         int attrsonly = 0; /* 0: return values too */
5839         LDAPMessage *result = NULL;
5840         char *trusted_dn;
5841         uint32 num_result;
5842
5843         filter = talloc_asprintf(talloc_tos(),
5844                                  "(&(objectClass=%s)(sambaDomainName=%s))",
5845                                  LDAP_OBJ_TRUSTDOM_PASSWORD, domain);
5846
5847         trusted_dn = trusteddom_dn(ldap_state, domain);
5848         if (trusted_dn == NULL) {
5849                 return False;
5850         }
5851         rc = smbldap_search(ldap_state->smbldap_state, trusted_dn, scope,
5852                             filter, attrs, attrsonly, &result);
5853
5854         if (rc == LDAP_NO_SUCH_OBJECT) {
5855                 *entry = NULL;
5856                 return True;
5857         }
5858
5859         if (rc != LDAP_SUCCESS) {
5860                 return False;
5861         }
5862
5863         num_result = ldap_count_entries(priv2ld(ldap_state), result);
5864
5865         if (num_result > 1) {
5866                 DEBUG(1, ("ldapsam_get_trusteddom_pw: more than one "
5867                           "sambaTrustedDomainPassword object for domain '%s'"
5868                           "?!\n", domain));
5869                 return False;
5870         }
5871
5872         if (num_result == 0) {
5873                 DEBUG(1, ("ldapsam_get_trusteddom_pw: no "
5874                           "sambaTrustedDomainPassword object for domain %s.\n",
5875                           domain));
5876                 *entry = NULL;
5877         } else {
5878                 *entry = ldap_first_entry(priv2ld(ldap_state), result);
5879         }
5880
5881         return True;
5882 }
5883
5884 static bool ldapsam_get_trusteddom_pw(struct pdb_methods *methods,
5885                                       const char *domain,
5886                                       char** pwd,
5887                                       DOM_SID *sid,
5888                                       time_t *pass_last_set_time)
5889 {
5890         struct ldapsam_privates *ldap_state =
5891                 (struct ldapsam_privates *)methods->private_data;
5892         LDAPMessage *entry = NULL;
5893
5894         DEBUG(10, ("ldapsam_get_trusteddom_pw called for domain %s\n", domain));
5895
5896         if (!get_trusteddom_pw_int(ldap_state, domain, &entry) ||
5897             (entry == NULL))
5898         {
5899                 return False;
5900         }
5901
5902         /* password */
5903         if (pwd != NULL) {
5904                 char *pwd_str;
5905                 pwd_str = smbldap_talloc_single_attribute(priv2ld(ldap_state),
5906                                 entry, "sambaClearTextPassword", talloc_tos());
5907                 if (pwd_str == NULL) {
5908                         return False;
5909                 }
5910                 /* trusteddom_pw routines do not use talloc yet... */
5911                 *pwd = SMB_STRDUP(pwd_str);
5912                 if (*pwd == NULL) {
5913                         return False;
5914                 }
5915         }
5916
5917         /* last change time */
5918         if (pass_last_set_time != NULL) {
5919                 char *time_str;
5920                 time_str = smbldap_talloc_single_attribute(priv2ld(ldap_state),
5921                                 entry, "sambaPwdLastSet", talloc_tos());
5922                 if (time_str == NULL) {
5923                         return False;
5924                 }
5925                 *pass_last_set_time = (time_t)atol(time_str);
5926         }
5927
5928         /* domain sid */
5929         if (sid != NULL) {
5930                 char *sid_str;
5931                 DOM_SID *dom_sid;
5932                 sid_str = smbldap_talloc_single_attribute(priv2ld(ldap_state),
5933                                                           entry, "sambaSID",
5934                                                           talloc_tos());
5935                 if (sid_str == NULL) {
5936                         return False;
5937                 }
5938                 dom_sid = string_sid_talloc(talloc_tos(), sid_str);
5939                 if (dom_sid == NULL) {
5940                         return False;
5941                 }
5942                 sid_copy(sid, dom_sid);
5943         }
5944
5945         return True;
5946 }
5947
5948 static bool ldapsam_set_trusteddom_pw(struct pdb_methods *methods,
5949                                       const char* domain,
5950                                       const char* pwd,
5951                                       const DOM_SID *sid)
5952 {
5953         struct ldapsam_privates *ldap_state =
5954                 (struct ldapsam_privates *)methods->private_data;
5955         LDAPMessage *entry = NULL;
5956         LDAPMod **mods = NULL;
5957         char *prev_pwd = NULL;
5958         char *trusted_dn = NULL;
5959         int rc;
5960
5961         DEBUG(10, ("ldapsam_set_trusteddom_pw called for domain %s\n", domain));
5962
5963         /*
5964          * get the current entry (if there is one) in order to put the
5965          * current password into the previous password attribute
5966          */
5967         if (!get_trusteddom_pw_int(ldap_state, domain, &entry)) {
5968                 return False;
5969         }
5970
5971         mods = NULL;
5972         smbldap_make_mod(priv2ld(ldap_state), entry, &mods, "objectClass",
5973                          "sambaTrustedDomainPassword");
5974         smbldap_make_mod(priv2ld(ldap_state), entry, &mods, "sambaDomainName",
5975                          domain);
5976         smbldap_make_mod(priv2ld(ldap_state), entry, &mods, "sambaSID",
5977                          sid_string_tos(sid));
5978         smbldap_make_mod(priv2ld(ldap_state), entry, &mods, "sambaPwdLastSet",
5979                          talloc_asprintf(talloc_tos(), "%li", time(NULL)));
5980         smbldap_make_mod(priv2ld(ldap_state), entry, &mods,
5981                          "sambaClearTextPassword", pwd);
5982         if (entry != NULL) {
5983                 prev_pwd = smbldap_talloc_single_attribute(priv2ld(ldap_state),
5984                                 entry, "sambaClearTextPassword", talloc_tos());
5985                 if (prev_pwd != NULL) {
5986                         smbldap_make_mod(priv2ld(ldap_state), entry, &mods,
5987                                          "sambaPreviousClearTextPassword",
5988                                          prev_pwd);
5989                 }
5990         }
5991
5992         trusted_dn = trusteddom_dn(ldap_state, domain);
5993         if (trusted_dn == NULL) {
5994                 return False;
5995         }
5996         if (entry == NULL) {
5997                 rc = smbldap_add(ldap_state->smbldap_state, trusted_dn, mods);
5998         } else {
5999                 rc = smbldap_modify(ldap_state->smbldap_state, trusted_dn, mods);
6000         }
6001
6002         if (rc != LDAP_SUCCESS) {
6003                 DEBUG(1, ("error writing trusted domain password!\n"));
6004                 return False;
6005         }
6006
6007         return True;
6008 }
6009
6010 static bool ldapsam_del_trusteddom_pw(struct pdb_methods *methods,
6011                                       const char *domain)
6012 {
6013         int rc;
6014         struct ldapsam_privates *ldap_state =
6015                 (struct ldapsam_privates *)methods->private_data;
6016         LDAPMessage *entry = NULL;
6017         const char *trusted_dn;
6018
6019         if (!get_trusteddom_pw_int(ldap_state, domain, &entry)) {
6020                 return False;
6021         }
6022
6023         if (entry == NULL) {
6024                 DEBUG(5, ("ldapsam_del_trusteddom_pw: no such trusted domain: "
6025                           "%s\n", domain));
6026                 return True;
6027         }
6028
6029         trusted_dn = smbldap_talloc_dn(talloc_tos(), priv2ld(ldap_state),
6030                                        entry);
6031         if (trusted_dn == NULL) {
6032                 DEBUG(0,("ldapsam_del_trusteddom_pw: Out of memory!\n"));
6033                 return False;
6034         }
6035
6036         rc = smbldap_delete(ldap_state->smbldap_state, trusted_dn);
6037         if (rc != LDAP_SUCCESS) {
6038                 return False;
6039         }
6040
6041         return True;
6042 }
6043
6044 static NTSTATUS ldapsam_enum_trusteddoms(struct pdb_methods *methods,
6045                                          TALLOC_CTX *mem_ctx,
6046                                          uint32 *num_domains,
6047                                          struct trustdom_info ***domains)
6048 {
6049         int rc;
6050         struct ldapsam_privates *ldap_state =
6051                 (struct ldapsam_privates *)methods->private_data;
6052         char *filter;
6053         int scope = LDAP_SCOPE_SUBTREE;
6054         const char *attrs[] = { "sambaDomainName", "sambaSID", NULL };
6055         int attrsonly = 0; /* 0: return values too */
6056         LDAPMessage *result = NULL;
6057         LDAPMessage *entry = NULL;
6058
6059         filter = talloc_asprintf(talloc_tos(), "(objectClass=%s)",
6060                                  LDAP_OBJ_TRUSTDOM_PASSWORD);
6061
6062         rc = smbldap_search(ldap_state->smbldap_state,
6063                             ldap_state->domain_dn,
6064                             scope,
6065                             filter,
6066                             attrs,
6067                             attrsonly,
6068                             &result);
6069
6070         if (rc != LDAP_SUCCESS) {
6071                 return NT_STATUS_UNSUCCESSFUL;
6072         }
6073
6074         *num_domains = 0;
6075         if (!(*domains = TALLOC_ARRAY(mem_ctx, struct trustdom_info *, 1))) {
6076                 DEBUG(1, ("talloc failed\n"));
6077                 return NT_STATUS_NO_MEMORY;
6078         }
6079
6080         for (entry = ldap_first_entry(priv2ld(ldap_state), result);
6081              entry != NULL;
6082              entry = ldap_next_entry(priv2ld(ldap_state), entry))
6083         {
6084                 char *dom_name, *dom_sid_str;
6085                 struct trustdom_info *dom_info;
6086
6087                 dom_info = TALLOC_P(*domains, struct trustdom_info);
6088                 if (dom_info == NULL) {
6089                         DEBUG(1, ("talloc failed\n"));
6090                         return NT_STATUS_NO_MEMORY;
6091                 }
6092
6093                 dom_name = smbldap_talloc_single_attribute(priv2ld(ldap_state),
6094                                                            entry,
6095                                                            "sambaDomainName",
6096                                                            talloc_tos());
6097                 if (dom_name == NULL) {
6098                         DEBUG(1, ("talloc failed\n"));
6099                         return NT_STATUS_NO_MEMORY;
6100                 }
6101                 dom_info->name = dom_name;
6102
6103                 dom_sid_str = smbldap_talloc_single_attribute(
6104                                         priv2ld(ldap_state), entry, "sambaSID",
6105                                         talloc_tos());
6106                 if (dom_sid_str == NULL) {
6107                         DEBUG(1, ("talloc failed\n"));
6108                         return NT_STATUS_NO_MEMORY;
6109                 }
6110                 if (!string_to_sid(&dom_info->sid, dom_sid_str)) {
6111                         DEBUG(1, ("Error calling string_to_sid on SID %s\n",
6112                                   dom_sid_str));
6113                         return NT_STATUS_UNSUCCESSFUL;
6114                 }
6115
6116                 ADD_TO_ARRAY(*domains, struct trustdom_info *, dom_info,
6117                              domains, num_domains);
6118
6119                 if (*domains == NULL) {
6120                         DEBUG(1, ("talloc failed\n"));
6121                         return NT_STATUS_NO_MEMORY;
6122                 }
6123         }
6124
6125         DEBUG(5, ("ldapsam_enum_trusteddoms: got %d domains\n", *num_domains));
6126         return NT_STATUS_OK;
6127 }
6128
6129
6130 /**********************************************************************
6131  Housekeeping
6132  *********************************************************************/
6133
6134 static void free_private_data(void **vp) 
6135 {
6136         struct ldapsam_privates **ldap_state = (struct ldapsam_privates **)vp;
6137
6138         smbldap_free_struct(&(*ldap_state)->smbldap_state);
6139
6140         if ((*ldap_state)->result != NULL) {
6141                 ldap_msgfree((*ldap_state)->result);
6142                 (*ldap_state)->result = NULL;
6143         }
6144         if ((*ldap_state)->domain_dn != NULL) {
6145                 SAFE_FREE((*ldap_state)->domain_dn);
6146         }
6147
6148         *ldap_state = NULL;
6149
6150         /* No need to free any further, as it is talloc()ed */
6151 }
6152
6153 /*********************************************************************
6154  Intitalise the parts of the pdb_methods structure that are common to 
6155  all pdb_ldap modes
6156 *********************************************************************/
6157
6158 static NTSTATUS pdb_init_ldapsam_common(struct pdb_methods **pdb_method, const char *location)
6159 {
6160         NTSTATUS nt_status;
6161         struct ldapsam_privates *ldap_state;
6162
6163         if (!NT_STATUS_IS_OK(nt_status = make_pdb_method( pdb_method ))) {
6164                 return nt_status;
6165         }
6166
6167         (*pdb_method)->name = "ldapsam";
6168
6169         (*pdb_method)->setsampwent = ldapsam_setsampwent;
6170         (*pdb_method)->endsampwent = ldapsam_endsampwent;
6171         (*pdb_method)->getsampwent = ldapsam_getsampwent;
6172         (*pdb_method)->getsampwnam = ldapsam_getsampwnam;
6173         (*pdb_method)->getsampwsid = ldapsam_getsampwsid;
6174         (*pdb_method)->add_sam_account = ldapsam_add_sam_account;
6175         (*pdb_method)->update_sam_account = ldapsam_update_sam_account;
6176         (*pdb_method)->delete_sam_account = ldapsam_delete_sam_account;
6177         (*pdb_method)->rename_sam_account = ldapsam_rename_sam_account;
6178
6179         (*pdb_method)->getgrsid = ldapsam_getgrsid;
6180         (*pdb_method)->getgrgid = ldapsam_getgrgid;
6181         (*pdb_method)->getgrnam = ldapsam_getgrnam;
6182         (*pdb_method)->add_group_mapping_entry = ldapsam_add_group_mapping_entry;
6183         (*pdb_method)->update_group_mapping_entry = ldapsam_update_group_mapping_entry;
6184         (*pdb_method)->delete_group_mapping_entry = ldapsam_delete_group_mapping_entry;
6185         (*pdb_method)->enum_group_mapping = ldapsam_enum_group_mapping;
6186
6187         (*pdb_method)->get_account_policy = ldapsam_get_account_policy;
6188         (*pdb_method)->set_account_policy = ldapsam_set_account_policy;
6189
6190         (*pdb_method)->get_seq_num = ldapsam_get_seq_num;
6191
6192         (*pdb_method)->rid_algorithm = ldapsam_rid_algorithm;
6193         (*pdb_method)->new_rid = ldapsam_new_rid;
6194
6195         (*pdb_method)->get_trusteddom_pw = ldapsam_get_trusteddom_pw;
6196         (*pdb_method)->set_trusteddom_pw = ldapsam_set_trusteddom_pw;
6197         (*pdb_method)->del_trusteddom_pw = ldapsam_del_trusteddom_pw;
6198         (*pdb_method)->enum_trusteddoms = ldapsam_enum_trusteddoms;
6199
6200         /* TODO: Setup private data and free */
6201
6202         if ( !(ldap_state = TALLOC_ZERO_P(*pdb_method, struct ldapsam_privates)) ) {
6203                 DEBUG(0, ("pdb_init_ldapsam_common: talloc() failed for ldapsam private_data!\n"));
6204                 return NT_STATUS_NO_MEMORY;
6205         }
6206
6207         nt_status = smbldap_init(*pdb_method, pdb_get_event_context(),
6208                                  location, &ldap_state->smbldap_state);
6209
6210         if ( !NT_STATUS_IS_OK(nt_status) ) {
6211                 return nt_status;
6212         }
6213
6214         if ( !(ldap_state->domain_name = talloc_strdup(*pdb_method, get_global_sam_name()) ) ) {
6215                 return NT_STATUS_NO_MEMORY;
6216         }
6217
6218         (*pdb_method)->private_data = ldap_state;
6219
6220         (*pdb_method)->free_private_data = free_private_data;
6221
6222         return NT_STATUS_OK;
6223 }
6224
6225 /**********************************************************************
6226  Initialise the 'compat' mode for pdb_ldap
6227  *********************************************************************/
6228
6229 NTSTATUS pdb_init_ldapsam_compat(struct pdb_methods **pdb_method, const char *location)
6230 {
6231         NTSTATUS nt_status;
6232         struct ldapsam_privates *ldap_state;
6233         char *uri = talloc_strdup( NULL, location );
6234
6235         trim_char( uri, '\"', '\"' );
6236         nt_status = pdb_init_ldapsam_common( pdb_method, uri );
6237         if ( uri )
6238                 TALLOC_FREE( uri );
6239
6240         if ( !NT_STATUS_IS_OK(nt_status) ) {
6241                 return nt_status;
6242         }
6243
6244         (*pdb_method)->name = "ldapsam_compat";
6245
6246         ldap_state = (struct ldapsam_privates *)((*pdb_method)->private_data);
6247         ldap_state->schema_ver = SCHEMAVER_SAMBAACCOUNT;
6248
6249         sid_copy(&ldap_state->domain_sid, get_global_sam_sid());
6250
6251         return NT_STATUS_OK;
6252 }
6253
6254 /**********************************************************************
6255  Initialise the normal mode for pdb_ldap
6256  *********************************************************************/
6257
6258 NTSTATUS pdb_init_ldapsam(struct pdb_methods **pdb_method, const char *location)
6259 {
6260         NTSTATUS nt_status;
6261         struct ldapsam_privates *ldap_state = NULL;
6262         uint32 alg_rid_base;
6263         char *alg_rid_base_string = NULL;
6264         LDAPMessage *result = NULL;
6265         LDAPMessage *entry = NULL;
6266         DOM_SID ldap_domain_sid;
6267         DOM_SID secrets_domain_sid;
6268         char *domain_sid_string = NULL;
6269         char *dn = NULL;
6270         char *uri = talloc_strdup( NULL, location );
6271
6272         trim_char( uri, '\"', '\"' );
6273         nt_status = pdb_init_ldapsam_common(pdb_method, uri);
6274         if (uri) {
6275                 TALLOC_FREE(uri);
6276         }
6277
6278         if (!NT_STATUS_IS_OK(nt_status)) {
6279                 return nt_status;
6280         }
6281
6282         (*pdb_method)->name = "ldapsam";
6283
6284         (*pdb_method)->add_aliasmem = ldapsam_add_aliasmem;
6285         (*pdb_method)->del_aliasmem = ldapsam_del_aliasmem;
6286         (*pdb_method)->enum_aliasmem = ldapsam_enum_aliasmem;
6287         (*pdb_method)->enum_alias_memberships = ldapsam_alias_memberships;
6288         (*pdb_method)->search_users = ldapsam_search_users;
6289         (*pdb_method)->search_groups = ldapsam_search_groups;
6290         (*pdb_method)->search_aliases = ldapsam_search_aliases;
6291
6292         if (lp_parm_bool(-1, "ldapsam", "trusted", False)) {
6293                 (*pdb_method)->enum_group_members = ldapsam_enum_group_members;
6294                 (*pdb_method)->enum_group_memberships =
6295                         ldapsam_enum_group_memberships;
6296                 (*pdb_method)->lookup_rids = ldapsam_lookup_rids;
6297                 (*pdb_method)->sid_to_id = ldapsam_sid_to_id;
6298
6299                 if (lp_parm_bool(-1, "ldapsam", "editposix", False)) {
6300                         (*pdb_method)->create_user = ldapsam_create_user;
6301                         (*pdb_method)->delete_user = ldapsam_delete_user;
6302                         (*pdb_method)->create_dom_group = ldapsam_create_dom_group;
6303                         (*pdb_method)->delete_dom_group = ldapsam_delete_dom_group;
6304                         (*pdb_method)->add_groupmem = ldapsam_add_groupmem;
6305                         (*pdb_method)->del_groupmem = ldapsam_del_groupmem;
6306                         (*pdb_method)->set_unix_primary_group = ldapsam_set_primary_group;
6307                 }
6308         }
6309
6310         ldap_state = (struct ldapsam_privates *)((*pdb_method)->private_data);
6311         ldap_state->schema_ver = SCHEMAVER_SAMBASAMACCOUNT;
6312
6313         /* Try to setup the Domain Name, Domain SID, algorithmic rid base */
6314
6315         nt_status = smbldap_search_domain_info(ldap_state->smbldap_state,
6316                                                &result,
6317                                                ldap_state->domain_name, True);
6318
6319         if ( !NT_STATUS_IS_OK(nt_status) ) {
6320                 DEBUG(2, ("pdb_init_ldapsam: WARNING: Could not get domain "
6321                           "info, nor add one to the domain\n"));
6322                 DEBUGADD(2, ("pdb_init_ldapsam: Continuing on regardless, "
6323                              "will be unable to allocate new users/groups, "
6324                              "and will risk BDCs having inconsistant SIDs\n"));
6325                 sid_copy(&ldap_state->domain_sid, get_global_sam_sid());
6326                 return NT_STATUS_OK;
6327         }
6328
6329         /* Given that the above might fail, everything below this must be
6330          * optional */
6331
6332         entry = ldap_first_entry(ldap_state->smbldap_state->ldap_struct,
6333                                  result);
6334         if (!entry) {
6335                 DEBUG(0, ("pdb_init_ldapsam: Could not get domain info "
6336                           "entry\n"));
6337                 ldap_msgfree(result);
6338                 return NT_STATUS_UNSUCCESSFUL;
6339         }
6340
6341         dn = smbldap_get_dn(ldap_state->smbldap_state->ldap_struct, entry);
6342         if (!dn) {
6343                 ldap_msgfree(result);
6344                 return NT_STATUS_UNSUCCESSFUL;
6345         }
6346
6347         ldap_state->domain_dn = smb_xstrdup(dn);
6348         ldap_memfree(dn);
6349
6350         domain_sid_string = smbldap_talloc_single_attribute(
6351                     ldap_state->smbldap_state->ldap_struct,
6352                     entry,
6353                     get_userattr_key2string(ldap_state->schema_ver,
6354                                             LDAP_ATTR_USER_SID),
6355                     NULL);
6356
6357         if (domain_sid_string) {
6358                 bool found_sid;
6359                 if (!string_to_sid(&ldap_domain_sid, domain_sid_string)) {
6360                         DEBUG(1, ("pdb_init_ldapsam: SID [%s] could not be "
6361                                   "read as a valid SID\n", domain_sid_string));
6362                         ldap_msgfree(result);
6363                         TALLOC_FREE(domain_sid_string);
6364                         return NT_STATUS_INVALID_PARAMETER;
6365                 }
6366                 found_sid = secrets_fetch_domain_sid(ldap_state->domain_name,
6367                                                      &secrets_domain_sid);
6368                 if (!found_sid || !sid_equal(&secrets_domain_sid,
6369                                              &ldap_domain_sid)) {
6370                         fstring new_sid_str, old_sid_str;
6371                         DEBUG(1, ("pdb_init_ldapsam: Resetting SID for domain "
6372                                   "%s based on pdb_ldap results %s -> %s\n",
6373                                   ldap_state->domain_name,
6374                                   sid_to_string(old_sid_str,
6375                                                 &secrets_domain_sid),
6376                                   sid_to_string(new_sid_str,
6377                                                 &ldap_domain_sid)));
6378
6379                         /* reset secrets.tdb sid */
6380                         secrets_store_domain_sid(ldap_state->domain_name,
6381                                                  &ldap_domain_sid);
6382                         DEBUG(1, ("New global sam SID: %s\n",
6383                                   sid_to_string(new_sid_str,
6384                                                 get_global_sam_sid())));
6385                 }
6386                 sid_copy(&ldap_state->domain_sid, &ldap_domain_sid);
6387                 TALLOC_FREE(domain_sid_string);
6388         }
6389
6390         alg_rid_base_string = smbldap_talloc_single_attribute(
6391                     ldap_state->smbldap_state->ldap_struct,
6392                     entry,
6393                     get_attr_key2string( dominfo_attr_list,
6394                                          LDAP_ATTR_ALGORITHMIC_RID_BASE ),
6395                     NULL);
6396         if (alg_rid_base_string) {
6397                 alg_rid_base = (uint32)atol(alg_rid_base_string);
6398                 if (alg_rid_base != algorithmic_rid_base()) {
6399                         DEBUG(0, ("The value of 'algorithmic RID base' has "
6400                                   "changed since the LDAP\n"
6401                                   "database was initialised.  Aborting. \n"));
6402                         ldap_msgfree(result);
6403                         TALLOC_FREE(alg_rid_base_string);
6404                         return NT_STATUS_UNSUCCESSFUL;
6405                 }
6406                 TALLOC_FREE(alg_rid_base_string);
6407         }
6408         ldap_msgfree(result);
6409
6410         return NT_STATUS_OK;
6411 }
6412
6413 NTSTATUS pdb_ldap_init(void)
6414 {
6415         NTSTATUS nt_status;
6416         if (!NT_STATUS_IS_OK(nt_status = smb_register_passdb(PASSDB_INTERFACE_VERSION, "ldapsam", pdb_init_ldapsam)))
6417                 return nt_status;
6418
6419         if (!NT_STATUS_IS_OK(nt_status = smb_register_passdb(PASSDB_INTERFACE_VERSION, "ldapsam_compat", pdb_init_ldapsam_compat)))
6420                 return nt_status;
6421
6422         /* Let pdb_nds register backends */
6423         pdb_nds_init();
6424
6425         return NT_STATUS_OK;
6426 }