2007-07-20 21:29:49 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* chpasswd.c
|
|
|
|
*
|
|
|
|
* Written for SLIND (from passwd.c) by Alexander Shishkin <virtuoso@slind.org>
|
2010-08-16 18:14:46 +00:00
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this source tree.
|
2007-07-20 21:29:49 +00:00
|
|
|
*/
|
|
|
|
#include "libbb.h"
|
|
|
|
|
2011-04-01 20:56:30 +00:00
|
|
|
//usage:#define chpasswd_trivial_usage
|
|
|
|
//usage: IF_LONG_OPTS("[--md5|--encrypted]") IF_NOT_LONG_OPTS("[-m|-e]")
|
|
|
|
//usage:#define chpasswd_full_usage "\n\n"
|
|
|
|
//usage: "Read user:password from stdin and update /etc/passwd\n"
|
|
|
|
//usage: IF_LONG_OPTS(
|
|
|
|
//usage: "\n -e,--encrypted Supplied passwords are in encrypted form"
|
|
|
|
//usage: "\n -m,--md5 Use MD5 encryption instead of DES"
|
|
|
|
//usage: )
|
|
|
|
//usage: IF_NOT_LONG_OPTS(
|
|
|
|
//usage: "\n -e Supplied passwords are in encrypted form"
|
|
|
|
//usage: "\n -m Use MD5 encryption instead of DES"
|
|
|
|
//usage: )
|
|
|
|
|
2012-01-08 15:44:37 +00:00
|
|
|
//TODO: implement -c ALGO
|
|
|
|
|
2009-06-19 10:10:38 +00:00
|
|
|
#if ENABLE_LONG_OPTS
|
2007-08-12 20:58:27 +00:00
|
|
|
static const char chpasswd_longopts[] ALIGN1 =
|
2007-07-23 17:14:14 +00:00
|
|
|
"encrypted\0" No_argument "e"
|
|
|
|
"md5\0" No_argument "m"
|
2007-07-24 15:54:42 +00:00
|
|
|
;
|
2007-07-20 21:29:49 +00:00
|
|
|
#endif
|
|
|
|
|
2010-10-28 16:57:19 +00:00
|
|
|
#define OPT_ENC 1
|
|
|
|
#define OPT_MD5 2
|
2007-07-20 21:29:49 +00:00
|
|
|
|
2007-10-11 10:05:36 +00:00
|
|
|
int chpasswd_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2008-07-05 09:18:54 +00:00
|
|
|
int chpasswd_main(int argc UNUSED_PARAM, char **argv)
|
2007-07-20 21:29:49 +00:00
|
|
|
{
|
2011-09-11 10:25:59 +00:00
|
|
|
char *name;
|
|
|
|
int opt;
|
2007-07-20 21:29:49 +00:00
|
|
|
|
2011-05-13 01:19:01 +00:00
|
|
|
if (getuid() != 0)
|
2007-07-20 21:29:49 +00:00
|
|
|
bb_error_msg_and_die(bb_msg_perm_denied_are_you_root);
|
|
|
|
|
2007-08-16 10:35:17 +00:00
|
|
|
opt_complementary = "m--e:e--m";
|
2009-06-19 10:10:38 +00:00
|
|
|
IF_LONG_OPTS(applet_long_options = chpasswd_longopts;)
|
2007-08-18 15:32:12 +00:00
|
|
|
opt = getopt32(argv, "em");
|
2007-07-20 21:29:49 +00:00
|
|
|
|
2008-03-26 20:04:27 +00:00
|
|
|
while ((name = xmalloc_fgetline(stdin)) != NULL) {
|
2011-09-11 10:25:59 +00:00
|
|
|
char *free_me;
|
|
|
|
char *pass;
|
|
|
|
int rc;
|
|
|
|
|
2007-07-20 21:29:49 +00:00
|
|
|
pass = strchr(name, ':');
|
|
|
|
if (!pass)
|
|
|
|
bb_error_msg_and_die("missing new password");
|
|
|
|
*pass++ = '\0';
|
|
|
|
|
2007-07-21 13:25:28 +00:00
|
|
|
xuname2uid(name); /* dies if there is no such user */
|
2007-07-20 21:29:49 +00:00
|
|
|
|
2011-09-11 10:25:59 +00:00
|
|
|
free_me = NULL;
|
2007-07-20 21:29:49 +00:00
|
|
|
if (!(opt & OPT_ENC)) {
|
2011-09-11 10:25:59 +00:00
|
|
|
char salt[sizeof("$N$XXXXXXXX")];
|
|
|
|
|
2011-05-13 01:19:01 +00:00
|
|
|
crypt_make_salt(salt, 1);
|
2007-07-20 21:29:49 +00:00
|
|
|
if (opt & OPT_MD5) {
|
2011-05-13 01:19:01 +00:00
|
|
|
salt[0] = '$';
|
|
|
|
salt[1] = '1';
|
|
|
|
salt[2] = '$';
|
|
|
|
crypt_make_salt(salt + 3, 4);
|
2007-07-20 21:29:49 +00:00
|
|
|
}
|
2011-09-11 10:25:59 +00:00
|
|
|
free_me = pass = pw_encrypt(pass, salt, 0);
|
2007-07-20 21:29:49 +00:00
|
|
|
}
|
|
|
|
|
2007-07-21 13:54:26 +00:00
|
|
|
/* This is rather complex: if user is not found in /etc/shadow,
|
|
|
|
* we try to find & change his passwd in /etc/passwd */
|
|
|
|
#if ENABLE_FEATURE_SHADOWPASSWDS
|
2009-04-14 00:51:05 +00:00
|
|
|
rc = update_passwd(bb_path_shadow_file, name, pass, NULL);
|
2011-04-04 22:18:33 +00:00
|
|
|
if (rc > 0) /* password in /etc/shadow was updated */
|
|
|
|
pass = (char*)"x";
|
|
|
|
if (rc >= 0)
|
|
|
|
/* 0 = /etc/shadow missing (not an error), >0 = passwd changed in /etc/shadow */
|
2007-07-21 13:54:26 +00:00
|
|
|
#endif
|
2009-04-14 00:51:05 +00:00
|
|
|
rc = update_passwd(bb_path_passwd_file, name, pass, NULL);
|
2007-07-21 13:54:26 +00:00
|
|
|
/* LOGMODE_BOTH logs to syslog also */
|
2007-07-20 21:29:49 +00:00
|
|
|
logmode = LOGMODE_BOTH;
|
2007-07-21 13:54:26 +00:00
|
|
|
if (rc < 0)
|
2007-07-21 13:25:28 +00:00
|
|
|
bb_error_msg_and_die("an error occurred updating password for %s", name);
|
2007-07-21 13:54:26 +00:00
|
|
|
if (rc)
|
2007-07-20 21:29:49 +00:00
|
|
|
bb_info_msg("Password for '%s' changed", name);
|
|
|
|
logmode = LOGMODE_STDIO;
|
|
|
|
free(name);
|
2011-09-11 10:25:59 +00:00
|
|
|
free(free_me);
|
2007-07-20 21:29:49 +00:00
|
|
|
}
|
2008-08-05 09:56:56 +00:00
|
|
|
return EXIT_SUCCESS;
|
2007-07-20 21:29:49 +00:00
|
|
|
}
|