Skip to content

Commit 57d6c88

Browse files
authored
Policy Result Control in osquery-perf (#17649)
1 parent 7afe341 commit 57d6c88

File tree

2 files changed

+38
-4
lines changed

2 files changed

+38
-4
lines changed

cmd/osquery-perf/README.md

+17-3
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,21 @@ go run agent.go --enroll_secret hgh4hk3434l2jjf --os_templates ubuntu_22.04,wind
5656

5757
would start 3 Ubuntu hosts and 3 Windows hosts. See the `os_templates` flag description in `go run agent.go --help` for the list of supported template names.
5858

59-
### Running Locally (Development Environment)
59+
## Controlling Agent Behavior From the Fleet UI
60+
61+
### Specify Query Results
62+
63+
Using the naming convention `MyQuery_10` (name separated by `_number`) will instruct agents to
64+
return 10 rows for that query
65+
66+
### Control policy pass/fail per policy
67+
68+
In the Policy SQL:
69+
70+
- `select 1` will instruct agents to send back only passing responses
71+
- `select 0` will instruct agents to send back only failing responses
72+
73+
## Running Locally (Development Environment)
6074

6175
First, ensure your Fleet local development environment is up and running. Refer to [Building Fleet](../../docs/Contributing/Building-Fleet.md) for details. Once this is done:
6276

@@ -68,13 +82,13 @@ Alternatively, you can retrieve the enroll secret from the command-line using `f
6882

6983
The agent will start. You can connect to MySQL to view changes made to the development database by the agent (e.g., at the terminal, with `docker-compose exec mysql mysql -uroot -ptoor -Dfleet`). Remember that frequency of the reported data depends on the configuration of the Fleet instance, so you may want to start it with shorter delays for some cases and enable debug logging (e.g., `./build/fleet serve --dev --logging_debug --osquery_detail_update_interval 1m`).
7084

71-
### Resource Limits
85+
## Resource Limits
7286

7387
On many systems, trying to simulate a large number of hosts will result in hitting system resource limits (such as number of open file descriptors).
7488

7589
If you see errors such as `dial tcp: lookup localhost: no such host` or `read: connection reset by peer`, try increasing these limits.
7690

77-
#### macOS
91+
### macOS
7892

7993
Run the following command in the shell before running the Fleet server _and_ before running `agent.go` (run it once in each shell):
8094

cmd/osquery-perf/agent.go

+21-1
Original file line numberDiff line numberDiff line change
@@ -1093,6 +1093,7 @@ func (a *agent) orbitEnroll() error {
10931093
return nil
10941094
}
10951095

1096+
// This is an osquery enroll as opposed to an orbit enroll
10961097
func (a *agent) enroll(i int, onlyAlreadyEnrolled bool) error {
10971098
a.nodeKey = a.nodeKeyManager.Get(i)
10981099
if a.nodeKey != "" {
@@ -1181,6 +1182,9 @@ func (a *agent) config() error {
11811182
q := scheduledQuery{}
11821183
q.packName = packName
11831184
q.Name = queryName
1185+
1186+
// This allows us to set the number of rows returned by the query
1187+
// by appending a number to the query name, e.g. "queryName_10"
11841188
q.numRows = 1
11851189
parts := strings.Split(q.Name, "_")
11861190
if len(parts) == 2 {
@@ -1190,6 +1194,7 @@ func (a *agent) config() error {
11901194
}
11911195
q.numRows = uint(num)
11921196
}
1197+
11931198
q.ScheduleInterval = m["interval"].(float64)
11941199
q.Query = m["query"].(string)
11951200

@@ -1421,6 +1426,21 @@ func (a *agent) genLastOpenedAt(count *int) *time.Time {
14211426
}
14221427

14231428
func (a *agent) runPolicy(query string) []map[string]string {
1429+
// Used to control the pass or fail of a policy
1430+
// in the UI by setting the query to "select 1"(pass)
1431+
// or "select 0"(fail)
1432+
query = strings.TrimRight(query, ";")
1433+
query = strings.ToLower(query)
1434+
1435+
switch query {
1436+
case "select 1":
1437+
return []map[string]string{
1438+
{"1": "1"},
1439+
}
1440+
case "select 0":
1441+
return []map[string]string{}
1442+
}
1443+
14241444
if rand.Float64() <= a.policyPassProb {
14251445
return []map[string]string{
14261446
{"1": "1"},
@@ -1994,7 +2014,7 @@ func main() {
19942014
// Flag logger_tls_period defines how often to check for sending scheduled query results.
19952015
// osquery-perf will send log requests with results only if there are scheduled queries configured AND it's their time to run.
19962016
logInterval = flag.Duration("logger_tls_period", 10*time.Second, "Interval for scheduled queries log requests")
1997-
queryInterval = flag.Duration("query_interval", 10*time.Second, "Interval for live query requests")
2017+
queryInterval = flag.Duration("query_interval", 10*time.Second, "Interval for distributed query requests")
19982018
mdmCheckInInterval = flag.Duration("mdm_check_in_interval", 10*time.Second, "Interval for performing MDM check-ins (applies to both macOS and Windows)")
19992019
onlyAlreadyEnrolled = flag.Bool("only_already_enrolled", false, "Only start agents that are already enrolled")
20002020
nodeKeyFile = flag.String("node_key_file", "", "File with node keys to use")

0 commit comments

Comments
 (0)