osquery-1/osquery/main/shell.cpp

102 lines
2.9 KiB
C++
Raw Normal View History

/*
* Copyright (c) 2014-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
2015-05-12 06:31:13 +00:00
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*
*/
2015-04-27 23:40:05 +00:00
#include <stdio.h>
#include <osquery/core.h>
#include <osquery/extensions.h>
#include <osquery/flags.h>
2015-03-18 19:01:58 +00:00
#include "osquery/core/watcher.h"
2015-03-18 19:01:58 +00:00
#include "osquery/devtools/devtools.h"
#include "osquery/sql/sqlite_util.h"
namespace osquery {
SHELL_FLAG(int32,
profile,
0,
"Enable profile mode when non-0, set number of iterations");
HIDDEN_FLAG(int32,
profile_delay,
0,
"Sleep a number of seconds before and after the profiling");
}
int profile(int argc, char *argv[]) {
std::string query;
if (!isatty(fileno(stdin))) {
std::getline(std::cin, query);
} else if (argc < 2) {
// No query input provided via stdin or as a positional argument.
fprintf(stderr, "No query provided via stdin or args to profile...\n");
return 2;
} else {
query = std::string(argv[1]);
}
if (osquery::FLAGS_profile_delay > 0) {
::sleep(osquery::FLAGS_profile_delay);
}
auto dbc = osquery::SQLiteDBManager::get();
for (size_t i = 0; i < static_cast<size_t>(osquery::FLAGS_profile); ++i) {
osquery::QueryData results;
2016-02-05 03:12:48 +00:00
auto status = osquery::queryInternal(query, results, dbc->db());
if (!status) {
fprintf(stderr,
"Query failed (%d): %s\n",
status.getCode(),
status.what().c_str());
return status.getCode();
}
}
if (osquery::FLAGS_profile_delay > 0) {
::sleep(osquery::FLAGS_profile_delay);
}
return 0;
}
2014-07-31 00:35:19 +00:00
int main(int argc, char *argv[]) {
2015-02-03 05:21:36 +00:00
// Parse/apply flags, start registry, load logger/config plugins.
2015-03-03 23:03:14 +00:00
osquery::Initializer runner(argc, argv, osquery::OSQUERY_TOOL_SHELL);
// The shell will not use a worker process.
// It will initialize a watcher thread for potential auto-loaded extensions.
runner.initWorkerWatcher();
// Check for shell-specific switches and positional arguments.
2015-04-27 23:40:05 +00:00
if (argc > 1 || !isatty(fileno(stdin)) || osquery::FLAGS_A.size() > 0 ||
osquery::FLAGS_L || osquery::FLAGS_profile > 0) {
// A query was set as a positional argument, via stdin, or profiling is on.
2015-04-27 23:40:05 +00:00
osquery::FLAGS_disable_events = true;
// The shell may have loaded table extensions, if not, disable the manager.
if (!osquery::Watcher::hasManagedExtensions()) {
osquery::FLAGS_disable_extensions = true;
}
2015-04-27 23:40:05 +00:00
}
int retcode = 0;
if (osquery::FLAGS_profile <= 0) {
runner.start();
// Virtual tables will be attached to the shell's in-memory SQLite DB.
retcode = osquery::launchIntoShell(argc, argv);
} else {
retcode = profile(argc, argv);
}
// Finally shutdown.
2015-03-03 23:03:14 +00:00
runner.shutdown();
return retcode;
2014-07-31 00:35:19 +00:00
}