oidc_validator
pg_oidc_validator_rust : PostgreSQL 18 OIDC bearer-token validator plugin written in Rust
Overview
| ID | Extension | Package | Version | Category | License | Language |
|---|---|---|---|---|---|---|
| 7180 | oidc_validator | pg_oidc_validator_rust | 0.1.0 |
SEC | Unknown | Rust |
| Attribute | Has Binary | Has Library | Need Load | Has DDL | Relocatable | Trusted |
|---|---|---|---|---|---|---|
| --sL--- | No | Yes | Yes | No | no | no |
| Relationships | |
|---|---|
| See Also | pg_oidc_validator pg_session_jwt pgjwt login_hook sslinfo sslutils pgsodium |
Packages
| Type | Repo | Version | PG Major Compatibility | Package Pattern | Dependencies |
|---|---|---|---|---|---|
| EXT | PIGSTY | 0.1.0 |
18 17 16 15 14 | pg_oidc_validator_rust |
- |
| RPM | PIGSTY | 0.1.0 |
18 17 16 15 14 | pg_oidc_validator_rust_$v |
- |
| DEB | PIGSTY | 0.1.0 |
18 17 16 15 14 | postgresql-$v-pg-oidc-validator-rust |
- |
| Linux / PG | PG18 | PG17 | PG16 | PG15 | PG14 |
|---|---|---|---|---|---|
| el8.x86_64 | PIGSTY 0.1.0 | N/A | N/A | N/A | N/A |
| el8.aarch64 | PIGSTY 0.1.0 | N/A | N/A | N/A | N/A |
| el9.x86_64 | PIGSTY 0.1.0 | N/A | N/A | N/A | N/A |
| el9.aarch64 | PIGSTY 0.1.0 | N/A | N/A | N/A | N/A |
| el10.x86_64 | PIGSTY 0.1.0 | N/A | N/A | N/A | N/A |
| el10.aarch64 | PIGSTY 0.1.0 | N/A | N/A | N/A | N/A |
| d12.x86_64 | PIGSTY 0.1.0 | N/A | N/A | N/A | N/A |
| d12.aarch64 | PIGSTY 0.1.0 | N/A | N/A | N/A | N/A |
| d13.x86_64 | PIGSTY 0.1.0 | N/A | N/A | N/A | N/A |
| d13.aarch64 | PIGSTY 0.1.0 | N/A | N/A | N/A | N/A |
| u22.x86_64 | PIGSTY 0.1.0 | N/A | N/A | N/A | N/A |
| u22.aarch64 | PIGSTY 0.1.0 | N/A | N/A | N/A | N/A |
| u24.x86_64 | PIGSTY 0.1.0 | N/A | N/A | N/A | N/A |
| u24.aarch64 | PIGSTY 0.1.0 | N/A | N/A | N/A | N/A |
| u26.x86_64 | PIGSTY 0.1.0 | N/A | N/A | N/A | N/A |
| u26.aarch64 | PIGSTY 0.1.0 | N/A | N/A | N/A | N/A |
Source
github.com/UnAfraid/pg_oidc_validator_rust
pg_oidc_validator_rust-0.1.0.tar.gz
Install
Make sure PGDG and PIGSTY repo available:
Install this extension with pig:
Config this extension to shared_preload_libraries:
This extension does not need CREATE EXTENSION DDL command
Usage
Sources:
- Official README
- Validator configuration source
- PostgreSQL OAuth callback implementation
- PostgreSQL 18 OAuth authentication documentation
oidc_validator is a PostgreSQL 18 OAuth validator module written in Rust. It validates JWT access tokens against an OpenID Connect issuer and returns the token subject as the authenticated identity. It is a headless authentication library, not a SQL extension, so it creates no SQL objects and does not use CREATE EXTENSION.
Core Workflow
Install oidc_validator.so in PostgreSQL’s library directory, then configure the PostgreSQL 18 validator module:
Add an OAuth rule to pg_hba.conf:
Provide the validator configuration to the PostgreSQL server process:
Restart PostgreSQL after changing oauth_validator_libraries or the server-process environment. OAuth clients can then authenticate through a matching pg_hba.conf rule.
Configuration Index
POSTGRES_OIDC_ISSUER: issuer URL without the well-known discovery suffix.POSTGRES_OIDC_CLIENT_ID: OIDC application client ID.POSTGRES_OIDC_AUDIENCE: required token audience, commonly the client ID.oauth_validator_libraries: PostgreSQL 18 setting that loads the trusted validator module.
Requirements and Caveats
- Upstream version
0.1.0targets PostgreSQL 18 and requires PostgreSQL to be built with OpenSSL and libcurl. - Only JWT-shaped bearer tokens are accepted. Opaque access tokens are rejected.
- Validation performs OIDC discovery and JWKS retrieval, so the PostgreSQL server must be able to reach the issuer over TLS.
- The callback currently ignores the requested PostgreSQL role and authorizes based on successful token validation. Do not set
delegate_ident_mapping=1with this implementation; keep PostgreSQL’s standard exact-name orpg_ident.confmapping so the returned token subject is checked against the requested role.