mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-07 09:58:54 +00:00
Custom directory flag for augeas lenses (#3428)
This commit is contained in:
parent
dc02616967
commit
2fd90bd5c1
@ -393,6 +393,12 @@ Path to the named pipe used for forwarding **rsyslog** events.
|
||||
|
||||
Maximum number of logs to ingest per run (~200ms between runs). Use this as a fail-safe to prevent osquery from becoming overloaded when syslog is spammed.
|
||||
|
||||
### Augeas
|
||||
|
||||
`--augeas_lenses=/usr/share/osquery/lenses`
|
||||
|
||||
Augeas lenses are bundled with osquery distributions. On Linux they are installed in /usr/share/osquery/lenses. On macOS lenses are installed in /private/var/osquery/lenses directory. Specify the path to the directory containing custom or different version lenses files.
|
||||
|
||||
### Shell-only flags
|
||||
|
||||
Most of the shell flags are self-explanatory and are adapted from the SQLite shell. Refer to the shell's ".help" command for details and explanations.
|
||||
|
@ -7,6 +7,7 @@ The default packages create the following structure:
|
||||
```sh
|
||||
/etc/osquery/
|
||||
/usr/share/osquery/osquery.example.conf
|
||||
/usr/share/osquery/lenses/{*}.aug
|
||||
/usr/share/osquery/packs/{*}.conf
|
||||
/var/log/osquery/
|
||||
/usr/lib/osquery/
|
||||
|
@ -13,6 +13,7 @@ The default package creates the following structure:
|
||||
/private/var/osquery/com.facebook.osqueryd.plist
|
||||
/private/var/osquery/osquery.example.conf
|
||||
/private/var/log/osquery/
|
||||
/private/var/osquery/lenses/{*}.aug
|
||||
/private/var/osquery/packs/{*}.conf
|
||||
/usr/local/lib/osquery/
|
||||
/usr/local/bin/osqueryctl
|
||||
|
@ -15,13 +15,25 @@
|
||||
#include <osquery/logger.h>
|
||||
#include <osquery/tables.h>
|
||||
|
||||
namespace osquery {
|
||||
|
||||
/**
|
||||
* @brief Augeas lenses path.
|
||||
*
|
||||
* Directory that contains augeus lenses.
|
||||
*/
|
||||
#ifdef __APPLE__
|
||||
#define LENSES_PATH "/private/var/osquery/lenses"
|
||||
FLAG(string,
|
||||
augeas_lenses,
|
||||
"/private/var/osquery/lenses",
|
||||
"Directory that contains augeas lenses files");
|
||||
#else
|
||||
#define LENSES_PATH "/usr/share/osquery/lenses"
|
||||
FLAG(string,
|
||||
augeas_lenses,
|
||||
"/usr/share/osquery/lenses",
|
||||
"Directory that contains augeas lenses files");
|
||||
#endif
|
||||
|
||||
namespace osquery {
|
||||
namespace tables {
|
||||
|
||||
void reportAugeasError(augeas* aug) {
|
||||
@ -147,8 +159,8 @@ void matchAugeasPattern(augeas* aug,
|
||||
}
|
||||
|
||||
QueryData genAugeas(QueryContext& context) {
|
||||
augeas* aug =
|
||||
aug_init(nullptr, LENSES_PATH, AUG_NO_ERR_CLOSE | AUG_ENABLE_SPAN);
|
||||
augeas* aug = aug_init(
|
||||
nullptr, FLAGS_augeas_lenses.c_str(), AUG_NO_ERR_CLOSE | AUG_ENABLE_SPAN);
|
||||
|
||||
// Handle initialization errors.
|
||||
if (aug == nullptr) {
|
||||
|
Loading…
Reference in New Issue
Block a user