Please see CONTRIBUTING and GOVERNANCE from the SPIFFE project.
As a general guideline, it is suggested to first create an issue summarizing the changes you would like to see to the project. The project maintainers regularly triage open issues to clarify the request, refine the scope, and determine the direction for the issue. Contributions that are tied to a triaged issue are more likely to be successfully merged into the project.
For basic development you will need:
- Go 1.11 or higher (https://golang.org/dl/)
For development that requires changes to the gRPC interfaces you will need:
- The protobuf compiler (https://github.com/google/protobuf)
- The protobuf documentation generator (https://github.com/pseudomuto/protoc-gen-doc)
- protoc-gen-go and protoc-gen-spireplugin (
make utils
)
Since go modules are used, this repository can live in any folder on your local disk (it is not required to be in GOPATH).
A Makefile is provided for common actions.
make
- builds all binariesmake all
- builds all binaries, lints code, and runs all unit testsmake bin/spire-server
- builds SPIRE servermake bin/spire-agent
- builds SPIRE agentmake images
- builds SPIRE docker imagesmake test
- runs unit tests
See make help
for other targets
The Makefile takes care of installing the required toolchain as needed. The
toolchain and other build related files are cached under the .build
folder
(ignored by git).
You can either build SPIRE on your host or in a Ubuntu docker container. In both cases you will use the same Makefile commands.
To build SPIRE within a container, first build the development image:
$ make dev-image
Then launch a shell inside of development container:
$ make dev-shell
Because the docker container shares the .build
cache and $GOPATH/pkg/mod
you will not have to re-install the toolchain or go dependencies every time you
run the container.
In addition to the conventions covered in the SPIFFE project's CONTRIBUTING, the following conventions apply to the SPIRE repository:
Datastore changes must be present in at least one full minor release cycle prior to introducing code changes that depend on them.
/cmd/{spire-server,spire-agent}/
The CLI implementations of the agent and server commands
/pkg/{agent,server}/
The main logic of the agent and server processes and their support packages
/pkg/common/
Common functionality for agent, server, and plugins
/pkg/{agent,server}/plugin/<name>/
The implementation of each plugin and their support packages
/proto/spire/{agent,server,api,common}/<name>/
gRPC .proto files, their generated .pb.go, and README_pb.md.
The protobuf package names should be spire.{server,agent,api,common}.<name>
and the go package name
should be specified with option go_package = "<name>";
Packages should be exported through interfaces. Interaction with packages must be done through these interfaces
Interfaces should be defined in their own file, named (in lowercase) after the name of the
interface. eg. foodata.go
implements type FooData interface{}
As much as possible, label names should be constants defined in the telemetry
package. Additionally,
specific metrics should be centrally defined in the telemetry
package or its subpackages. Functions
desiring metrics should delegate counter, gauge, timer, etc. creation to such packages.
The metrics emitted by SPIRE are listed in the telemetry document and should be kept up to date.
In addition, metrics should be unit-tested where reasonable.
Event count metrics should aggregate where possible to reduce burden on metric sinks, infrastructure, and consumers. That is, instead of:
for ... {
if ... {
foo.Bar = X
telemetry.FooUpdatedCount(1)
} else {
telemetry.FooNotUpdatedCount(1)
}
}
Change to this instead:
updateCount := 0
notUpdatedCount := 0
for ... {
if ... {
foo.Bar = X
updateCount++
} else {
notUpdatedCount++
}
}
telemetry.FooUpdatedCount(updateCount)
telemetry.FooNotUpdatedCount(notUpdatedCount)
Labels added to metrics must be singular only; that is:
- the value of a metrics label must not be an array or slice, and a label of some name must only be added
once. Failure to follow this will make metrics less usable for non-tagging metrics libraries such as
statsd
. As counter examples, DO NOT do the following:
[]telemetry.Label{
{Name: "someName", "val1"},
{Name: "someName", "val2"},
}
var callCounter telemetry.CallCounter
...
callCounter.AddLabel("someName", "val1")
...
callCounter.AddLabel("someName", "val2")
- the existence of a metrics label is constant for all instances of a given metric. For some given metric A with
label X, label X must appear in every instance of metric A rather than conditionally. Failure to follow this will
make metrics less usable for non-tagging metrics libraries such as
statsd
, and potentially break aggregation for tagging metrics libraries. As a counter example, DO NOT do the following:
var callCounter telemetry.CallCounter
...
if caller != "" {
callCounter.AddLabel(telemetry.CallerID, caller)
}
...
if x > 5000 {
callCounter.AddLabel("big_load", "true")
}
Instead, the following would be more acceptable:
var callCounter telemetry.CallCounter
...
if caller != "" {
callCounter.AddLabel(telemetry.CallerID, caller)
} else {
callCounter.AddLabel(telemetry.CallerID, "someDefault")
}
...
if x > 5000 {
callCounter.AddLabel("big_load", "true")
} else {
callCounter.AddLabel("big_load", "false")
}
Errors should start with lower case, and logged messages should follow standard casing.
Log messages should make use of logging fields to convey additional information, rather than using string formatting which increases the cardinality of messages for log watchers to look for and hinders aggregation.
Log messages and error messages should not end with periods.
Unit tests should avoid mocks (e.g. those generated via go-mock) and instead prefer fake implementations. Mocks tend to be brittle as they encode specific call patterns and are tightly coupled with the arguments, results, and call order of a given dependency. This makes it difficult to implement and maintain the behaviors that the unit depends on, leading to increased time maintaining the tests when the dependency, or its usage pattern, changes. Fakes on the other hand are more about implementing the assumed behaviors of the dependency, albeit in drastically simple terms with provisions for behavior injection. A single implementation can easily serve the needs for an entire suite of tests and the behavior is in a centralized location when it needs to be updated. Fakes are also less inclined to be impacted by changes to usage patterns.
We have checked in a pre-commit hook which enforces go fmt
styling. Please install it
before sending a pull request. From the project root:
$ ln -s .githooks/pre-commit .git/hooks/pre-commit
If you've found a vulnerability or a potential vulnerability in SPIRE please let us know at security@spiffe.io. We'll send a confirmation email to acknowledge your report, and we'll send an additional email when we've identified the issue positively or negatively.