mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-07 09:58:54 +00:00
47 lines
1.3 KiB
C++
47 lines
1.3 KiB
C++
/*
|
|
* Copyright (c) 2014-present, 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.
|
|
*
|
|
*/
|
|
|
|
#include <smartmontools/libsmartctl.h>
|
|
|
|
#include <osquery/tables.h>
|
|
|
|
namespace osquery {
|
|
namespace tables {
|
|
|
|
/**
|
|
* @brief Represents a hardware driver type that SMART api can you use to query
|
|
* device information.
|
|
*
|
|
* @param driver name of SMART controller driver
|
|
* @param maxID max ID number of which disks on the controller is monitored
|
|
*/
|
|
struct hardwareDriver {
|
|
std::string driver;
|
|
size_t maxID;
|
|
};
|
|
|
|
/**
|
|
* @brief Queries SMART devices on the system by autodetection and explicit
|
|
* storage controller arguments.
|
|
*
|
|
* @param client libsmartctl client
|
|
* @param walk_func function that walks the system devices and runs the handler
|
|
* function on each device
|
|
* @param results reference to QueryData to store results in
|
|
*/
|
|
void querySmartDevices(
|
|
libsmartctl::ClientInterface& client,
|
|
std::function<void(
|
|
std::function<void(const std::string&, hardwareDriver*)>)> walk_func,
|
|
QueryData& results);
|
|
|
|
} // namespace tables
|
|
} // namespace osquery
|