summaryrefslogtreecommitdiff
path: root/src/ask-password-api.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2011-03-28 23:27:04 +0200
committerLennart Poettering <lennart@poettering.net>2011-03-28 23:27:04 +0200
commit58fc840b8325395d24ab70e84cb69880c6daa9ee (patch)
tree9a35ca10c3c5e4a69a24a289323c2367ed9d9a23 /src/ask-password-api.c
parentd167623084f20d6286c8385de15c8ca0e2fc551d (diff)
ask-password: use TAB instead of backspace to disable asterisk password echo
Diffstat (limited to 'src/ask-password-api.c')
-rw-r--r--src/ask-password-api.c44
1 files changed, 31 insertions, 13 deletions
diff --git a/src/ask-password-api.c b/src/ask-password-api.c
index 022f1cae8c..cb0559065d 100644
--- a/src/ask-password-api.c
+++ b/src/ask-password-api.c
@@ -36,6 +36,18 @@
#include "ask-password-api.h"
+static void backspace_chars(int ttyfd, size_t p) {
+
+ if (ttyfd < 0)
+ return;
+
+ while (p > 0) {
+ p--;
+
+ loop_write(ttyfd, "\b \b", 3, false);
+ }
+}
+
int ask_password_tty(
const char *message,
usec_t until,
@@ -156,24 +168,30 @@ int ask_password_tty(
if (c == '\n')
break;
- else if (c == 21) {
- while (p > 0) {
- p--;
+ else if (c == 21) { /* C-u */
- if (ttyfd >= 0)
- loop_write(ttyfd, "\b \b", 3, false);
- }
+ if (!silent_mode)
+ backspace_chars(ttyfd, p);
+ p = 0;
} else if (c == '\b' || c == 127) {
- if (p == 0 && !silent_mode) {
- silent_mode = true;
- loop_write(ttyfd, "(no echo) ", 10, false);
- } else if (p > 0) {
+
+ if (p > 0) {
+
+ if (!silent_mode)
+ backspace_chars(ttyfd, 1);
+
p--;
+ } else if (ttyfd >= 0)
+ loop_write(ttyfd, "\a", 1, false);
- if (ttyfd >= 0)
- loop_write(ttyfd, "\b \b", 3, false);
- }
+ } else if (c == '\t' && !silent_mode) {
+
+ backspace_chars(ttyfd, p);
+ silent_mode = true;
+
+ if (ttyfd >= 0)
+ loop_write(ttyfd, "(no echo) ", 10, false);
} else {
passphrase[p++] = c;