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 3 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, see <http://www.gnu.org/licenses/>.
25 #include "system/passwd.h"
26 #include "system/filesys.h"
27 #include "../librpc/gen_ndr/samr.h"
28 #include "../libcli/security/security.h"
31 #define DBGC_CLASS DBGC_PASSDB
34 smb_passwd is analogous to sam_passwd used everywhere
35 else. However, smb_passwd is limited to the information
36 stored by an smbpasswd entry
41 uint32 smb_userid
; /* this is actually the unix uid_t */
42 const char *smb_name
; /* username string */
44 const unsigned char *smb_passwd
; /* Null if no password */
45 const unsigned char *smb_nt_passwd
; /* Null if no password */
47 uint16_t acct_ctrl
; /* account info (ACB_xxxx bit-mask) */
48 time_t pass_last_set_time
; /* password last set time */
51 struct smbpasswd_privates
53 /* used for maintain locks on the smbpasswd file */
54 int pw_file_lock_depth
;
56 /* Global File pointer */
59 /* formerly static variables */
60 struct smb_passwd pw_buf
;
62 unsigned char smbpwd
[16];
63 unsigned char smbntpwd
[16];
65 /* retrive-once info */
66 const char *smbpasswd_file
;
69 enum pwf_access_type
{ PWF_READ
, PWF_UPDATE
, PWF_CREATE
};
71 static SIG_ATOMIC_T gotalarm
;
73 /***************************************************************
74 Signal function to tell us we timed out.
75 ****************************************************************/
77 static void gotalarm_sig(int signum
)
82 /***************************************************************
83 Lock or unlock a fd for a known lock type. Abandon after waitsecs
85 ****************************************************************/
87 static bool do_file_lock(int fd
, int waitsecs
, int type
)
89 SMB_STRUCT_FLOCK lock
;
91 void (*oldsig_handler
)(int);
94 oldsig_handler
= CatchSignal(SIGALRM
, gotalarm_sig
);
97 lock
.l_whence
= SEEK_SET
;
103 /* Note we must *NOT* use sys_fcntl here ! JRA */
104 ret
= fcntl(fd
, SMB_F_SETLKW
, &lock
);
106 CatchSignal(SIGALRM
, oldsig_handler
);
108 if (gotalarm
&& ret
== -1) {
109 DEBUG(0, ("do_file_lock: failed to %s file.\n",
110 type
== F_UNLCK
? "unlock" : "lock"));
117 /***************************************************************
118 Lock an fd. Abandon after waitsecs seconds.
119 ****************************************************************/
121 static bool pw_file_lock(int fd
, int type
, int secs
, int *plock_depth
)
127 if(*plock_depth
== 0) {
128 if (!do_file_lock(fd
, secs
, type
)) {
129 DEBUG(10,("pw_file_lock: locking file failed, error = %s.\n",
140 /***************************************************************
141 Unlock an fd. Abandon after waitsecs seconds.
142 ****************************************************************/
144 static bool pw_file_unlock(int fd
, int *plock_depth
)
148 if (fd
== 0 || *plock_depth
== 0) {
152 if(*plock_depth
== 1) {
153 ret
= do_file_lock(fd
, 5, F_UNLCK
);
156 if (*plock_depth
> 0) {
161 DEBUG(10,("pw_file_unlock: unlocking file failed, error = %s.\n",
167 /**************************************************************
168 Intialize a smb_passwd struct
169 *************************************************************/
171 static void pdb_init_smb(struct smb_passwd
*user
)
177 user
->pass_last_set_time
= (time_t)0;
180 /***************************************************************
181 Internal fn to enumerate the smbpasswd list. Returns a void pointer
182 to ensure no modification outside this module. Checks for atomic
183 rename of smbpasswd file on update or create once the lock has
184 been granted to prevent race conditions. JRA.
185 ****************************************************************/
187 static FILE *startsmbfilepwent(const char *pfile
, enum pwf_access_type type
, int *lock_depth
)
190 const char *open_mode
= NULL
;
192 int lock_type
= F_RDLCK
;
195 DEBUG(0, ("startsmbfilepwent: No SMB password file set\n"));
210 * Ensure atomic file creation.
215 for(i
= 0; i
< 5; i
++) {
216 if((fd
= sys_open(pfile
, O_CREAT
|O_TRUNC
|O_EXCL
|O_RDWR
, 0600))!=-1) {
219 sys_usleep(200); /* Spin, spin... */
222 DEBUG(0,("startsmbfilepwent_internal: too many race conditions \
223 creating file %s\n", pfile
));
232 DEBUG(10, ("Invalid open mode: %d\n", type
));
236 for(race_loop
= 0; race_loop
< 5; race_loop
++) {
237 DEBUG(10, ("startsmbfilepwent_internal: opening file %s\n", pfile
));
239 if((fp
= sys_fopen(pfile
, open_mode
)) == NULL
) {
242 * If smbpasswd file doesn't exist, then create new one. This helps to avoid
243 * confusing error msg when adding user account first time.
245 if (errno
== ENOENT
) {
246 if ((fp
= sys_fopen(pfile
, "a+")) != NULL
) {
247 DEBUG(0, ("startsmbfilepwent_internal: file %s did not \
248 exist. File successfully created.\n", pfile
));
250 DEBUG(0, ("startsmbfilepwent_internal: file %s did not \
251 exist. Couldn't create new one. Error was: %s",
252 pfile
, strerror(errno
)));
256 DEBUG(0, ("startsmbfilepwent_internal: unable to open file %s. \
257 Error was: %s\n", pfile
, strerror(errno
)));
262 if (!pw_file_lock(fileno(fp
), lock_type
, 5, lock_depth
)) {
263 DEBUG(0, ("startsmbfilepwent_internal: unable to lock file %s. \
264 Error was %s\n", pfile
, strerror(errno
) ));
270 * Only check for replacement races on update or create.
271 * For read we don't mind if the data is one record out of date.
274 if(type
== PWF_READ
) {
277 SMB_STRUCT_STAT sbuf1
, sbuf2
;
280 * Avoid the potential race condition between the open and the lock
281 * by doing a stat on the filename and an fstat on the fd. If the
282 * two inodes differ then someone did a rename between the open and
283 * the lock. Back off and try the open again. Only do this 5 times to
284 * prevent infinate loops. JRA.
287 if (sys_stat(pfile
, &sbuf1
, false) != 0) {
288 DEBUG(0, ("startsmbfilepwent_internal: unable to stat file %s. \
289 Error was %s\n", pfile
, strerror(errno
)));
290 pw_file_unlock(fileno(fp
), lock_depth
);
295 if (sys_fstat(fileno(fp
), &sbuf2
, false) != 0) {
296 DEBUG(0, ("startsmbfilepwent_internal: unable to fstat file %s. \
297 Error was %s\n", pfile
, strerror(errno
)));
298 pw_file_unlock(fileno(fp
), lock_depth
);
303 if( sbuf1
.st_ex_ino
== sbuf2
.st_ex_ino
) {
309 * Race occurred - back off and try again...
312 pw_file_unlock(fileno(fp
), lock_depth
);
318 DEBUG(0, ("startsmbfilepwent_internal: too many race conditions opening file %s\n", pfile
));
322 /* Set a buffer to do more efficient reads */
323 setvbuf(fp
, (char *)NULL
, _IOFBF
, 1024);
325 /* Make sure it is only rw by the owner */
327 if(fchmod(fileno(fp
), S_IRUSR
|S_IWUSR
) == -1) {
329 if(chmod(pfile
, S_IRUSR
|S_IWUSR
) == -1) {
331 DEBUG(0, ("startsmbfilepwent_internal: failed to set 0600 permissions on password file %s. \
332 Error was %s\n.", pfile
, strerror(errno
) ));
333 pw_file_unlock(fileno(fp
), lock_depth
);
338 /* We have a lock on the file. */
342 /***************************************************************
343 End enumeration of the smbpasswd list.
344 ****************************************************************/
346 static void endsmbfilepwent(FILE *fp
, int *lock_depth
)
352 pw_file_unlock(fileno(fp
), lock_depth
);
354 DEBUG(7, ("endsmbfilepwent_internal: closed password file.\n"));
357 /*************************************************************************
358 Routine to return the next entry in the smbpasswd list.
359 *************************************************************************/
361 static struct smb_passwd
*getsmbfilepwent(struct smbpasswd_privates
*smbpasswd_state
, FILE *fp
)
363 /* Static buffers we will return. */
364 struct smb_passwd
*pw_buf
= &smbpasswd_state
->pw_buf
;
365 char *user_name
= smbpasswd_state
->user_name
;
366 unsigned char *smbpwd
= smbpasswd_state
->smbpwd
;
367 unsigned char *smbntpwd
= smbpasswd_state
->smbntpwd
;
376 DEBUG(0,("getsmbfilepwent: Bad password file pointer.\n"));
380 pdb_init_smb(pw_buf
);
381 pw_buf
->acct_ctrl
= ACB_NORMAL
;
384 * Scan the file, a line at a time and check if the name matches.
387 while (status
&& !feof(fp
)) {
390 status
= fgets(linebuf
, 256, fp
);
391 if (status
== NULL
&& ferror(fp
)) {
396 * Check if the string is terminated with a newline - if not
397 * then we must keep reading and discard until we get one.
399 if ((linebuf_len
= strlen(linebuf
)) == 0) {
403 if (linebuf
[linebuf_len
- 1] != '\n') {
405 while (!ferror(fp
) && !feof(fp
)) {
412 linebuf
[linebuf_len
- 1] = '\0';
415 #ifdef DEBUG_PASSWORD
416 DEBUG(100, ("getsmbfilepwent: got line |%s|\n", linebuf
));
418 if ((linebuf
[0] == 0) && feof(fp
)) {
419 DEBUG(4, ("getsmbfilepwent: end of file reached\n"));
424 * The line we have should be of the form :-
426 * username:uid:32hex bytes:[Account type]:LCT-12345678....other flags presently
431 * username:uid:32hex bytes:32hex bytes:[Account type]:LCT-12345678....ignored....
433 * if Windows NT compatible passwords are also present.
434 * [Account type] is an ascii encoding of the type of account.
435 * LCT-(8 hex digits) is the time_t value of the last change time.
438 if (linebuf
[0] == '#' || linebuf
[0] == '\0') {
439 DEBUG(6, ("getsmbfilepwent: skipping comment or blank line\n"));
442 p
= (unsigned char *) strchr_m(linebuf
, ':');
444 DEBUG(0, ("getsmbfilepwent: malformed password entry (no :)\n"));
448 strncpy(user_name
, linebuf
, PTR_DIFF(p
, linebuf
));
449 user_name
[PTR_DIFF(p
, linebuf
)] = '\0';
453 p
++; /* Go past ':' */
456 DEBUG(0, ("getsmbfilepwent: user name %s has a negative uid.\n", user_name
));
461 DEBUG(0, ("getsmbfilepwent: malformed password entry for user %s (uid not number)\n",
466 uidval
= atoi((char *) p
);
468 while (*p
&& isdigit(*p
)) {
473 DEBUG(0, ("getsmbfilepwent: malformed password entry for user %s (no : after uid)\n",
478 pw_buf
->smb_name
= user_name
;
479 pw_buf
->smb_userid
= uidval
;
482 * Now get the password value - this should be 32 hex digits
483 * which are the ascii representations of a 16 byte string.
484 * Get two at a time and put them into the password.
490 if (linebuf_len
< (PTR_DIFF(p
, linebuf
) + 33)) {
491 DEBUG(0, ("getsmbfilepwent: malformed password entry for user %s (passwd too short)\n",
497 DEBUG(0, ("getsmbfilepwent: malformed password entry for user %s (no terminating :)\n",
502 if (strnequal((char *) p
, "NO PASSWORD", 11)) {
503 pw_buf
->smb_passwd
= NULL
;
504 pw_buf
->acct_ctrl
|= ACB_PWNOTREQ
;
506 if (*p
== '*' || *p
== 'X') {
507 /* NULL LM password */
508 pw_buf
->smb_passwd
= NULL
;
509 DEBUG(10, ("getsmbfilepwent: LM password for user %s invalidated\n", user_name
));
510 } else if (pdb_gethexpwd((char *)p
, smbpwd
)) {
511 pw_buf
->smb_passwd
= smbpwd
;
513 pw_buf
->smb_passwd
= NULL
;
514 DEBUG(0, ("getsmbfilepwent: Malformed Lanman password entry for user %s \
515 (non hex chars)\n", user_name
));
520 * Now check if the NT compatible password is
523 pw_buf
->smb_nt_passwd
= NULL
;
524 p
+= 33; /* Move to the first character of the line after the lanman password. */
525 if ((linebuf_len
>= (PTR_DIFF(p
, linebuf
) + 33)) && (p
[32] == ':')) {
526 if (*p
!= '*' && *p
!= 'X') {
527 if(pdb_gethexpwd((char *)p
,smbntpwd
)) {
528 pw_buf
->smb_nt_passwd
= smbntpwd
;
531 p
+= 33; /* Move to the first character of the line after the NT password. */
534 DEBUG(5,("getsmbfilepwent: returning passwd entry for user %s, uid %ld\n",
538 unsigned char *end_p
= (unsigned char *)strchr_m((char *)p
, ']');
539 pw_buf
->acct_ctrl
= pdb_decode_acct_ctrl((char*)p
);
541 /* Must have some account type set. */
542 if(pw_buf
->acct_ctrl
== 0) {
543 pw_buf
->acct_ctrl
= ACB_NORMAL
;
546 /* Now try and get the last change time. */
552 if(*p
&& (strncasecmp_m((char *)p
, "LCT-", 4)==0)) {
555 for(i
= 0; i
< 8; i
++) {
556 if(p
[i
] == '\0' || !isxdigit(p
[i
])) {
562 * p points at 8 characters of hex digits -
563 * read into a time_t as the seconds since
564 * 1970 that the password was last changed.
566 pw_buf
->pass_last_set_time
= (time_t)strtol((char *)p
, NULL
, 16);
571 /* 'Old' style file. Fake up based on user name. */
573 * Currently trust accounts are kept in the same
574 * password file as 'normal accounts'. If this changes
575 * we will have to fix this code. JRA.
577 if(pw_buf
->smb_name
[strlen(pw_buf
->smb_name
) - 1] == '$') {
578 pw_buf
->acct_ctrl
&= ~ACB_NORMAL
;
579 pw_buf
->acct_ctrl
|= ACB_WSTRUST
;
586 DEBUG(5,("getsmbfilepwent: end of file reached.\n"));
590 /************************************************************************
591 Create a new smbpasswd entry - malloced space returned.
592 *************************************************************************/
594 static char *format_new_smbpasswd_entry(const struct smb_passwd
*newpwd
)
596 int new_entry_length
;
600 new_entry_length
= strlen(newpwd
->smb_name
) + 1 + 15 + 1 + 32 + 1 + 32 + 1 +
601 NEW_PW_FORMAT_SPACE_PADDED_LEN
+ 1 + 13 + 2;
603 if((new_entry
= (char *)SMB_MALLOC( new_entry_length
)) == NULL
) {
604 DEBUG(0, ("format_new_smbpasswd_entry: Malloc failed adding entry for user %s.\n",
609 slprintf(new_entry
, new_entry_length
- 1, "%s:%u:", newpwd
->smb_name
, (unsigned)newpwd
->smb_userid
);
611 p
= new_entry
+strlen(new_entry
);
612 pdb_sethexpwd(p
, newpwd
->smb_passwd
, newpwd
->acct_ctrl
);
617 pdb_sethexpwd(p
, newpwd
->smb_nt_passwd
, newpwd
->acct_ctrl
);
622 /* Add the account encoding and the last change time. */
623 slprintf((char *)p
, new_entry_length
- 1 - (p
- new_entry
), "%s:LCT-%08X:\n",
624 pdb_encode_acct_ctrl(newpwd
->acct_ctrl
, NEW_PW_FORMAT_SPACE_PADDED_LEN
),
625 (uint32_t)newpwd
->pass_last_set_time
);
630 /************************************************************************
631 Routine to add an entry to the smbpasswd file.
632 *************************************************************************/
634 static NTSTATUS
add_smbfilepwd_entry(struct smbpasswd_privates
*smbpasswd_state
,
635 struct smb_passwd
*newpwd
)
637 const char *pfile
= smbpasswd_state
->smbpasswd_file
;
638 struct smb_passwd
*pwd
= NULL
;
642 size_t new_entry_length
;
646 /* Open the smbpassword file - for update. */
647 fp
= startsmbfilepwent(pfile
, PWF_UPDATE
, &smbpasswd_state
->pw_file_lock_depth
);
649 if (fp
== NULL
&& errno
== ENOENT
) {
650 /* Try again - create. */
651 fp
= startsmbfilepwent(pfile
, PWF_CREATE
, &smbpasswd_state
->pw_file_lock_depth
);
655 DEBUG(0, ("add_smbfilepwd_entry: unable to open file.\n"));
656 return map_nt_error_from_unix(errno
);
660 * Scan the file, a line at a time and check if the name matches.
663 while ((pwd
= getsmbfilepwent(smbpasswd_state
, fp
)) != NULL
) {
664 if (strequal(newpwd
->smb_name
, pwd
->smb_name
)) {
665 DEBUG(0, ("add_smbfilepwd_entry: entry with name %s already exists\n", pwd
->smb_name
));
666 endsmbfilepwent(fp
, &smbpasswd_state
->pw_file_lock_depth
);
667 return NT_STATUS_USER_EXISTS
;
671 /* Ok - entry doesn't exist. We can add it */
673 /* Create a new smb passwd entry and set it to the given password. */
675 * The add user write needs to be atomic - so get the fd from
676 * the fp and do a raw write() call.
680 if((offpos
= sys_lseek(fd
, 0, SEEK_END
)) == -1) {
681 NTSTATUS result
= map_nt_error_from_unix(errno
);
682 DEBUG(0, ("add_smbfilepwd_entry(sys_lseek): Failed to add entry for user %s to file %s. \
683 Error was %s\n", newpwd
->smb_name
, pfile
, strerror(errno
)));
684 endsmbfilepwent(fp
, &smbpasswd_state
->pw_file_lock_depth
);
688 if((new_entry
= format_new_smbpasswd_entry(newpwd
)) == NULL
) {
689 DEBUG(0, ("add_smbfilepwd_entry(malloc): Failed to add entry for user %s to file %s. \
690 Error was %s\n", newpwd
->smb_name
, pfile
, strerror(errno
)));
691 endsmbfilepwent(fp
, &smbpasswd_state
->pw_file_lock_depth
);
692 return NT_STATUS_NO_MEMORY
;
695 new_entry_length
= strlen(new_entry
);
697 #ifdef DEBUG_PASSWORD
698 DEBUG(100, ("add_smbfilepwd_entry(%d): new_entry_len %d made line |%s|",
699 fd
, (int)new_entry_length
, new_entry
));
702 if ((wr_len
= write(fd
, new_entry
, new_entry_length
)) != new_entry_length
) {
703 NTSTATUS result
= map_nt_error_from_unix(errno
);
704 DEBUG(0, ("add_smbfilepwd_entry(write): %d Failed to add entry for user %s to file %s. \
705 Error was %s\n", wr_len
, newpwd
->smb_name
, pfile
, strerror(errno
)));
707 /* Remove the entry we just wrote. */
708 if(sys_ftruncate(fd
, offpos
) == -1) {
709 DEBUG(0, ("add_smbfilepwd_entry: ERROR failed to ftruncate file %s. \
710 Error was %s. Password file may be corrupt ! Please examine by hand !\n",
711 newpwd
->smb_name
, strerror(errno
)));
714 endsmbfilepwent(fp
, &smbpasswd_state
->pw_file_lock_depth
);
720 endsmbfilepwent(fp
, &smbpasswd_state
->pw_file_lock_depth
);
724 /************************************************************************
725 Routine to search the smbpasswd file for an entry matching the username.
726 and then modify its password entry. We can't use the startsmbpwent()/
727 getsmbpwent()/endsmbpwent() interfaces here as we depend on looking
728 in the actual file to decide how much room we have to write data.
729 override = False, normal
730 override = True, override XXXXXXXX'd out password or NO PASS
731 ************************************************************************/
733 static bool mod_smbfilepwd_entry(struct smbpasswd_privates
*smbpasswd_state
, const struct smb_passwd
* pwd
)
735 /* Static buffers we will return. */
744 unsigned char *p
= NULL
;
745 size_t linebuf_len
= 0;
748 const char *pfile
= smbpasswd_state
->smbpasswd_file
;
749 bool found_entry
= False
;
750 bool got_pass_last_set_time
= False
;
752 SMB_OFF_T pwd_seekpos
= 0;
759 DEBUG(0, ("No SMB password file set\n"));
762 DEBUG(10, ("mod_smbfilepwd_entry: opening file %s\n", pfile
));
764 fp
= sys_fopen(pfile
, "r+");
767 DEBUG(0, ("mod_smbfilepwd_entry: unable to open file %s\n", pfile
));
770 /* Set a buffer to do more efficient reads */
771 setvbuf(fp
, readbuf
, _IOFBF
, sizeof(readbuf
));
775 if (!pw_file_lock(lockfd
, F_WRLCK
, 5, &smbpasswd_state
->pw_file_lock_depth
)) {
776 DEBUG(0, ("mod_smbfilepwd_entry: unable to lock file %s\n", pfile
));
781 /* Make sure it is only rw by the owner */
784 /* We have a write lock on the file. */
786 * Scan the file, a line at a time and check if the name matches.
789 while (status
&& !feof(fp
)) {
790 pwd_seekpos
= sys_ftell(fp
);
794 status
= fgets(linebuf
, sizeof(linebuf
), fp
);
795 if (status
== NULL
&& ferror(fp
)) {
796 pw_file_unlock(lockfd
, &smbpasswd_state
->pw_file_lock_depth
);
802 * Check if the string is terminated with a newline - if not
803 * then we must keep reading and discard until we get one.
805 linebuf_len
= strlen(linebuf
);
806 if (linebuf
[linebuf_len
- 1] != '\n') {
808 while (!ferror(fp
) && !feof(fp
)) {
815 linebuf
[linebuf_len
- 1] = '\0';
818 #ifdef DEBUG_PASSWORD
819 DEBUG(100, ("mod_smbfilepwd_entry: got line |%s|\n", linebuf
));
822 if ((linebuf
[0] == 0) && feof(fp
)) {
823 DEBUG(4, ("mod_smbfilepwd_entry: end of file reached\n"));
828 * The line we have should be of the form :-
830 * username:uid:[32hex bytes]:....other flags presently
835 * username:uid:[32hex bytes]:[32hex bytes]:[attributes]:LCT-XXXXXXXX:...ignored.
837 * if Windows NT compatible passwords are also present.
840 if (linebuf
[0] == '#' || linebuf
[0] == '\0') {
841 DEBUG(6, ("mod_smbfilepwd_entry: skipping comment or blank line\n"));
845 p
= (unsigned char *) strchr_m(linebuf
, ':');
848 DEBUG(0, ("mod_smbfilepwd_entry: malformed password entry (no :)\n"));
852 strncpy(user_name
, linebuf
, PTR_DIFF(p
, linebuf
));
853 user_name
[PTR_DIFF(p
, linebuf
)] = '\0';
854 if (strequal(user_name
, pwd
->smb_name
)) {
861 pw_file_unlock(lockfd
, &smbpasswd_state
->pw_file_lock_depth
);
864 DEBUG(2, ("Cannot update entry for user %s, as they don't exist in the smbpasswd file!\n",
869 DEBUG(6, ("mod_smbfilepwd_entry: entry exists for user %s\n", pwd
->smb_name
));
871 /* User name matches - get uid and password */
872 p
++; /* Go past ':' */
875 DEBUG(0, ("mod_smbfilepwd_entry: malformed password entry for user %s (uid not number)\n",
877 pw_file_unlock(lockfd
, &smbpasswd_state
->pw_file_lock_depth
);
882 while (*p
&& isdigit(*p
)) {
886 DEBUG(0, ("mod_smbfilepwd_entry: malformed password entry for user %s (no : after uid)\n",
888 pw_file_unlock(lockfd
, &smbpasswd_state
->pw_file_lock_depth
);
894 * Now get the password value - this should be 32 hex digits
895 * which are the ascii representations of a 16 byte string.
896 * Get two at a time and put them into the password.
900 /* Record exact password position */
901 pwd_seekpos
+= PTR_DIFF(p
, linebuf
);
903 if (linebuf_len
< (PTR_DIFF(p
, linebuf
) + 33)) {
904 DEBUG(0, ("mod_smbfilepwd_entry: malformed password entry for user %s (passwd too short)\n",
906 pw_file_unlock(lockfd
,&smbpasswd_state
->pw_file_lock_depth
);
912 DEBUG(0, ("mod_smbfilepwd_entry: malformed password entry for user %s (no terminating :)\n",
914 pw_file_unlock(lockfd
,&smbpasswd_state
->pw_file_lock_depth
);
919 /* Now check if the NT compatible password is available. */
920 p
+= 33; /* Move to the first character of the line after the lanman password. */
921 if (linebuf_len
< (PTR_DIFF(p
, linebuf
) + 33)) {
922 DEBUG(0, ("mod_smbfilepwd_entry: malformed password entry for user %s (passwd too short)\n",
924 pw_file_unlock(lockfd
,&smbpasswd_state
->pw_file_lock_depth
);
930 DEBUG(0, ("mod_smbfilepwd_entry: malformed password entry for user %s (no terminating :)\n",
932 pw_file_unlock(lockfd
,&smbpasswd_state
->pw_file_lock_depth
);
938 * Now check if the account info and the password last
939 * change time is available.
941 p
+= 33; /* Move to the first character of the line after the NT password. */
945 encode_bits
[i
++] = *p
++;
946 while((linebuf_len
> PTR_DIFF(p
, linebuf
)) && (*p
!= ']')) {
947 encode_bits
[i
++] = *p
++;
950 encode_bits
[i
++] = ']';
951 encode_bits
[i
++] = '\0';
953 if(i
== NEW_PW_FORMAT_SPACE_PADDED_LEN
) {
955 * We are using a new format, space padded
956 * acct ctrl field. Encode the given acct ctrl
959 fstrcpy(encode_bits
, pdb_encode_acct_ctrl(pwd
->acct_ctrl
, NEW_PW_FORMAT_SPACE_PADDED_LEN
));
961 DEBUG(0,("mod_smbfilepwd_entry: Using old smbpasswd format for user %s. \
962 This is no longer supported.!\n", pwd
->smb_name
));
963 DEBUG(0,("mod_smbfilepwd_entry: No changes made, failing.!\n"));
964 pw_file_unlock(lockfd
, &smbpasswd_state
->pw_file_lock_depth
);
969 /* Go past the ']' */
970 if(linebuf_len
> PTR_DIFF(p
, linebuf
)) {
974 if((linebuf_len
> PTR_DIFF(p
, linebuf
)) && (*p
== ':')) {
977 /* We should be pointing at the LCT entry. */
978 if((linebuf_len
> (PTR_DIFF(p
, linebuf
) + 13)) && (strncasecmp_m((char *)p
, "LCT-", 4) == 0)) {
980 for(i
= 0; i
< 8; i
++) {
981 if(p
[i
] == '\0' || !isxdigit(p
[i
])) {
987 * p points at 8 characters of hex digits -
988 * read into a time_t as the seconds since
989 * 1970 that the password was last changed.
991 got_pass_last_set_time
= True
;
993 } /* *p && strncasecmp_m() */
997 /* Entry is correctly formed. */
999 /* Create the 32 byte representation of the new p16 */
1000 pdb_sethexpwd(ascii_p16
, pwd
->smb_passwd
, pwd
->acct_ctrl
);
1002 /* Add on the NT md4 hash */
1003 ascii_p16
[32] = ':';
1005 pdb_sethexpwd(ascii_p16
+33, pwd
->smb_nt_passwd
, pwd
->acct_ctrl
);
1006 ascii_p16
[65] = ':';
1007 ascii_p16
[66] = '\0'; /* null-terminate the string so that strlen works */
1009 /* Add on the account info bits and the time of last password change. */
1010 if(got_pass_last_set_time
) {
1011 slprintf(&ascii_p16
[strlen(ascii_p16
)],
1012 sizeof(ascii_p16
)-(strlen(ascii_p16
)+1),
1014 encode_bits
, (uint32_t)pwd
->pass_last_set_time
);
1015 wr_len
= strlen(ascii_p16
);
1018 #ifdef DEBUG_PASSWORD
1019 DEBUG(100,("mod_smbfilepwd_entry: "));
1020 dump_data(100, (uint8
*)ascii_p16
, wr_len
);
1023 if(wr_len
> sizeof(linebuf
)) {
1024 DEBUG(0, ("mod_smbfilepwd_entry: line to write (%d) is too long.\n", wr_len
+1));
1025 pw_file_unlock(lockfd
,&smbpasswd_state
->pw_file_lock_depth
);
1031 * Do an atomic write into the file at the position defined by
1035 /* The mod user write needs to be atomic - so get the fd from
1036 the fp and do a raw write() call.
1041 if (sys_lseek(fd
, pwd_seekpos
- 1, SEEK_SET
) != pwd_seekpos
- 1) {
1042 DEBUG(0, ("mod_smbfilepwd_entry: seek fail on file %s.\n", pfile
));
1043 pw_file_unlock(lockfd
,&smbpasswd_state
->pw_file_lock_depth
);
1048 /* Sanity check - ensure the areas we are writing are framed by ':' */
1049 if (read(fd
, linebuf
, wr_len
+1) != wr_len
+1) {
1050 DEBUG(0, ("mod_smbfilepwd_entry: read fail on file %s.\n", pfile
));
1051 pw_file_unlock(lockfd
,&smbpasswd_state
->pw_file_lock_depth
);
1056 if ((linebuf
[0] != ':') || (linebuf
[wr_len
] != ':')) {
1057 DEBUG(0, ("mod_smbfilepwd_entry: check on passwd file %s failed.\n", pfile
));
1058 pw_file_unlock(lockfd
,&smbpasswd_state
->pw_file_lock_depth
);
1063 if (sys_lseek(fd
, pwd_seekpos
, SEEK_SET
) != pwd_seekpos
) {
1064 DEBUG(0, ("mod_smbfilepwd_entry: seek fail on file %s.\n", pfile
));
1065 pw_file_unlock(lockfd
,&smbpasswd_state
->pw_file_lock_depth
);
1070 if (write(fd
, ascii_p16
, wr_len
) != wr_len
) {
1071 DEBUG(0, ("mod_smbfilepwd_entry: write failed in passwd file %s\n", pfile
));
1072 pw_file_unlock(lockfd
,&smbpasswd_state
->pw_file_lock_depth
);
1077 pw_file_unlock(lockfd
,&smbpasswd_state
->pw_file_lock_depth
);
1082 /************************************************************************
1083 Routine to delete an entry in the smbpasswd file by name.
1084 *************************************************************************/
1086 static bool del_smbfilepwd_entry(struct smbpasswd_privates
*smbpasswd_state
, const char *name
)
1088 const char *pfile
= smbpasswd_state
->smbpasswd_file
;
1089 char *pfile2
= NULL
;
1090 struct smb_passwd
*pwd
= NULL
;
1092 FILE *fp_write
= NULL
;
1093 int pfile2_lockdepth
= 0;
1095 pfile2
= talloc_asprintf(talloc_tos(),
1097 pfile
, (unsigned)sys_getpid());
1103 * Open the smbpassword file - for update. It needs to be update
1104 * as we need any other processes to wait until we have replaced
1108 if((fp
= startsmbfilepwent(pfile
, PWF_UPDATE
, &smbpasswd_state
->pw_file_lock_depth
)) == NULL
) {
1109 DEBUG(0, ("del_smbfilepwd_entry: unable to open file %s.\n", pfile
));
1114 * Create the replacement password file.
1116 if((fp_write
= startsmbfilepwent(pfile2
, PWF_CREATE
, &pfile2_lockdepth
)) == NULL
) {
1117 DEBUG(0, ("del_smbfilepwd_entry: unable to open file %s.\n", pfile
));
1118 endsmbfilepwent(fp
, &smbpasswd_state
->pw_file_lock_depth
);
1123 * Scan the file, a line at a time and check if the name matches.
1126 while ((pwd
= getsmbfilepwent(smbpasswd_state
, fp
)) != NULL
) {
1128 size_t new_entry_length
;
1130 if (strequal(name
, pwd
->smb_name
)) {
1131 DEBUG(10, ("del_smbfilepwd_entry: found entry with "
1132 "name %s - deleting it.\n", name
));
1137 * We need to copy the entry out into the second file.
1140 if((new_entry
= format_new_smbpasswd_entry(pwd
)) == NULL
) {
1141 DEBUG(0, ("del_smbfilepwd_entry(malloc): Failed to copy entry for user %s to file %s. \
1142 Error was %s\n", pwd
->smb_name
, pfile2
, strerror(errno
)));
1144 endsmbfilepwent(fp
, &smbpasswd_state
->pw_file_lock_depth
);
1145 endsmbfilepwent(fp_write
, &pfile2_lockdepth
);
1149 new_entry_length
= strlen(new_entry
);
1151 if(fwrite(new_entry
, 1, new_entry_length
, fp_write
) != new_entry_length
) {
1152 DEBUG(0, ("del_smbfilepwd_entry(write): Failed to copy entry for user %s to file %s. \
1153 Error was %s\n", pwd
->smb_name
, pfile2
, strerror(errno
)));
1155 endsmbfilepwent(fp
, &smbpasswd_state
->pw_file_lock_depth
);
1156 endsmbfilepwent(fp_write
, &pfile2_lockdepth
);
1165 * Ensure pfile2 is flushed before rename.
1168 if(fflush(fp_write
) != 0) {
1169 DEBUG(0, ("del_smbfilepwd_entry: Failed to flush file %s. Error was %s\n", pfile2
, strerror(errno
)));
1170 endsmbfilepwent(fp
, &smbpasswd_state
->pw_file_lock_depth
);
1171 endsmbfilepwent(fp_write
,&pfile2_lockdepth
);
1176 * Do an atomic rename - then release the locks.
1179 if(rename(pfile2
,pfile
) != 0) {
1183 endsmbfilepwent(fp
, &smbpasswd_state
->pw_file_lock_depth
);
1184 endsmbfilepwent(fp_write
,&pfile2_lockdepth
);
1188 /*********************************************************************
1189 Create a smb_passwd struct from a struct samu.
1190 We will not allocate any new memory. The smb_passwd struct
1191 should only stay around as long as the struct samu does.
1192 ********************************************************************/
1194 static bool build_smb_pass (struct smb_passwd
*smb_pw
, const struct samu
*sampass
)
1198 if (sampass
== NULL
)
1200 ZERO_STRUCTP(smb_pw
);
1202 if (!IS_SAM_DEFAULT(sampass
, PDB_USERSID
)) {
1203 rid
= pdb_get_user_rid(sampass
);
1205 /* If the user specified a RID, make sure its able to be both stored and retreived */
1206 if (rid
== DOMAIN_RID_GUEST
) {
1207 struct passwd
*passwd
= Get_Pwnam_alloc(NULL
, lp_guestaccount());
1209 DEBUG(0, ("Could not find guest account via Get_Pwnam_alloc()! (%s)\n", lp_guestaccount()));
1212 smb_pw
->smb_userid
=passwd
->pw_uid
;
1213 TALLOC_FREE(passwd
);
1214 } else if (algorithmic_pdb_rid_is_user(rid
)) {
1215 smb_pw
->smb_userid
=algorithmic_pdb_user_rid_to_uid(rid
);
1217 DEBUG(0,("build_sam_pass: Failing attempt to store user with non-uid based user RID. \n"));
1222 smb_pw
->smb_name
=(const char*)pdb_get_username(sampass
);
1224 smb_pw
->smb_passwd
=pdb_get_lanman_passwd(sampass
);
1225 smb_pw
->smb_nt_passwd
=pdb_get_nt_passwd(sampass
);
1227 smb_pw
->acct_ctrl
=pdb_get_acct_ctrl(sampass
);
1228 smb_pw
->pass_last_set_time
=pdb_get_pass_last_set_time(sampass
);
1233 /*********************************************************************
1234 Create a struct samu from a smb_passwd struct
1235 ********************************************************************/
1237 static bool build_sam_account(struct smbpasswd_privates
*smbpasswd_state
,
1238 struct samu
*sam_pass
, const struct smb_passwd
*pw_buf
)
1240 struct passwd
*pwfile
;
1243 DEBUG(5,("build_sam_account: struct samu is NULL\n"));
1247 /* verify the user account exists */
1249 if ( !(pwfile
= Get_Pwnam_alloc(NULL
, pw_buf
->smb_name
)) ) {
1250 DEBUG(0,("build_sam_account: smbpasswd database is corrupt! username %s with uid "
1251 "%u is not in unix passwd database!\n", pw_buf
->smb_name
, pw_buf
->smb_userid
));
1255 if ( !NT_STATUS_IS_OK( samu_set_unix(sam_pass
, pwfile
)) )
1258 TALLOC_FREE(pwfile
);
1260 /* set remaining fields */
1262 if (!pdb_set_nt_passwd (sam_pass
, pw_buf
->smb_nt_passwd
, PDB_SET
))
1264 if (!pdb_set_lanman_passwd (sam_pass
, pw_buf
->smb_passwd
, PDB_SET
))
1266 pdb_set_acct_ctrl (sam_pass
, pw_buf
->acct_ctrl
, PDB_SET
);
1267 pdb_set_pass_last_set_time (sam_pass
, pw_buf
->pass_last_set_time
, PDB_SET
);
1268 pdb_set_pass_can_change_time (sam_pass
, pw_buf
->pass_last_set_time
, PDB_SET
);
1273 /*****************************************************************
1274 Functions to be implemented by the new passdb API
1275 ****************************************************************/
1277 /****************************************************************
1278 Search smbpasswd file by iterating over the entries. Do not
1279 call getpwnam() for unix account information until we have found
1281 ***************************************************************/
1283 static NTSTATUS
smbpasswd_getsampwnam(struct pdb_methods
*my_methods
,
1284 struct samu
*sam_acct
, const char *username
)
1286 NTSTATUS nt_status
= NT_STATUS_UNSUCCESSFUL
;
1287 struct smbpasswd_privates
*smbpasswd_state
= (struct smbpasswd_privates
*)my_methods
->private_data
;
1288 struct smb_passwd
*smb_pw
;
1291 DEBUG(10, ("getsampwnam (smbpasswd): search by name: %s\n", username
));
1293 /* startsmbfilepwent() is used here as we don't want to lookup
1294 the UNIX account in the local system password file until
1296 fp
= startsmbfilepwent(smbpasswd_state
->smbpasswd_file
, PWF_READ
, &(smbpasswd_state
->pw_file_lock_depth
));
1299 DEBUG(0, ("Unable to open passdb database.\n"));
1303 while ( ((smb_pw
=getsmbfilepwent(smbpasswd_state
, fp
)) != NULL
)&& (!strequal(smb_pw
->smb_name
, username
)) )
1304 /* do nothing....another loop */ ;
1306 endsmbfilepwent(fp
, &(smbpasswd_state
->pw_file_lock_depth
));
1309 /* did we locate the username in smbpasswd */
1313 DEBUG(10, ("getsampwnam (smbpasswd): found by name: %s\n", smb_pw
->smb_name
));
1316 DEBUG(10,("getsampwnam (smbpasswd): struct samu is NULL\n"));
1320 /* now build the struct samu */
1321 if (!build_sam_account(smbpasswd_state
, sam_acct
, smb_pw
))
1325 return NT_STATUS_OK
;
1328 static NTSTATUS
smbpasswd_getsampwsid(struct pdb_methods
*my_methods
, struct samu
*sam_acct
, const struct dom_sid
*sid
)
1330 NTSTATUS nt_status
= NT_STATUS_UNSUCCESSFUL
;
1331 struct smbpasswd_privates
*smbpasswd_state
= (struct smbpasswd_privates
*)my_methods
->private_data
;
1332 struct smb_passwd
*smb_pw
;
1336 DEBUG(10, ("smbpasswd_getsampwrid: search by sid: %s\n",
1337 sid_string_dbg(sid
)));
1339 if (!sid_peek_check_rid(get_global_sam_sid(), sid
, &rid
))
1340 return NT_STATUS_UNSUCCESSFUL
;
1342 /* More special case 'guest account' hacks... */
1343 if (rid
== DOMAIN_RID_GUEST
) {
1344 const char *guest_account
= lp_guestaccount();
1345 if (!(guest_account
&& *guest_account
)) {
1346 DEBUG(1, ("Guest account not specfied!\n"));
1349 return smbpasswd_getsampwnam(my_methods
, sam_acct
, guest_account
);
1352 /* Open the sam password file - not for update. */
1353 fp
= startsmbfilepwent(smbpasswd_state
->smbpasswd_file
, PWF_READ
, &(smbpasswd_state
->pw_file_lock_depth
));
1356 DEBUG(0, ("Unable to open passdb database.\n"));
1360 while ( ((smb_pw
=getsmbfilepwent(smbpasswd_state
, fp
)) != NULL
) && (algorithmic_pdb_uid_to_user_rid(smb_pw
->smb_userid
) != rid
) )
1363 endsmbfilepwent(fp
, &(smbpasswd_state
->pw_file_lock_depth
));
1366 /* did we locate the username in smbpasswd */
1370 DEBUG(10, ("getsampwrid (smbpasswd): found by name: %s\n", smb_pw
->smb_name
));
1373 DEBUG(10,("getsampwrid: (smbpasswd) struct samu is NULL\n"));
1377 /* now build the struct samu */
1378 if (!build_sam_account (smbpasswd_state
, sam_acct
, smb_pw
))
1381 /* build_sam_account might change the SID on us, if the name was for the guest account */
1382 if (NT_STATUS_IS_OK(nt_status
) && !dom_sid_equal(pdb_get_user_sid(sam_acct
), sid
)) {
1383 DEBUG(1, ("looking for user with sid %s instead returned %s "
1384 "for account %s!?!\n", sid_string_dbg(sid
),
1385 sid_string_dbg(pdb_get_user_sid(sam_acct
)),
1386 pdb_get_username(sam_acct
)));
1387 return NT_STATUS_NO_SUCH_USER
;
1391 return NT_STATUS_OK
;
1394 static NTSTATUS
smbpasswd_add_sam_account(struct pdb_methods
*my_methods
, struct samu
*sampass
)
1396 struct smbpasswd_privates
*smbpasswd_state
= (struct smbpasswd_privates
*)my_methods
->private_data
;
1397 struct smb_passwd smb_pw
;
1399 /* convert the struct samu */
1400 if (!build_smb_pass(&smb_pw
, sampass
)) {
1401 return NT_STATUS_UNSUCCESSFUL
;
1405 return add_smbfilepwd_entry(smbpasswd_state
, &smb_pw
);
1408 static NTSTATUS
smbpasswd_update_sam_account(struct pdb_methods
*my_methods
, struct samu
*sampass
)
1410 struct smbpasswd_privates
*smbpasswd_state
= (struct smbpasswd_privates
*)my_methods
->private_data
;
1411 struct smb_passwd smb_pw
;
1413 /* convert the struct samu */
1414 if (!build_smb_pass(&smb_pw
, sampass
)) {
1415 DEBUG(0, ("smbpasswd_update_sam_account: build_smb_pass failed!\n"));
1416 return NT_STATUS_UNSUCCESSFUL
;
1419 /* update the entry */
1420 if(!mod_smbfilepwd_entry(smbpasswd_state
, &smb_pw
)) {
1421 DEBUG(0, ("smbpasswd_update_sam_account: mod_smbfilepwd_entry failed!\n"));
1422 return NT_STATUS_UNSUCCESSFUL
;
1425 return NT_STATUS_OK
;
1428 static NTSTATUS
smbpasswd_delete_sam_account (struct pdb_methods
*my_methods
, struct samu
*sampass
)
1430 struct smbpasswd_privates
*smbpasswd_state
= (struct smbpasswd_privates
*)my_methods
->private_data
;
1432 const char *username
= pdb_get_username(sampass
);
1434 if (del_smbfilepwd_entry(smbpasswd_state
, username
))
1435 return NT_STATUS_OK
;
1437 return NT_STATUS_UNSUCCESSFUL
;
1440 static NTSTATUS
smbpasswd_rename_sam_account (struct pdb_methods
*my_methods
,
1441 struct samu
*old_acct
,
1442 const char *newname
)
1444 char *rename_script
= NULL
;
1445 struct samu
*new_acct
= NULL
;
1446 bool interim_account
= False
;
1447 TALLOC_CTX
*ctx
= talloc_tos();
1448 NTSTATUS ret
= NT_STATUS_UNSUCCESSFUL
;
1450 if (!*(lp_renameuser_script()))
1453 if ( !(new_acct
= samu_new( NULL
)) ) {
1454 return NT_STATUS_NO_MEMORY
;
1457 if ( !pdb_copy_sam_account( new_acct
, old_acct
)
1458 || !pdb_set_username(new_acct
, newname
, PDB_CHANGED
))
1463 ret
= smbpasswd_add_sam_account(my_methods
, new_acct
);
1464 if (!NT_STATUS_IS_OK(ret
))
1467 interim_account
= True
;
1469 /* rename the posix user */
1470 rename_script
= talloc_strdup(ctx
,
1471 lp_renameuser_script());
1472 if (!rename_script
) {
1473 ret
= NT_STATUS_NO_MEMORY
;
1477 if (*rename_script
) {
1480 rename_script
= talloc_string_sub2(ctx
,
1487 if (!rename_script
) {
1488 ret
= NT_STATUS_NO_MEMORY
;
1491 rename_script
= talloc_string_sub2(ctx
,
1494 pdb_get_username(old_acct
),
1498 if (!rename_script
) {
1499 ret
= NT_STATUS_NO_MEMORY
;
1503 rename_ret
= smbrun(rename_script
, NULL
);
1505 DEBUG(rename_ret
? 0 : 3,("Running the command `%s' gave %d\n", rename_script
, rename_ret
));
1507 if (rename_ret
== 0) {
1508 smb_nscd_flush_user_cache();
1517 smbpasswd_delete_sam_account(my_methods
, old_acct
);
1518 interim_account
= False
;
1522 if (interim_account
)
1523 smbpasswd_delete_sam_account(my_methods
, new_acct
);
1526 TALLOC_FREE(new_acct
);
1531 static uint32_t smbpasswd_capabilities(struct pdb_methods
*methods
)
1536 static void free_private_data(void **vp
)
1538 struct smbpasswd_privates
**privates
= (struct smbpasswd_privates
**)vp
;
1540 endsmbfilepwent((*privates
)->pw_file
, &((*privates
)->pw_file_lock_depth
));
1543 /* No need to free any further, as it is talloc()ed */
1546 struct smbpasswd_search_state
{
1547 uint32_t acct_flags
;
1549 struct samr_displayentry
*entries
;
1550 uint32_t num_entries
;
1555 static void smbpasswd_search_end(struct pdb_search
*search
)
1557 struct smbpasswd_search_state
*state
= talloc_get_type_abort(
1558 search
->private_data
, struct smbpasswd_search_state
);
1562 static bool smbpasswd_search_next_entry(struct pdb_search
*search
,
1563 struct samr_displayentry
*entry
)
1565 struct smbpasswd_search_state
*state
= talloc_get_type_abort(
1566 search
->private_data
, struct smbpasswd_search_state
);
1568 if (state
->current
== state
->num_entries
) {
1572 entry
->idx
= state
->entries
[state
->current
].idx
;
1573 entry
->rid
= state
->entries
[state
->current
].rid
;
1574 entry
->acct_flags
= state
->entries
[state
->current
].acct_flags
;
1576 entry
->account_name
= talloc_strdup(
1577 search
, state
->entries
[state
->current
].account_name
);
1578 entry
->fullname
= talloc_strdup(
1579 search
, state
->entries
[state
->current
].fullname
);
1580 entry
->description
= talloc_strdup(
1581 search
, state
->entries
[state
->current
].description
);
1583 if ((entry
->account_name
== NULL
) || (entry
->fullname
== NULL
)
1584 || (entry
->description
== NULL
)) {
1585 DEBUG(0, ("talloc_strdup failed\n"));
1589 state
->current
+= 1;
1593 static bool smbpasswd_search_users(struct pdb_methods
*methods
,
1594 struct pdb_search
*search
,
1595 uint32_t acct_flags
)
1597 struct smbpasswd_privates
*smbpasswd_state
=
1598 (struct smbpasswd_privates
*)methods
->private_data
;
1600 struct smbpasswd_search_state
*search_state
;
1601 struct smb_passwd
*pwd
;
1604 search_state
= talloc_zero(search
, struct smbpasswd_search_state
);
1605 if (search_state
== NULL
) {
1606 DEBUG(0, ("talloc failed\n"));
1609 search_state
->acct_flags
= acct_flags
;
1611 fp
= startsmbfilepwent(smbpasswd_state
->smbpasswd_file
, PWF_READ
,
1612 &smbpasswd_state
->pw_file_lock_depth
);
1615 DEBUG(10, ("Unable to open smbpasswd file.\n"));
1616 TALLOC_FREE(search_state
);
1620 while ((pwd
= getsmbfilepwent(smbpasswd_state
, fp
)) != NULL
) {
1621 struct samr_displayentry entry
;
1624 if ((acct_flags
!= 0)
1625 && ((acct_flags
& pwd
->acct_ctrl
) == 0)) {
1629 user
= samu_new(talloc_tos());
1631 DEBUG(0, ("samu_new failed\n"));
1635 if (!build_sam_account(smbpasswd_state
, user
, pwd
)) {
1636 /* Already got debug msgs... */
1642 entry
.acct_flags
= pdb_get_acct_ctrl(user
);
1643 sid_peek_rid(pdb_get_user_sid(user
), &entry
.rid
);
1644 entry
.account_name
= talloc_strdup(
1645 search_state
, pdb_get_username(user
));
1646 entry
.fullname
= talloc_strdup(
1647 search_state
, pdb_get_fullname(user
));
1648 entry
.description
= talloc_strdup(
1649 search_state
, pdb_get_acct_desc(user
));
1653 if ((entry
.account_name
== NULL
) || (entry
.fullname
== NULL
)
1654 || (entry
.description
== NULL
)) {
1655 DEBUG(0, ("talloc_strdup failed\n"));
1659 ADD_TO_LARGE_ARRAY(search_state
, struct samr_displayentry
,
1660 entry
, &search_state
->entries
,
1661 &search_state
->num_entries
,
1662 &search_state
->array_size
);
1665 endsmbfilepwent(fp
, &(smbpasswd_state
->pw_file_lock_depth
));
1667 search
->private_data
= search_state
;
1668 search
->next_entry
= smbpasswd_search_next_entry
;
1669 search
->search_end
= smbpasswd_search_end
;
1674 static NTSTATUS
pdb_init_smbpasswd( struct pdb_methods
**pdb_method
, const char *location
)
1677 struct smbpasswd_privates
*privates
;
1679 if ( !NT_STATUS_IS_OK(nt_status
= make_pdb_method( pdb_method
)) ) {
1683 (*pdb_method
)->name
= "smbpasswd";
1685 (*pdb_method
)->getsampwnam
= smbpasswd_getsampwnam
;
1686 (*pdb_method
)->getsampwsid
= smbpasswd_getsampwsid
;
1687 (*pdb_method
)->add_sam_account
= smbpasswd_add_sam_account
;
1688 (*pdb_method
)->update_sam_account
= smbpasswd_update_sam_account
;
1689 (*pdb_method
)->delete_sam_account
= smbpasswd_delete_sam_account
;
1690 (*pdb_method
)->rename_sam_account
= smbpasswd_rename_sam_account
;
1691 (*pdb_method
)->search_users
= smbpasswd_search_users
;
1693 (*pdb_method
)->capabilities
= smbpasswd_capabilities
;
1695 /* Setup private data and free function */
1697 if ( !(privates
= TALLOC_ZERO_P( *pdb_method
, struct smbpasswd_privates
)) ) {
1698 DEBUG(0, ("talloc() failed for smbpasswd private_data!\n"));
1699 return NT_STATUS_NO_MEMORY
;
1702 /* Store some config details */
1705 privates
->smbpasswd_file
= talloc_strdup(*pdb_method
, location
);
1707 privates
->smbpasswd_file
= talloc_strdup(*pdb_method
, lp_smb_passwd_file());
1710 if (!privates
->smbpasswd_file
) {
1711 DEBUG(0, ("talloc_strdp() failed for storing smbpasswd location!\n"));
1712 return NT_STATUS_NO_MEMORY
;
1715 (*pdb_method
)->private_data
= privates
;
1717 (*pdb_method
)->free_private_data
= free_private_data
;
1719 return NT_STATUS_OK
;
1722 NTSTATUS
pdb_smbpasswd_init(void)
1724 return smb_register_passdb(PASSDB_INTERFACE_VERSION
, "smbpasswd", pdb_init_smbpasswd
);