Commit Graph

9 Commits (94ae6f727ef571e34c5f8435579daf53458f8ad9)

Author SHA1 Message Date
Dustin 94ae6f727e server: user: Implement OIDC auth for users
The second major feature for SSHCA will be the ability to sign SSH
certificates for users.  Naturally, users will need to prove their
identity to the server in order for it to issue certificates for them.
To implement that, we will use OpenID Connect Identity Tokens.  Users
will obtain a token from an Identity Provider and include it in their
request to the SSHCA server.  If the token is valid and issued by a
trusted provider, the server will sign the user's keys.

The `openidconnect` crate provides everything we need to validate OIDC
ID tokens.  It supports fetching the OpenID Provider Configuration in
order to retrieve the signing keys.  These keys are then used to
verify the signature of a token; other token metadata are verified as
well, including issuer, audience, and expiration.

To avoid making an HTTP request to the OIDC IdP for every request, the
provider configuration is cached for an hour after each lookup.

Clients, such as the `sshca` CLI utility, can use the *GET
/user/oidc-config* HTTP path operation to fetch the SSHCA server's
OpenID Connect client configuration.  The can use the information
returned to initiate a login process with the IdP and obtain the
identity token to submit to the SSHCA server.
2023-11-21 22:03:02 -06:00
Dustin 839d756a28 server: Move auth logic to host module
In preparation for adding a separate authorization strategy for client
requests, I have moved the implementation of the authorization strategy
for host requests in to the `server::host` module.
2023-11-16 19:58:26 -06:00
Dustin 818cfc94c2 ci: Import ci pipeline from original repo
dustin/sshca/pipeline/head This commit looks good Details
When this repository was split from the original *dustin/sshca*
repository, the CI pipeline was not imported.  It wouldn't have mattered
if it had been, since it wouldn't have worked, anyway, given the path
changes.
2023-11-13 20:11:49 -06:00
Dustin be4f5eb6d7 server: Add Containerfile
The SSHCA server is intended to be run in a Kubernetes container.
2023-11-08 21:29:00 -06:00
Dustin a0f6119d60 server: host: Remove alias request parameter
I realized that allowing hosts to request certificates for arbitrary
aliases sort of defeats the purpose of the authentication process.  If a
host successfully authenticates, there would be nothing stopping it from
requesting a certificate for another host.  I will have to come up with
a different way of specifying aliases.  Probably something like a JSON
map containing pre-assigned aliases for hosts that will need them.
2023-11-04 16:37:19 -05:00
Dustin 87d37aebaf server: Cache machine IDs for 60 seconds
Since hosts have multiple keys that they will want to have signed, they
will need to make multiple requests, either sequentially or in parallel.
Since each request must be authenticated individually, this would result
in a libvirt connection and lookup for each one.  To avoid this
overhead, the server will now cache machine IDs in memory for 60
seconds.
2023-11-04 16:37:19 -05:00
Dustin 02d41e922d examples: Add took to generate a JWT for testing 2023-11-04 16:37:19 -05:00
Dustin 3b42be1797 ca: Add support for encrypted private keys 2023-11-04 16:37:18 -05:00
Dustin ac9681e0c3 Initial commit 2023-11-04 16:36:20 -05:00