This tool manages the OpenAPI documents (JSON files) checked into Omicron’s openapi
directory, using Dropshot’s support for API traits.
Note
|
For more information about API traits, see RFD 479. |
The OpenAPI manager is meant to be invoked via cargo xtask openapi
. Currently, three commands are provided:
-
cargo xtask openapi list
: List information about OpenAPI documents. -
cargo xtask openapi check
: Check that all of the documents are up-to-date. -
cargo xtask openapi generate
: Update and generate OpenAPI documents.
There is also a test which makes sure that all documents are up-to-date, and tells you to run cargo xtask openapi generate
if they aren’t.
The OpenAPI manager has dependencies on a set of API crates. An API crate is a Rust library that consists of the API trait, and possibly supporting types. Each OpenAPI document should have a separate API crate.
To keep compile times down, ensure that the API crate has as few dependencies as possible. In particular, strongly avoid any dependencies on Diesel or other database logic.
The ideal set of dependencies is:
-
Common crates within omicron:
omicron-common
, perhapsomicron-uuid-kinds
if typed UUIDs are in use, and atypes
crate for your service. -
Core external crates:
dropshot
,serde
,schemars
, anduuid
.
For an archetypal way to organize code, see the dependency graph in RFD 479’s Choosing between functions and traits.
For OpenAPI documents to be managed by this tool, the corresponding interfaces must be defined via API traits rather than traditional Dropshot function-based servers.
Tip
|
For examples within Omicron, search the repo for dropshot::api_description .
|
If you’re defining a new service fronted by OpenAPI, first create an API crate (see API crates above).
-
Add the API crate to the workspace’s
Cargo.toml
:members
anddefault-members
, and a reference in[workspace.dependencies]
. -
Following the example in RFD 479’s Trait definition, define the API trait.
In the implementation crate:
-
Add a dependency on the API crate.
-
Following the example in RFD 479’s API implementation, provide an implementation of the trait.
Proceed to adding this API’s OpenAPI document.
When adding an API, you will need to decide how the API is versioned when it comes to system upgrade. You have two choices:
-
Lockstep: the client and server are always deployed as a unit (e.g., Wicket and Wicketd). It’s impossible for versions to mismatch at runtime. This is ideal when possible, but rare.
-
Versioned: the client and server may mismatch at runtime during an upgrade. See RFD 532 ("Versioning for internal HTTP APIs") for a more complete discussion of how this can work. For our purposes, the upshot is that this repo stores not just the current OpenAPI document (generated from the API trait), but also historical versions that must still be supported.
For versioned APIs: copy the following template into the API crate near the top, above the [dropshot::api_description]
:
api_versions!([
// WHEN CHANGING THE API (part 1 of 2):
//
// +- Pick a new semver and define it in the list below. The list MUST
// | remain sorted, which generally means that your version should go at
// | the very top.
// |
// | Duplicate this line, uncomment the *second* copy, update that copy for
// | your new API version, and leave the first copy commented out as an
// | example for the next person.
// v
// (next_int, IDENT),
(1, INITIAL),
]);
// WHEN CHANGING THE API (part 2 of 2):
//
// The call to `api_versions!` above defines constants of type
// `semver::Version` that you can use in your Dropshot API definition to specify
// the version when a particular endpoint was added or removed. For example, if
// you used:
//
// (1, INITIAL)
//
// Then you could use `VERSION_INITIAL` as the version in which endpoints were
// added or removed.
If in doubt, look at an existing versioned API crate (e.g., dns-server-api/src/lib.rs
).
For both lockstep and versioned APIs: once the API crate is defined, update the OpenAPI manager to manage the new OpenAPI document(s). Within this directory:
-
In
Cargo.toml
, add a dependency on the API crate. -
In
src/omicron.rs
, add the crate to theall_apis
function. (Please keep the list sorted by filename.) For versioned crates, you’ll use thesupported_versions()
function defined by theapi_versions!
macro. Again, use one of the existing examples as a guide.
To ensure everything works well, run cargo xtask openapi generate
. Your
OpenAPI document should be generated on disk and listed in the output.
By default, the OpenAPI manager does basic validation on the generated document. Some documents require extra validation steps.
It’s best to put extra validation next to the trait, within the API crate.
-
In the API crate, add dependencies on
openapiv3
andopenapi-manager-types
. -
Define a function with signature `fn validate_api(spec: &openapiv3::OpenAPI, mut cx: openapi_manager_types::ValidationContext<'_>) which performs the extra validation steps.
-
In
all_apis
, set theextra_validation
field to this function.
Currently, the validator can do two things:
-
Via the
ValidationContext::report_error
function, report validation errors. -
Via the
ValidationContext::record_file_contents
function, assert the contents of other generated files.
(This can be made richer as needed.)
For an example, see validate_api
in the nexus-external-api
crate.
Assuming you’re starting from a fresh branch from "main", the general workflow for making changes to a lockstep API looks like this:
-
Make whatever changes you want to the API crate (the trait definition)
-
In whichever order you want:
-
Update the server(s) (the trait impl). You can immediately see what’s needed with
cargo check
. -
Update the client. To do this, run
cargo xtask openapi generate
to regenerate the OpenAPI document. Thencargo check
will tell you how the client needs to be updated.
-
-
Repeat steps 1-2 as needed.
This workflow is modeled after the lockstep one, but it’s a little trickier because of the considerations around online update. Check out the Dropshot API Versioning docs for important background.
Again, we assume you’re starting from a fresh branch from "main".
-
Pull up the
api_versions!
call for your API, in the root of the API crate. -
Follow the instructions there to pick a new version number (the next unused integer) and an identifier. For this example, suppose you find:
api_versions!([ (1, INITIAL), ])
You’ll change this to:
api_versions!([ (2, MY_CHANGE), (1, INITIAL), ])
Among other things, the
api_versions!
call turns these identifiers into named constants that you’ll use in the next step. For example,(1, INITIAL)
defines a constantVERSION_INITIAL
and(2, MY_CHANGE)
defines the constantVERSION_MY_CHANGE
. -
Also in the API crate, make your API changes. However, you have to preserve the behavior of previous versions of the API.
-
If you’re adding a new endpoint, then your new endpoint’s
#[endpoint]
attribute should sayversions = VERSION_MY_CHANGE..
(meaning "introduced in version `VERSION_MY_CHANGE`"). -
If you’re removing an endpoint, then you want to change the endpoint’s
#[endpoint]
attribute to sayversions = ..VERSION_MY_CHANGE
(meaning "removed in versionVERSION_MY_CHANGE
). (If the endpoint was previously introduced in some other version, then the new value might sayversions = VERSION_OTHER..VERSION_MY_CHANGE
instead ofversions = ..VERSION_MY_CHANGE
.) -
If you’re changing the arguments or return type of an endpoint, you’ll need to treat this as a separate add/remove:
-
Do not change the existing endpoint’s arguments or return type at all.
-
Mark the existing endpoint as removed in
VERSION_MY_CHANGE
as described above. -
Define new Rust types for the new version’s arguments or return type (whichever are changing).
-
Define a new endpoint using the new types and introduced in
VERSION_MY_CHANGE
, as described above.
-
For some examples, see Dropshot’s versioning example.
-
-
As with lockstep crates, you can do either of these in whichever order you want:
-
Update the server(s) (the trait impl). You can immediately see what’s needed with
cargo check
. -
Update the client. To do this, run
cargo xtask openapi generate
to regenerate the OpenAPI document(s). Thencargo check
will tell you how the client(s) need to be updated.
-
-
Repeat steps 3-4 as needed. You should not repeat steps 1-2 as you iterate.
As of this writing, every API has exactly one Rust client package and it’s always generated from the latest version of the API. Per RFD 532, this is sufficient for APIs that are server-side-only versioned. For APIs that will be client-side versioned, you may need to create additional Rust packages that use Progenitor to generate clients based on older OpenAPI documents. This has not been done before but is believed to be straightforward.
The idea behind versioned APIs is:
-
This is an API where the client and server can be mismatched at runtime when the system is upgraded.
-
Thus: for the system to keep working across an upgrade, the server must support both the old and the new versions.
-
To ensure that the server supports older versions, we check those OpenAPI documents into source control and this tool verifies that the server remains compatible with these older versions.
For much more on this, see RFD 532 "Versioning for internal HTTP APIs".
For a versioned API, the set of all supported versions is defined by the api_versions!
macro in the API crate. More precisely: in configuring the OpenAPI manager tool to know about a versioned API, you use the supported_versions()
function defined by the macro. This is critical: the OpenAPI documents in the openapi
directory are not the source of truth about what versions are supported. The Rust api_versions!
call is.
Each of these supported versions is either blessed (meaning it’s been committed-to — i.e., shipped, or potentially deployed on a system that we care about upgrading smoothly) or locally-added. Currently, blessed versions are not allowed to change at all. In the near future, we hope to relax this a bit so that they can be changed in ways that are provably compatible (e.g., doc changes).
When you run cargo xtask openapi check
or cargo xtask openapi generate
, the tool loads OpenAPI documents from three sources:
-
blessed documents: these are generally the OpenAPI documents in "main" in the
openapi
directory. (More precisely, by default, these are loaded from the merge-base betweenHEAD
andmain
. You can override this.) By definition, these only contain blessed versions (since locally-added versions won’t be present in "main"). -
local documents: these are the OpenAPI documents in
openapi
in your working tree. These include both blessed versions and locally-added versions. -
generated documents: these are the OpenAPI documents generated by Dropshot from your API traits.
Putting all this together, the tool is pretty straightforward. For each supported version of a versioned API:
-
If there is a blessed file for that version, then the version is blessed. The generated file must exactly match the blessed one. If not, the tool cannot fix this. You have to undo whatever changes you made that affected the blessed version. (See above on how to make changes to the API trait without affecting older versions.)
-
If there is no blessed file for that version, then the version is locally-added. There should be exactly one local file for it and it should exactly match the generated file. The tool can fix any problems here by removing all local files and generating a new one based on the generated one.
-
The tool also ensures that a "latest" symlink exists and points to the highest-numbered OpenAPI document.
flowchart TD
HaveSupportedVersion["Have supported version<br/>(explicit list in Rust code)"]
QIsLockstep{"Is this a lockstep API?"}
IsLockstep["Make the local OpenAPI document match the generated one."]
QHaveBlessedSpec{"Is there an OpenAPI document in the blessed source (upstream)?"}
HaveBlessed["Verify that the generated OpenAPI document is compatible with the blessed document."]
NoBlessed["Make the local OpenAPI document match the generated one (and remove any others)"]
IsLatest{"Is it the latest version of this API?"}
NeedSymlink["Make the 'latest' symlink for this API refer to this version's OpenAPI document."]
HaveSupportedVersion --> QIsLockstep
QIsLockstep -->|"Yes"|IsLockstep
QIsLockstep -->|"No, it's versioned"|QHaveBlessedSpec
QHaveBlessedSpec -->|"Yes, it's a blessed version"| HaveBlessed
QHaveBlessedSpec -->|"No, it's a locally-added version"| NoBlessed
HaveBlessed --> IsLatest
NoBlessed --> IsLatest
IsLatest --> |"Yes"|NeedSymlink
You generally don’t need to think about any of this to use the tool. Like with lockstep APIs, you just use cargo xtask openapi generate
to update the local files. The only ways you’re likely to run into trouble are:
-
You forgot to define a new version. In this case, you’ll get an error about having changed a blessed version. To fix this, you’ll need to follow the steps above to make changes that don’t affect older versions.
-
You defined a new version, but forgot to annotate the API endpoints with what version they were added or removed in. Again, you’ll get an error about having changed a blessed version and you’ll need to follow the steps above to fix it.
-
You merge with an upstream that adds new versions.
When you merge with commits that added one or more versions to the same API that you also changed locally:
-
Git will report a merge conflict in the "latest" symlink. Just remove the symlink altogether (with
rm
). This will be regenerated correctly below. -
Git will report a merge conflict in the API crate in the
api_versions!
call. You will need to resolve this by hand. This is the most important part to get right. Generally, this is easy: you’ll take all the versions that are present upstream, choose a new number for your locally-added version, and make sure that your locally-added one remains the latest one (first in the list). -
Less commonly: you may have other merge conflicts in the API crate or the server implementation. This would happen if specific endpoints were changed both upstream and locally. The details here are situation-dependent. You’ll have to resolve these by hand.
Aside from merge conflicts from specific endpoints that were changed both upstream and in your local version, you generally should not need to change any of the API crate as part of the merge. (This is why we use identifiers for the semvers that go in the
versions
argument — so that the value can change after a merge without having to go update all the endpoints you changed.) -
When you’ve resolved all conflicts, run
cargo xtask openapi generate
to regenerate files for locally-added versions and clean up any stale files.
Most commonly, this boils down to:
-
rm
the "latest" symlink -
fix up the
api_versions!
call in the API crate -
run
cargo xtask openapi generate
If you get any of this wrong, the tool should clearly report the problem. For example, if you mis-order the versions in the list, you’ll get an error about them not being sequential. If you mismerge the API trait in such a way that changes a blessed version, as always, the tool will detect that and report it.
Of course, we don’t need or want to support each version of an API forever. RFD 532 proposes supporting the one shipped in the last release, plus all the intermediate ones shipped in the current release. The specific policy doesn’t really matter here.
To retire an old version:
-
Remove it from
api_versions!
. -
Remove any references to its
VERSION_
identifier (these will show up as compile errors when you runcargo xtask openapi generate
). -
Run
cargo xtask openapi generate
to remove the old files.
An existing lockstep API can be made versioned. You would do this when transitioning an API to support online update. We’ll use the example of dns-server
:
-
Initially, its OpenAPI document is stored in
openapi/dns-server.json
. -
Run
git rm -f openapi/dns-server.json
. -
Run
mkdir openapi/dns-server
. -
Update the API crate (
dns-server-api/src/lib.rs
) to use the newapi_versions!
macro. See the instructions under [_adding_new_openapi_documents] above. -
Update the OpenAPI manager configuration in
src/omicron.rs
(in this directory) to specify that the API is now versioned. You’ll use thesupported_versions()
function defined by theapi_versions!
macro. -
Run
cargo xtask openapi generate
. This will generate a new file underopenapi/dns-server
for your initial server version, along with a "latest" symlink.You will probably see this warning:
Loading blessed OpenAPI documents from git revision "main" path "openapi" Warning skipping file "dns-server.json": this API is not a lockstep API
This is okay. It’s saying: this is a versioned API, but the file we found upstream (i.e., in "main") suggests it’s lockstep. That’s expected when you’re doing this conversion.
-
Update the client package (
clients/dns-service-client/src/lib.rs
). It was previously generating its client fromopenapi/dns-server.json
. It should now generate it fromopenapi/dns-server/dns-server-latest.json
.
That should be it! Now, when iterating on the API, you’ll need to follow the procedure described above for versioned APIs (which is slightly more complicated than the one for lockstep APIs).
In principle, this process could be reversed to convert an API from versioned to lockstep, but this almost certainly has runtime implications that would need to be considered.
The OpenAPI manager uses the new support for Dropshot API traits described in RFD 479.
With traditional function-based Dropshot servers, generating the OpenAPI document requires the implementation to be compiled. With API traits, that is no longer necessary. The OpenAPI manager leverages this to provide a fast and easy way to regenerate API documents.
This does mean that the OpenAPI manager requires the use of API traits, and that eventually all of Omicron’s Dropshot APIs should be switched over to traits.