Add unlock command to fdbcli
This commit is contained in:
parent
b3aa54e7eb
commit
9c6bec1af6
|
@ -209,11 +209,6 @@ The following options are available for use with the ``option`` command:
|
|||
|
||||
``TIMEOUT`` - Set a timeout in milliseconds which, when elapsed, will cause the transaction automatically to be cancelled. Valid parameter values are ``[0, INT_MAX]``. If set to 0, will disable all timeouts. All pending and any future uses of the transaction will throw an exception. The transaction can be used again after it is reset. Like all transaction options, a timeout must be reset after a call to ``onError``. This behavior allows the user to make the timeouts dynamic.
|
||||
|
||||
lock
|
||||
----
|
||||
|
||||
The ``lock`` command locks the database with a randomly generated lockUID.
|
||||
|
||||
include
|
||||
-------
|
||||
|
||||
|
@ -225,6 +220,11 @@ For each IP address or IP:port pair in ``<ADDRESS...>``, the command removes any
|
|||
|
||||
For information on adding machines to a cluster, see :ref:`adding-machines-to-a-cluster`.
|
||||
|
||||
lock
|
||||
----
|
||||
|
||||
The ``lock`` command locks the database with a randomly generated lockUID.
|
||||
|
||||
option
|
||||
------
|
||||
|
||||
|
@ -283,3 +283,8 @@ status json
|
|||
^^^^^^^^^^^
|
||||
|
||||
``status json`` will provide the cluster status in its JSON format. For a detailed description of this format, see :doc:`mr-status`.
|
||||
|
||||
unlock
|
||||
------
|
||||
|
||||
The ``unlock`` command unlocks the database with the specified lock UID. Because this is a potentially dangerous operation, users must copy a passphrase before the unlock command is executed.
|
||||
|
|
|
@ -565,6 +565,10 @@ void initHelp() {
|
|||
"lock",
|
||||
"lock the database with a randomly generated lockUID",
|
||||
"Randomly generates a lockUID, prints this lockUID, and then uses the lockUID to lock the database.");
|
||||
helpMap["unlock"] =
|
||||
CommandHelp("unlock <UID>", "unlock the database with the provided lockUID",
|
||||
"Unlocks the database with the provided lockUID. This is a potentially dangerous operation, so the "
|
||||
"user will be asked to enter a passphrase to confirm their intent.");
|
||||
|
||||
hiddenCommands.insert("expensive_data_check");
|
||||
hiddenCommands.insert("datadistribution");
|
||||
|
@ -2723,7 +2727,8 @@ ACTOR Future<int> cli(CLIOptions opt, LineNoise* plinenoise) {
|
|||
continue;
|
||||
|
||||
// Don't put dangerous commands in the command history
|
||||
if (line.find("writemode") == std::string::npos && line.find("expensive_data_check") == std::string::npos)
|
||||
if (line.find("writemode") == std::string::npos && line.find("expensive_data_check") == std::string::npos &&
|
||||
line.find("unlock") == std::string::npos)
|
||||
linenoise.historyAdd(line);
|
||||
}
|
||||
|
||||
|
@ -2951,6 +2956,31 @@ ACTOR Future<int> cli(CLIOptions opt, LineNoise* plinenoise) {
|
|||
continue;
|
||||
}
|
||||
|
||||
if (tokencmp(tokens[0], "unlock")) {
|
||||
if ((tokens.size() != 2) || (tokens[1].size() != 32) ||
|
||||
!std::all_of(tokens[1].begin(), tokens[1].end(), &isxdigit)) {
|
||||
printUsage(tokens[0]);
|
||||
is_error = true;
|
||||
} else {
|
||||
state std::string passPhrase = deterministicRandom()->randomAlphaNumeric(10);
|
||||
warn.cancel(); // don't warn while waiting on user input
|
||||
printf("Unlocking the database is a potentially dangerous operation.\n");
|
||||
Optional<std::string> input = wait(linenoise.read(
|
||||
format("Repeat the following passphrase if you would like to proceed (%s) : ",
|
||||
passPhrase.c_str())));
|
||||
warn = checkStatus(timeWarning(5.0, "\nWARNING: Long delay (Ctrl-C to interrupt)\n"), db);
|
||||
if (input.present() && input.get() == passPhrase) {
|
||||
UID unlockUID = UID::fromString(tokens[1].toString());
|
||||
wait(makeInterruptable(unlockDatabase(db, unlockUID)));
|
||||
printf("Database unlocked.\n");
|
||||
} else {
|
||||
printf("ERROR: Incorrect passphrase entered.\n");
|
||||
is_error = true;
|
||||
}
|
||||
}
|
||||
continue;
|
||||
}
|
||||
|
||||
if (tokencmp(tokens[0], "setclass")) {
|
||||
if (tokens.size() != 3 && tokens.size() != 1) {
|
||||
printUsage(tokens[0]);
|
||||
|
|
Loading…
Reference in New Issue