2014-12-18 18:50:47 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2014, Facebook, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This source code is licensed under the BSD-style license found in the
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2014-08-29 07:36:33 +00:00
|
|
|
#include <climits>
|
2014-07-31 00:35:19 +00:00
|
|
|
#include <ctime>
|
|
|
|
|
|
|
|
#include <glog/logging.h>
|
|
|
|
|
2014-12-03 23:14:02 +00:00
|
|
|
#include <osquery/config.h>
|
|
|
|
#include <osquery/core.h>
|
|
|
|
#include <osquery/database.h>
|
|
|
|
#include <osquery/flags.h>
|
|
|
|
#include <osquery/logger.h>
|
|
|
|
#include <osquery/sql.h>
|
|
|
|
#include <osquery/scheduler.h>
|
2014-07-31 00:35:19 +00:00
|
|
|
|
2014-08-15 07:25:30 +00:00
|
|
|
namespace osquery {
|
2014-07-31 00:35:19 +00:00
|
|
|
|
2014-11-04 02:08:13 +00:00
|
|
|
DEFINE_osquery_flag(string,
|
|
|
|
host_identifier,
|
|
|
|
"hostname",
|
|
|
|
"Field used to identify the host running osqueryd");
|
|
|
|
|
2014-11-25 16:47:32 +00:00
|
|
|
Status getHostIdentifier(std::string& ident) {
|
|
|
|
std::shared_ptr<DBHandle> db;
|
|
|
|
try {
|
2014-12-01 23:02:40 +00:00
|
|
|
db = DBHandle::getInstance();
|
2014-11-25 16:47:32 +00:00
|
|
|
} catch (const std::exception& e) {
|
|
|
|
return Status(1, e.what());
|
|
|
|
}
|
|
|
|
|
|
|
|
if (FLAGS_host_identifier == "uuid") {
|
2014-11-04 02:08:13 +00:00
|
|
|
std::vector<std::string> results;
|
|
|
|
auto status = db->Scan(kConfigurations, results);
|
|
|
|
|
|
|
|
if (!status.ok()) {
|
|
|
|
LOG(ERROR) << "Could not access database, using hostname as the host "
|
|
|
|
"identifier.";
|
2014-11-25 16:47:32 +00:00
|
|
|
ident = osquery::getHostname();
|
|
|
|
return Status(0, "OK");
|
2014-11-04 02:08:13 +00:00
|
|
|
}
|
|
|
|
|
2014-11-25 16:47:32 +00:00
|
|
|
if (std::find(results.begin(), results.end(), "hostIdentifier") !=
|
|
|
|
results.end()) {
|
|
|
|
status = db->Get(kConfigurations, "hostIdentifier", ident);
|
2014-11-04 02:08:13 +00:00
|
|
|
if (!status.ok()) {
|
|
|
|
LOG(ERROR) << "Could not access database, using hostname as the host "
|
|
|
|
"identifier.";
|
2014-11-25 16:47:32 +00:00
|
|
|
ident = osquery::getHostname();
|
2014-11-04 02:08:13 +00:00
|
|
|
}
|
2014-11-25 16:47:32 +00:00
|
|
|
return status;
|
2014-11-04 02:08:13 +00:00
|
|
|
} else {
|
|
|
|
// There was no uuid stored in the database, generate one and store it.
|
2014-11-25 16:47:32 +00:00
|
|
|
ident = osquery::generateHostUuid();
|
|
|
|
LOG(INFO) << "Using uuid " << ident << " to identify this host.";
|
2014-12-02 22:09:37 +00:00
|
|
|
return db->Put(kConfigurations, "hostIdentifier", ident);
|
2014-11-04 02:08:13 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// use the hostname as the default machine identifier
|
2014-11-25 16:47:32 +00:00
|
|
|
ident = osquery::getHostname();
|
|
|
|
return Status(0, "OK");
|
2014-11-04 02:08:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-15 18:17:48 +00:00
|
|
|
void launchQueries(const std::vector<OsqueryScheduledQuery>& queries,
|
2014-09-10 21:28:46 +00:00
|
|
|
const int64_t& second) {
|
2014-09-16 06:07:03 +00:00
|
|
|
for (const auto& q : queries) {
|
|
|
|
if (second % q.interval == 0) {
|
2014-11-19 16:45:02 +00:00
|
|
|
LOG(INFO) << "Executing query: " << q.query;
|
2014-08-15 07:25:30 +00:00
|
|
|
int unix_time = std::time(0);
|
2014-09-26 07:34:56 +00:00
|
|
|
auto sql = SQL(q.query);
|
|
|
|
if (!sql.ok()) {
|
2014-11-19 16:45:02 +00:00
|
|
|
LOG(ERROR) << "Error executing query (" << q.query
|
2014-09-26 07:34:56 +00:00
|
|
|
<< "): " << sql.getMessageString();
|
2014-08-15 07:25:30 +00:00
|
|
|
continue;
|
|
|
|
}
|
2014-09-21 21:27:09 +00:00
|
|
|
auto dbQuery = Query(q);
|
|
|
|
DiffResults diff_results;
|
2014-09-26 07:34:56 +00:00
|
|
|
auto status = dbQuery.addNewResults(sql.rows(), diff_results, unix_time);
|
2014-08-15 07:25:30 +00:00
|
|
|
if (!status.ok()) {
|
|
|
|
LOG(ERROR)
|
2014-11-19 16:45:02 +00:00
|
|
|
<< "Error adding new results to database: " << status.toString();
|
2014-08-15 07:25:30 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2014-08-21 21:35:51 +00:00
|
|
|
if (diff_results.added.size() > 0 || diff_results.removed.size() > 0) {
|
2014-09-21 21:27:09 +00:00
|
|
|
ScheduledQueryLogItem item;
|
2014-11-25 16:47:32 +00:00
|
|
|
Status s;
|
|
|
|
|
2014-08-21 21:35:51 +00:00
|
|
|
item.diffResults = diff_results;
|
2014-09-16 06:07:03 +00:00
|
|
|
item.name = q.name;
|
2014-11-25 16:47:32 +00:00
|
|
|
|
|
|
|
std::string ident;
|
|
|
|
s = getHostIdentifier(ident);
|
|
|
|
if (s.ok()) {
|
|
|
|
item.hostIdentifier = ident;
|
|
|
|
} else {
|
|
|
|
LOG(ERROR) << "Error getting the host identifier";
|
|
|
|
if (ident.empty()) {
|
|
|
|
ident = "<unknown>";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-13 21:28:45 +00:00
|
|
|
item.unixTime = osquery::getUnixTime();
|
|
|
|
item.calendarTime = osquery::getAsciiTime();
|
2014-11-25 16:47:32 +00:00
|
|
|
|
|
|
|
LOG(INFO) << "Found results for query " << q.name
|
|
|
|
<< " for host: " << ident;
|
|
|
|
s = logScheduledQueryLogItem(item);
|
2014-08-29 07:36:33 +00:00
|
|
|
if (!s.ok()) {
|
2014-09-16 06:07:03 +00:00
|
|
|
LOG(ERROR) << "Error logging the results of query \"" << q.query
|
2014-08-30 11:06:21 +00:00
|
|
|
<< "\""
|
|
|
|
<< ": " << s.toString();
|
2014-08-29 07:36:33 +00:00
|
|
|
}
|
2014-08-21 21:35:51 +00:00
|
|
|
}
|
2014-07-31 00:35:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-15 18:26:16 +00:00
|
|
|
void initializeScheduler() {
|
|
|
|
DLOG(INFO) << "osquery::initializeScheduler";
|
2014-08-29 00:33:03 +00:00
|
|
|
time_t t = time(0);
|
2014-08-30 11:06:21 +00:00
|
|
|
struct tm* local = localtime(&t);
|
2014-09-10 21:28:46 +00:00
|
|
|
unsigned long int second = local->tm_sec;
|
2014-08-29 00:33:03 +00:00
|
|
|
auto cfg = Config::getInstance();
|
2014-08-29 07:36:33 +00:00
|
|
|
#ifdef OSQUERY_TEST_DAEMON
|
2014-09-10 21:28:46 +00:00
|
|
|
// if we're testing the daemon, only iterate through 15 "seconds"
|
|
|
|
static unsigned long int stop_at = second + 15;
|
2014-08-29 07:36:33 +00:00
|
|
|
#else
|
|
|
|
// if this is production, count forever
|
2014-08-30 11:26:40 +00:00
|
|
|
static unsigned long int stop_at = ULONG_MAX;
|
2014-08-29 07:36:33 +00:00
|
|
|
#endif
|
2014-09-10 21:28:46 +00:00
|
|
|
for (; second <= stop_at; ++second) {
|
|
|
|
launchQueries(cfg->getScheduledQueries(), second);
|
|
|
|
sleep(1);
|
2014-08-29 00:33:03 +00:00
|
|
|
}
|
2014-07-31 00:35:19 +00:00
|
|
|
}
|
2014-08-15 07:25:30 +00:00
|
|
|
}
|