change ADS negprot to match more closely the options used by w2k. This
[Samba.git] / source / passdb / pdb_tdb.c
blob27453fc1af76f2557eb5e992466d431feefc07a1
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.
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.
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.
25 #include "includes.h"
27 #if 0 /* when made a module use this */
29 static int tdbsam_debug_level = DBGC_ALL;
30 #undef DBGC_CLASS
31 #define DBGC_CLASS tdbsam_debug_level
33 #else
35 #undef DBGC_CLASS
36 #define DBGC_CLASS DBGC_PASSDB
38 #endif
40 #ifdef WITH_TDB_SAM
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_"
48 struct tdbsam_privates {
49 TDB_CONTEXT *passwd_tdb;
50 TDB_DATA key;
52 /* retrive-once info */
53 const char *tdbsam_location;
55 BOOL permit_non_unix_accounts;
57 BOOL algorithmic_rids;
59 uint32 low_nua_rid;
60 uint32 high_nua_rid;
63 /**********************************************************************
64 Intialize a SAM_ACCOUNT struct from a BYTE buffer of size len
65 *********************************************************************/
67 static BOOL init_sam_from_buffer (struct tdbsam_privates *tdb_state,
68 SAM_ACCOUNT *sampass, uint8 *buf, uint32 buflen)
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;
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 */
108 if(sampass == NULL || buf == NULL) {
109 DEBUG(0, ("init_sam_from_buffer: NULL parameters found!\n"));
110 return False;
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);
145 if (len == -1) {
146 ret = False;
147 goto done;
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
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;
162 if (pw) {
163 uid = pw->pw_uid;
164 gid = pw->pw_gid;
166 pdb_set_unix_homedir(sampass, pw->pw_dir);
168 passwd_free(&pw);
170 pdb_set_uid(sampass, uid);
171 pdb_set_gid(sampass, gid);
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);
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);
186 if (homedir) {
187 pdb_set_homedir(sampass, homedir, True);
189 else {
190 pdb_set_homedir(sampass,
191 talloc_sub_specified(sampass->mem_ctx,
192 lp_logon_home(),
193 username, domain,
194 uid, gid),
195 False);
198 if (dir_drive)
199 pdb_set_dir_drive(sampass, dir_drive, True);
200 else {
201 pdb_set_dir_drive(sampass,
202 talloc_sub_specified(sampass->mem_ctx,
203 lp_logon_drive(),
204 username, domain,
205 uid, gid),
206 False);
209 if (logon_script)
210 pdb_set_logon_script(sampass, logon_script, True);
211 else {
212 pdb_set_logon_script(sampass,
213 talloc_sub_specified(sampass->mem_ctx,
214 lp_logon_script(),
215 username, domain,
216 uid, gid),
217 False);
220 if (profile_path) {
221 pdb_set_profile_path(sampass, profile_path, True);
222 } else {
223 pdb_set_profile_path(sampass,
224 talloc_sub_specified(sampass->mem_ctx,
225 lp_logon_path(),
226 username, domain,
227 uid, gid),
228 False);
231 pdb_set_acct_desc (sampass, acct_desc);
232 pdb_set_workstations (sampass, workstations);
233 pdb_set_munged_dial (sampass, munged_dial);
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;
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;
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);
259 done:
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);
273 return ret;
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)
282 size_t len, buflen;
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;
294 uint32 user_rid, group_rid;
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;
313 const uint8 *lm_pw;
314 const uint8 *nt_pw;
315 uint32 lm_pw_len = 16;
316 uint32 nt_pw_len = 16;
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;
324 *buf = NULL;
325 buflen = 0;
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);
334 user_rid = pdb_get_user_rid(sampass);
335 group_rid = pdb_get_group_rid(sampass);
337 username = pdb_get_username(sampass);
338 if (username) username_len = strlen(username) +1;
339 else username_len = 0;
341 domain = pdb_get_domain(sampass);
342 if (domain) domain_len = strlen(domain) +1;
343 else domain_len = 0;
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;
349 fullname = pdb_get_fullname(sampass);
350 if (fullname) fullname_len = strlen(fullname) +1;
351 else fullname_len = 0;
354 * Only updates fields which have been set (not defaults from smb.conf)
357 if (IS_SAM_SET(sampass, FLAG_SAM_DRIVE))
358 dir_drive = pdb_get_dir_drive(sampass);
359 else dir_drive = NULL;
360 if (dir_drive) dir_drive_len = strlen(dir_drive) +1;
361 else dir_drive_len = 0;
363 if (IS_SAM_SET(sampass, FLAG_SAM_SMBHOME)) homedir = pdb_get_homedir(sampass);
364 else homedir = NULL;
365 if (homedir) homedir_len = strlen(homedir) +1;
366 else homedir_len = 0;
368 if (IS_SAM_SET(sampass, FLAG_SAM_LOGONSCRIPT)) logon_script = pdb_get_logon_script(sampass);
369 else logon_script = NULL;
370 if (logon_script) logon_script_len = strlen(logon_script) +1;
371 else logon_script_len = 0;
373 if (IS_SAM_SET(sampass, FLAG_SAM_PROFILE)) profile_path = pdb_get_profile_path(sampass);
374 else profile_path = NULL;
375 if (profile_path) profile_path_len = strlen(profile_path) +1;
376 else profile_path_len = 0;
378 lm_pw = pdb_get_lanman_passwd(sampass);
379 if (!lm_pw) lm_pw_len = 0;
381 nt_pw = pdb_get_nt_passwd(sampass);
382 if (!nt_pw) nt_pw_len = 0;
384 acct_desc = pdb_get_acct_desc(sampass);
385 if (acct_desc) acct_desc_len = strlen(acct_desc) +1;
386 else acct_desc_len = 0;
388 workstations = pdb_get_workstations(sampass);
389 if (workstations) workstations_len = strlen(workstations) +1;
390 else workstations_len = 0;
392 unknown_str = NULL;
393 unknown_str_len = 0;
395 munged_dial = pdb_get_munged_dial(sampass);
396 if (munged_dial) munged_dial_len = strlen(munged_dial) +1;
397 else munged_dial_len = 0;
399 /* one time to get the size needed */
400 len = tdb_pack(NULL, 0, TDB_FORMAT_STRING,
401 logon_time,
402 logoff_time,
403 kickoff_time,
404 pass_last_set_time,
405 pass_can_change_time,
406 pass_must_change_time,
407 username_len, username,
408 domain_len, domain,
409 nt_username_len, nt_username,
410 fullname_len, fullname,
411 homedir_len, homedir,
412 dir_drive_len, dir_drive,
413 logon_script_len, logon_script,
414 profile_path_len, profile_path,
415 acct_desc_len, acct_desc,
416 workstations_len, workstations,
417 unknown_str_len, unknown_str,
418 munged_dial_len, munged_dial,
419 user_rid,
420 group_rid,
421 lm_pw_len, lm_pw,
422 nt_pw_len, nt_pw,
423 pdb_get_acct_ctrl(sampass),
424 pdb_get_unknown3(sampass),
425 pdb_get_logon_divs(sampass),
426 pdb_get_hours_len(sampass),
427 MAX_HOURS_LEN, pdb_get_hours(sampass),
428 pdb_get_unknown5(sampass),
429 pdb_get_unknown6(sampass));
432 /* malloc the space needed */
433 if ( (*buf=(uint8*)malloc(len)) == NULL) {
434 DEBUG(0,("init_buffer_from_sam: Unable to malloc() memory for buffer!\n"));
435 return (-1);
438 /* now for the real call to tdb_pack() */
439 buflen = tdb_pack(*buf, len, TDB_FORMAT_STRING,
440 logon_time,
441 logoff_time,
442 kickoff_time,
443 pass_last_set_time,
444 pass_can_change_time,
445 pass_must_change_time,
446 username_len, username,
447 domain_len, domain,
448 nt_username_len, nt_username,
449 fullname_len, fullname,
450 homedir_len, homedir,
451 dir_drive_len, dir_drive,
452 logon_script_len, logon_script,
453 profile_path_len, profile_path,
454 acct_desc_len, acct_desc,
455 workstations_len, workstations,
456 unknown_str_len, unknown_str,
457 munged_dial_len, munged_dial,
458 user_rid,
459 group_rid,
460 lm_pw_len, lm_pw,
461 nt_pw_len, nt_pw,
462 pdb_get_acct_ctrl(sampass),
463 pdb_get_unknown3(sampass),
464 pdb_get_logon_divs(sampass),
465 pdb_get_hours_len(sampass),
466 MAX_HOURS_LEN, pdb_get_hours(sampass),
467 pdb_get_unknown5(sampass),
468 pdb_get_unknown6(sampass));
471 /* check to make sure we got it correct */
472 if (buflen != len) {
473 DEBUG(0, ("init_buffer_from_sam: somthing odd is going on here: bufflen (%d) != len (%d) in tdb_pack operations!\n",
474 buflen, len));
475 /* error */
476 SAFE_FREE (*buf);
477 return (-1);
480 return (buflen);
483 /***************************************************************
484 Open the TDB passwd database for SAM account enumeration.
485 ****************************************************************/
487 static BOOL tdbsam_setsampwent(struct pdb_methods *my_methods, BOOL update)
489 struct tdbsam_privates *tdb_state = (struct tdbsam_privates *)my_methods->private_data;
491 /* Open tdb passwd */
492 if (!(tdb_state->passwd_tdb = tdb_open_log(tdb_state->tdbsam_location, 0, TDB_DEFAULT, update?(O_RDWR|O_CREAT):O_RDONLY, 0600)))
494 DEBUG(0, ("Unable to open/create TDB passwd\n"));
495 return False;
498 tdb_state->key = tdb_firstkey(tdb_state->passwd_tdb);
500 return True;
503 static void close_tdb(struct tdbsam_privates *tdb_state)
505 if (tdb_state->passwd_tdb) {
506 tdb_close(tdb_state->passwd_tdb);
507 tdb_state->passwd_tdb = NULL;
511 /***************************************************************
512 End enumeration of the TDB passwd list.
513 ****************************************************************/
515 static void tdbsam_endsampwent(struct pdb_methods *my_methods)
517 struct tdbsam_privates *tdb_state = (struct tdbsam_privates *)my_methods->private_data;
518 close_tdb(tdb_state);
520 DEBUG(7, ("endtdbpwent: closed sam database.\n"));
523 /*****************************************************************
524 Get one SAM_ACCOUNT from the TDB (next in line)
525 *****************************************************************/
527 static BOOL tdbsam_getsampwent(struct pdb_methods *my_methods, SAM_ACCOUNT *user)
529 struct tdbsam_privates *tdb_state = (struct tdbsam_privates *)my_methods->private_data;
530 TDB_DATA data;
531 char *prefix = USERPREFIX;
532 int prefixlen = strlen (prefix);
535 if (user==NULL) {
536 DEBUG(0,("pdb_get_sampwent: SAM_ACCOUNT is NULL.\n"));
537 return False;
540 /* skip all non-USER entries (eg. RIDs) */
541 while ((tdb_state->key.dsize != 0) && (strncmp(tdb_state->key.dptr, prefix, prefixlen)))
542 /* increment to next in line */
543 tdb_state->key = tdb_nextkey(tdb_state->passwd_tdb, tdb_state->key);
545 /* do we have an valid iteration pointer? */
546 if(tdb_state->passwd_tdb == NULL) {
547 DEBUG(0,("pdb_get_sampwent: Bad TDB Context pointer.\n"));
548 return False;
551 data = tdb_fetch(tdb_state->passwd_tdb, tdb_state->key);
552 if (!data.dptr) {
553 DEBUG(5,("pdb_getsampwent: database entry not found.\n"));
554 return False;
557 /* unpack the buffer */
558 if (!init_sam_from_buffer(tdb_state, user, data.dptr, data.dsize)) {
559 DEBUG(0,("pdb_getsampwent: Bad SAM_ACCOUNT entry returned from TDB!\n"));
560 SAFE_FREE(data.dptr);
561 return False;
563 SAFE_FREE(data.dptr);
565 /* increment to next in line */
566 tdb_state->key = tdb_nextkey(tdb_state->passwd_tdb, tdb_state->key);
568 return True;
571 /******************************************************************
572 Lookup a name in the SAM TDB
573 ******************************************************************/
575 static BOOL tdbsam_getsampwnam (struct pdb_methods *my_methods, SAM_ACCOUNT *user, const char *sname)
577 struct tdbsam_privates *tdb_state = (struct tdbsam_privates *)my_methods->private_data;
578 TDB_CONTEXT *pwd_tdb;
579 TDB_DATA data, key;
580 fstring keystr;
581 fstring name;
583 if (user==NULL) {
584 DEBUG(0,("pdb_getsampwnam: SAM_ACCOUNT is NULL.\n"));
585 return False;
588 /* Data is stored in all lower-case */
589 unix_strlower(sname, -1, name, sizeof(name));
591 /* set search key */
592 slprintf(keystr, sizeof(keystr)-1, "%s%s", USERPREFIX, name);
593 key.dptr = keystr;
594 key.dsize = strlen(keystr) + 1;
596 /* open the accounts TDB */
597 if (!(pwd_tdb = tdb_open_log(tdb_state->tdbsam_location, 0, TDB_DEFAULT, O_RDONLY, 0600))) {
598 DEBUG(0, ("pdb_getsampwnam: Unable to open TDB passwd (%s)!\n", tdb_state->tdbsam_location));
599 return False;
602 /* get the record */
603 data = tdb_fetch(pwd_tdb, key);
604 if (!data.dptr) {
605 DEBUG(5,("pdb_getsampwnam (TDB): error fetching database.\n"));
606 DEBUGADD(5, (" Error: %s\n", tdb_errorstr(pwd_tdb)));
607 DEBUGADD(5, (" Key: %s\n", keystr));
608 tdb_close(pwd_tdb);
609 return False;
612 /* unpack the buffer */
613 if (!init_sam_from_buffer(tdb_state, user, data.dptr, data.dsize)) {
614 DEBUG(0,("pdb_getsampwent: Bad SAM_ACCOUNT entry returned from TDB!\n"));
615 SAFE_FREE(data.dptr);
616 tdb_close(pwd_tdb);
617 return False;
619 SAFE_FREE(data.dptr);
621 /* no further use for database, close it now */
622 tdb_close(pwd_tdb);
624 return True;
627 /***************************************************************************
628 Search by rid
629 **************************************************************************/
631 static BOOL tdbsam_getsampwrid (struct pdb_methods *my_methods, SAM_ACCOUNT *user, uint32 rid)
633 struct tdbsam_privates *tdb_state = (struct tdbsam_privates *)my_methods->private_data;
634 TDB_CONTEXT *pwd_tdb;
635 TDB_DATA data, key;
636 fstring keystr;
637 fstring name;
639 if (user==NULL) {
640 DEBUG(0,("pdb_getsampwrid: SAM_ACCOUNT is NULL.\n"));
641 return False;
644 /* set search key */
645 slprintf(keystr, sizeof(keystr)-1, "%s%.8x", RIDPREFIX, rid);
646 key.dptr = keystr;
647 key.dsize = strlen (keystr) + 1;
649 /* open the accounts TDB */
650 if (!(pwd_tdb = tdb_open_log(tdb_state->tdbsam_location, 0, TDB_DEFAULT, O_RDONLY, 0600))) {
651 DEBUG(0, ("pdb_getsampwrid: Unable to open TDB rid database!\n"));
652 return False;
655 /* get the record */
656 data = tdb_fetch (pwd_tdb, key);
657 if (!data.dptr) {
658 DEBUG(5,("pdb_getsampwrid (TDB): error looking up RID %d by key %s.\n", rid, keystr));
659 DEBUGADD(5, (" Error: %s\n", tdb_errorstr(pwd_tdb)));
660 tdb_close (pwd_tdb);
661 return False;
664 fstrcpy (name, data.dptr);
665 SAFE_FREE(data.dptr);
667 tdb_close (pwd_tdb);
669 return tdbsam_getsampwnam (my_methods, user, name);
672 static BOOL tdbsam_getsampwsid(struct pdb_methods *my_methods, SAM_ACCOUNT * user, const DOM_SID *sid)
674 uint32 rid;
675 if (!sid_peek_check_rid(get_global_sam_sid(), sid, &rid))
676 return False;
677 return tdbsam_getsampwrid(my_methods, user, rid);
680 /***************************************************************************
681 Delete a SAM_ACCOUNT
682 ****************************************************************************/
684 static BOOL tdbsam_delete_sam_account(struct pdb_methods *my_methods, SAM_ACCOUNT *sam_pass)
686 struct tdbsam_privates *tdb_state = (struct tdbsam_privates *)my_methods->private_data;
687 TDB_CONTEXT *pwd_tdb;
688 TDB_DATA key;
689 fstring keystr;
690 uint32 rid;
691 fstring name;
693 unix_strlower(pdb_get_username(sam_pass), -1, name, sizeof(name));
695 /* open the TDB */
696 if (!(pwd_tdb = tdb_open_log(tdb_state->tdbsam_location, 0, TDB_DEFAULT, O_RDWR, 0600))) {
697 DEBUG(0, ("Unable to open TDB passwd!"));
698 return False;
701 /* set the search key */
702 slprintf(keystr, sizeof(keystr)-1, "%s%s", USERPREFIX, name);
703 key.dptr = keystr;
704 key.dsize = strlen (keystr) + 1;
706 rid = pdb_get_user_rid(sam_pass);
708 /* it's outaa here! 8^) */
709 if (tdb_delete(pwd_tdb, key) != TDB_SUCCESS) {
710 DEBUG(5, ("Error deleting entry from tdb passwd database!\n"));
711 DEBUGADD(5, (" Error: %s\n", tdb_errorstr(pwd_tdb)));
712 tdb_close(pwd_tdb);
713 return False;
716 /* delete also the RID key */
718 /* set the search key */
719 slprintf(keystr, sizeof(keystr)-1, "%s%.8x", RIDPREFIX, rid);
720 key.dptr = keystr;
721 key.dsize = strlen (keystr) + 1;
723 /* it's outaa here! 8^) */
724 if (tdb_delete(pwd_tdb, key) != TDB_SUCCESS) {
725 DEBUG(5, ("Error deleting entry from tdb rid database!\n"));
726 DEBUGADD(5, (" Error: %s\n", tdb_errorstr(pwd_tdb)));
727 tdb_close(pwd_tdb);
728 return False;
731 tdb_close(pwd_tdb);
733 return True;
736 /***************************************************************************
737 Update the TDB SAM
738 ****************************************************************************/
740 static BOOL tdb_update_sam(struct pdb_methods *my_methods, SAM_ACCOUNT* newpwd, int flag)
742 struct tdbsam_privates *tdb_state = (struct tdbsam_privates *)my_methods->private_data;
743 TDB_CONTEXT *pwd_tdb = NULL;
744 TDB_DATA key, data;
745 uint8 *buf = NULL;
746 fstring keystr;
747 fstring name;
748 BOOL ret = True;
749 uint32 user_rid;
750 BOOL tdb_ret;
752 /* invalidate the existing TDB iterator if it is open */
753 if (tdb_state->passwd_tdb) {
754 tdb_close(tdb_state->passwd_tdb);
755 tdb_state->passwd_tdb = NULL;
758 /* open the account TDB passwd*/
759 pwd_tdb = tdb_open_log(tdb_state->tdbsam_location, 0, TDB_DEFAULT, O_RDWR | O_CREAT, 0600);
760 if (!pwd_tdb)
762 DEBUG(0, ("tdb_update_sam: Unable to open TDB passwd (%s)!\n", tdb_state->tdbsam_location));
763 return False;
766 /* if flag == TDB_INSERT then make up a new RID else throw an error. */
767 if (!(user_rid = pdb_get_user_rid(newpwd))) {
768 if (flag & TDB_INSERT) {
769 if (IS_SAM_UNIX_USER(newpwd)) {
770 if (tdb_state->algorithmic_rids) {
771 user_rid = fallback_pdb_uid_to_user_rid(pdb_get_uid(newpwd));
772 } else {
773 user_rid = BASE_RID;
774 tdb_ret = tdb_change_uint32_atomic(pwd_tdb, "RID_COUNTER", &user_rid, RID_MULTIPLIER);
775 if (!tdb_ret) {
776 ret = False;
777 goto done;
780 pdb_set_user_sid_from_rid(newpwd, user_rid);
781 } else {
782 user_rid = tdb_state->low_nua_rid;
783 tdb_ret = tdb_change_uint32_atomic(pwd_tdb, "NUA_RID_COUNTER", &user_rid, RID_MULTIPLIER);
784 if (!tdb_ret) {
785 ret = False;
786 goto done;
788 if (user_rid > tdb_state->high_nua_rid) {
789 DEBUG(0, ("tdbsam: no NUA rids available, cannot add user %s!\n", pdb_get_username(newpwd)));
790 ret = False;
791 goto done;
793 pdb_set_user_sid_from_rid(newpwd, user_rid);
795 } else {
796 DEBUG (0,("tdb_update_sam: Failing to store a SAM_ACCOUNT for [%s] without a RID\n",pdb_get_username(newpwd)));
797 ret = False;
798 goto done;
802 if (!pdb_get_group_rid(newpwd)) {
803 if (flag & TDB_INSERT) {
804 if (!tdb_state->permit_non_unix_accounts) {
805 DEBUG (0,("tdb_update_sam: Failing to store a SAM_ACCOUNT for [%s] without a primary group RID\n",pdb_get_username(newpwd)));
806 ret = False;
807 goto done;
808 } else {
809 /* This seems like a good default choice for non-unix users */
810 pdb_set_group_sid_from_rid(newpwd, DOMAIN_GROUP_RID_USERS);
812 } else {
813 DEBUG (0,("tdb_update_sam: Failing to store a SAM_ACCOUNT for [%s] without a primary group RID\n",pdb_get_username(newpwd)));
814 ret = False;
815 goto done;
819 /* copy the SAM_ACCOUNT struct into a BYTE buffer for storage */
820 if ((data.dsize=init_buffer_from_sam (tdb_state, &buf, newpwd)) == -1) {
821 DEBUG(0,("tdb_update_sam: ERROR - Unable to copy SAM_ACCOUNT info BYTE buffer!\n"));
822 ret = False;
823 goto done;
825 data.dptr = buf;
827 unix_strlower(pdb_get_username(newpwd), -1, name, sizeof(name));
829 DEBUG(5, ("Storing %saccount %s with RID %d\n", flag == TDB_INSERT ? "(new) " : "", name, user_rid));
831 /* setup the USER index key */
832 slprintf(keystr, sizeof(keystr)-1, "%s%s", USERPREFIX, name);
833 key.dptr = keystr;
834 key.dsize = strlen (keystr) + 1;
836 /* add the account */
837 if (tdb_store(pwd_tdb, key, data, flag) != TDB_SUCCESS) {
838 DEBUG(0, ("Unable to modify passwd TDB!"));
839 DEBUGADD(0, (" Error: %s", tdb_errorstr(pwd_tdb)));
840 DEBUGADD(0, (" occured while storing the main record (%s)\n", keystr));
841 ret = False;
842 goto done;
845 /* setup RID data */
846 data.dsize = sizeof(fstring);
847 data.dptr = name;
849 /* setup the RID index key */
850 slprintf(keystr, sizeof(keystr)-1, "%s%.8x", RIDPREFIX, user_rid);
851 key.dptr = keystr;
852 key.dsize = strlen (keystr) + 1;
854 /* add the reference */
855 if (tdb_store(pwd_tdb, key, data, flag) != TDB_SUCCESS) {
856 DEBUG(0, ("Unable to modify TDB passwd !"));
857 DEBUGADD(0, (" Error: %s\n", tdb_errorstr(pwd_tdb)));
858 DEBUGADD(0, (" occured while storing the RID index (%s)\n", keystr));
859 ret = False;
860 goto done;
863 done:
864 /* cleanup */
865 tdb_close (pwd_tdb);
866 SAFE_FREE(buf);
868 return (ret);
871 /***************************************************************************
872 Modifies an existing SAM_ACCOUNT
873 ****************************************************************************/
875 static BOOL tdbsam_update_sam_account (struct pdb_methods *my_methods, SAM_ACCOUNT *newpwd)
877 return (tdb_update_sam(my_methods, newpwd, TDB_MODIFY));
880 /***************************************************************************
881 Adds an existing SAM_ACCOUNT
882 ****************************************************************************/
884 static BOOL tdbsam_add_sam_account (struct pdb_methods *my_methods, SAM_ACCOUNT *newpwd)
886 return (tdb_update_sam(my_methods, newpwd, TDB_INSERT));
889 static void free_private_data(void **vp)
891 struct tdbsam_privates **tdb_state = (struct tdbsam_privates **)vp;
892 close_tdb(*tdb_state);
893 *tdb_state = NULL;
895 /* No need to free any further, as it is talloc()ed */
899 NTSTATUS pdb_init_tdbsam(PDB_CONTEXT *pdb_context, PDB_METHODS **pdb_method, const char *location)
901 NTSTATUS nt_status;
902 struct tdbsam_privates *tdb_state;
904 #if 0 /* when made a module use this */
905 tdbsam_debug_level = debug_add_class("tdbsam");
906 if(tdbsam_debug_level == -1) {
907 tdbsam_debug_level = DBGC_ALL;
908 DEBUG(0, ("tdbsam: Couldn't register custom debugging class!\n"));
910 #endif
912 if (!NT_STATUS_IS_OK(nt_status = make_pdb_methods(pdb_context->mem_ctx, pdb_method))) {
913 return nt_status;
916 (*pdb_method)->name = "tdbsam";
918 (*pdb_method)->setsampwent = tdbsam_setsampwent;
919 (*pdb_method)->endsampwent = tdbsam_endsampwent;
920 (*pdb_method)->getsampwent = tdbsam_getsampwent;
921 (*pdb_method)->getsampwnam = tdbsam_getsampwnam;
922 (*pdb_method)->getsampwsid = tdbsam_getsampwsid;
923 (*pdb_method)->add_sam_account = tdbsam_add_sam_account;
924 (*pdb_method)->update_sam_account = tdbsam_update_sam_account;
925 (*pdb_method)->delete_sam_account = tdbsam_delete_sam_account;
927 tdb_state = talloc_zero(pdb_context->mem_ctx, sizeof(struct tdbsam_privates));
929 if (!tdb_state) {
930 DEBUG(0, ("talloc() failed for tdbsam private_data!\n"));
931 return NT_STATUS_NO_MEMORY;
934 if (location) {
935 tdb_state->tdbsam_location = talloc_strdup(pdb_context->mem_ctx, location);
936 } else {
937 pstring tdbfile;
938 get_private_directory(tdbfile);
939 pstrcat(tdbfile, "/");
940 pstrcat(tdbfile, PASSDB_FILE_NAME);
941 tdb_state->tdbsam_location = talloc_strdup(pdb_context->mem_ctx, tdbfile);
944 tdb_state->algorithmic_rids = True;
946 (*pdb_method)->private_data = tdb_state;
948 (*pdb_method)->free_private_data = free_private_data;
950 return NT_STATUS_OK;
953 NTSTATUS pdb_init_tdbsam_nua(PDB_CONTEXT *pdb_context, PDB_METHODS **pdb_method, const char *location)
955 NTSTATUS nt_status;
956 struct tdbsam_privates *tdb_state;
957 uint32 low_nua_uid, high_nua_uid;
959 if (!NT_STATUS_IS_OK(nt_status = pdb_init_tdbsam(pdb_context, pdb_method, location))) {
960 return nt_status;
963 (*pdb_method)->name = "tdbsam_nua";
965 tdb_state = (*pdb_method)->private_data;
967 tdb_state->permit_non_unix_accounts = True;
969 if (!lp_non_unix_account_range(&low_nua_uid, &high_nua_uid)) {
970 DEBUG(0, ("cannot use tdbsam_nua without 'non unix account range' in smb.conf!\n"));
971 return NT_STATUS_UNSUCCESSFUL;
974 tdb_state->low_nua_rid=fallback_pdb_uid_to_user_rid(low_nua_uid);
976 tdb_state->high_nua_rid=fallback_pdb_uid_to_user_rid(high_nua_uid);
978 return NT_STATUS_OK;
982 #else
984 NTSTATUS pdb_init_tdbsam(PDB_CONTEXT *pdb_context, PDB_METHODS **pdb_method, const char *location)
986 DEBUG(0, ("tdbsam not compiled in!\n"));
987 return NT_STATUS_UNSUCCESSFUL;
990 NTSTATUS pdb_init_tdbsam_nua(PDB_CONTEXT *pdb_context, PDB_METHODS **pdb_method, const char *location)
992 DEBUG(0, ("tdbsam_nua not compiled in!\n"));
993 return NT_STATUS_UNSUCCESSFUL;
997 #endif