2006-02-16 19:22:44 +03:00
/*
Unix SMB / CIFS implementation .
passdb editing frontend
2006-02-16 21:28:04 +03:00
Copyright ( C ) Jeremy Allison 1998
Copyright ( C ) Andrew Tridgell 1998
Copyright ( C ) Tim Potter 2000
2006-02-16 19:22:44 +03:00
Copyright ( C ) Simo Sorce 2000
2006-02-16 21:28:04 +03:00
Copyright ( C ) Martin Pool 2001
Copyright ( C ) Gerald Carter 2002
Copyright ( C ) Andrew Bartlett 2003
2006-02-16 19:22:44 +03:00
This program is free software ; you can redistribute it and / or modify
it under the terms of the GNU General Public License as published by
2007-07-09 23:25:36 +04:00
the Free Software Foundation ; either version 3 of the License , or
2006-02-16 19:22:44 +03:00
( at your option ) any later version .
This program is distributed in the hope that it will be useful ,
but WITHOUT ANY WARRANTY ; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
GNU General Public License for more details .
You should have received a copy of the GNU General Public License
2007-07-10 04:52:41 +04:00
along with this program . If not , see < http : //www.gnu.org/licenses/>.
2006-02-16 19:22:44 +03:00
*/
# include "includes.h"
2019-11-27 10:36:59 +03:00
# include "passwd_proto.h"
2006-02-16 19:22:44 +03:00
/*************************************************************
Utility function to prompt for passwords from stdin . Each
password entered must end with a newline .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2019-11-27 10:35:05 +03:00
static char * stdin_new_passwd ( void )
2006-02-16 19:22:44 +03:00
{
static fstring new_pw ;
size_t len ;
ZERO_ARRAY ( new_pw ) ;
/*
* if no error is reported from fgets ( ) and string at least contains
* the newline that ends the password , then replace the newline with
* a null terminator .
*/
2013-12-12 21:37:25 +04:00
if ( fgets ( new_pw , sizeof ( new_pw ) , stdin ) = = NULL ) {
return NULL ;
}
if ( ( len = strlen ( new_pw ) ) > 0 ) {
if ( new_pw [ len - 1 ] = = ' \n ' )
new_pw [ len - 1 ] = 0 ;
2006-02-16 19:22:44 +03:00
}
return ( new_pw ) ;
}
/*************************************************************
Utility function to get passwords via tty or stdin
2006-02-16 21:33:08 +03:00
Used if the ' - s ' ( smbpasswd ) or ' - t ' ( pdbedit ) option is set
to silently get passwords to enable scripting .
2006-02-16 19:22:44 +03:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2007-10-19 04:40:25 +04:00
char * get_pass ( const char * prompt , bool stdin_get )
2006-02-16 19:22:44 +03:00
{
2012-11-23 17:34:39 +04:00
char pwd [ 256 ] = { 0 } ;
2006-02-16 19:22:44 +03:00
char * p ;
2012-11-23 17:34:39 +04:00
int rc ;
2006-02-16 19:22:44 +03:00
if ( stdin_get ) {
p = stdin_new_passwd ( ) ;
2013-12-12 21:37:25 +04:00
if ( p = = NULL ) {
return NULL ;
}
2006-02-16 19:22:44 +03:00
} else {
2012-11-23 17:34:39 +04:00
rc = samba_getpass ( prompt , pwd , sizeof ( pwd ) , false , false ) ;
if ( rc < 0 ) {
return NULL ;
}
p = pwd ;
2006-02-16 19:22:44 +03:00
}
return smb_xstrdup ( p ) ;
}