mirror of https://github.com/bitcoin/bitcoin
Merge #13716: bitcoin-cli: -stdinwalletpassphrase and non-echo stdin passwords
pull/17031/head50c4afa3c4
add newline after -stdin* (Karl-Johan Alm)7f11fba2e3
cli: add -stdinwalletpassphrase for (slightly more) secure CLI (Karl-Johan Alm)0da503e947
add stdin helpers for password input support (Karl-Johan Alm) Pull request description: This PR * adds `-stdinwalletpassphrase` for use with `walletpasshprase(change)` * adds no-echo for passwords (`-stdinrpcpass` and above) It may not be ideal, but it's better than having to clear the screen whenever you unlock the wallet. ACKs for top commit: laanwj: code review ACK50c4afa3c4
Tree-SHA512: 473db8a303ff360ffaa36ac81a2f82be2136fa82696df0bc4f33cb44033a3ae258b5aa5bbcc1f101f88ae9abe9598ed564ce52877ab139bd5d709833f5275ec6
commit
f4a0d27e85
@ -0,0 +1,72 @@
|
||||
// Copyright (c) 2018 The Bitcoin Core developers
|
||||
// Distributed under the MIT software license, see the accompanying
|
||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||
|
||||
#if defined(HAVE_CONFIG_H)
|
||||
#include <config/bitcoin-config.h>
|
||||
#endif
|
||||
|
||||
#include <cstdio> // for fileno(), stdin
|
||||
|
||||
#ifdef WIN32
|
||||
#include <windows.h> // for SetStdinEcho()
|
||||
#include <io.h> // for isatty()
|
||||
#else
|
||||
#include <termios.h> // for SetStdinEcho()
|
||||
#include <unistd.h> // for SetStdinEcho(), isatty()
|
||||
#include <sys/poll.h> // for StdinReady()
|
||||
#endif
|
||||
|
||||
#include <compat/stdin.h>
|
||||
|
||||
// https://stackoverflow.com/questions/1413445/reading-a-password-from-stdcin
|
||||
void SetStdinEcho(bool enable)
|
||||
{
|
||||
#ifdef WIN32
|
||||
HANDLE hStdin = GetStdHandle(STD_INPUT_HANDLE);
|
||||
DWORD mode;
|
||||
GetConsoleMode(hStdin, &mode);
|
||||
if (!enable) {
|
||||
mode &= ~ENABLE_ECHO_INPUT;
|
||||
} else {
|
||||
mode |= ENABLE_ECHO_INPUT;
|
||||
}
|
||||
SetConsoleMode(hStdin, mode);
|
||||
#else
|
||||
struct termios tty;
|
||||
tcgetattr(STDIN_FILENO, &tty);
|
||||
if (!enable) {
|
||||
tty.c_lflag &= ~ECHO;
|
||||
} else {
|
||||
tty.c_lflag |= ECHO;
|
||||
}
|
||||
(void)tcsetattr(STDIN_FILENO, TCSANOW, &tty);
|
||||
#endif
|
||||
}
|
||||
|
||||
bool StdinTerminal()
|
||||
{
|
||||
#ifdef WIN32
|
||||
return _isatty(_fileno(stdin));
|
||||
#else
|
||||
return isatty(fileno(stdin));
|
||||
#endif
|
||||
}
|
||||
|
||||
bool StdinReady()
|
||||
{
|
||||
if (!StdinTerminal()) {
|
||||
return true;
|
||||
}
|
||||
#ifdef WIN32
|
||||
return false;
|
||||
#else
|
||||
struct pollfd fds;
|
||||
fds.fd = 0; /* this is STDIN */
|
||||
fds.events = POLLIN;
|
||||
return poll(&fds, 1, 0) == 1;
|
||||
#endif
|
||||
}
|
||||
|
||||
NoechoInst::NoechoInst() { SetStdinEcho(false); }
|
||||
NoechoInst::~NoechoInst() { SetStdinEcho(true); }
|
@ -0,0 +1,18 @@
|
||||
// Copyright (c) 2018 The Bitcoin Core developers
|
||||
// Distributed under the MIT software license, see the accompanying
|
||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||
|
||||
#ifndef BITCOIN_COMPAT_STDIN_H
|
||||
#define BITCOIN_COMPAT_STDIN_H
|
||||
|
||||
struct NoechoInst {
|
||||
NoechoInst();
|
||||
~NoechoInst();
|
||||
};
|
||||
|
||||
#define NO_STDIN_ECHO() NoechoInst _no_echo
|
||||
|
||||
bool StdinTerminal();
|
||||
bool StdinReady();
|
||||
|
||||
#endif // BITCOIN_COMPAT_STDIN_H
|
Loading…
Reference in new issue