diff options
author | David Sommerseth <davids@redhat.com> | 2014-10-03 15:53:45 +0200 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2014-10-05 15:29:41 -0400 |
commit | 64845bdc829d6a6179d0762b7e97ef23828562a3 (patch) | |
tree | 639cc68e573d665a61a45836d1793ac2eb96932c /src/shared/ask-password-api.c | |
parent | 75a0da952f603006d6b3535ecaf8ebe2bded30e7 (diff) |
ask-password: Add --echo to enable echoing the user input
Programs such as OpenVPN may use ask-password for not only retrieving
passwords, but also usernames. Masking usernames with * seems just silly.
v2 - Don't mess with termios flags, instead print the input
instead of an asterix. Resolves issues with backspace
and TAB input.
v3 - Renamed 'do_echo' variables and argument to 'echo'. Also
modified the ask_password_{tty,agent,auto} API instead of
additional wrapper functions.
[zj: undo changes to ask_password_auto, since no callers were using
the new argument.]
Diffstat (limited to 'src/shared/ask-password-api.c')
-rw-r--r-- | src/shared/ask-password-api.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/shared/ask-password-api.c b/src/shared/ask-password-api.c index 8d03f4ad09..94a27f9010 100644 --- a/src/shared/ask-password-api.c +++ b/src/shared/ask-password-api.c @@ -52,6 +52,7 @@ static void backspace_chars(int ttyfd, size_t p) { int ask_password_tty( const char *message, usec_t until, + bool echo, const char *flag_file, char **_passphrase) { @@ -218,7 +219,7 @@ int ask_password_tty( passphrase[p++] = c; if (!silent_mode && ttyfd >= 0) - loop_write(ttyfd, "*", 1, false); + loop_write(ttyfd, echo ? &c : "*", 1, false); dirty = true; } @@ -300,6 +301,7 @@ int ask_password_agent( const char *icon, const char *id, usec_t until, + bool echo, bool accept_cached, char ***_passphrases) { @@ -362,10 +364,12 @@ int ask_password_agent( "PID="PID_FMT"\n" "Socket=%s\n" "AcceptCached=%i\n" + "Echo=%i\n" "NotAfter="USEC_FMT"\n", getpid(), socket_name, accept_cached ? 1 : 0, + echo ? 1 : 0, until); if (message) @@ -550,7 +554,7 @@ int ask_password_auto(const char *message, const char *icon, const char *id, int r; char *s = NULL, **l = NULL; - r = ask_password_tty(message, until, NULL, &s); + r = ask_password_tty(message, until, false, NULL, &s); if (r < 0) return r; @@ -561,5 +565,5 @@ int ask_password_auto(const char *message, const char *icon, const char *id, *_passphrases = l; return r; } else - return ask_password_agent(message, icon, id, until, accept_cached, _passphrases); + return ask_password_agent(message, icon, id, until, false, accept_cached, _passphrases); } |