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"
/*************************************************************
Utility function to prompt for passwords from stdin . Each
password entered must end with a newline .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
char * stdin_new_passwd ( void )
{
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 .
*/
if ( fgets ( new_pw , sizeof ( new_pw ) , stdin ) ! = NULL ) {
if ( ( len = strlen ( new_pw ) ) > 0 ) {
if ( new_pw [ len - 1 ] = = ' \n ' )
new_pw [ len - 1 ] = 0 ;
}
}
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
{
char * p ;
if ( stdin_get ) {
p = stdin_new_passwd ( ) ;
} else {
p = getpass ( prompt ) ;
}
return smb_xstrdup ( p ) ;
}