2 * Unix SMB/CIFS implementation.
3 * SMB parameters and setup
4 * Copyright (C) Andrew Tridgell 1992-1998
5 * Modified by Jeremy Allison 1995.
6 * Modified by Gerald (Jerry) Carter 2000-2001,2003
7 * Modified by Andrew Bartlett 2002.
9 * This program is free software; you can redistribute it and/or modify it under
10 * the terms of the GNU General Public License as published by the Free
11 * Software Foundation; either version 2 of the License, or (at your option)
14 * This program is distributed in the hope that it will be useful, but WITHOUT
15 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
19 * You should have received a copy of the GNU General Public License along with
20 * this program; if not, write to the Free Software Foundation, Inc., 675
21 * Mass Ave, Cambridge, MA 02139, USA.
27 #define DBGC_CLASS DBGC_PASSDB
30 smb_passwd is analogous to sam_passwd used everywhere
31 else. However, smb_passwd is limited to the information
32 stored by an smbpasswd entry
37 uint32 smb_userid
; /* this is actually the unix uid_t */
38 const char *smb_name
; /* username string */
40 const unsigned char *smb_passwd
; /* Null if no password */
41 const unsigned char *smb_nt_passwd
; /* Null if no password */
43 uint16 acct_ctrl
; /* account info (ACB_xxxx bit-mask) */
44 time_t pass_last_set_time
; /* password last set time */
47 struct smbpasswd_privates
49 /* used for maintain locks on the smbpasswd file */
50 int pw_file_lock_depth
;
52 /* Global File pointer */
55 /* formerly static variables */
56 struct smb_passwd pw_buf
;
58 unsigned char smbpwd
[16];
59 unsigned char smbntpwd
[16];
61 /* retrive-once info */
62 const char *smbpasswd_file
;
65 enum pwf_access_type
{ PWF_READ
, PWF_UPDATE
, PWF_CREATE
};
67 /***************************************************************
68 Lock an fd. Abandon after waitsecs seconds.
69 ****************************************************************/
71 static BOOL
pw_file_lock(int fd
, int type
, int secs
, int *plock_depth
)
77 if(*plock_depth
== 0) {
78 if (!do_file_lock(fd
, secs
, type
)) {
79 DEBUG(10,("pw_file_lock: locking file failed, error = %s.\n",
90 /***************************************************************
91 Unlock an fd. Abandon after waitsecs seconds.
92 ****************************************************************/
94 static BOOL
pw_file_unlock(int fd
, int *plock_depth
)
98 if (fd
== 0 || *plock_depth
== 0) {
102 if(*plock_depth
== 1) {
103 ret
= do_file_lock(fd
, 5, F_UNLCK
);
106 if (*plock_depth
> 0) {
111 DEBUG(10,("pw_file_unlock: unlocking file failed, error = %s.\n",
117 /**************************************************************
118 Intialize a smb_passwd struct
119 *************************************************************/
121 static void pdb_init_smb(struct smb_passwd
*user
)
127 user
->pass_last_set_time
= (time_t)0;
130 /***************************************************************
131 Internal fn to enumerate the smbpasswd list. Returns a void pointer
132 to ensure no modification outside this module. Checks for atomic
133 rename of smbpasswd file on update or create once the lock has
134 been granted to prevent race conditions. JRA.
135 ****************************************************************/
137 static FILE *startsmbfilepwent(const char *pfile
, enum pwf_access_type type
, int *lock_depth
)
140 const char *open_mode
= NULL
;
142 int lock_type
= F_RDLCK
;
145 DEBUG(0, ("startsmbfilepwent: No SMB password file set\n"));
160 * Ensure atomic file creation.
165 for(i
= 0; i
< 5; i
++) {
166 if((fd
= sys_open(pfile
, O_CREAT
|O_TRUNC
|O_EXCL
|O_RDWR
, 0600))!=-1) {
169 sys_usleep(200); /* Spin, spin... */
172 DEBUG(0,("startsmbfilepwent_internal: too many race conditions \
173 creating file %s\n", pfile
));
183 for(race_loop
= 0; race_loop
< 5; race_loop
++) {
184 DEBUG(10, ("startsmbfilepwent_internal: opening file %s\n", pfile
));
186 if((fp
= sys_fopen(pfile
, open_mode
)) == NULL
) {
189 * If smbpasswd file doesn't exist, then create new one. This helps to avoid
190 * confusing error msg when adding user account first time.
192 if (errno
== ENOENT
) {
193 if ((fp
= sys_fopen(pfile
, "a+")) != NULL
) {
194 DEBUG(0, ("startsmbfilepwent_internal: file %s did not \
195 exist. File successfully created.\n", pfile
));
197 DEBUG(0, ("startsmbfilepwent_internal: file %s did not \
198 exist. Couldn't create new one. Error was: %s",
199 pfile
, strerror(errno
)));
203 DEBUG(0, ("startsmbfilepwent_internal: unable to open file %s. \
204 Error was: %s\n", pfile
, strerror(errno
)));
209 if (!pw_file_lock(fileno(fp
), lock_type
, 5, lock_depth
)) {
210 DEBUG(0, ("startsmbfilepwent_internal: unable to lock file %s. \
211 Error was %s\n", pfile
, strerror(errno
) ));
217 * Only check for replacement races on update or create.
218 * For read we don't mind if the data is one record out of date.
221 if(type
== PWF_READ
) {
224 SMB_STRUCT_STAT sbuf1
, sbuf2
;
227 * Avoid the potential race condition between the open and the lock
228 * by doing a stat on the filename and an fstat on the fd. If the
229 * two inodes differ then someone did a rename between the open and
230 * the lock. Back off and try the open again. Only do this 5 times to
231 * prevent infinate loops. JRA.
234 if (sys_stat(pfile
,&sbuf1
) != 0) {
235 DEBUG(0, ("startsmbfilepwent_internal: unable to stat file %s. \
236 Error was %s\n", pfile
, strerror(errno
)));
237 pw_file_unlock(fileno(fp
), lock_depth
);
242 if (sys_fstat(fileno(fp
),&sbuf2
) != 0) {
243 DEBUG(0, ("startsmbfilepwent_internal: unable to fstat file %s. \
244 Error was %s\n", pfile
, strerror(errno
)));
245 pw_file_unlock(fileno(fp
), lock_depth
);
250 if( sbuf1
.st_ino
== sbuf2
.st_ino
) {
256 * Race occurred - back off and try again...
259 pw_file_unlock(fileno(fp
), lock_depth
);
265 DEBUG(0, ("startsmbfilepwent_internal: too many race conditions opening file %s\n", pfile
));
269 /* Set a buffer to do more efficient reads */
270 setvbuf(fp
, (char *)NULL
, _IOFBF
, 1024);
272 /* Make sure it is only rw by the owner */
274 if(fchmod(fileno(fp
), S_IRUSR
|S_IWUSR
) == -1) {
276 if(chmod(pfile
, S_IRUSR
|S_IWUSR
) == -1) {
278 DEBUG(0, ("startsmbfilepwent_internal: failed to set 0600 permissions on password file %s. \
279 Error was %s\n.", pfile
, strerror(errno
) ));
280 pw_file_unlock(fileno(fp
), lock_depth
);
285 /* We have a lock on the file. */
289 /***************************************************************
290 End enumeration of the smbpasswd list.
291 ****************************************************************/
293 static void endsmbfilepwent(FILE *fp
, int *lock_depth
)
299 pw_file_unlock(fileno(fp
), lock_depth
);
301 DEBUG(7, ("endsmbfilepwent_internal: closed password file.\n"));
304 /*************************************************************************
305 Routine to return the next entry in the smbpasswd list.
306 *************************************************************************/
308 static struct smb_passwd
*getsmbfilepwent(struct smbpasswd_privates
*smbpasswd_state
, FILE *fp
)
310 /* Static buffers we will return. */
311 struct smb_passwd
*pw_buf
= &smbpasswd_state
->pw_buf
;
312 char *user_name
= smbpasswd_state
->user_name
;
313 unsigned char *smbpwd
= smbpasswd_state
->smbpwd
;
314 unsigned char *smbntpwd
= smbpasswd_state
->smbntpwd
;
323 DEBUG(0,("getsmbfilepwent: Bad password file pointer.\n"));
327 pdb_init_smb(pw_buf
);
328 pw_buf
->acct_ctrl
= ACB_NORMAL
;
331 * Scan the file, a line at a time and check if the name matches.
334 while (status
&& !feof(fp
)) {
337 status
= fgets(linebuf
, 256, fp
);
338 if (status
== NULL
&& ferror(fp
)) {
343 * Check if the string is terminated with a newline - if not
344 * then we must keep reading and discard until we get one.
346 if ((linebuf_len
= strlen(linebuf
)) == 0) {
350 if (linebuf
[linebuf_len
- 1] != '\n') {
352 while (!ferror(fp
) && !feof(fp
)) {
359 linebuf
[linebuf_len
- 1] = '\0';
362 #ifdef DEBUG_PASSWORD
363 DEBUG(100, ("getsmbfilepwent: got line |%s|\n", linebuf
));
365 if ((linebuf
[0] == 0) && feof(fp
)) {
366 DEBUG(4, ("getsmbfilepwent: end of file reached\n"));
371 * The line we have should be of the form :-
373 * username:uid:32hex bytes:[Account type]:LCT-12345678....other flags presently
378 * username:uid:32hex bytes:32hex bytes:[Account type]:LCT-12345678....ignored....
380 * if Windows NT compatible passwords are also present.
381 * [Account type] is an ascii encoding of the type of account.
382 * LCT-(8 hex digits) is the time_t value of the last change time.
385 if (linebuf
[0] == '#' || linebuf
[0] == '\0') {
386 DEBUG(6, ("getsmbfilepwent: skipping comment or blank line\n"));
389 p
= (unsigned char *) strchr_m(linebuf
, ':');
391 DEBUG(0, ("getsmbfilepwent: malformed password entry (no :)\n"));
396 * As 256 is shorter than a pstring we don't need to check
397 * length here - if this ever changes....
399 SMB_ASSERT(sizeof(pstring
) > sizeof(linebuf
));
401 strncpy(user_name
, linebuf
, PTR_DIFF(p
, linebuf
));
402 user_name
[PTR_DIFF(p
, linebuf
)] = '\0';
406 p
++; /* Go past ':' */
409 DEBUG(0, ("getsmbfilepwent: user name %s has a negative uid.\n", user_name
));
414 DEBUG(0, ("getsmbfilepwent: malformed password entry for user %s (uid not number)\n",
419 uidval
= atoi((char *) p
);
421 while (*p
&& isdigit(*p
)) {
426 DEBUG(0, ("getsmbfilepwent: malformed password entry for user %s (no : after uid)\n",
431 pw_buf
->smb_name
= user_name
;
432 pw_buf
->smb_userid
= uidval
;
435 * Now get the password value - this should be 32 hex digits
436 * which are the ascii representations of a 16 byte string.
437 * Get two at a time and put them into the password.
443 if (linebuf_len
< (PTR_DIFF(p
, linebuf
) + 33)) {
444 DEBUG(0, ("getsmbfilepwent: malformed password entry for user %s (passwd too short)\n",
450 DEBUG(0, ("getsmbfilepwent: malformed password entry for user %s (no terminating :)\n",
455 if (strnequal((char *) p
, "NO PASSWORD", 11)) {
456 pw_buf
->smb_passwd
= NULL
;
457 pw_buf
->acct_ctrl
|= ACB_PWNOTREQ
;
459 if (*p
== '*' || *p
== 'X') {
460 /* NULL LM password */
461 pw_buf
->smb_passwd
= NULL
;
462 DEBUG(10, ("getsmbfilepwent: LM password for user %s invalidated\n", user_name
));
463 } else if (pdb_gethexpwd((char *)p
, smbpwd
)) {
464 pw_buf
->smb_passwd
= smbpwd
;
466 pw_buf
->smb_passwd
= NULL
;
467 DEBUG(0, ("getsmbfilepwent: Malformed Lanman password entry for user %s \
468 (non hex chars)\n", user_name
));
473 * Now check if the NT compatible password is
476 pw_buf
->smb_nt_passwd
= NULL
;
477 p
+= 33; /* Move to the first character of the line after the lanman password. */
478 if ((linebuf_len
>= (PTR_DIFF(p
, linebuf
) + 33)) && (p
[32] == ':')) {
479 if (*p
!= '*' && *p
!= 'X') {
480 if(pdb_gethexpwd((char *)p
,smbntpwd
)) {
481 pw_buf
->smb_nt_passwd
= smbntpwd
;
484 p
+= 33; /* Move to the first character of the line after the NT password. */
487 DEBUG(5,("getsmbfilepwent: returning passwd entry for user %s, uid %ld\n",
491 unsigned char *end_p
= (unsigned char *)strchr_m((char *)p
, ']');
492 pw_buf
->acct_ctrl
= pdb_decode_acct_ctrl((char*)p
);
494 /* Must have some account type set. */
495 if(pw_buf
->acct_ctrl
== 0) {
496 pw_buf
->acct_ctrl
= ACB_NORMAL
;
499 /* Now try and get the last change time. */
505 if(*p
&& (StrnCaseCmp((char *)p
, "LCT-", 4)==0)) {
508 for(i
= 0; i
< 8; i
++) {
509 if(p
[i
] == '\0' || !isxdigit(p
[i
])) {
515 * p points at 8 characters of hex digits -
516 * read into a time_t as the seconds since
517 * 1970 that the password was last changed.
519 pw_buf
->pass_last_set_time
= (time_t)strtol((char *)p
, NULL
, 16);
524 /* 'Old' style file. Fake up based on user name. */
526 * Currently trust accounts are kept in the same
527 * password file as 'normal accounts'. If this changes
528 * we will have to fix this code. JRA.
530 if(pw_buf
->smb_name
[strlen(pw_buf
->smb_name
) - 1] == '$') {
531 pw_buf
->acct_ctrl
&= ~ACB_NORMAL
;
532 pw_buf
->acct_ctrl
|= ACB_WSTRUST
;
539 DEBUG(5,("getsmbfilepwent: end of file reached.\n"));
543 /************************************************************************
544 Create a new smbpasswd entry - malloced space returned.
545 *************************************************************************/
547 static char *format_new_smbpasswd_entry(const struct smb_passwd
*newpwd
)
549 int new_entry_length
;
553 new_entry_length
= strlen(newpwd
->smb_name
) + 1 + 15 + 1 + 32 + 1 + 32 + 1 +
554 NEW_PW_FORMAT_SPACE_PADDED_LEN
+ 1 + 13 + 2;
556 if((new_entry
= (char *)SMB_MALLOC( new_entry_length
)) == NULL
) {
557 DEBUG(0, ("format_new_smbpasswd_entry: Malloc failed adding entry for user %s.\n",
562 slprintf(new_entry
, new_entry_length
- 1, "%s:%u:", newpwd
->smb_name
, (unsigned)newpwd
->smb_userid
);
564 p
= new_entry
+strlen(new_entry
);
565 pdb_sethexpwd(p
, newpwd
->smb_passwd
, newpwd
->acct_ctrl
);
570 pdb_sethexpwd(p
, newpwd
->smb_nt_passwd
, newpwd
->acct_ctrl
);
575 /* Add the account encoding and the last change time. */
576 slprintf((char *)p
, new_entry_length
- 1 - (p
- new_entry
), "%s:LCT-%08X:\n",
577 pdb_encode_acct_ctrl(newpwd
->acct_ctrl
, NEW_PW_FORMAT_SPACE_PADDED_LEN
),
578 (uint32
)newpwd
->pass_last_set_time
);
583 /************************************************************************
584 Routine to add an entry to the smbpasswd file.
585 *************************************************************************/
587 static BOOL
add_smbfilepwd_entry(struct smbpasswd_privates
*smbpasswd_state
, struct smb_passwd
*newpwd
)
589 const char *pfile
= smbpasswd_state
->smbpasswd_file
;
590 struct smb_passwd
*pwd
= NULL
;
594 size_t new_entry_length
;
598 /* Open the smbpassword file - for update. */
599 fp
= startsmbfilepwent(pfile
, PWF_UPDATE
, &smbpasswd_state
->pw_file_lock_depth
);
601 if (fp
== NULL
&& errno
== ENOENT
) {
602 /* Try again - create. */
603 fp
= startsmbfilepwent(pfile
, PWF_CREATE
, &smbpasswd_state
->pw_file_lock_depth
);
607 DEBUG(0, ("add_smbfilepwd_entry: unable to open file.\n"));
612 * Scan the file, a line at a time and check if the name matches.
615 while ((pwd
= getsmbfilepwent(smbpasswd_state
, fp
)) != NULL
) {
616 if (strequal(newpwd
->smb_name
, pwd
->smb_name
)) {
617 DEBUG(0, ("add_smbfilepwd_entry: entry with name %s already exists\n", pwd
->smb_name
));
618 endsmbfilepwent(fp
, &smbpasswd_state
->pw_file_lock_depth
);
623 /* Ok - entry doesn't exist. We can add it */
625 /* Create a new smb passwd entry and set it to the given password. */
627 * The add user write needs to be atomic - so get the fd from
628 * the fp and do a raw write() call.
632 if((offpos
= sys_lseek(fd
, 0, SEEK_END
)) == -1) {
633 DEBUG(0, ("add_smbfilepwd_entry(sys_lseek): Failed to add entry for user %s to file %s. \
634 Error was %s\n", newpwd
->smb_name
, pfile
, strerror(errno
)));
635 endsmbfilepwent(fp
, &smbpasswd_state
->pw_file_lock_depth
);
639 if((new_entry
= format_new_smbpasswd_entry(newpwd
)) == NULL
) {
640 DEBUG(0, ("add_smbfilepwd_entry(malloc): Failed to add entry for user %s to file %s. \
641 Error was %s\n", newpwd
->smb_name
, pfile
, strerror(errno
)));
642 endsmbfilepwent(fp
, &smbpasswd_state
->pw_file_lock_depth
);
646 new_entry_length
= strlen(new_entry
);
648 #ifdef DEBUG_PASSWORD
649 DEBUG(100, ("add_smbfilepwd_entry(%d): new_entry_len %d made line |%s|",
650 fd
, (int)new_entry_length
, new_entry
));
653 if ((wr_len
= write(fd
, new_entry
, new_entry_length
)) != new_entry_length
) {
654 DEBUG(0, ("add_smbfilepwd_entry(write): %d Failed to add entry for user %s to file %s. \
655 Error was %s\n", wr_len
, newpwd
->smb_name
, pfile
, strerror(errno
)));
657 /* Remove the entry we just wrote. */
658 if(sys_ftruncate(fd
, offpos
) == -1) {
659 DEBUG(0, ("add_smbfilepwd_entry: ERROR failed to ftruncate file %s. \
660 Error was %s. Password file may be corrupt ! Please examine by hand !\n",
661 newpwd
->smb_name
, strerror(errno
)));
664 endsmbfilepwent(fp
, &smbpasswd_state
->pw_file_lock_depth
);
670 endsmbfilepwent(fp
, &smbpasswd_state
->pw_file_lock_depth
);
674 /************************************************************************
675 Routine to search the smbpasswd file for an entry matching the username.
676 and then modify its password entry. We can't use the startsmbpwent()/
677 getsmbpwent()/endsmbpwent() interfaces here as we depend on looking
678 in the actual file to decide how much room we have to write data.
679 override = False, normal
680 override = True, override XXXXXXXX'd out password or NO PASS
681 ************************************************************************/
683 static BOOL
mod_smbfilepwd_entry(struct smbpasswd_privates
*smbpasswd_state
, const struct smb_passwd
* pwd
)
685 /* Static buffers we will return. */
694 unsigned char *p
= NULL
;
695 size_t linebuf_len
= 0;
698 const char *pfile
= smbpasswd_state
->smbpasswd_file
;
699 BOOL found_entry
= False
;
700 BOOL got_pass_last_set_time
= False
;
702 SMB_OFF_T pwd_seekpos
= 0;
709 DEBUG(0, ("No SMB password file set\n"));
712 DEBUG(10, ("mod_smbfilepwd_entry: opening file %s\n", pfile
));
714 fp
= sys_fopen(pfile
, "r+");
717 DEBUG(0, ("mod_smbfilepwd_entry: unable to open file %s\n", pfile
));
720 /* Set a buffer to do more efficient reads */
721 setvbuf(fp
, readbuf
, _IOFBF
, sizeof(readbuf
));
725 if (!pw_file_lock(lockfd
, F_WRLCK
, 5, &smbpasswd_state
->pw_file_lock_depth
)) {
726 DEBUG(0, ("mod_smbfilepwd_entry: unable to lock file %s\n", pfile
));
731 /* Make sure it is only rw by the owner */
734 /* We have a write lock on the file. */
736 * Scan the file, a line at a time and check if the name matches.
739 while (status
&& !feof(fp
)) {
740 pwd_seekpos
= sys_ftell(fp
);
744 status
= fgets(linebuf
, sizeof(linebuf
), fp
);
745 if (status
== NULL
&& ferror(fp
)) {
746 pw_file_unlock(lockfd
, &smbpasswd_state
->pw_file_lock_depth
);
752 * Check if the string is terminated with a newline - if not
753 * then we must keep reading and discard until we get one.
755 linebuf_len
= strlen(linebuf
);
756 if (linebuf
[linebuf_len
- 1] != '\n') {
758 while (!ferror(fp
) && !feof(fp
)) {
765 linebuf
[linebuf_len
- 1] = '\0';
768 #ifdef DEBUG_PASSWORD
769 DEBUG(100, ("mod_smbfilepwd_entry: got line |%s|\n", linebuf
));
772 if ((linebuf
[0] == 0) && feof(fp
)) {
773 DEBUG(4, ("mod_smbfilepwd_entry: end of file reached\n"));
778 * The line we have should be of the form :-
780 * username:uid:[32hex bytes]:....other flags presently
785 * username:uid:[32hex bytes]:[32hex bytes]:[attributes]:LCT-XXXXXXXX:...ignored.
787 * if Windows NT compatible passwords are also present.
790 if (linebuf
[0] == '#' || linebuf
[0] == '\0') {
791 DEBUG(6, ("mod_smbfilepwd_entry: skipping comment or blank line\n"));
795 p
= (unsigned char *) strchr_m(linebuf
, ':');
798 DEBUG(0, ("mod_smbfilepwd_entry: malformed password entry (no :)\n"));
803 * As 256 is shorter than a pstring we don't need to check
804 * length here - if this ever changes....
807 SMB_ASSERT(sizeof(user_name
) > sizeof(linebuf
));
809 strncpy(user_name
, linebuf
, PTR_DIFF(p
, linebuf
));
810 user_name
[PTR_DIFF(p
, linebuf
)] = '\0';
811 if (strequal(user_name
, pwd
->smb_name
)) {
818 pw_file_unlock(lockfd
, &smbpasswd_state
->pw_file_lock_depth
);
821 DEBUG(2, ("Cannot update entry for user %s, as they don't exist in the smbpasswd file!\n",
826 DEBUG(6, ("mod_smbfilepwd_entry: entry exists for user %s\n", pwd
->smb_name
));
828 /* User name matches - get uid and password */
829 p
++; /* Go past ':' */
832 DEBUG(0, ("mod_smbfilepwd_entry: malformed password entry for user %s (uid not number)\n",
834 pw_file_unlock(lockfd
, &smbpasswd_state
->pw_file_lock_depth
);
839 while (*p
&& isdigit(*p
)) {
843 DEBUG(0, ("mod_smbfilepwd_entry: malformed password entry for user %s (no : after uid)\n",
845 pw_file_unlock(lockfd
, &smbpasswd_state
->pw_file_lock_depth
);
851 * Now get the password value - this should be 32 hex digits
852 * which are the ascii representations of a 16 byte string.
853 * Get two at a time and put them into the password.
857 /* Record exact password position */
858 pwd_seekpos
+= PTR_DIFF(p
, linebuf
);
860 if (linebuf_len
< (PTR_DIFF(p
, linebuf
) + 33)) {
861 DEBUG(0, ("mod_smbfilepwd_entry: malformed password entry for user %s (passwd too short)\n",
863 pw_file_unlock(lockfd
,&smbpasswd_state
->pw_file_lock_depth
);
869 DEBUG(0, ("mod_smbfilepwd_entry: malformed password entry for user %s (no terminating :)\n",
871 pw_file_unlock(lockfd
,&smbpasswd_state
->pw_file_lock_depth
);
876 /* Now check if the NT compatible password is available. */
877 p
+= 33; /* Move to the first character of the line after the lanman password. */
878 if (linebuf_len
< (PTR_DIFF(p
, linebuf
) + 33)) {
879 DEBUG(0, ("mod_smbfilepwd_entry: malformed password entry for user %s (passwd too short)\n",
881 pw_file_unlock(lockfd
,&smbpasswd_state
->pw_file_lock_depth
);
887 DEBUG(0, ("mod_smbfilepwd_entry: malformed password entry for user %s (no terminating :)\n",
889 pw_file_unlock(lockfd
,&smbpasswd_state
->pw_file_lock_depth
);
895 * Now check if the account info and the password last
896 * change time is available.
898 p
+= 33; /* Move to the first character of the line after the NT password. */
902 encode_bits
[i
++] = *p
++;
903 while((linebuf_len
> PTR_DIFF(p
, linebuf
)) && (*p
!= ']')) {
904 encode_bits
[i
++] = *p
++;
907 encode_bits
[i
++] = ']';
908 encode_bits
[i
++] = '\0';
910 if(i
== NEW_PW_FORMAT_SPACE_PADDED_LEN
) {
912 * We are using a new format, space padded
913 * acct ctrl field. Encode the given acct ctrl
916 fstrcpy(encode_bits
, pdb_encode_acct_ctrl(pwd
->acct_ctrl
, NEW_PW_FORMAT_SPACE_PADDED_LEN
));
918 DEBUG(0,("mod_smbfilepwd_entry: Using old smbpasswd format for user %s. \
919 This is no longer supported.!\n", pwd
->smb_name
));
920 DEBUG(0,("mod_smbfilepwd_entry: No changes made, failing.!\n"));
921 pw_file_unlock(lockfd
, &smbpasswd_state
->pw_file_lock_depth
);
926 /* Go past the ']' */
927 if(linebuf_len
> PTR_DIFF(p
, linebuf
)) {
931 if((linebuf_len
> PTR_DIFF(p
, linebuf
)) && (*p
== ':')) {
934 /* We should be pointing at the LCT entry. */
935 if((linebuf_len
> (PTR_DIFF(p
, linebuf
) + 13)) && (StrnCaseCmp((char *)p
, "LCT-", 4) == 0)) {
937 for(i
= 0; i
< 8; i
++) {
938 if(p
[i
] == '\0' || !isxdigit(p
[i
])) {
944 * p points at 8 characters of hex digits -
945 * read into a time_t as the seconds since
946 * 1970 that the password was last changed.
948 got_pass_last_set_time
= True
;
950 } /* *p && StrnCaseCmp() */
954 /* Entry is correctly formed. */
956 /* Create the 32 byte representation of the new p16 */
957 pdb_sethexpwd(ascii_p16
, pwd
->smb_passwd
, pwd
->acct_ctrl
);
959 /* Add on the NT md4 hash */
962 pdb_sethexpwd(ascii_p16
+33, pwd
->smb_nt_passwd
, pwd
->acct_ctrl
);
964 ascii_p16
[66] = '\0'; /* null-terminate the string so that strlen works */
966 /* Add on the account info bits and the time of last password change. */
967 if(got_pass_last_set_time
) {
968 slprintf(&ascii_p16
[strlen(ascii_p16
)],
969 sizeof(ascii_p16
)-(strlen(ascii_p16
)+1),
971 encode_bits
, (uint32
)pwd
->pass_last_set_time
);
972 wr_len
= strlen(ascii_p16
);
975 #ifdef DEBUG_PASSWORD
976 DEBUG(100,("mod_smbfilepwd_entry: "));
977 dump_data(100, ascii_p16
, wr_len
);
980 if(wr_len
> sizeof(linebuf
)) {
981 DEBUG(0, ("mod_smbfilepwd_entry: line to write (%d) is too long.\n", wr_len
+1));
982 pw_file_unlock(lockfd
,&smbpasswd_state
->pw_file_lock_depth
);
988 * Do an atomic write into the file at the position defined by
992 /* The mod user write needs to be atomic - so get the fd from
993 the fp and do a raw write() call.
998 if (sys_lseek(fd
, pwd_seekpos
- 1, SEEK_SET
) != pwd_seekpos
- 1) {
999 DEBUG(0, ("mod_smbfilepwd_entry: seek fail on file %s.\n", pfile
));
1000 pw_file_unlock(lockfd
,&smbpasswd_state
->pw_file_lock_depth
);
1005 /* Sanity check - ensure the areas we are writing are framed by ':' */
1006 if (read(fd
, linebuf
, wr_len
+1) != wr_len
+1) {
1007 DEBUG(0, ("mod_smbfilepwd_entry: read fail on file %s.\n", pfile
));
1008 pw_file_unlock(lockfd
,&smbpasswd_state
->pw_file_lock_depth
);
1013 if ((linebuf
[0] != ':') || (linebuf
[wr_len
] != ':')) {
1014 DEBUG(0, ("mod_smbfilepwd_entry: check on passwd file %s failed.\n", pfile
));
1015 pw_file_unlock(lockfd
,&smbpasswd_state
->pw_file_lock_depth
);
1020 if (sys_lseek(fd
, pwd_seekpos
, SEEK_SET
) != pwd_seekpos
) {
1021 DEBUG(0, ("mod_smbfilepwd_entry: seek fail on file %s.\n", pfile
));
1022 pw_file_unlock(lockfd
,&smbpasswd_state
->pw_file_lock_depth
);
1027 if (write(fd
, ascii_p16
, wr_len
) != wr_len
) {
1028 DEBUG(0, ("mod_smbfilepwd_entry: write failed in passwd file %s\n", pfile
));
1029 pw_file_unlock(lockfd
,&smbpasswd_state
->pw_file_lock_depth
);
1034 pw_file_unlock(lockfd
,&smbpasswd_state
->pw_file_lock_depth
);
1039 /************************************************************************
1040 Routine to delete an entry in the smbpasswd file by name.
1041 *************************************************************************/
1043 static BOOL
del_smbfilepwd_entry(struct smbpasswd_privates
*smbpasswd_state
, const char *name
)
1045 const char *pfile
= smbpasswd_state
->smbpasswd_file
;
1047 struct smb_passwd
*pwd
= NULL
;
1049 FILE *fp_write
= NULL
;
1050 int pfile2_lockdepth
= 0;
1052 slprintf(pfile2
, sizeof(pfile2
)-1, "%s.%u", pfile
, (unsigned)sys_getpid() );
1055 * Open the smbpassword file - for update. It needs to be update
1056 * as we need any other processes to wait until we have replaced
1060 if((fp
= startsmbfilepwent(pfile
, PWF_UPDATE
, &smbpasswd_state
->pw_file_lock_depth
)) == NULL
) {
1061 DEBUG(0, ("del_smbfilepwd_entry: unable to open file %s.\n", pfile
));
1066 * Create the replacement password file.
1068 if((fp_write
= startsmbfilepwent(pfile2
, PWF_CREATE
, &pfile2_lockdepth
)) == NULL
) {
1069 DEBUG(0, ("del_smbfilepwd_entry: unable to open file %s.\n", pfile
));
1070 endsmbfilepwent(fp
, &smbpasswd_state
->pw_file_lock_depth
);
1075 * Scan the file, a line at a time and check if the name matches.
1078 while ((pwd
= getsmbfilepwent(smbpasswd_state
, fp
)) != NULL
) {
1080 size_t new_entry_length
;
1082 if (strequal(name
, pwd
->smb_name
)) {
1083 DEBUG(10, ("add_smbfilepwd_entry: found entry with name %s - deleting it.\n", name
));
1088 * We need to copy the entry out into the second file.
1091 if((new_entry
= format_new_smbpasswd_entry(pwd
)) == NULL
) {
1092 DEBUG(0, ("del_smbfilepwd_entry(malloc): Failed to copy entry for user %s to file %s. \
1093 Error was %s\n", pwd
->smb_name
, pfile2
, strerror(errno
)));
1095 endsmbfilepwent(fp
, &smbpasswd_state
->pw_file_lock_depth
);
1096 endsmbfilepwent(fp_write
, &pfile2_lockdepth
);
1100 new_entry_length
= strlen(new_entry
);
1102 if(fwrite(new_entry
, 1, new_entry_length
, fp_write
) != new_entry_length
) {
1103 DEBUG(0, ("del_smbfilepwd_entry(write): Failed to copy entry for user %s to file %s. \
1104 Error was %s\n", pwd
->smb_name
, pfile2
, strerror(errno
)));
1106 endsmbfilepwent(fp
, &smbpasswd_state
->pw_file_lock_depth
);
1107 endsmbfilepwent(fp_write
, &pfile2_lockdepth
);
1116 * Ensure pfile2 is flushed before rename.
1119 if(fflush(fp_write
) != 0) {
1120 DEBUG(0, ("del_smbfilepwd_entry: Failed to flush file %s. Error was %s\n", pfile2
, strerror(errno
)));
1121 endsmbfilepwent(fp
, &smbpasswd_state
->pw_file_lock_depth
);
1122 endsmbfilepwent(fp_write
,&pfile2_lockdepth
);
1127 * Do an atomic rename - then release the locks.
1130 if(rename(pfile2
,pfile
) != 0) {
1134 endsmbfilepwent(fp
, &smbpasswd_state
->pw_file_lock_depth
);
1135 endsmbfilepwent(fp_write
,&pfile2_lockdepth
);
1139 /*********************************************************************
1140 Create a smb_passwd struct from a struct samu.
1141 We will not allocate any new memory. The smb_passwd struct
1142 should only stay around as long as the struct samu does.
1143 ********************************************************************/
1145 static BOOL
build_smb_pass (struct smb_passwd
*smb_pw
, const struct samu
*sampass
)
1149 if (sampass
== NULL
)
1151 ZERO_STRUCTP(smb_pw
);
1153 if (!IS_SAM_DEFAULT(sampass
, PDB_USERSID
)) {
1154 rid
= pdb_get_user_rid(sampass
);
1156 /* If the user specified a RID, make sure its able to be both stored and retreived */
1157 if (rid
== DOMAIN_USER_RID_GUEST
) {
1158 struct passwd
*passwd
= getpwnam_alloc(NULL
, lp_guestaccount());
1160 DEBUG(0, ("Could not find gest account via getpwnam()! (%s)\n", lp_guestaccount()));
1163 smb_pw
->smb_userid
=passwd
->pw_uid
;
1164 TALLOC_FREE(passwd
);
1165 } else if (algorithmic_pdb_rid_is_user(rid
)) {
1166 smb_pw
->smb_userid
=algorithmic_pdb_user_rid_to_uid(rid
);
1168 DEBUG(0,("build_sam_pass: Failing attempt to store user with non-uid based user RID. \n"));
1173 smb_pw
->smb_name
=(const char*)pdb_get_username(sampass
);
1175 smb_pw
->smb_passwd
=pdb_get_lanman_passwd(sampass
);
1176 smb_pw
->smb_nt_passwd
=pdb_get_nt_passwd(sampass
);
1178 smb_pw
->acct_ctrl
=pdb_get_acct_ctrl(sampass
);
1179 smb_pw
->pass_last_set_time
=pdb_get_pass_last_set_time(sampass
);
1184 /*********************************************************************
1185 Create a struct samu from a smb_passwd struct
1186 ********************************************************************/
1188 static BOOL
build_sam_account(struct smbpasswd_privates
*smbpasswd_state
,
1189 struct samu
*sam_pass
, const struct smb_passwd
*pw_buf
)
1191 struct passwd
*pwfile
;
1194 DEBUG(5,("build_sam_account: struct samu is NULL\n"));
1198 /* verify the user account exists */
1200 if ( !(pwfile
= getpwnam_alloc(NULL
, pw_buf
->smb_name
)) ) {
1201 DEBUG(0,("build_sam_account: smbpasswd database is corrupt! username %s with uid "
1202 "%u is not in unix passwd database!\n", pw_buf
->smb_name
, pw_buf
->smb_userid
));
1206 if ( !NT_STATUS_IS_OK( samu_set_unix(sam_pass
, pwfile
)) )
1209 TALLOC_FREE(pwfile
);
1211 /* set remaining fields */
1213 pdb_set_nt_passwd (sam_pass
, pw_buf
->smb_nt_passwd
, PDB_SET
);
1214 pdb_set_lanman_passwd (sam_pass
, pw_buf
->smb_passwd
, PDB_SET
);
1215 pdb_set_acct_ctrl (sam_pass
, pw_buf
->acct_ctrl
, PDB_SET
);
1216 pdb_set_pass_last_set_time (sam_pass
, pw_buf
->pass_last_set_time
, PDB_SET
);
1217 pdb_set_pass_can_change_time (sam_pass
, pw_buf
->pass_last_set_time
, PDB_SET
);
1222 /*****************************************************************
1223 Functions to be implemented by the new passdb API
1224 ****************************************************************/
1226 static NTSTATUS
smbpasswd_setsampwent (struct pdb_methods
*my_methods
, BOOL update
, uint32 acb_mask
)
1228 struct smbpasswd_privates
*smbpasswd_state
= (struct smbpasswd_privates
*)my_methods
->private_data
;
1230 smbpasswd_state
->pw_file
= startsmbfilepwent(smbpasswd_state
->smbpasswd_file
,
1231 update
? PWF_UPDATE
: PWF_READ
,
1232 &(smbpasswd_state
->pw_file_lock_depth
));
1234 /* did we fail? Should we try to create it? */
1235 if (!smbpasswd_state
->pw_file
&& update
&& errno
== ENOENT
) {
1237 /* slprintf(msg_str,msg_str_len-1,
1238 "smbpasswd file did not exist - attempting to create it.\n"); */
1239 DEBUG(0,("smbpasswd file did not exist - attempting to create it.\n"));
1240 fp
= sys_fopen(smbpasswd_state
->smbpasswd_file
, "w");
1242 fprintf(fp
, "# Samba SMB password file\n");
1246 smbpasswd_state
->pw_file
= startsmbfilepwent(smbpasswd_state
->smbpasswd_file
,
1247 update
? PWF_UPDATE
: PWF_READ
,
1248 &(smbpasswd_state
->pw_file_lock_depth
));
1251 if (smbpasswd_state
->pw_file
!= NULL
)
1252 return NT_STATUS_OK
;
1254 return NT_STATUS_UNSUCCESSFUL
;
1257 static void smbpasswd_endsampwent (struct pdb_methods
*my_methods
)
1259 struct smbpasswd_privates
*smbpasswd_state
= (struct smbpasswd_privates
*)my_methods
->private_data
;
1260 endsmbfilepwent(smbpasswd_state
->pw_file
, &(smbpasswd_state
->pw_file_lock_depth
));
1263 /*****************************************************************
1264 ****************************************************************/
1266 static NTSTATUS
smbpasswd_getsampwent(struct pdb_methods
*my_methods
, struct samu
*user
)
1268 NTSTATUS nt_status
= NT_STATUS_UNSUCCESSFUL
;
1269 struct smbpasswd_privates
*smbpasswd_state
= (struct smbpasswd_privates
*)my_methods
->private_data
;
1270 struct smb_passwd
*pw_buf
=NULL
;
1273 DEBUG(5,("pdb_getsampwent\n"));
1276 DEBUG(5,("pdb_getsampwent (smbpasswd): user is NULL\n"));
1281 /* do we have an entry? */
1282 pw_buf
= getsmbfilepwent(smbpasswd_state
, smbpasswd_state
->pw_file
);
1286 /* build the struct samu entry from the smb_passwd struct.
1287 We loop in case the user in the pdb does not exist in
1288 the local system password file */
1289 if (build_sam_account(smbpasswd_state
, user
, pw_buf
))
1293 DEBUG(5,("getsampwent (smbpasswd): done\n"));
1296 return NT_STATUS_OK
;
1299 /****************************************************************
1300 Search smbpasswd file by iterating over the entries. Do not
1301 call getpwnam() for unix account information until we have found
1303 ***************************************************************/
1305 static NTSTATUS
smbpasswd_getsampwnam(struct pdb_methods
*my_methods
,
1306 struct samu
*sam_acct
, const char *username
)
1308 NTSTATUS nt_status
= NT_STATUS_UNSUCCESSFUL
;
1309 struct smbpasswd_privates
*smbpasswd_state
= (struct smbpasswd_privates
*)my_methods
->private_data
;
1310 struct smb_passwd
*smb_pw
;
1313 DEBUG(10, ("getsampwnam (smbpasswd): search by name: %s\n", username
));
1315 /* startsmbfilepwent() is used here as we don't want to lookup
1316 the UNIX account in the local system password file until
1318 fp
= startsmbfilepwent(smbpasswd_state
->smbpasswd_file
, PWF_READ
, &(smbpasswd_state
->pw_file_lock_depth
));
1321 DEBUG(0, ("Unable to open passdb database.\n"));
1325 while ( ((smb_pw
=getsmbfilepwent(smbpasswd_state
, fp
)) != NULL
)&& (!strequal(smb_pw
->smb_name
, username
)) )
1326 /* do nothing....another loop */ ;
1328 endsmbfilepwent(fp
, &(smbpasswd_state
->pw_file_lock_depth
));
1331 /* did we locate the username in smbpasswd */
1335 DEBUG(10, ("getsampwnam (smbpasswd): found by name: %s\n", smb_pw
->smb_name
));
1338 DEBUG(10,("getsampwnam (smbpasswd): struct samu is NULL\n"));
1342 /* now build the struct samu */
1343 if (!build_sam_account(smbpasswd_state
, sam_acct
, smb_pw
))
1347 return NT_STATUS_OK
;
1350 static NTSTATUS
smbpasswd_getsampwsid(struct pdb_methods
*my_methods
, struct samu
*sam_acct
, const DOM_SID
*sid
)
1352 NTSTATUS nt_status
= NT_STATUS_UNSUCCESSFUL
;
1353 struct smbpasswd_privates
*smbpasswd_state
= (struct smbpasswd_privates
*)my_methods
->private_data
;
1354 struct smb_passwd
*smb_pw
;
1359 DEBUG(10, ("smbpasswd_getsampwrid: search by sid: %s\n", sid_to_string(sid_str
, sid
)));
1361 if (!sid_peek_check_rid(get_global_sam_sid(), sid
, &rid
))
1362 return NT_STATUS_UNSUCCESSFUL
;
1364 /* More special case 'guest account' hacks... */
1365 if (rid
== DOMAIN_USER_RID_GUEST
) {
1366 const char *guest_account
= lp_guestaccount();
1367 if (!(guest_account
&& *guest_account
)) {
1368 DEBUG(1, ("Guest account not specfied!\n"));
1371 return smbpasswd_getsampwnam(my_methods
, sam_acct
, guest_account
);
1374 /* Open the sam password file - not for update. */
1375 fp
= startsmbfilepwent(smbpasswd_state
->smbpasswd_file
, PWF_READ
, &(smbpasswd_state
->pw_file_lock_depth
));
1378 DEBUG(0, ("Unable to open passdb database.\n"));
1382 while ( ((smb_pw
=getsmbfilepwent(smbpasswd_state
, fp
)) != NULL
) && (algorithmic_pdb_uid_to_user_rid(smb_pw
->smb_userid
) != rid
) )
1385 endsmbfilepwent(fp
, &(smbpasswd_state
->pw_file_lock_depth
));
1388 /* did we locate the username in smbpasswd */
1392 DEBUG(10, ("getsampwrid (smbpasswd): found by name: %s\n", smb_pw
->smb_name
));
1395 DEBUG(10,("getsampwrid: (smbpasswd) struct samu is NULL\n"));
1399 /* now build the struct samu */
1400 if (!build_sam_account (smbpasswd_state
, sam_acct
, smb_pw
))
1403 /* build_sam_account might change the SID on us, if the name was for the guest account */
1404 if (NT_STATUS_IS_OK(nt_status
) && !sid_equal(pdb_get_user_sid(sam_acct
), sid
)) {
1405 fstring sid_string1
, sid_string2
;
1406 DEBUG(1, ("looking for user with sid %s instead returned %s for account %s!?!\n",
1407 sid_to_string(sid_string1
, sid
), sid_to_string(sid_string2
, pdb_get_user_sid(sam_acct
)), pdb_get_username(sam_acct
)));
1408 return NT_STATUS_NO_SUCH_USER
;
1412 return NT_STATUS_OK
;
1415 static NTSTATUS
smbpasswd_add_sam_account(struct pdb_methods
*my_methods
, struct samu
*sampass
)
1417 struct smbpasswd_privates
*smbpasswd_state
= (struct smbpasswd_privates
*)my_methods
->private_data
;
1418 struct smb_passwd smb_pw
;
1420 /* convert the struct samu */
1421 if (!build_smb_pass(&smb_pw
, sampass
)) {
1422 return NT_STATUS_UNSUCCESSFUL
;
1426 if(!add_smbfilepwd_entry(smbpasswd_state
, &smb_pw
)) {
1427 return NT_STATUS_UNSUCCESSFUL
;
1430 return NT_STATUS_OK
;
1433 static NTSTATUS
smbpasswd_update_sam_account(struct pdb_methods
*my_methods
, struct samu
*sampass
)
1435 struct smbpasswd_privates
*smbpasswd_state
= (struct smbpasswd_privates
*)my_methods
->private_data
;
1436 struct smb_passwd smb_pw
;
1438 /* convert the struct samu */
1439 if (!build_smb_pass(&smb_pw
, sampass
)) {
1440 DEBUG(0, ("smbpasswd_update_sam_account: build_smb_pass failed!\n"));
1441 return NT_STATUS_UNSUCCESSFUL
;
1444 /* update the entry */
1445 if(!mod_smbfilepwd_entry(smbpasswd_state
, &smb_pw
)) {
1446 DEBUG(0, ("smbpasswd_update_sam_account: mod_smbfilepwd_entry failed!\n"));
1447 return NT_STATUS_UNSUCCESSFUL
;
1450 return NT_STATUS_OK
;
1453 static NTSTATUS
smbpasswd_delete_sam_account (struct pdb_methods
*my_methods
, struct samu
*sampass
)
1455 struct smbpasswd_privates
*smbpasswd_state
= (struct smbpasswd_privates
*)my_methods
->private_data
;
1457 const char *username
= pdb_get_username(sampass
);
1459 if (del_smbfilepwd_entry(smbpasswd_state
, username
))
1460 return NT_STATUS_OK
;
1462 return NT_STATUS_UNSUCCESSFUL
;
1465 static NTSTATUS
smbpasswd_rename_sam_account (struct pdb_methods
*my_methods
,
1466 struct samu
*old_acct
,
1467 const char *newname
)
1469 pstring rename_script
;
1470 struct samu
*new_acct
= NULL
;
1471 BOOL interim_account
= False
;
1472 NTSTATUS ret
= NT_STATUS_UNSUCCESSFUL
;
1474 if (!*(lp_renameuser_script()))
1477 if ( !(new_acct
= samu_new( NULL
)) ) {
1478 return NT_STATUS_NO_MEMORY
;
1481 if ( !pdb_copy_sam_account( new_acct
, old_acct
)
1482 || !pdb_set_username(new_acct
, newname
, PDB_CHANGED
))
1487 ret
= smbpasswd_add_sam_account(my_methods
, new_acct
);
1488 if (!NT_STATUS_IS_OK(ret
))
1491 interim_account
= True
;
1493 /* rename the posix user */
1494 pstrcpy(rename_script
, lp_renameuser_script());
1496 if (*rename_script
) {
1499 string_sub2(rename_script
, "%unew", newname
, sizeof(pstring
),
1501 string_sub2(rename_script
, "%uold", pdb_get_username(old_acct
),
1502 sizeof(pstring
), True
, False
, True
);
1504 rename_ret
= smbrun(rename_script
, NULL
);
1506 DEBUG(rename_ret
? 0 : 3,("Running the command `%s' gave %d\n", rename_script
, rename_ret
));
1514 smbpasswd_delete_sam_account(my_methods
, old_acct
);
1515 interim_account
= False
;
1519 if (interim_account
)
1520 smbpasswd_delete_sam_account(my_methods
, new_acct
);
1523 TALLOC_FREE(new_acct
);
1528 static BOOL
smbpasswd_rid_algorithm(struct pdb_methods
*methods
)
1533 static void free_private_data(void **vp
)
1535 struct smbpasswd_privates
**privates
= (struct smbpasswd_privates
**)vp
;
1537 endsmbfilepwent((*privates
)->pw_file
, &((*privates
)->pw_file_lock_depth
));
1540 /* No need to free any further, as it is talloc()ed */
1543 static NTSTATUS
pdb_init_smbpasswd( struct pdb_methods
**pdb_method
, const char *location
)
1546 struct smbpasswd_privates
*privates
;
1548 if ( !NT_STATUS_IS_OK(nt_status
= make_pdb_method( pdb_method
)) ) {
1552 (*pdb_method
)->name
= "smbpasswd";
1554 (*pdb_method
)->setsampwent
= smbpasswd_setsampwent
;
1555 (*pdb_method
)->endsampwent
= smbpasswd_endsampwent
;
1556 (*pdb_method
)->getsampwent
= smbpasswd_getsampwent
;
1557 (*pdb_method
)->getsampwnam
= smbpasswd_getsampwnam
;
1558 (*pdb_method
)->getsampwsid
= smbpasswd_getsampwsid
;
1559 (*pdb_method
)->add_sam_account
= smbpasswd_add_sam_account
;
1560 (*pdb_method
)->update_sam_account
= smbpasswd_update_sam_account
;
1561 (*pdb_method
)->delete_sam_account
= smbpasswd_delete_sam_account
;
1562 (*pdb_method
)->rename_sam_account
= smbpasswd_rename_sam_account
;
1564 (*pdb_method
)->rid_algorithm
= smbpasswd_rid_algorithm
;
1566 /* Setup private data and free function */
1568 if ( !(privates
= TALLOC_ZERO_P( *pdb_method
, struct smbpasswd_privates
)) ) {
1569 DEBUG(0, ("talloc() failed for smbpasswd private_data!\n"));
1570 return NT_STATUS_NO_MEMORY
;
1573 /* Store some config details */
1576 privates
->smbpasswd_file
= talloc_strdup(*pdb_method
, location
);
1578 privates
->smbpasswd_file
= talloc_strdup(*pdb_method
, lp_smb_passwd_file());
1581 if (!privates
->smbpasswd_file
) {
1582 DEBUG(0, ("talloc_strdp() failed for storing smbpasswd location!\n"));
1583 return NT_STATUS_NO_MEMORY
;
1586 (*pdb_method
)->private_data
= privates
;
1588 (*pdb_method
)->free_private_data
= free_private_data
;
1590 return NT_STATUS_OK
;
1593 NTSTATUS
pdb_smbpasswd_init(void)
1595 return smb_register_passdb(PASSDB_INTERFACE_VERSION
, "smbpasswd", pdb_init_smbpasswd
);