2007-05-09 04:53:35 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
2008-12-04 19:49:21 +05:30
|
|
|
* cryptpw.c - output a crypt(3)ed password to stdout.
|
|
|
|
*
|
2010-08-16 23:44:46 +05:30
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this source tree.
|
2007-05-30 05:59:55 +05:30
|
|
|
*
|
2007-05-09 04:53:35 +05:30
|
|
|
* Cooked from passwd.c by Thomas Lundquist <thomasez@zelow.no>
|
2008-12-04 17:35:26 +05:30
|
|
|
* mkpasswd compatible options added by Bernhard Reutner-Fischer
|
2008-12-07 06:22:58 +05:30
|
|
|
*
|
2010-08-16 23:44:46 +05:30
|
|
|
* Licensed under GPLv2, see file LICENSE in this source tree.
|
2007-05-09 04:53:35 +05:30
|
|
|
*/
|
2015-10-19 04:50:36 +05:30
|
|
|
//config:config CRYPTPW
|
|
|
|
//config: bool "cryptpw"
|
|
|
|
//config: default y
|
|
|
|
//config: help
|
|
|
|
//config: Encrypts the given password with the crypt(3) libc function
|
2016-03-31 04:02:39 +05:30
|
|
|
//config: using the given salt.
|
|
|
|
//config:
|
|
|
|
//config:config MKPASSWD
|
|
|
|
//config: bool "mkpasswd"
|
|
|
|
//config: default y
|
|
|
|
//config: help
|
|
|
|
//config: Encrypts the given password with the crypt(3) libc function
|
2015-10-19 04:50:36 +05:30
|
|
|
//config: using the given salt. Debian has this utility under mkpasswd
|
|
|
|
//config: name. Busybox provides mkpasswd as an alias for cryptpw.
|
|
|
|
|
|
|
|
//applet:IF_CRYPTPW(APPLET(cryptpw, BB_DIR_USR_BIN, BB_SUID_DROP))
|
2016-03-31 04:02:39 +05:30
|
|
|
// APPLET_ODDNAME:name main location suid_type help
|
|
|
|
//applet:IF_MKPASSWD(APPLET_ODDNAME(mkpasswd, cryptpw, BB_DIR_USR_BIN, BB_SUID_DROP, cryptpw))
|
2015-10-19 04:50:36 +05:30
|
|
|
|
|
|
|
//kbuild:lib-$(CONFIG_CRYPTPW) += cryptpw.o
|
2016-03-31 04:02:39 +05:30
|
|
|
//kbuild:lib-$(CONFIG_MKPASSWD) += cryptpw.o
|
2007-05-09 04:53:35 +05:30
|
|
|
|
2011-04-02 02:26:30 +05:30
|
|
|
//usage:#define cryptpw_trivial_usage
|
|
|
|
//usage: "[OPTIONS] [PASSWORD] [SALT]"
|
|
|
|
/* We do support -s, we just don't mention it */
|
|
|
|
//usage:#define cryptpw_full_usage "\n\n"
|
2011-05-12 06:44:12 +05:30
|
|
|
//usage: "Crypt PASSWORD using crypt(3)\n"
|
2011-04-02 02:26:30 +05:30
|
|
|
//usage: IF_LONG_OPTS(
|
|
|
|
//usage: "\n -P,--password-fd=N Read password from fd N"
|
|
|
|
/* //usage: "\n -s,--stdin Use stdin; like -P0" */
|
2011-05-13 06:49:01 +05:30
|
|
|
//usage: "\n -m,--method=TYPE Encryption method"
|
2011-04-02 02:26:30 +05:30
|
|
|
//usage: "\n -S,--salt=SALT"
|
|
|
|
//usage: )
|
|
|
|
//usage: IF_NOT_LONG_OPTS(
|
|
|
|
//usage: "\n -P N Read password from fd N"
|
|
|
|
/* //usage: "\n -s Use stdin; like -P0" */
|
|
|
|
//usage: "\n -m TYPE Encryption method TYPE"
|
|
|
|
//usage: "\n -S SALT"
|
|
|
|
//usage: )
|
|
|
|
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
2007-05-09 04:53:35 +05:30
|
|
|
|
2008-12-04 17:35:26 +05:30
|
|
|
/* Debian has 'mkpasswd' utility, manpage says:
|
2008-06-12 22:25:59 +05:30
|
|
|
|
2008-12-04 17:35:26 +05:30
|
|
|
NAME
|
|
|
|
mkpasswd - Overfeatured front end to crypt(3)
|
|
|
|
SYNOPSIS
|
|
|
|
mkpasswd PASSWORD SALT
|
|
|
|
...
|
|
|
|
OPTIONS
|
|
|
|
-S, --salt=STRING
|
|
|
|
Use the STRING as salt. It must not contain prefixes such as
|
|
|
|
$1$.
|
|
|
|
-R, --rounds=NUMBER
|
|
|
|
Use NUMBER rounds. This argument is ignored if the method
|
|
|
|
choosen does not support variable rounds. For the OpenBSD Blowfish
|
|
|
|
method this is the logarithm of the number of rounds.
|
|
|
|
-m, --method=TYPE
|
|
|
|
Compute the password using the TYPE method. If TYPE is 'help'
|
|
|
|
then the available methods are printed.
|
|
|
|
-P, --password-fd=NUM
|
|
|
|
Read the password from file descriptor NUM instead of using getpass(3).
|
|
|
|
If the file descriptor is not connected to a tty then
|
|
|
|
no other message than the hashed password is printed on stdout.
|
|
|
|
-s, --stdin
|
|
|
|
Like --password-fd=0.
|
|
|
|
ENVIRONMENT
|
|
|
|
$MKPASSWD_OPTIONS
|
|
|
|
A list of options which will be evaluated before the ones
|
|
|
|
specified on the command line.
|
|
|
|
BUGS
|
|
|
|
This programs suffers of a bad case of featuritis.
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2008-06-12 22:25:59 +05:30
|
|
|
|
2008-12-04 17:35:26 +05:30
|
|
|
Very true...
|
|
|
|
|
|
|
|
cryptpw was in bbox before this gem, so we retain it, and alias mkpasswd
|
|
|
|
to cryptpw. -a option (alias for -m) came from cryptpw.
|
|
|
|
*/
|
2008-06-12 22:25:59 +05:30
|
|
|
|
2007-10-11 15:35:36 +05:30
|
|
|
int cryptpw_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2008-07-05 14:48:54 +05:30
|
|
|
int cryptpw_main(int argc UNUSED_PARAM, char **argv)
|
2007-05-09 04:53:35 +05:30
|
|
|
{
|
2011-05-13 06:49:01 +05:30
|
|
|
char salt[MAX_PW_SALT_LEN];
|
2008-12-04 17:35:26 +05:30
|
|
|
char *salt_ptr;
|
2013-07-01 00:58:55 +05:30
|
|
|
char *password;
|
2008-12-04 17:35:26 +05:30
|
|
|
const char *opt_m, *opt_S;
|
|
|
|
int fd;
|
2008-11-11 00:22:35 +05:30
|
|
|
|
2009-06-19 15:40:38 +05:30
|
|
|
#if ENABLE_LONG_OPTS
|
2008-12-04 17:35:26 +05:30
|
|
|
static const char mkpasswd_longopts[] ALIGN1 =
|
|
|
|
"stdin\0" No_argument "s"
|
|
|
|
"password-fd\0" Required_argument "P"
|
|
|
|
"salt\0" Required_argument "S"
|
|
|
|
"method\0" Required_argument "m"
|
|
|
|
;
|
|
|
|
applet_long_options = mkpasswd_longopts;
|
2008-11-11 00:22:35 +05:30
|
|
|
#endif
|
2008-12-04 17:35:26 +05:30
|
|
|
fd = STDIN_FILENO;
|
2012-01-08 21:14:37 +05:30
|
|
|
opt_m = CONFIG_FEATURE_DEFAULT_PASSWD_ALGO;
|
2008-12-04 17:35:26 +05:30
|
|
|
opt_S = NULL;
|
|
|
|
/* at most two non-option arguments; -P NUM */
|
2016-07-07 01:28:02 +05:30
|
|
|
opt_complementary = "?2";
|
|
|
|
getopt32(argv, "sP:+S:m:a:", &fd, &opt_S, &opt_m, &opt_m);
|
2008-12-04 17:35:26 +05:30
|
|
|
argv += optind;
|
|
|
|
|
|
|
|
/* have no idea how to handle -s... */
|
|
|
|
|
|
|
|
if (argv[0] && !opt_S)
|
|
|
|
opt_S = argv[1];
|
|
|
|
|
2011-05-13 06:49:01 +05:30
|
|
|
salt_ptr = crypt_make_pw_salt(salt, opt_m);
|
2008-12-04 17:35:26 +05:30
|
|
|
if (opt_S)
|
2011-05-13 06:49:01 +05:30
|
|
|
safe_strncpy(salt_ptr, opt_S, sizeof(salt) - (sizeof("$N$")-1));
|
2008-12-04 17:35:26 +05:30
|
|
|
|
|
|
|
xmove_fd(fd, STDIN_FILENO);
|
2007-05-09 04:53:35 +05:30
|
|
|
|
2013-07-01 00:58:55 +05:30
|
|
|
password = argv[0];
|
|
|
|
if (!password) {
|
|
|
|
/* Only mkpasswd, and only from tty, prompts.
|
|
|
|
* Otherwise it is a plain read. */
|
2016-03-31 04:02:39 +05:30
|
|
|
password = (ENABLE_MKPASSWD && isatty(STDIN_FILENO) && applet_name[0] == 'm')
|
2008-12-04 19:49:21 +05:30
|
|
|
? bb_ask_stdin("Password: ")
|
2008-12-04 17:35:26 +05:30
|
|
|
: xmalloc_fgetline(stdin)
|
2013-07-01 00:58:55 +05:30
|
|
|
;
|
|
|
|
/* may still be NULL on EOF/error */
|
|
|
|
}
|
|
|
|
|
|
|
|
if (password)
|
|
|
|
puts(pw_encrypt(password, salt, 1));
|
2007-05-09 04:53:35 +05:30
|
|
|
|
2008-12-04 17:35:26 +05:30
|
|
|
return EXIT_SUCCESS;
|
2007-05-09 04:53:35 +05:30
|
|
|
}
|