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
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)
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
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.
27 #if 0 /* when made a module use this */
29 static int tdbsam_debug_level
= DBGC_ALL
;
31 #define DBGC_CLASS tdbsam_debug_level
36 #define DBGC_CLASS DBGC_PASSDB
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
;
52 /* retrive-once info */
53 const char *tdbsam_location
;
55 BOOL permit_non_unix_accounts
;
57 BOOL algorithmic_rids
;
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
79 pass_must_change_time
;
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
;
100 static uint8
*lm_pw_ptr
, *nt_pw_ptr
;
102 uint32 lm_pw_len
, nt_pw_len
, hourslen
;
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"));
113 /* unpack the buffer into variables */
114 len
= tdb_unpack (buf
, buflen
, TDB_FORMAT_STRING
,
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
,
135 &lm_pw_len
, &lm_pw_ptr
,
136 &nt_pw_len
, &nt_pw_ptr
,
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
));
166 pdb_set_unix_homedir(sampass
, pw
->pw_dir
);
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
);
187 pdb_set_homedir(sampass
, homedir
, True
);
190 pdb_set_homedir(sampass
,
191 talloc_sub_specified(sampass
->mem_ctx
,
199 pdb_set_dir_drive(sampass
, dir_drive
, True
);
201 pdb_set_dir_drive(sampass
,
202 talloc_sub_specified(sampass
->mem_ctx
,
210 pdb_set_logon_script(sampass
, logon_script
, True
);
212 pdb_set_logon_script(sampass
,
213 talloc_sub_specified(sampass
->mem_ctx
,
221 pdb_set_profile_path(sampass
, profile_path
, True
);
223 pdb_set_profile_path(sampass
,
224 talloc_sub_specified(sampass
->mem_ctx
,
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
)) {
242 if (nt_pw_ptr
&& nt_pw_len
== NT_HASH_LEN
) {
243 if (!pdb_set_nt_passwd(sampass
, nt_pw_ptr
)) {
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
);
263 SAFE_FREE(nt_username
);
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
);
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
)
284 /* times are stored as 32bit integer
285 take care on system with 64bit wide time_t
291 pass_can_change_time
,
292 pass_must_change_time
;
294 uint32 user_rid
, group_rid
;
296 const char *username
;
298 const char *nt_username
;
299 const char *dir_drive
;
300 const char *unknown_str
;
301 const char *munged_dial
;
302 const char *fullname
;
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
;
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"));
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;
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
);
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;
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
,
405 pass_can_change_time
,
406 pass_must_change_time
,
407 username_len
, username
,
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
,
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"));
438 /* now for the real call to tdb_pack() */
439 buflen
= tdb_pack(*buf
, len
, TDB_FORMAT_STRING
,
444 pass_can_change_time
,
445 pass_must_change_time
,
446 username_len
, username
,
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
,
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 */
473 DEBUG(0, ("init_buffer_from_sam: somthing odd is going on here: bufflen (%d) != len (%d) in tdb_pack operations!\n",
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"));
498 tdb_state
->key
= tdb_firstkey(tdb_state
->passwd_tdb
);
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
;
531 char *prefix
= USERPREFIX
;
532 int prefixlen
= strlen (prefix
);
536 DEBUG(0,("pdb_get_sampwent: SAM_ACCOUNT is NULL.\n"));
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"));
551 data
= tdb_fetch(tdb_state
->passwd_tdb
, tdb_state
->key
);
553 DEBUG(5,("pdb_getsampwent: database entry not found.\n"));
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
);
563 SAFE_FREE(data
.dptr
);
565 /* increment to next in line */
566 tdb_state
->key
= tdb_nextkey(tdb_state
->passwd_tdb
, tdb_state
->key
);
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
;
584 DEBUG(0,("pdb_getsampwnam: SAM_ACCOUNT is NULL.\n"));
588 /* Data is stored in all lower-case */
589 unix_strlower(sname
, -1, name
, sizeof(name
));
592 slprintf(keystr
, sizeof(keystr
)-1, "%s%s", USERPREFIX
, name
);
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
));
603 data
= tdb_fetch(pwd_tdb
, key
);
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
));
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
);
619 SAFE_FREE(data
.dptr
);
621 /* no further use for database, close it now */
627 /***************************************************************************
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
;
640 DEBUG(0,("pdb_getsampwrid: SAM_ACCOUNT is NULL.\n"));
645 slprintf(keystr
, sizeof(keystr
)-1, "%s%.8x", RIDPREFIX
, rid
);
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"));
656 data
= tdb_fetch (pwd_tdb
, key
);
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
)));
664 fstrcpy (name
, data
.dptr
);
665 SAFE_FREE(data
.dptr
);
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
)
675 if (!sid_peek_check_rid(get_global_sam_sid(), sid
, &rid
))
677 return tdbsam_getsampwrid(my_methods
, user
, rid
);
680 /***************************************************************************
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
;
693 unix_strlower(pdb_get_username(sam_pass
), -1, name
, sizeof(name
));
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!"));
701 /* set the search key */
702 slprintf(keystr
, sizeof(keystr
)-1, "%s%s", USERPREFIX
, name
);
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
)));
716 /* delete also the RID key */
718 /* set the search key */
719 slprintf(keystr
, sizeof(keystr
)-1, "%s%.8x", RIDPREFIX
, rid
);
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
)));
736 /***************************************************************************
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
;
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);
762 DEBUG(0, ("tdb_update_sam: Unable to open TDB passwd (%s)!\n", tdb_state
->tdbsam_location
));
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
));
774 tdb_ret
= tdb_change_uint32_atomic(pwd_tdb
, "RID_COUNTER", &user_rid
, RID_MULTIPLIER
);
780 pdb_set_user_sid_from_rid(newpwd
, user_rid
);
782 user_rid
= tdb_state
->low_nua_rid
;
783 tdb_ret
= tdb_change_uint32_atomic(pwd_tdb
, "NUA_RID_COUNTER", &user_rid
, RID_MULTIPLIER
);
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
)));
793 pdb_set_user_sid_from_rid(newpwd
, user_rid
);
796 DEBUG (0,("tdb_update_sam: Failing to store a SAM_ACCOUNT for [%s] without a RID\n",pdb_get_username(newpwd
)));
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
)));
809 /* This seems like a good default choice for non-unix users */
810 pdb_set_group_sid_from_rid(newpwd
, DOMAIN_GROUP_RID_USERS
);
813 DEBUG (0,("tdb_update_sam: Failing to store a SAM_ACCOUNT for [%s] without a primary group RID\n",pdb_get_username(newpwd
)));
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"));
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
);
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
));
846 data
.dsize
= sizeof(fstring
);
849 /* setup the RID index key */
850 slprintf(keystr
, sizeof(keystr
)-1, "%s%.8x", RIDPREFIX
, user_rid
);
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
));
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
);
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
)
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"));
912 if (!NT_STATUS_IS_OK(nt_status
= make_pdb_methods(pdb_context
->mem_ctx
, pdb_method
))) {
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
));
930 DEBUG(0, ("talloc() failed for tdbsam private_data!\n"));
931 return NT_STATUS_NO_MEMORY
;
935 tdb_state
->tdbsam_location
= talloc_strdup(pdb_context
->mem_ctx
, location
);
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
;
953 NTSTATUS
pdb_init_tdbsam_nua(PDB_CONTEXT
*pdb_context
, PDB_METHODS
**pdb_method
, const char *location
)
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
))) {
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
);
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
;