summaryrefslogtreecommitdiffstats
path: root/commands
diff options
context:
space:
mode:
authorJean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>2010-09-08 23:21:52 +0800
committerSascha Hauer <s.hauer@pengutronix.de>2010-09-20 08:57:22 +0200
commit8b611f099a5f6e2c69669098f800a954bbb3450d (patch)
treea33ac9c3358555d98a17f868895cdec2bbc3cbcf /commands
parentc83ebb95f10d1fab01395ec3d9c9b4a34224cc98 (diff)
downloadbarebox-8b611f099a5f6e2c69669098f800a954bbb3450d.tar.gz
barebox-8b611f099a5f6e2c69669098f800a954bbb3450d.tar.xz
add passwd command
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Diffstat (limited to 'commands')
-rw-r--r--commands/Kconfig23
-rw-r--r--commands/Makefile1
-rw-r--r--commands/passwd.c98
3 files changed, 122 insertions, 0 deletions
diff --git a/commands/Kconfig b/commands/Kconfig
index 57c9b7557f..0c9a6ef0b9 100644
--- a/commands/Kconfig
+++ b/commands/Kconfig
@@ -60,6 +60,29 @@ config CMD_MENU_MANAGEMENT
depends on CMD_MENU
prompt "menu scripts management"
+config CMD_PASSWD
+ tristate
+ select PASSWORD
+ prompt "passwd"
+
+if CMD_PASSWD
+
+choice
+ prompt "passwd mode"
+
+config PASSWD_MODE_HIDE
+ bool "Hide"
+
+config PASSWD_MODE_STAR
+ bool "Star"
+
+config PASSWD_MODE_CLEAR
+ bool "Clear"
+
+endchoice
+
+endif
+
endmenu
menu "file commands "
diff --git a/commands/Makefile b/commands/Makefile
index 154a778f9c..3012e65bd6 100644
--- a/commands/Makefile
+++ b/commands/Makefile
@@ -51,3 +51,4 @@ obj-$(CONFIG_CMD_UNLZO) += unlzo.o
obj-$(CONFIG_CMD_I2C) += i2c.o
obj-$(CONFIG_CMD_UBI) += ubi.o
obj-$(CONFIG_CMD_MENU) += menu.o
+obj-$(CONFIG_CMD_PASSWD) += passwd.o
diff --git a/commands/passwd.c b/commands/passwd.c
new file mode 100644
index 0000000000..94350911df
--- /dev/null
+++ b/commands/passwd.c
@@ -0,0 +1,98 @@
+/*
+ * Copyright (c) 2008-2010 Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+ *
+ * See file CREDITS for list of people who contributed to this
+ * project.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2
+ * as published by the Free Software Foundation.
+ *
+ * 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
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ */
+
+#include <common.h>
+#include <command.h>
+#include <password.h>
+#include <errno.h>
+
+#define PASSWD_MAX_LENGTH (128 + 1)
+
+#if defined(CONFIG_PASSWD_MODE_STAR)
+#define PASSWD_MODE STAR
+#elif defined(CONFIG_PASSWD_MODE_CLEAR)
+#define PASSWD_MODE CLEAR
+#else
+#define PASSWD_MODE HIDE
+#endif
+
+static int do_passwd(struct command *cmdtp, int argc, char *argv[])
+{
+ unsigned char passwd2[PASSWD_MAX_LENGTH];
+ unsigned char passwd1[PASSWD_MAX_LENGTH];
+ int passwd1_len;
+ int passwd2_len;
+ int ret = 1;
+
+ puts("Enter new password: ");
+ passwd1_len = password(passwd1, PASSWD_MAX_LENGTH, PASSWD_MODE);
+
+ if (passwd1_len < 0)
+ return 1;
+
+ puts("Retype new password: ");
+ passwd2_len = password(passwd2, PASSWD_MAX_LENGTH, PASSWD_MODE);
+
+ if (passwd2_len < 0)
+ return 1;
+
+ if (passwd2_len != passwd1_len) {
+ goto err;
+ } else {
+ if (passwd1_len == 0) {
+ ret = 0;
+ goto disable;
+ }
+
+ if (strncmp(passwd1, passwd2, passwd1_len) != 0)
+ goto err;
+ }
+
+ ret = set_passwd(passwd1, passwd1_len);
+
+ if (ret < 0) {
+ puts("Sorry, passwords write failed\n");
+ ret = 1;
+ goto disable;
+ }
+
+ return 0;
+err:
+ puts("Sorry, passwords do not match\n");
+ puts("passwd: password unchanged\n");
+ return 1;
+
+disable:
+ passwd_disable();
+ puts("passwd: password disabled\n");
+ return ret;
+}
+
+static const __maybe_unused char cmd_passwd_help[] =
+"Usage: passwd\n"
+"passwd allow you to specify a password\n"
+"to disable it put an empty password\n"
+;
+
+BAREBOX_CMD_START(passwd)
+ .cmd = do_passwd,
+ .usage = "passwd",
+ BAREBOX_CMD_HELP(cmd_passwd_help)
+BAREBOX_CMD_END