Latest patch from metze <metze@metzemix.de> to move most of samba across
[sfrench/samba-autobuild/.git] / source3 / passdb / pdb_tdb.c
1 /*
2  * Unix SMB/CIFS implementation. 
3  * SMB parameters and setup
4  * Copyright (C) Andrew Tridgell 1992-1998
5  * Copyright (C) Simo Sorce 2000-2002
6  * Copyright (C) Gerald Carter 2000
7  * Copyright (C) Jeremy Allison 2001
8  * Copyright (C) Andrew Bartlett 2002
9  * 
10  * This program is free software; you can redistribute it and/or modify it under
11  * the terms of the GNU General Public License as published by the Free
12  * Software Foundation; either version 2 of the License, or (at your option)
13  * any later version.
14  * 
15  * This program is distributed in the hope that it will be useful, but WITHOUT
16  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
17  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
18  * more details.
19  * 
20  * You should have received a copy of the GNU General Public License along with
21  * this program; if not, write to the Free Software Foundation, Inc., 675
22  * Mass Ave, Cambridge, MA 02139, USA.
23  */
24
25 #include "includes.h"
26
27 #if 0 /* when made a module use this */
28
29 static int tdbsam_debug_level = DBGC_ALL;
30 #undef DBGC_CLASS
31 #define DBGC_CLASS tdbsam_debug_level
32
33 #else
34
35 #undef DBGC_CLASS
36 #define DBGC_CLASS DBGC_PASSDB
37
38 #endif
39
40 #ifdef WITH_TDB_SAM
41
42 #define PDB_VERSION             "20010830"
43 #define PASSDB_FILE_NAME        "passdb.tdb"
44 #define TDB_FORMAT_STRING       "ddddddBBBBBBBBBBBBddBBwdwdBdd"
45 #define USERPREFIX              "USER_"
46 #define RIDPREFIX               "RID_"
47
48 struct tdbsam_privates {
49         TDB_CONTEXT     *passwd_tdb;
50         TDB_DATA        key;
51
52         /* retrive-once info */
53         const char *tdbsam_location;
54
55         BOOL permit_non_unix_accounts;
56
57         BOOL algorithmic_rids;
58
59         uint32 low_nua_rid; 
60         uint32 high_nua_rid;
61 };
62
63 /**********************************************************************
64  Intialize a SAM_ACCOUNT struct from a BYTE buffer of size len
65  *********************************************************************/
66
67 static BOOL init_sam_from_buffer (struct tdbsam_privates *tdb_state,
68                                   SAM_ACCOUNT *sampass, uint8 *buf, uint32 buflen)
69 {
70
71         /* times are stored as 32bit integer
72            take care on system with 64bit wide time_t
73            --SSS */
74         uint32  logon_time,
75                 logoff_time,
76                 kickoff_time,
77                 pass_last_set_time,
78                 pass_can_change_time,
79                 pass_must_change_time;
80         char *username;
81         char *domain;
82         char *nt_username;
83         char *dir_drive;
84         char *unknown_str;
85         char *munged_dial;
86         char *fullname;
87         char *homedir;
88         char *logon_script;
89         char *profile_path;
90         char *acct_desc;
91         char *workstations;
92         uint32  username_len, domain_len, nt_username_len,
93                 dir_drive_len, unknown_str_len, munged_dial_len,
94                 fullname_len, homedir_len, logon_script_len,
95                 profile_path_len, acct_desc_len, workstations_len;
96                 
97         uint32  user_rid, group_rid, unknown_3, hours_len, unknown_5, unknown_6;
98         uint16  acct_ctrl, logon_divs;
99         uint8   *hours;
100         static uint8    *lm_pw_ptr, *nt_pw_ptr;
101         uint32          len = 0;
102         uint32          lm_pw_len, nt_pw_len, hourslen;
103         BOOL ret = True;
104         struct passwd *pw;
105         uid_t uid = -1;
106         gid_t gid = -1; /* This is what standard sub advanced expects if no gid is known */
107         
108         if(sampass == NULL || buf == NULL) {
109                 DEBUG(0, ("init_sam_from_buffer: NULL parameters found!\n"));
110                 return False;
111         }
112                                                                         
113         /* unpack the buffer into variables */
114         len = tdb_unpack (buf, buflen, TDB_FORMAT_STRING,
115                 &logon_time,
116                 &logoff_time,
117                 &kickoff_time,
118                 &pass_last_set_time,
119                 &pass_can_change_time,
120                 &pass_must_change_time,
121                 &username_len, &username,
122                 &domain_len, &domain,
123                 &nt_username_len, &nt_username,
124                 &fullname_len, &fullname,
125                 &homedir_len, &homedir,
126                 &dir_drive_len, &dir_drive,
127                 &logon_script_len, &logon_script,
128                 &profile_path_len, &profile_path,
129                 &acct_desc_len, &acct_desc,
130                 &workstations_len, &workstations,
131                 &unknown_str_len, &unknown_str,
132                 &munged_dial_len, &munged_dial,
133                 &user_rid,
134                 &group_rid,
135                 &lm_pw_len, &lm_pw_ptr,
136                 &nt_pw_len, &nt_pw_ptr,
137                 &acct_ctrl,
138                 &unknown_3,
139                 &logon_divs,
140                 &hours_len,
141                 &hourslen, &hours,
142                 &unknown_5,
143                 &unknown_6);
144                 
145         if (len == -1)  {
146                 ret = False;
147                 goto done;
148         }
149
150         /* validate the account and fill in UNIX uid and gid. Standard
151          * getpwnam() is used instead of Get_Pwnam() as we do not need
152          * to try case permutations
153          */
154         if (!username || !(pw = getpwnam_alloc(username))) {
155                 if (!(tdb_state->permit_non_unix_accounts)) {
156                         DEBUG(0,("tdbsam: getpwnam_alloc(%s) return NULL.  User does not exist!\n", username));
157                         ret = False;
158                         goto done;
159                 }
160         }
161                 
162         if (pw) {
163                 uid = pw->pw_uid;
164                 gid = pw->pw_gid;
165                 
166                 pdb_set_unix_homedir(sampass, pw->pw_dir);
167
168                 passwd_free(&pw);
169
170                 pdb_set_uid(sampass, uid);
171                 pdb_set_gid(sampass, gid);
172         }
173
174         pdb_set_logon_time(sampass, logon_time, True);
175         pdb_set_logoff_time(sampass, logoff_time, True);
176         pdb_set_kickoff_time(sampass, kickoff_time, True);
177         pdb_set_pass_can_change_time(sampass, pass_can_change_time, True);
178         pdb_set_pass_must_change_time(sampass, pass_must_change_time, True);
179         pdb_set_pass_last_set_time(sampass, pass_last_set_time);
180
181         pdb_set_username     (sampass, username); 
182         pdb_set_domain       (sampass, domain);
183         pdb_set_nt_username  (sampass, nt_username);
184         pdb_set_fullname     (sampass, fullname);
185
186         if (homedir) {
187                 pdb_set_homedir(sampass, homedir, True);
188         }
189         else {
190                 pdb_set_homedir(sampass, 
191                                 standard_sub_specified(sampass->mem_ctx, 
192                                                        lp_logon_home(),
193                                                        username, domain, 
194                                                        uid, gid),
195                                 False);
196         }
197
198         if (dir_drive)  
199                 pdb_set_dir_drive(sampass, dir_drive, True);
200         else {
201                 pdb_set_dir_drive(sampass, 
202                                   standard_sub_specified(sampass->mem_ctx, 
203                                                          lp_logon_drive(),
204                                                          username, domain, 
205                                                          uid, gid),
206                                   False);
207         }
208
209         if (logon_script) 
210                 pdb_set_logon_script(sampass, logon_script, True);
211         else {
212                 pdb_set_logon_script(sampass, 
213                                      standard_sub_specified(sampass->mem_ctx, 
214                                                             lp_logon_script(),
215                                                             username, domain, 
216                                                             uid, gid),
217                                   False);
218         }
219
220         if (profile_path) {     
221                 pdb_set_profile_path(sampass, profile_path, True);
222         } else {
223                 pdb_set_profile_path(sampass, 
224                                      standard_sub_specified(sampass->mem_ctx, 
225                                                             lp_logon_path(),
226                                                             username, domain, 
227                                                             uid, gid),
228                                      False);
229         }
230
231         pdb_set_acct_desc    (sampass, acct_desc);
232         pdb_set_workstations (sampass, workstations);
233         pdb_set_munged_dial  (sampass, munged_dial);
234
235         if (lm_pw_ptr && lm_pw_len == LM_HASH_LEN) {
236                 if (!pdb_set_lanman_passwd(sampass, lm_pw_ptr)) {
237                         ret = False;
238                         goto done;
239                 }
240         }
241
242         if (nt_pw_ptr && nt_pw_len == NT_HASH_LEN) {
243                 if (!pdb_set_nt_passwd(sampass, nt_pw_ptr)) {
244                         ret = False;
245                         goto done;
246                 }
247         }
248
249         pdb_set_user_sid_from_rid(sampass, user_rid);
250         pdb_set_group_sid_from_rid(sampass, group_rid);
251         pdb_set_unknown_3(sampass, unknown_3);
252         pdb_set_hours_len(sampass, hours_len);
253         pdb_set_unknown_5(sampass, unknown_5);
254         pdb_set_unknown_6(sampass, unknown_6);
255         pdb_set_acct_ctrl(sampass, acct_ctrl);
256         pdb_set_logon_divs(sampass, logon_divs);
257         pdb_set_hours(sampass, hours);
258
259 done:
260
261         SAFE_FREE(username);
262         SAFE_FREE(domain);
263         SAFE_FREE(nt_username);
264         SAFE_FREE(fullname);
265         SAFE_FREE(homedir);
266         SAFE_FREE(dir_drive);
267         SAFE_FREE(logon_script);
268         SAFE_FREE(profile_path);
269         SAFE_FREE(acct_desc);
270         SAFE_FREE(workstations);
271         SAFE_FREE(munged_dial);
272
273         return ret;
274 }
275
276 /**********************************************************************
277  Intialize a BYTE buffer from a SAM_ACCOUNT struct
278  *********************************************************************/
279 static uint32 init_buffer_from_sam (struct tdbsam_privates *tdb_state,
280                                     uint8 **buf, const SAM_ACCOUNT *sampass)
281 {
282         size_t          len, buflen;
283
284         /* times are stored as 32bit integer
285            take care on system with 64bit wide time_t
286            --SSS */
287         uint32  logon_time,
288                 logoff_time,
289                 kickoff_time,
290                 pass_last_set_time,
291                 pass_can_change_time,
292                 pass_must_change_time;
293
294         uint32  user_rid, group_rid;
295
296         const char *username;
297         const char *domain;
298         const char *nt_username;
299         const char *dir_drive;
300         const char *unknown_str;
301         const char *munged_dial;
302         const char *fullname;
303         const char *homedir;
304         const char *logon_script;
305         const char *profile_path;
306         const char *acct_desc;
307         const char *workstations;
308         uint32  username_len, domain_len, nt_username_len,
309                 dir_drive_len, unknown_str_len, munged_dial_len,
310                 fullname_len, homedir_len, logon_script_len,
311                 profile_path_len, acct_desc_len, workstations_len;
312
313         const uint8 *lm_pw;
314         const uint8 *nt_pw;
315         uint32  lm_pw_len = 16;
316         uint32  nt_pw_len = 16;
317
318         /* do we have a valid SAM_ACCOUNT pointer? */
319         if (sampass == NULL) {
320                 DEBUG(0, ("init_buffer_from_sam: SAM_ACCOUNT is NULL!\n"));
321                 return -1;
322         }
323         
324         *buf = NULL;
325         buflen = 0;
326
327         logon_time = (uint32)pdb_get_logon_time(sampass);
328         logoff_time = (uint32)pdb_get_logoff_time(sampass);
329         kickoff_time = (uint32)pdb_get_kickoff_time(sampass);
330         pass_can_change_time = (uint32)pdb_get_pass_can_change_time(sampass);
331         pass_must_change_time = (uint32)pdb_get_pass_must_change_time(sampass);
332         pass_last_set_time = (uint32)pdb_get_pass_last_set_time(sampass);
333
334         user_rid = pdb_get_user_rid(sampass);
335         group_rid = pdb_get_group_rid(sampass);
336
337         username = pdb_get_username(sampass);
338         if (username) username_len = strlen(username) +1;
339         else username_len = 0;
340
341         domain = pdb_get_domain(sampass);
342         if (domain) domain_len = strlen(domain) +1;
343         else domain_len = 0;
344
345         nt_username = pdb_get_nt_username(sampass);
346         if (nt_username) nt_username_len = strlen(nt_username) +1;
347         else nt_username_len = 0;
348
349         fullname = pdb_get_fullname(sampass);
350         if (fullname) fullname_len = strlen(fullname) +1;
351         else fullname_len = 0;
352
353         /*
354          * Only updates fields which have been set (not defaults from smb.conf)
355          */
356
357         if (IS_SAM_SET(sampass, FLAG_SAM_DRIVE)) dir_drive = pdb_get_dirdrive(sampass);
358         else dir_drive = NULL;
359         if (dir_drive) dir_drive_len = strlen(dir_drive) +1;
360         else dir_drive_len = 0;
361
362         if (IS_SAM_SET(sampass, FLAG_SAM_SMBHOME)) homedir = pdb_get_homedir(sampass);
363         else homedir = NULL;
364         if (homedir) homedir_len = strlen(homedir) +1;
365         else homedir_len = 0;
366
367         if (IS_SAM_SET(sampass, FLAG_SAM_LOGONSCRIPT)) logon_script = pdb_get_logon_script(sampass);
368         else logon_script = NULL;
369         if (logon_script) logon_script_len = strlen(logon_script) +1;
370         else logon_script_len = 0;
371
372         if (IS_SAM_SET(sampass, FLAG_SAM_PROFILE)) profile_path = pdb_get_profile_path(sampass);
373         else profile_path = NULL;
374         if (profile_path) profile_path_len = strlen(profile_path) +1;
375         else profile_path_len = 0;
376         
377         lm_pw = pdb_get_lanman_passwd(sampass);
378         if (!lm_pw) lm_pw_len = 0;
379         
380         nt_pw = pdb_get_nt_passwd(sampass);
381         if (!nt_pw) nt_pw_len = 0;
382                 
383         acct_desc = pdb_get_acct_desc(sampass);
384         if (acct_desc) acct_desc_len = strlen(acct_desc) +1;
385         else acct_desc_len = 0;
386
387         workstations = pdb_get_workstations(sampass);
388         if (workstations) workstations_len = strlen(workstations) +1;
389         else workstations_len = 0;
390
391         unknown_str = NULL;
392         unknown_str_len = 0;
393
394         munged_dial = pdb_get_munged_dial(sampass);
395         if (munged_dial) munged_dial_len = strlen(munged_dial) +1;
396         else munged_dial_len = 0;       
397                 
398         /* one time to get the size needed */
399         len = tdb_pack(NULL, 0,  TDB_FORMAT_STRING,
400                 logon_time,
401                 logoff_time,
402                 kickoff_time,
403                 pass_last_set_time,
404                 pass_can_change_time,
405                 pass_must_change_time,
406                 username_len, username,
407                 domain_len, domain,
408                 nt_username_len, nt_username,
409                 fullname_len, fullname,
410                 homedir_len, homedir,
411                 dir_drive_len, dir_drive,
412                 logon_script_len, logon_script,
413                 profile_path_len, profile_path,
414                 acct_desc_len, acct_desc,
415                 workstations_len, workstations,
416                 unknown_str_len, unknown_str,
417                 munged_dial_len, munged_dial,
418                 user_rid,
419                 group_rid,
420                 lm_pw_len, lm_pw,
421                 nt_pw_len, nt_pw,
422                 pdb_get_acct_ctrl(sampass),
423                 pdb_get_unknown3(sampass),
424                 pdb_get_logon_divs(sampass),
425                 pdb_get_hours_len(sampass),
426                 MAX_HOURS_LEN, pdb_get_hours(sampass),
427                 pdb_get_unknown5(sampass),
428                 pdb_get_unknown6(sampass));
429
430
431         /* malloc the space needed */
432         if ( (*buf=(uint8*)malloc(len)) == NULL) {
433                 DEBUG(0,("init_buffer_from_sam: Unable to malloc() memory for buffer!\n"));
434                 return (-1);
435         }
436         
437         /* now for the real call to tdb_pack() */
438         buflen = tdb_pack(*buf, len,  TDB_FORMAT_STRING,
439                 logon_time,
440                 logoff_time,
441                 kickoff_time,
442                 pass_last_set_time,
443                 pass_can_change_time,
444                 pass_must_change_time,
445                 username_len, username,
446                 domain_len, domain,
447                 nt_username_len, nt_username,
448                 fullname_len, fullname,
449                 homedir_len, homedir,
450                 dir_drive_len, dir_drive,
451                 logon_script_len, logon_script,
452                 profile_path_len, profile_path,
453                 acct_desc_len, acct_desc,
454                 workstations_len, workstations,
455                 unknown_str_len, unknown_str,
456                 munged_dial_len, munged_dial,
457                 user_rid,
458                 group_rid,
459                 lm_pw_len, lm_pw,
460                 nt_pw_len, nt_pw,
461                 pdb_get_acct_ctrl(sampass),
462                 pdb_get_unknown3(sampass),
463                 pdb_get_logon_divs(sampass),
464                 pdb_get_hours_len(sampass),
465                 MAX_HOURS_LEN, pdb_get_hours(sampass),
466                 pdb_get_unknown5(sampass),
467                 pdb_get_unknown6(sampass));
468         
469         
470         /* check to make sure we got it correct */
471         if (buflen != len) {
472                 DEBUG(0, ("init_buffer_from_sam: somthing odd is going on here: bufflen (%d) != len (%d) in tdb_pack operations!\n", 
473                           buflen, len));  
474                 /* error */
475                 SAFE_FREE (*buf);
476                 return (-1);
477         }
478
479         return (buflen);
480 }
481
482 /***************************************************************
483  Open the TDB passwd database for SAM account enumeration.
484 ****************************************************************/
485
486 static BOOL tdbsam_setsampwent(struct pdb_methods *my_methods, BOOL update)
487 {
488         struct tdbsam_privates *tdb_state = (struct tdbsam_privates *)my_methods->private_data;
489         
490         /* Open tdb passwd */
491         if (!(tdb_state->passwd_tdb = tdb_open_log(tdb_state->tdbsam_location, 0, TDB_DEFAULT, update?(O_RDWR|O_CREAT):O_RDONLY, 0600)))
492         {
493                 DEBUG(0, ("Unable to open/create TDB passwd\n"));
494                 return False;
495         }
496         
497         tdb_state->key = tdb_firstkey(tdb_state->passwd_tdb);
498
499         return True;
500 }
501
502 static void close_tdb(struct tdbsam_privates *tdb_state) 
503 {
504         if (tdb_state->passwd_tdb) {
505                 tdb_close(tdb_state->passwd_tdb);
506                 tdb_state->passwd_tdb = NULL;
507         }
508 }
509
510 /***************************************************************
511  End enumeration of the TDB passwd list.
512 ****************************************************************/
513
514 static void tdbsam_endsampwent(struct pdb_methods *my_methods)
515 {
516         struct tdbsam_privates *tdb_state = (struct tdbsam_privates *)my_methods->private_data;
517         close_tdb(tdb_state);
518         
519         DEBUG(7, ("endtdbpwent: closed sam database.\n"));
520 }
521
522 /*****************************************************************
523  Get one SAM_ACCOUNT from the TDB (next in line)
524 *****************************************************************/
525
526 static BOOL tdbsam_getsampwent(struct pdb_methods *my_methods, SAM_ACCOUNT *user)
527 {
528         struct tdbsam_privates *tdb_state = (struct tdbsam_privates *)my_methods->private_data;
529         TDB_DATA        data;
530         char *prefix = USERPREFIX;
531         int  prefixlen = strlen (prefix);
532
533
534         if (user==NULL) {
535                 DEBUG(0,("pdb_get_sampwent: SAM_ACCOUNT is NULL.\n"));
536                 return False;
537         }
538
539         /* skip all non-USER entries (eg. RIDs) */
540         while ((tdb_state->key.dsize != 0) && (strncmp(tdb_state->key.dptr, prefix, prefixlen)))
541                 /* increment to next in line */
542                 tdb_state->key = tdb_nextkey(tdb_state->passwd_tdb, tdb_state->key);
543
544         /* do we have an valid interation pointer? */
545         if(tdb_state->passwd_tdb == NULL) {
546                 DEBUG(0,("pdb_get_sampwent: Bad TDB Context pointer.\n"));
547                 return False;
548         }
549
550         data = tdb_fetch(tdb_state->passwd_tdb, tdb_state->key);
551         if (!data.dptr) {
552                 DEBUG(5,("pdb_getsampwent: database entry not found.\n"));
553                 return False;
554         }
555   
556         /* unpack the buffer */
557         if (!init_sam_from_buffer(tdb_state, user, data.dptr, data.dsize)) {
558                 DEBUG(0,("pdb_getsampwent: Bad SAM_ACCOUNT entry returned from TDB!\n"));
559                 SAFE_FREE(data.dptr);
560                 return False;
561         }
562         SAFE_FREE(data.dptr);
563         
564         /* increment to next in line */
565         tdb_state->key = tdb_nextkey(tdb_state->passwd_tdb, tdb_state->key);
566
567         return True;
568 }
569
570 /******************************************************************
571  Lookup a name in the SAM TDB
572 ******************************************************************/
573
574 static BOOL tdbsam_getsampwnam (struct pdb_methods *my_methods, SAM_ACCOUNT *user, const char *sname)
575 {
576         struct tdbsam_privates *tdb_state = (struct tdbsam_privates *)my_methods->private_data;
577         TDB_CONTEXT     *pwd_tdb;
578         TDB_DATA        data, key;
579         fstring         keystr;
580         fstring         name;
581
582         if (user==NULL) {
583                 DEBUG(0,("pdb_getsampwnam: SAM_ACCOUNT is NULL.\n"));
584                 return False;
585         }
586
587         /* Data is stored in all lower-case */
588         unix_strlower(sname, -1, name, sizeof(name));
589
590         /* set search key */
591         slprintf(keystr, sizeof(keystr)-1, "%s%s", USERPREFIX, name);
592         key.dptr = keystr;
593         key.dsize = strlen(keystr) + 1;
594
595         /* open the accounts TDB */
596         if (!(pwd_tdb = tdb_open_log(tdb_state->tdbsam_location, 0, TDB_DEFAULT, O_RDONLY, 0600))) {
597                 DEBUG(0, ("pdb_getsampwnam: Unable to open TDB passwd (%s)!\n", tdb_state->tdbsam_location));
598                 return False;
599         }
600
601         /* get the record */
602         data = tdb_fetch(pwd_tdb, key);
603         if (!data.dptr) {
604                 DEBUG(5,("pdb_getsampwnam (TDB): error fetching database.\n"));
605                 DEBUGADD(5, (" Error: %s\n", tdb_errorstr(pwd_tdb)));
606                 DEBUGADD(5, (" Key: %s\n", keystr));
607                 tdb_close(pwd_tdb);
608                 return False;
609         }
610   
611         /* unpack the buffer */
612         if (!init_sam_from_buffer(tdb_state, user, data.dptr, data.dsize)) {
613                 DEBUG(0,("pdb_getsampwent: Bad SAM_ACCOUNT entry returned from TDB!\n"));
614                 SAFE_FREE(data.dptr);
615                 tdb_close(pwd_tdb);
616                 return False;
617         }
618         SAFE_FREE(data.dptr);
619
620         /* no further use for database, close it now */
621         tdb_close(pwd_tdb);
622         
623         return True;
624 }
625
626 /***************************************************************************
627  Search by rid
628  **************************************************************************/
629
630 static BOOL tdbsam_getsampwrid (struct pdb_methods *my_methods, SAM_ACCOUNT *user, uint32 rid)
631 {
632         struct tdbsam_privates *tdb_state = (struct tdbsam_privates *)my_methods->private_data;
633         TDB_CONTEXT             *pwd_tdb;
634         TDB_DATA                data, key;
635         fstring                 keystr;
636         fstring                 name;
637         
638         if (user==NULL) {
639                 DEBUG(0,("pdb_getsampwrid: SAM_ACCOUNT is NULL.\n"));
640                 return False;
641         }
642
643         /* set search key */
644         slprintf(keystr, sizeof(keystr)-1, "%s%.8x", RIDPREFIX, rid);
645         key.dptr = keystr;
646         key.dsize = strlen (keystr) + 1;
647
648         /* open the accounts TDB */
649         if (!(pwd_tdb = tdb_open_log(tdb_state->tdbsam_location, 0, TDB_DEFAULT, O_RDONLY, 0600))) {
650                 DEBUG(0, ("pdb_getsampwrid: Unable to open TDB rid database!\n"));
651                 return False;
652         }
653
654         /* get the record */
655         data = tdb_fetch (pwd_tdb, key);
656         if (!data.dptr) {
657                 DEBUG(5,("pdb_getsampwrid (TDB): error looking up RID %d by key %s.\n", rid, keystr));
658                 DEBUGADD(5, (" Error: %s\n", tdb_errorstr(pwd_tdb)));
659                 tdb_close (pwd_tdb);
660                 return False;
661         }
662
663         fstrcpy (name, data.dptr);
664         SAFE_FREE(data.dptr);
665         
666         tdb_close (pwd_tdb);
667         
668         return tdbsam_getsampwnam (my_methods, user, name);
669 }
670
671 static BOOL tdbsam_getsampwsid(struct pdb_methods *my_methods, SAM_ACCOUNT * user, DOM_SID *sid)
672 {
673         uint32 rid;
674         if (!sid_peek_check_rid(get_global_sam_sid(), sid, &rid))
675                 return False;
676         return tdbsam_getsampwrid(my_methods, user, rid);
677 }
678
679 /***************************************************************************
680  Delete a SAM_ACCOUNT
681 ****************************************************************************/
682
683 static BOOL tdbsam_delete_sam_account(struct pdb_methods *my_methods, SAM_ACCOUNT *sam_pass)
684 {
685         struct tdbsam_privates *tdb_state = (struct tdbsam_privates *)my_methods->private_data;
686         TDB_CONTEXT     *pwd_tdb;
687         TDB_DATA        key;
688         fstring         keystr;
689         uint32          rid;
690         fstring         name;
691         
692         unix_strlower(pdb_get_username(sam_pass), -1, name, sizeof(name));
693         
694         /* open the TDB */
695         if (!(pwd_tdb = tdb_open_log(tdb_state->tdbsam_location, 0, TDB_DEFAULT, O_RDWR, 0600))) {
696                 DEBUG(0, ("Unable to open TDB passwd!"));
697                 return False;
698         }
699   
700         /* set the search key */
701         slprintf(keystr, sizeof(keystr)-1, "%s%s", USERPREFIX, name);
702         key.dptr = keystr;
703         key.dsize = strlen (keystr) + 1;
704         
705         rid = pdb_get_user_rid(sam_pass);
706
707         /* it's outaa here!  8^) */
708         if (tdb_delete(pwd_tdb, key) != TDB_SUCCESS) {
709                 DEBUG(5, ("Error deleting entry from tdb passwd database!\n"));
710                 DEBUGADD(5, (" Error: %s\n", tdb_errorstr(pwd_tdb)));
711                 tdb_close(pwd_tdb); 
712                 return False;
713         }       
714
715         /* delete also the RID key */
716
717         /* set the search key */
718         slprintf(keystr, sizeof(keystr)-1, "%s%.8x", RIDPREFIX, rid);
719         key.dptr = keystr;
720         key.dsize = strlen (keystr) + 1;
721
722         /* it's outaa here!  8^) */
723         if (tdb_delete(pwd_tdb, key) != TDB_SUCCESS) {
724                 DEBUG(5, ("Error deleting entry from tdb rid database!\n"));
725                 DEBUGADD(5, (" Error: %s\n", tdb_errorstr(pwd_tdb)));
726                 tdb_close(pwd_tdb); 
727                 return False;
728         }
729         
730         tdb_close(pwd_tdb);
731         
732         return True;
733 }
734
735 /***************************************************************************
736  Update the TDB SAM
737 ****************************************************************************/
738
739 static BOOL tdb_update_sam(struct pdb_methods *my_methods, SAM_ACCOUNT* newpwd, int flag)
740 {
741         struct tdbsam_privates *tdb_state = (struct tdbsam_privates *)my_methods->private_data;
742         TDB_CONTEXT     *pwd_tdb = NULL;
743         TDB_DATA        key, data;
744         uint8           *buf = NULL;
745         fstring         keystr;
746         fstring         name;
747         BOOL            ret = True;
748         uint32          user_rid;
749         BOOL            tdb_ret;
750
751         /* invalidate the existing TDB iterator if it is open */
752         if (tdb_state->passwd_tdb) {
753                 tdb_close(tdb_state->passwd_tdb);
754                 tdb_state->passwd_tdb = NULL;
755         }
756
757         /* open the account TDB passwd*/
758         pwd_tdb = tdb_open_log(tdb_state->tdbsam_location, 0, TDB_DEFAULT, O_RDWR | O_CREAT, 0600);
759         if (!pwd_tdb)
760         {
761                 DEBUG(0, ("tdb_update_sam: Unable to open TDB passwd (%s)!\n", tdb_state->tdbsam_location));
762                 return False;
763         }
764
765         /* if flag == TDB_INSERT then make up a new RID else throw an error. */
766         if (!(user_rid = pdb_get_user_rid(newpwd))) {
767                 if (flag & TDB_INSERT) {
768                         if (IS_SAM_UNIX_USER(newpwd)) {
769                                 if (tdb_state->algorithmic_rids) {
770                                         user_rid = fallback_pdb_uid_to_user_rid(pdb_get_uid(newpwd));
771                                 } else {
772                                         user_rid = BASE_RID;
773                                         tdb_ret = tdb_change_uint32_atomic(pwd_tdb, "RID_COUNTER", &user_rid, RID_MULTIPLIER);
774                                         if (!tdb_ret) {
775                                                 ret = False;
776                                                 goto done;
777                                         }
778                                 }
779                                 pdb_set_user_sid_from_rid(newpwd, user_rid);
780                         } else {
781                                 user_rid = tdb_state->low_nua_rid;
782                                 tdb_ret = tdb_change_uint32_atomic(pwd_tdb, "NUA_RID_COUNTER", &user_rid, RID_MULTIPLIER);
783                                 if (!tdb_ret) {
784                                         ret = False;
785                                         goto done;
786                                 }
787                                 if (user_rid > tdb_state->high_nua_rid) {
788                                         DEBUG(0, ("tdbsam: no NUA rids available, cannot add user %s!\n", pdb_get_username(newpwd)));
789                                         ret = False;
790                                         goto done;
791                                 }
792                                 pdb_set_user_sid_from_rid(newpwd, user_rid);
793                         }
794                 } else {
795                         DEBUG (0,("tdb_update_sam: Failing to store a SAM_ACCOUNT for [%s] without a RID\n",pdb_get_username(newpwd)));
796                         ret = False;
797                         goto done;
798                 }
799         }
800
801         if (!pdb_get_group_rid(newpwd)) {
802                 if (flag & TDB_INSERT) {
803                         if (!tdb_state->permit_non_unix_accounts) {
804                                 DEBUG (0,("tdb_update_sam: Failing to store a SAM_ACCOUNT for [%s] without a primary group RID\n",pdb_get_username(newpwd)));
805                                 ret = False;
806                                 goto done;
807                         } else {
808                                 /* This seems like a good default choice for non-unix users */
809                                 pdb_set_group_sid_from_rid(newpwd, DOMAIN_GROUP_RID_USERS);
810                         }
811                 } else {
812                         DEBUG (0,("tdb_update_sam: Failing to store a SAM_ACCOUNT for [%s] without a primary group RID\n",pdb_get_username(newpwd)));
813                         ret = False;
814                         goto done;
815                 }
816         }
817
818         /* copy the SAM_ACCOUNT struct into a BYTE buffer for storage */
819         if ((data.dsize=init_buffer_from_sam (tdb_state, &buf, newpwd)) == -1) {
820                 DEBUG(0,("tdb_update_sam: ERROR - Unable to copy SAM_ACCOUNT info BYTE buffer!\n"));
821                 ret = False;
822                 goto done;
823         }
824         data.dptr = buf;
825
826         unix_strlower(pdb_get_username(newpwd), -1, name, sizeof(name));
827         
828         DEBUG(5, ("Storing %saccount %s with RID %d\n", flag == TDB_INSERT ? "(new) " : "", name, user_rid));
829
830         /* setup the USER index key */
831         slprintf(keystr, sizeof(keystr)-1, "%s%s", USERPREFIX, name);
832         key.dptr = keystr;
833         key.dsize = strlen (keystr) + 1;
834
835         /* add the account */
836         if (tdb_store(pwd_tdb, key, data, flag) != TDB_SUCCESS) {
837                 DEBUG(0, ("Unable to modify passwd TDB!"));
838                 DEBUGADD(0, (" Error: %s", tdb_errorstr(pwd_tdb)));
839                 DEBUGADD(0, (" occured while storing the main record (%s)\n", keystr));
840                 ret = False;
841                 goto done;
842         }
843         
844         /* setup RID data */
845         data.dsize = sizeof(fstring);
846         data.dptr = name;
847
848         /* setup the RID index key */
849         slprintf(keystr, sizeof(keystr)-1, "%s%.8x", RIDPREFIX, user_rid);
850         key.dptr = keystr;
851         key.dsize = strlen (keystr) + 1;
852         
853         /* add the reference */
854         if (tdb_store(pwd_tdb, key, data, flag) != TDB_SUCCESS) {
855                 DEBUG(0, ("Unable to modify TDB passwd !"));
856                 DEBUGADD(0, (" Error: %s\n", tdb_errorstr(pwd_tdb)));
857                 DEBUGADD(0, (" occured while storing the RID index (%s)\n", keystr));
858                 ret = False;
859                 goto done;
860         }
861
862 done:   
863         /* cleanup */
864         tdb_close (pwd_tdb);
865         SAFE_FREE(buf);
866         
867         return (ret);   
868 }
869
870 /***************************************************************************
871  Modifies an existing SAM_ACCOUNT
872 ****************************************************************************/
873
874 static BOOL tdbsam_update_sam_account (struct pdb_methods *my_methods, SAM_ACCOUNT *newpwd)
875 {
876         return (tdb_update_sam(my_methods, newpwd, TDB_MODIFY));
877 }
878
879 /***************************************************************************
880  Adds an existing SAM_ACCOUNT
881 ****************************************************************************/
882
883 static BOOL tdbsam_add_sam_account (struct pdb_methods *my_methods, SAM_ACCOUNT *newpwd)
884 {
885         return (tdb_update_sam(my_methods, newpwd, TDB_INSERT));
886 }
887
888 static void free_private_data(void **vp) 
889 {
890         struct tdbsam_privates **tdb_state = (struct tdbsam_privates **)vp;
891         close_tdb(*tdb_state);
892         *tdb_state = NULL;
893
894         /* No need to free any further, as it is talloc()ed */
895 }
896
897
898 NTSTATUS pdb_init_tdbsam(PDB_CONTEXT *pdb_context, PDB_METHODS **pdb_method, const char *location)
899 {
900         NTSTATUS nt_status;
901         struct tdbsam_privates *tdb_state;
902
903 #if 0 /* when made a module use this */
904         tdbsam_debug_level = debug_add_class("tdbsam");
905         if(tdbsam_debug_level == -1) {
906                 tdbsam_debug_level = DBGC_ALL;
907                 DEBUG(0, ("tdbsam: Couldn't register custom debugging class!\n"));
908         }
909 #endif
910
911         if (!NT_STATUS_IS_OK(nt_status = make_pdb_methods(pdb_context->mem_ctx, pdb_method))) {
912                 return nt_status;
913         }
914
915         (*pdb_method)->name = "tdbsam";
916
917         (*pdb_method)->setsampwent = tdbsam_setsampwent;
918         (*pdb_method)->endsampwent = tdbsam_endsampwent;
919         (*pdb_method)->getsampwent = tdbsam_getsampwent;
920         (*pdb_method)->getsampwnam = tdbsam_getsampwnam;
921         (*pdb_method)->getsampwsid = tdbsam_getsampwsid;
922         (*pdb_method)->add_sam_account = tdbsam_add_sam_account;
923         (*pdb_method)->update_sam_account = tdbsam_update_sam_account;
924         (*pdb_method)->delete_sam_account = tdbsam_delete_sam_account;
925
926         tdb_state = talloc_zero(pdb_context->mem_ctx, sizeof(struct tdbsam_privates));
927
928         if (!tdb_state) {
929                 DEBUG(0, ("talloc() failed for tdbsam private_data!\n"));
930                 return NT_STATUS_NO_MEMORY;
931         }
932
933         if (location) {
934                 tdb_state->tdbsam_location = talloc_strdup(pdb_context->mem_ctx, location);
935         } else {
936                 pstring tdbfile;
937                 get_private_directory(tdbfile);
938                 pstrcat(tdbfile, "/");
939                 pstrcat(tdbfile, PASSDB_FILE_NAME);
940                 tdb_state->tdbsam_location = talloc_strdup(pdb_context->mem_ctx, tdbfile);
941         }
942
943         tdb_state->algorithmic_rids = True;
944
945         (*pdb_method)->private_data = tdb_state;
946
947         (*pdb_method)->free_private_data = free_private_data;
948
949         return NT_STATUS_OK;
950 }
951
952 NTSTATUS pdb_init_tdbsam_nua(PDB_CONTEXT *pdb_context, PDB_METHODS **pdb_method, const char *location)
953 {
954         NTSTATUS nt_status;
955         struct tdbsam_privates *tdb_state;
956         uint32 low_nua_uid, high_nua_uid;
957
958         if (!NT_STATUS_IS_OK(nt_status = pdb_init_tdbsam(pdb_context, pdb_method, location))) {
959                 return nt_status;
960         }
961
962         (*pdb_method)->name = "tdbsam_nua";
963
964         tdb_state = (*pdb_method)->private_data;
965
966         tdb_state->permit_non_unix_accounts = True;
967
968         if (!lp_non_unix_account_range(&low_nua_uid, &high_nua_uid)) {
969                 DEBUG(0, ("cannot use tdbsam_nua without 'non unix account range' in smb.conf!\n"));
970                 return NT_STATUS_UNSUCCESSFUL;
971         }
972
973         tdb_state->low_nua_rid=fallback_pdb_uid_to_user_rid(low_nua_uid);
974
975         tdb_state->high_nua_rid=fallback_pdb_uid_to_user_rid(high_nua_uid);
976
977         return NT_STATUS_OK;
978 }
979
980
981 #else
982
983 NTSTATUS pdb_init_tdbsam(PDB_CONTEXT *pdb_context, PDB_METHODS **pdb_method, const char *location)
984 {
985         DEBUG(0, ("tdbsam not compiled in!\n"));
986         return NT_STATUS_UNSUCCESSFUL;
987 }
988
989 NTSTATUS pdb_init_tdbsam_nua(PDB_CONTEXT *pdb_context, PDB_METHODS **pdb_method, const char *location)
990 {
991         DEBUG(0, ("tdbsam_nua not compiled in!\n"));
992         return NT_STATUS_UNSUCCESSFUL;
993 }
994
995
996 #endif