Extending Sentinel: Plugins
NOTE: Plugins are currently only supported on the CLI and not in any production Sentinel integration, with the exception of existing configuration in Nomad.
Plugins allow you to write imports as standalone executables, allowing you to extend Sentinel in ways not normally possible with policy code alone.
You might want to write or use a plugin when you need to:
- Use a provider or API integration for Sentinel. In this case, you will probably be working with a provider SDK, or other libraries that will be making complex network requests to external services. Sentinel only provides limited capabilities for these kinds of operations in the standard library, so writing this kind of import as a module is not optimal.
- Introduce novel functionality not currently supported by Sentinel. Sentinel's policy language is limited by design to encourage simple policies, reduce its runtime footprint, and to keep it efficient and safe. This will mean that some functionality may be difficult or impossible to express as Sentinel code, and would require a plugin to write.
- Extend a complex module. Additionally, modules are restricted to a single file of Sentinel code, so these will naturally become more and more unwieldy as you continue to add to them. Eventually, there might be a time where a plugin is better suited for the functionality, especially if it's a general-purpose library.
This section details how import plugins are currently configured in the Sentinel CLI, and some detail on how they are written. As we continue to build on the ability to use import plugins, we will extend this section with more details.
Not all Sentinel-enabled applications will support plugins. Some applications will disable plugins for security reasons. For those that do enable plugins, the method to configure plugins will vary.
Installing Plugins
Sentinel plugins are standalone executables. Sentinel-enabled applications such as the CLI launch these plugins and communicate with them via RPC. To install a plugin, the first step is to download the plugin executable.
After downloading the plugin, you must add it in the CLI configuration file, setting its name, path, and any arguments, environment variables, or configuration. An example is below:
NOTE: We are using "custom_time" as standard import paths cannot be overriden. See Configuration File Syntax for more details.
After configuring the plugin, it will be available on the next sentinel apply
or sentinel test
.
For more details on configuration, see the plugins section of the CLI configuration file syntax.
Debugging Plugins
The Sentinel CLI logs when it launches, configures, and closes a plugin. The plugin may also log additional information when it is running.
To debug issues with a plugin, you can usually refer to these logs. Depending on the plugin configuration, the logs you see may vary - refer to the plugin documentation on how to enable logs for a particular plugin.
Developing an Import Plugin
Anyone can develop a Sentinel import plugin using the Sentinel SDK. The SDK contains a high-level framework for writing plugins in Go including a test framework. Additionally, the SDK contains the low-level gRPC protocol buffers definition for writing plugins in other languages.
The rest of this page will document how to write a new Sentinel plugin in Go using the Sentinel SDK and the high-level framework provided. You are expected to already know the basics of Go and have a properly configured Go installation.
Throughout this page, we'll be developing a simple plugin to access time values.
NOTE: The example here is not reflective of the actual implementation of
the time
standard import, so make sure to not
get the two confused.
Plugin Framework
The Sentinel SDK provides a high-level framework for writing plugins. We recommend using this framework.
Basic Concepts
This framework works by implementing the correct Go interfaces.
As a general overview:
framework.Plugin
implements the
sdk.Plugin
interface and therefore is a valid import plugin. You must implement the
framework.Root
interface to configure the plugin. The root may then delegate nested access to
various
framework.Namespace
implementations. Other interfaces are implemented to provide functionality past
what is provided by the basic framework.Namespace
implementation - these are
documented below.
This all may sound like a lot of interfaces, but each interface typically only
requires a single function implementation and you're only required to implement
a single namespace (framework.Namespace
).
As we move on, we'll use real examples to make this clear.
Implementing framework.Root
To begin, you must implement the
framework.Root
interface. This is the interface representing the root of your plugin. The root
itself must be implement
framework.Namespace
,
which allows values to be accessed. Note that the root can optionally implement
other interfaces, but they're more advanced and omitted here for simplicity.
For our custom time example, our root may look like this:
This example implements framework.Root
and framework.Namespace
and would
enable the following within a Sentinel policy once the completed plugin is
installed.
framework.Namespace
The
framework.Namespace
interface implements a namespace of values. You saw above that
framework.Root
must itself be a namespace. However, a namespace Get
implementation may
further return namespaces to access nested values.
This enables behavior such as custom_time.month.string
vs. custom_time.month.index
.
Notice each of these examples accesses a nested value within month
. This can
be modeled as namespaces within the framework.
In the example below, we return a new namespace for month
to do just this:
Primitive Types and Structs
A namespace may also return any primitive Go type as well as structs. The
framework automatically exposes primitive values as you would expect. For
structs, exported fields are lowercased and exposed to the policies. The
sentinel
struct tag can be used to control how Sentinel can access the field.
In the example below, we expose a struct directly from the root namespace:
This makes the following values work within a Sentinel policy:
time.location.name
, time.location.time_zone
.
If a field has an empty sentinel
struct tag (example: sentinel:""
),
then that field will not be accessible from a policy.
Optional Interfaces
The following are optional interfaces that can be implemented on top of
framework.Namespace
.
All of these interfaces can be implemented at any level, except for
framework.New
, which only works at the root level.
framework.Call
The
framework.Call
interface can be implemented to support function calls.
Implementing this interface is very similar to attribute access, except instead of returning the attribute value, you return a function. The framework uses Go reflection to determine the argument and result types and calls it. If the argument types do not match or the signature is otherwise invalid, an error is returned.
For example, let's implement a function to add months to the current month:
You can now call the function. If today was in the month of September, the policy below would pass:
framework.Map
The optional
framework.Map
interface allows an alternative method to to present a namespace back to a
Sentinel policy as a map.
framework.Map
is best paired with
framework.MapFromKeys
,
which allows you to quickly fetch the necessary data via Get
calls on the
namespace:
framework.New
The optional
framework.New
interface can be implemented on a root namespace to add methods to your
namespaces.
Data returned from a namespace is memoized and returned as a map, and is normally not callable - to call a function to operate on the data, you would need to create a new namespace from the top-level of the plugin, and then make a function call on the result within the same expression.
Let's consider the root example. Let's say,
instead of hard-coding the time value at configuration, we wanted to load it
on-demand using a time.now
key, and allow add_month
to be callable on that
value. Our root and de-coupled time namespace would now look like:
Via this example, we can now create and assign a namespaceTime
using t = custom_time.now
, and then call t.add_month(months_to_add)
to return a
namespaceMonth
for the corresponding month.
Methods on a namespace can also modfiy the receiver data. So you can, for
example, add a method named increment_month
that takes no arguments, but
increments the time stored in namespaceTime.Time
by a month. Subsequent
statements using the receiver would see the new value.
Note that there are some restrictions and guidelines that you should take into
account when using framework.New
:
- Only data that makes it back to a policy can be used as receiver data to
instantiate new namespaces. As such it's recommended to make use of
framework.Map
andframework.MapFromKeys
to return all of the attribute data you need to construct new objects. framework.New
is only supported on the root namespace and has no effect on namespaces below the root. Check all possible cases of receiver data within the top-levelNew
function and return the appropriate namespace based on the input data.- Do not return general errors from your
New
method. When an unknown lookup is made off of memoized data, it will hit yourNew
method for possible instantiation and key calls. This will ensureundefined
is correctly returned for these cases. framework.New
is designed to add utility to plugins where calling methods on a value is more intuitive than just making a function call, or just returning all of a data set as a memoized map. Use it sparingly and avoid using it on recursively complex data sets.
Testing
The SDK exposes a testing framework to verify your plugin works as
expected. This test framework integrates directly into go test
so it
is part of a familiar workflow.
The test framework works by dynamically building your plugin and
running it against the sentinel
CLI to verify it behaves as expected.
This ensures that your plugin builds, your plugin communicates via RPC
correctly, and that the behavior within a policy is also correct.
The example below shows a complete ready table-driven test for our time plugin.
You can run this with a normal go test
.
Building Your Plugin
To build your plugin, you must first implement the main
function.
The main function should just use the rpc.Serve
method to serve the
plugin over the Sentinel RPC layer:
You can then build this using go build
. The output can be named
anything. Once your plugin is built, install it
and try it out!