keepassxc/src/cli/keepassxc-cli.cpp

141 lines
4.9 KiB
C++
Raw Normal View History

2017-01-31 00:18:35 +00:00
/*
2017-06-09 21:40:36 +00:00
* Copyright (C) 2017 KeePassXC Team <team@keepassxc.org>
2017-01-31 00:18:35 +00:00
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 or (at your option)
* version 3 of the License.
*
* 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, see <http://www.gnu.org/licenses/>.
*/
2017-02-02 22:30:54 +00:00
#include <cstdlib>
2017-01-31 00:18:35 +00:00
#include <QCommandLineParser>
#include <QCoreApplication>
#include <QStringList>
#include <QTextStream>
2017-01-31 00:18:35 +00:00
2017-05-19 18:04:11 +00:00
#include <cli/Clip.h>
2017-03-12 17:34:56 +00:00
#include <cli/EntropyMeter.h>
#include <cli/Extract.h>
2017-02-14 03:29:20 +00:00
#include <cli/List.h>
2017-02-02 22:30:54 +00:00
#include <cli/Merge.h>
2017-03-12 17:34:56 +00:00
#include <cli/Show.h>
2017-01-31 00:18:35 +00:00
#include "config-keepassx.h"
2017-02-02 15:33:50 +00:00
#include "core/Tools.h"
2017-01-31 00:18:35 +00:00
#include "crypto/Crypto.h"
2017-03-16 17:41:12 +00:00
#if defined(WITH_ASAN) && defined(WITH_LSAN)
#include <sanitizer/lsan_interface.h>
#endif
2017-05-19 18:04:11 +00:00
int main(int argc, char** argv)
2017-01-31 00:18:35 +00:00
{
2017-02-02 15:33:50 +00:00
#ifdef QT_NO_DEBUG
Tools::disableCoreDumps();
#endif
2017-01-31 00:18:35 +00:00
if (!Crypto::init()) {
qFatal("Fatal error while testing the cryptographic functions:\n%s", qPrintable(Crypto::errorString()));
2017-02-02 22:30:54 +00:00
return EXIT_FAILURE;
2017-01-31 00:18:35 +00:00
}
QStringList arguments;
for (int i = 0; i < argc; ++i) {
arguments << QString(argv[i]);
}
2017-01-31 00:18:35 +00:00
QCommandLineParser parser;
2017-02-16 02:01:50 +00:00
QString description("KeePassXC command line interface.");
description = description.append(QString("\n\nAvailable commands:"));
2017-05-19 18:04:11 +00:00
description = description.append(QString("\n clip\t\tCopy a password to the clipboard."));
2017-02-16 02:05:40 +00:00
description = description.append(QString("\n extract\tExtract and print the content of a database."));
2017-02-16 02:01:50 +00:00
description = description.append(QString("\n entropy-meter\tCalculate password entropy."));
description = description.append(QString("\n list\t\tList database entries."));
2017-02-16 02:05:40 +00:00
description = description.append(QString("\n merge\t\tMerge two databases."));
2017-03-12 17:34:56 +00:00
description = description.append(QString("\n show\t\tShow a password."));
2017-02-16 02:01:50 +00:00
parser.setApplicationDescription(QCoreApplication::translate("main", qPrintable(description)));
2017-01-31 00:18:35 +00:00
parser.addPositionalArgument("command", QCoreApplication::translate("main", "Name of the command to execute."));
parser.addHelpOption();
parser.addVersionOption();
// TODO : use the setOptionsAfterPositionalArgumentsMode (Qt 5.6) function
// when available. Until then, options passed to sub-commands won't be
2017-02-02 22:54:39 +00:00
// recognized by this parser.
parser.parse(arguments);
2017-01-31 00:18:35 +00:00
if (parser.positionalArguments().size() < 1) {
QCoreApplication app(argc, argv);
app.setApplicationVersion(KEEPASSX_VERSION);
if (parser.isSet("version")) {
// Switch to parser.showVersion() when available (QT 5.4).
QTextStream out(stdout);
out << KEEPASSX_VERSION << "\n";
out.flush();
return EXIT_SUCCESS;
}
2017-01-31 00:18:35 +00:00
parser.showHelp();
}
QString commandName = parser.positionalArguments().at(0);
2017-01-31 00:18:35 +00:00
2017-03-16 17:41:12 +00:00
int exitCode = EXIT_FAILURE;
2017-05-19 18:04:11 +00:00
if (commandName == "clip") {
// Removing the first cli argument before dispatching.
++argv;
--argc;
2017-05-19 18:04:11 +00:00
argv[0] = const_cast<char*>("keepassxc-cli clip");
exitCode = Clip::execute(argc, argv);
} else if (commandName == "entropy-meter") {
++argv;
--argc;
2017-03-12 17:34:56 +00:00
argv[0] = const_cast<char*>("keepassxc-cli entropy-meter");
2017-03-16 17:41:12 +00:00
exitCode = EntropyMeter::execute(argc, argv);
} else if (commandName == "extract") {
++argv;
--argc;
2017-03-12 17:34:56 +00:00
argv[0] = const_cast<char*>("keepassxc-cli extract");
2017-03-16 17:41:12 +00:00
exitCode = Extract::execute(argc, argv);
} else if (commandName == "list") {
++argv;
--argc;
2017-02-16 17:53:34 +00:00
argv[0] = const_cast<char*>("keepassxc-cli list");
2017-03-16 17:41:12 +00:00
exitCode = List::execute(argc, argv);
} else if (commandName == "merge") {
++argv;
--argc;
2017-02-16 17:53:34 +00:00
argv[0] = const_cast<char*>("keepassxc-cli merge");
2017-03-16 17:41:12 +00:00
exitCode = Merge::execute(argc, argv);
} else if (commandName == "show") {
++argv;
--argc;
2017-03-12 17:34:56 +00:00
argv[0] = const_cast<char*>("keepassxc-cli show");
2017-03-16 17:41:12 +00:00
exitCode = Show::execute(argc, argv);
} else {
qCritical("Invalid command %s.", qPrintable(commandName));
QCoreApplication app(argc, argv);
app.setApplicationVersion(KEEPASSX_VERSION);
// showHelp exits the application immediately, so we need to set the
// exit code here.
parser.showHelp(EXIT_FAILURE);
2017-02-02 22:54:39 +00:00
}
2017-03-16 17:41:12 +00:00
#if defined(WITH_ASAN) && defined(WITH_LSAN)
// do leak check here to prevent massive tail of end-of-process leak errors from third-party libraries
__lsan_do_leak_check();
__lsan_disable();
#endif
return exitCode;
2017-01-31 00:18:35 +00:00
}