mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 21:47:20 +00:00
* Add safe mkdirall and open * Use secure as much as possible and merge gomodules for orbit to fleet * Improve openfile and mkdirall to check for permissiveness instead of equality * Don't shift * Fix links * Address review comments
126 lines
3.1 KiB
Go
126 lines
3.1 KiB
Go
// package osquery implements a runtime for osqueryd.
|
|
package osquery
|
|
|
|
import (
|
|
"context"
|
|
"os"
|
|
"os/exec"
|
|
"path/filepath"
|
|
"time"
|
|
|
|
"github.com/fleetdm/fleet/v4/orbit/pkg/constant"
|
|
"github.com/fleetdm/fleet/v4/orbit/pkg/process"
|
|
"github.com/fleetdm/fleet/v4/secure"
|
|
"github.com/pkg/errors"
|
|
"github.com/rs/zerolog/log"
|
|
)
|
|
|
|
// Runner is a specialized runner for osquery. It is designed with Execute and
|
|
// Interrupt functions to be compatible with oklog/run.
|
|
type Runner struct {
|
|
proc *process.Process
|
|
cmd *exec.Cmd
|
|
cancel func()
|
|
}
|
|
|
|
// NewRunner creates a new osquery runner given the provided functional options.
|
|
func NewRunner(path string, options ...func(*Runner) error) (*Runner, error) {
|
|
r := &Runner{}
|
|
|
|
cmd := exec.Command(path)
|
|
cmd.Stdout = os.Stdout
|
|
cmd.Stderr = os.Stderr
|
|
|
|
r.cmd = cmd
|
|
r.proc = process.NewWithCmd(cmd)
|
|
|
|
for _, option := range options {
|
|
err := option(r)
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "apply option")
|
|
}
|
|
}
|
|
|
|
return r, nil
|
|
}
|
|
|
|
// WithFlags adds additional flags to the osqueryd invocation.
|
|
func WithFlags(flags []string) func(*Runner) error {
|
|
return func(r *Runner) error {
|
|
r.cmd.Args = append(r.cmd.Args, flags...)
|
|
return nil
|
|
}
|
|
}
|
|
|
|
// WithEnv adds additional environment variables to the osqueryd invocation.
|
|
// Inputs should be in the form "KEY=VAL".
|
|
func WithEnv(env []string) func(*Runner) error {
|
|
return func(r *Runner) error {
|
|
r.cmd.Env = append(r.cmd.Env, env...)
|
|
return nil
|
|
}
|
|
}
|
|
|
|
// WithShell adds the -S flag to run an osqueryi shell.
|
|
func WithShell() func(*Runner) error {
|
|
return func(r *Runner) error {
|
|
r.cmd.Args = append(r.cmd.Args, "-S")
|
|
r.cmd.Stdin = os.Stdin
|
|
return nil
|
|
}
|
|
}
|
|
|
|
func WithDataPath(path string) func(*Runner) error {
|
|
return func(r *Runner) error {
|
|
if err := secure.MkdirAll(filepath.Join(path, "logs"), constant.DefaultDirMode); err != nil {
|
|
return errors.Wrap(err, "initialize osquery data path")
|
|
}
|
|
|
|
r.cmd.Args = append(r.cmd.Args,
|
|
"--pidfile="+filepath.Join(path, "osquery.pid"),
|
|
"--database_path="+filepath.Join(path, "osquery.db"),
|
|
"--extensions_socket="+filepath.Join(path, "osquery.em"),
|
|
)
|
|
return nil
|
|
}
|
|
}
|
|
|
|
func WithLogPath(path string) func(*Runner) error {
|
|
return func(r *Runner) error {
|
|
if err := secure.MkdirAll(path, constant.DefaultDirMode); err != nil {
|
|
return errors.Wrap(err, "initialize osquery log path")
|
|
}
|
|
|
|
r.cmd.Args = append(r.cmd.Args,
|
|
"--logger_path="+path,
|
|
)
|
|
|
|
return nil
|
|
}
|
|
}
|
|
|
|
// Execute begins running osqueryd and returns when the process exits. The
|
|
// process may not be restarted after exit. Instead create a new one with
|
|
// NewRunner.
|
|
func (r *Runner) Execute() error {
|
|
log.Info().Str("cmd", r.cmd.String()).Msg("run osqueryd")
|
|
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
r.cancel = cancel
|
|
|
|
if err := r.proc.Start(); err != nil {
|
|
return errors.Wrap(err, "start osqueryd")
|
|
}
|
|
|
|
if err := r.proc.WaitOrKill(ctx, 10*time.Second); err != nil {
|
|
return errors.Wrap(err, "osqueryd exited with error")
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// Runner interrupts the running osquery process.
|
|
func (r *Runner) Interrupt(err error) {
|
|
log.Debug().Msg("interrupt osquery")
|
|
r.cancel()
|
|
}
|