Re: [PoC] Federated Authn/z with OAUTHBEARER
Stephen Frost <sfrost@snowman.net>
Commits
GET /api/v1/messages/:b64id/commits
the thread's linked commits as JSON, with link sources.
API reference →
-
meson: Fix install-quiet after clean
- a9ffb35274fb 18.0 landed
- 4ae03be54734 19 (unreleased) landed
-
oauth: Run Autoconf tests with correct compiler flags
- 3d23f68c5529 18.0 landed
- 990571a08b66 19 (unreleased) landed
-
Link libpq with libdl if the platform needs that.
- 4df477153a6b 19 (unreleased) landed
- 7bd752c1fb8e 18.0 landed
-
Doc: correct spelling of meson switch.
- 3faac9d14063 16.9 landed
- 766d2e673342 17.5 landed
- ac557793d478 18.0 landed
-
oauth: Correct SSL dependency for libpq-oauth.a
- 3db68212a393 18.0 landed
-
oauth: Fix Autoconf build on macOS
- 4ea1254f35b2 18.0 cited
-
oauth: Move the builtin flow into a separate module
- b0635bfda053 18.0 landed
-
Remove a stray "pgrminclude" annotation
- 764d501d24ba 18.0 cited
-
oauth: Simplify copy of PGoauthBearerRequest
- 1cf4c56480f8 18.0 landed
-
oauth: Improve validator docs on interruptibility
- 873c0fd67872 18.0 landed
-
oauth: Disallow synchronous DNS in libcurl
- d7e40845f923 18.0 landed
-
oauth: Fix postcondition for set_timer on macOS
- 434dbf6907ec 18.0 landed
-
oauth: Use IPv4-only issuer in oauth_validator tests
- 8d9d5843b55f 18.0 landed
-
Work around OAuth/EVFILT_TIMER quirk on NetBSD.
- c301a0a74a8a 18.0 landed
-
oauth: Fix incorrect const markers in struct
- 03366b61dfe5 18.0 landed
-
Add missing entry to oauth_validator test .gitignore
- 2c53dec7f440 18.0 landed
-
cirrus: Temporarily fix libcurl link error
- 9d9a71002a1c 18.0 landed
-
Add support for OAUTHBEARER SASL mechanism
- b3f0be788afc 18.0 landed
-
libpq: Handle asynchronous actions during SASL
- a99a32e43ed7 18.0 landed
-
require_auth: prepare for multiple SASL mechanisms
- f8d8581ed882 18.0 landed
-
Move PG_MAX_AUTH_TOKEN_LENGTH to libpq/auth.h
- e21d6f297158 18.0 landed
-
Make SASL max message length configurable
- 6d16f9debae0 18.0 landed
-
jsonapi: fully initialize dummy lexer
- 41b023946dfd 18.0 landed
-
common/jsonapi: support libpq as a client
- 0785d1b8b2fa 18.0 landed
-
Remove fe_memutils from libpgcommon_shlib
- f1976df5eaf2 18.0 landed
-
Revert ECPG's use of pnstrdup()
- f0096ef13be2 13.17 landed
- 3557185538fe 14.14 landed
- 2de129b356bf 15.9 landed
- ee2997c678d8 16.5 landed
- e9e05c655069 17.0 landed
- 5388216f6adc 18.0 landed
-
Explicitly require password for SCRAM exchange
- adcdb2c8dda4 17.0 landed
-
Refactor SASL exchange to return tri-state status
- 24178e235ea5 17.0 landed
Greetings, * Andrey Chudnovsky (achudnovskij@gmail.com) wrote: > > This really doesn't feel like a great area to try and do hooks or > > similar in, not the least because that approach has been tried and tried > > again (PAM, GSSAPI, SASL would all be examples..) and frankly none of > > them has turned out great (which is why we can't just tell people "well, > > install the pam_oauth2 and watch everything work!") and this strikes me > > as trying to do that yet again but worse as it's not even a dedicated > > project trying to solve the problem but more like a side project. > > In this case it's not intended to be an open-ended hook, but rather an > implementation of a specific rfc (rfc-7628) which defines a > client-server communication for the authentication flow. > The rfc itself does leave a lot of flexibility on specific parts of > the implementation. Which do require hooks: Color me skeptical on an RFC that requires hooks. > (1.) Server side hook to validate the token, which is specific to the > OAUTH provider. > (2.) Client side hook to request the client to obtain the token. Perhaps I'm missing it... but weren't these handled with what the original patch that Jacob had was doing? > On (1.), we would need a hook for the OAUTH provider extension to do > validation. We can though do some basic check that the credential is > indeed a JWT token signed by the requested issuer. > > Specifically (2.) is where we can provide a layer in libpq to simplify > the integration. i.e. implement some OAUTH flows. > Though we would need some flexibility for the clients to bring their own token: > For example there are cases where the credential to obtain the token > is stored in a separate secure location and the token is returned from > a separate service or pushed from a more secure environment. In those cases... we could, if we wanted, simply implement the code to actually pull the token, no? We don't *have* to have a hook here for this, we could just make it work. > > another new "generic" set of hooks/APIs that will just cause DBAs and > > our users headaches trying to make work. > As I mentioned above, it's an rfc implementation, rather than our invention. While I only took a quick look, I didn't see anything in that RFC that explicitly says that hooks or a plugin or a library or such is required to meet the RFC. Sure, there are places which say that the implementation is specific to a particular server or client but that's not the same thing. > When it comes to DBAs and the users. > Builtin libpq implementations which allows psql and pgadmin to > seamlessly connect should suffice those needs. > While extensibility would allow the ecosystem to be open for OAUTH > providers, SAAS developers, PAAS providers and other institutional > players. Each to end up writing their own code to do largely the same thing without the benefit of the larger community to be able to review and ensure that it's done properly? That doesn't sound like a great approach to me. Thanks, Stephen