sansshell

module
v1.0.9 Latest Latest
Warning

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

Go to latest
Published: Apr 12, 2022 License: Apache-2.0

README

SansShell

A non-interactive daemon for host management

SansShell is primarily a gRPC server with a variety of options for localhost debugging and management. Its goal is to replace the need to use an interactive shell for emergency debugging and recovery with a much safer interface. Each authorized action can be evaluated against an OPA policy, audited in advance or after the fact, and is ideally deterministic (for a given state of the local machine).

sanssh is a simple CLI with a friendly API for dumping debugging state and interacting with a remote machine. It also includes a set of convenient but perhaps-less-friendly subcommands to address the raw SansShell API endpoints.

Getting Started

How to set up, build and run locally for testing. All commands are relative to the project root directory.

Building SansShell requires a recent version of Go (check the go.mod file for the current version).

Environment setup : protoc

When making any change to the protocol buffers, you'll also need the protocol buffer compiler (protoc) (version 3 or above) as well as the protoc plugins for Go and Go-GRPC

On MacOS, the protocol buffer can be installed via homebrew using

brew install protoc

On Linux, protoc can be installed using either the OS package manager, or by directly installing a release version from the protocol buffers github

Environment setup : protoc plugins.

On any platform, Once protoc has been installed, you can install the required code generation plugins using go install.

$ go install google.golang.org/protobuf/cmd/protoc-gen-go
$ go install google.golang.org/grpc/cmd/protoc-gen-go-grpc
$ go install github.com/Snowflake-Labs/sansshell/proxy/protoc-gen-go-grpcproxy

Note that, you'll need to make certain that your PATH includes the gobinary directory (either the value of $GOBIN, or, if unset, $HOME/go/bin)

The tools.go file contains helpful go generate directives which will do this for you, as well as re-generating the service proto files.

$ go generate tools.go

Build and run

You only need to do these steps once to configure example mTLS certs:

$ go install github.com/meterup/generate-cert@latest
$ mkdir -m 0700 certs
$ cd certs
$ $(go env GOPATH)/bin/generate-cert --host=localhost,127.0.0.1,::1
$ cd ../
$ ln -s $(pwd)/certs ~/.sansshell

Or copy the test certificates from auth/mtls/testdata to ~/.sanshell

Then you can build and run the server, in separate terminal windows:

$ cd cmd/sansshell-server && go build && ./sansshell-server
$ cd cmd/sanssh && go build && ./sanssh read /etc/hosts

Debugging

Reflection is included in the RPC servers (proxy and sansshell-server) allowing for the use of grpc_cli.

If you are using the certificates from above in ~/.sansshell invoking grpc_cli requires some additional flags for local testing:

$ GRPC_DEFAULT_SSL_ROOTS_FILE_PATH=$HOME/.sansshell/root.pem grpc_cli \
  --ssl_client_key=$HOME/.sansshell/client.key --ssl_client_cert=$HOME/.sansshell/client.pem \
  --ssl_target=127.0.0.1 --channel_creds_type=ssl ls 127.0.0.1:50043

NOTE: This connects to the proxy. Change to 50042 if you want to connect to the sansshell-server.

A tour of the codebase

SansShell is composed of 5 primary concepts:

  1. A series of services, which live in the services/ directory.
  2. A server which wraps these services into a local host agent.
  3. A proxy server which can be used as an entry point to processing sansshell RPCs by validating policy and then doing fanout to 1..N actual sansshell servers. This can be done as a one to many RPC where a single incoming RPC is replicated to N backend hosts in one RPC call.
  4. A reference server binary, which includes all of the services.
  5. A CLI, which serves as the reference implementation of how to use the services via the agent.

Services

Services implement at least one gRPC API endpoint, and expose it by calling RegisterSansShellService from init(). The goal is to allow custom implementations of the SansShell Server to easily import services they wish to use, and have zero overhead or risk from services they do not import at compile time.

List of available Services:
  1. Ansible: Run a local ansible playbook and return output
  2. Execute: Execute a command
  3. HealthCheck
  4. File operations: Read, Write, Stat, Sum, rm/rmdir, chmod/chown/chgrp and immutable operations (if OS supported).
  5. Package operations: Install, Upgrade, List, Repolist
  6. Process operations: List, Get stacks (native or Java), Get dumps (core or Java heap)
  7. Service operations: List, Status, Start/stop/restart

TODO: Document service/.../client expectations.

The Server class

Most of the logic of instantiating a local SansShell server lives in the server directory. This instantiates a gRPC server, registers the imported services with that server, and constraints them with the supplied OPA policy.

The reference Proxy Server binary

There is a reference implementation of a SansShell Proxy Server in cmd/proxy-server, which should be suitable as-written for many use cases. It's intentionally kept relatively short, so that it can be copied to another repository and customized by adjusting only the imported services.

The reference Server binary

There is a reference implementation of a SansShell Server in cmd/sansshell-server, which should be suitable as-written for many use cases. It's intentionally kept relatively short, so that it can be copied to another repository and customized by adjusting only the imported services.

The reference CLI client

There is a reference implementation of a SansShell CLI Client in cmd/sanssh. It provides raw access to each gRPC endpoint, as well as a way to implement "convenience" commands which chain together a series of actions.

Extending SansShell

SansShell is built on a principle of "Don't pay for what you don't use". This is advantageous in both minimizing the resources of SansShell server (binary size, memory footprint, etc) as well as reducing the security risk of running it. To accomplish that, all of the SansShell services are independent modules, which can be optionally included at build time. The reference server and client provide access to the features of all of the built-in modules, and come with exposure to all of their potential bugs and bloat.

As a result, we expect most users of SansShell would want to copy a very minimal set of the code (a handful of lines from the reference client and server), import only the modules they intend to use, and build their own derivative of SansShell with more (or less!) functionality.

That same extensibility makes it easy to add additional functionality by implementing your own module.

To quickly rebuild all binaries you can run:

$ go generate build.go

and they will be placed in a bin directory (which is ignored by git).

TODO: Add example client and server, building in different SansShell modules.

If you need to edit a proto file (to augment an existing service or create a new one) you'll need to generate proto outputs.

$ go generate tools.go

NOTE: tools.go will need to have additions to it if you add new services.

Directories

Path Synopsis
auth
mtls
Package mtls facilitates Mutual TLS authentication for SansShell.
Package mtls facilitates Mutual TLS authentication for SansShell.
mtls/flags
Package flags provides flag support for loading client/server certs and CA root of trust.
Package flags provides flag support for loading client/server certs and CA root of trust.
opa
Package opa contains code for performing authorization checks using opa/rego.
Package opa contains code for performing authorization checks using opa/rego.
opa/rpcauth
Package rpcauth provides OPA policy authorization for Sansshell RPCs.
Package rpcauth provides OPA policy authorization for Sansshell RPCs.
Package client provides utility functions for gluing new commands easily into sanssh.
Package client provides utility functions for gluing new commands easily into sanssh.
cmd
proxy-server/server
Package server provides functionality so that other uses of sansshell can provide their own main.go without having to cargo-cult everything across for common use cases.
Package server provides functionality so that other uses of sansshell can provide their own main.go without having to cargo-cult everything across for common use cases.
sanssh
Package main implements the SansShell CLI client.
Package main implements the SansShell CLI client.
sanssh/client
Package client provides functionality so that other uses of sansshell can provide their own main.go without having to cargo-cult everything across for common use cases.
Package client provides functionality so that other uses of sansshell can provide their own main.go without having to cargo-cult everything across for common use cases.
sansshell-server
Package main implements the SansShell server.
Package main implements the SansShell server.
sansshell-server/server
Package server provides functionality so that other uses of sansshell can provide their own main.go without having to cargo-cult everything across for common use cases.
Package server provides functionality so that other uses of sansshell can provide their own main.go without having to cargo-cult everything across for common use cases.
util
Package util provides functions used across command line binaries for setup/exection.
Package util provides functions used across command line binaries for setup/exection.
Package proxy provides the client side API for working with a proxy server.
Package proxy provides the client side API for working with a proxy server.
server
Package server provides the server-side implementation of the sansshell proxy server.
Package server provides the server-side implementation of the sansshell proxy server.
testutil
Package testutil contains helpers and utilities for writing unittests against the sansshell proxy.
Package testutil contains helpers and utilities for writing unittests against the sansshell proxy.
Package server provides helpers for building and running a sansshell server.
Package server provides helpers for building and running a sansshell server.
Package services provides functions to register and list all the services contained in a sansshell gRPC server.
Package services provides functions to register and list all the services contained in a sansshell gRPC server.
ansible
Package ansible defines the RPC interface for the sansshell Ansible actions.
Package ansible defines the RPC interface for the sansshell Ansible actions.
ansible/client
Package client provides the client interface for 'ansible'
Package client provides the client interface for 'ansible'
ansible/server
Package server implements the sansshell 'Ansible' service.
Package server implements the sansshell 'Ansible' service.
exec
Package exec defines the RPC interface for the sansshell Exec actions.
Package exec defines the RPC interface for the sansshell Exec actions.
exec/client
Package client provides the client interface for 'exec'
Package client provides the client interface for 'exec'
exec/server
Package server implements the sansshell 'Exec' service.
Package server implements the sansshell 'Exec' service.
healthcheck
Package healthcheck defines the RPC interface for the sansshell HealthCheck actions.
Package healthcheck defines the RPC interface for the sansshell HealthCheck actions.
healthcheck/client
Package client provides the client interface for 'healthcheck'
Package client provides the client interface for 'healthcheck'
healthcheck/server
Package server implements the sansshell 'HealthCheck' service.
Package server implements the sansshell 'HealthCheck' service.
localfile
Package localfile defines the RPC interface for the sansshell LocalFile actions.
Package localfile defines the RPC interface for the sansshell LocalFile actions.
localfile/client
Package client provides the client interface for 'file'
Package client provides the client interface for 'file'
localfile/server
Package server implements the sansshell 'LocalFile' service.
Package server implements the sansshell 'LocalFile' service.
packages
Package packages defines the RPC interface for the sansshell Packages actions.
Package packages defines the RPC interface for the sansshell Packages actions.
packages/client
Package client provides the client interface for 'packages'
Package client provides the client interface for 'packages'
packages/server
Package server implements the sansshell 'Packages' service.
Package server implements the sansshell 'Packages' service.
process
Package process defines the RPC interface for the sansshell Process actions.
Package process defines the RPC interface for the sansshell Process actions.
process/client
Package client provides the client interface for 'process'
Package client provides the client interface for 'process'
process/server
Package server implements the sansshell 'Process' service.
Package server implements the sansshell 'Process' service.
sansshell
Package sansshell defines the RPC interface for internal Sansshell operations.
Package sansshell defines the RPC interface for internal Sansshell operations.
sansshell/client
Package client provides the client interface for 'Logging'
Package client provides the client interface for 'Logging'
sansshell/server
Package server implements the sansshell 'Logging' service.
Package server implements the sansshell 'Logging' service.
service
Package service defines the RPC interface for the sansshell Service actions.
Package service defines the RPC interface for the sansshell Service actions.
service/client
Package client provides the client interface for 'service'
Package client provides the client interface for 'service'
service/server
Package server implements the sansshell 'Service' service.
Package server implements the sansshell 'Service' service.
util
Package util provides utility operations used in building sansshell system services.
Package util provides utility operations used in building sansshell system services.
Package telemetry contains code for emitting telemetry from Sansshell processes.
Package telemetry contains code for emitting telemetry from Sansshell processes.
testing
testutil
Package testutil provides many test helpers/assertions used to simplify common testing patterns.
Package testutil provides many test helpers/assertions used to simplify common testing patterns.

Jump to

Keyboard shortcuts

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