util

package
v1.27.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 3, 2024 License: Apache-2.0 Imports: 15 Imported by: 0

Documentation

Overview

Package util provides utility operations used in building sansshell system services.

Index

Constants

View Source
const DefRunBufLimit = 10 * 1024 * 1024

DefRunBufLimit is the default limit we'll buffer for stdout/stderr from RunCommand exec'ing a process.

View Source
const MaxBuf = 1024

MaxBuf is the maximum we should allow stdout or stderr to be when sending back in an error string. grpc has limits on how large a returned error can be (generally 4-8k depending on language).

Variables

View Source
var StreamingChunkSize = 128 * 1024

StreamingChunkSize is the chunk size we use when sending replies on a stream. TODO(jchacon): Make this configurable

Functions

func OptionSlicesEqual added in v1.20.5

func OptionSlicesEqual(a, b []Option) bool

OptionsEqual returns true if the results of applying all elements of both Option slices are equal

func OptionsEqual added in v1.20.5

func OptionsEqual(a, b Option) bool

OptionsEqual returns true if the results of applying both Options are equal

func TrimString

func TrimString(s string) string

TrimString will return the given string truncated to MAX_BUF size so it can be used in grpc error replies.

func ValidPath

func ValidPath(path string) error

ValidPath ensures the path passed in is both absolute and clean.

Types

type CommandRun

type CommandRun struct {
	Stdout   *LimitedBuffer
	Stderr   *LimitedBuffer
	Error    error
	ExitCode int
}

CommandRun groups all of the status and output from executing a command.

func RunCommand

func RunCommand(ctx context.Context, bin string, args []string, opts ...Option) (*CommandRun, error)

RunCommand will take the given binary and args and execute it returning all relevent state (stdout, stderr, errors, etc). The returned buffers for stdout and stderr are limited by possible options but default limit to DefRunBufLimit.

The binary must be a clean absolute path or an error will result and nothing will be run. Any other errors (starting or from waiting) are recorded in the Error field. Errors returned directly will be a status.Error and Error will be whatever the exec library returns.

type ExecuteState

type ExecuteState struct {
	Conn *proxy.Conn
	// Dir is a directory where additional files per target can be written.
	Dir string
	Out []io.Writer
	Err []io.Writer
}

ExecuteState is used by client packages in services to pass relevant state down to subcommands.

type IntSliceFlags

type IntSliceFlags []int64

IntSliceFlags is a custom flag for a list of ints in a comma separated list.

func (*IntSliceFlags) Set

func (i *IntSliceFlags) Set(val string) error

Set - see flag.Value

func (*IntSliceFlags) String

func (i *IntSliceFlags) String() string

String - see flag.Value

type KeyValue

type KeyValue struct {
	Key   string
	Value string
}

KeyValue is used below with KeyValueSliceFlag to construct foo=bar,baz=foo type of flags.

type KeyValueSliceFlag

type KeyValueSliceFlag []*KeyValue

KeyValueSliceFlag is a custom flag for a list of strings in a comma separated list of the form key=value,key=value

func (*KeyValueSliceFlag) Set

func (i *KeyValueSliceFlag) Set(val string) error

Set - see flag.Value

func (*KeyValueSliceFlag) String

func (i *KeyValueSliceFlag) String() string

String - see flag.Value

type LimitedBuffer added in v1.0.5

type LimitedBuffer struct {
	// contains filtered or unexported fields
}

LimitedBuffer is a bytes.Buffer with the added limitation that it will not grow infinitely and will instead stop at a max size limit.

func NewLimitedBuffer added in v1.0.5

func NewLimitedBuffer(max uint) *LimitedBuffer

NewLimitedBuffer will create a LimitedBuffer with the given maximum size.

func (*LimitedBuffer) Bytes added in v1.0.5

func (l *LimitedBuffer) Bytes() []byte

Bytes - see bytes.Buffer

func (*LimitedBuffer) Read added in v1.0.5

func (l *LimitedBuffer) Read(p []byte) (int, error)

Read - see io.Reader

func (*LimitedBuffer) String added in v1.0.5

func (l *LimitedBuffer) String() string

String - see bytes.Buffer

func (*LimitedBuffer) Truncated added in v1.0.5

func (l *LimitedBuffer) Truncated() bool

Truncated will return true if the LimitedBuffer has filled and refused to write additional bytes.

func (*LimitedBuffer) Write added in v1.0.5

func (l *LimitedBuffer) Write(p []byte) (int, error)

Write acts exactly as a bytes.Buffer defines except if the underlying buffer has reached the max size no more bytes will be added. TODO: Implement remaining bytes.Buffer methods if needed. NOTE:

This is not an error condition and instead no more bytes
will be written and normal return will happen so writes
do not fail. Use the Truncated() method
to determine if this has happened.

type Option

type Option interface {
	// contains filtered or unexported methods
}

Option will run the apply operation to change required checking/state before executing RunCommand.

func CommandGroup added in v1.0.9

func CommandGroup(gid uint32) Option

CommandGroup is an option which sets the gid for the Command to run as.

func CommandUser added in v1.0.9

func CommandUser(uid uint32) Option

CommandUser is an option which sets the uid for the Command to run as.

func EnvVar added in v1.0.9

func EnvVar(evar string) Option

EnvVar is an option which sets an environment variable for the sub-processes. evar should be of the form foo=bar

func FailOnStderr

func FailOnStderr() Option

FailOnStderr is an option where the command will return an error if any output appears on stderr regardless of exit code. As we're often parsing the text output of specific commands as root this is a sanity check we're getting expected output. i.e. ps never returns anything on stderr so if some run does that's suspect. Up to callers to decide as some tools (yum...) like to emit stderr as debugging as they run.

func StderrMax added in v1.0.5

func StderrMax(max uint) Option

StderrMax is an option where the command run will limit output buffered from stdout to this many bytes before truncating.

func StdoutMax added in v1.0.5

func StdoutMax(max uint) Option

StdoutMax is an option where the command run will limit output buffered from stdout to this many bytes before truncating.

type StringSliceCommaOrWhitespaceFlag added in v1.20.0

type StringSliceCommaOrWhitespaceFlag struct {
	Target *[]string
}

StringSliceCommaOrWhitespaceFlag is the parsed form of a flag accepting either "foo,bar,baz" or "foo bar baz" style. This is useful in cases where we want to be more flexible in the input values we accept.

func (*StringSliceCommaOrWhitespaceFlag) Set added in v1.20.0

Set - see flag.Value

func (*StringSliceCommaOrWhitespaceFlag) String added in v1.20.0

String - see flag.String

type StringSliceFlag

type StringSliceFlag struct {
	Target *[]string
}

StringSliceFlag is the parsed form of a flag using "foo,bar,baz" style.

func (*StringSliceFlag) Set

func (s *StringSliceFlag) Set(val string) error

Set - see flag.Value

func (*StringSliceFlag) String

func (s *StringSliceFlag) String() string

String - see flag.String

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL