Skip to main content

WSGI Middleware to "Bring Your Own IDentity" to a web server

Project description

README for ARPA2 WSGI middleware

WSGI enables middleware, which is a perfect place for enforcing ARPA2 Identities, ranging from authentication to authorisation through access control.

Background links:

HTTP SASL handled with WSGI SASL

Most protocols that require authentication make use of the SASL protocol. Maybe it is better to say that SASL is a kind of tunnel that passes through a protocol to exchange authentication in a flexible manner. Most importantly, the mechanisms can be plugged into software independent of the protocol that uses SASL and one infrastructure can be shared by all the protocols.

HTTP has not had SASL implemented. We have specified HTTP SASL to fix that, and stop the ongoing need for authentication systems built into the (rather insecure) JavaScript namespace. We are implementing it with a few Java demonstrations, as well as a browser extension with native messaging so we may reuse desktop credentials from a trusted application outside the browser. Yes, that includes one's Kerberos login and yes, it enables the use of pseudonyms during realm crossover.

We are hoping to develop a Python WSGI component for the server side. It would sit between the web server and WSGI application, and detect 401 or 407 responses, annotate them with SASL authentication option and hope to find a browser that responds to the option of SASL authentication.

Current status: There is no reasonable support for server-side SASL at this moment. We have asked others to help out with this.

HTTP User handled with WSGI User

Authentication users are client identities. Most protocols also recognise a user on the server side, but HTTP does not. And if it does, it is supposed to be the same as the client identity, which is thereby forced to fall under the server's realm. We see the resuls everywhere; the web asks you to create an account on many sites you visit. This is not practical.

We therefore proposed an extension to HTTP that explicitly indicates the User as part of the resource name space identification on the server or, in URI terms, of the authority. If we move towards peer-to-peer HTTP service, this is going to be helpful for routing requests, perhaps in combination with encrypted portions in the initial TLS messages.

This extension to HTTP is straightforward, and it has been implemented for WSGI in the WSGI_User class. This reads the User header, removes %-escapes, applies a syntax check that defaults to the NAI syntax with a default-on option to also allow empty strings, and if it matches, passes the value in a LOCAL_USER environment variable and will signal the impact on caching by adding a Vary: User response header.

By default, WSGI-User implements backward compatibility with two older habits:

  • Basic authentication with a username and empty password
  • Local server convention for /~username paths

Both are a bit cluttered in comparison to the User header. Basic authentication conflates client and server identities and invalidates intermediate caching; local server conventions do not permit inferencing in clients or by their human users (and makes them resort to inconsistent, deductive reasoning).

Current status: The code performs well in our test programs. Please try it live and report to us!

Bring Your Own IDentity

We are considering a BYOID mechanism based on Diameter servers hosted under domain names. This is not a web-only technology, so we are not limited to HTTP and can make a choice for a more dedicated technology.

Diameter is the sequel to RADIUS; its security is better so it can be used for such realm crossover purposes; indeed, there are SRV records in DNS for this kind of purpose. Diameter's support for bulk interactions and routing of requests and responses has also improved. Finally, it is easier to extend with notions such as SASL fields.

With this in mind, a server receiving a client identity john@example.com can lookup the Diameter server for example.com and relay SASL traffic to the realm. It does not need any local credentials to allow for this to work; all it needs to do is use TLS for trust in the link to the backend Diameter server.

This is not the only way in which we think BYOID can be achieved. It will me much more powerful once we get our projects for Kerberos going: Impromptu Realm Crossover (KXOVER) and TLS-KDH. The advantage of these mechanisms is that a crossover relation is made between realms, not just for individual queries of individual users. This makes it extremely efficient for bulk use, but it will also take longer to get established. It is useful though; TLS-KDH authenticates thousands of times faster than tradition public-key certificates, and it resists quantum computers; KXOVER currently cannot match that last point, but will develop in that direction too. SASL is the short-term solution that can integrate seemlessly with this same approach.

ARPA2 Access Control

The ACL setup that we envision is flexible, generic and fast. More importantly, it is suitable for realm crossover uses.

We are building libraries to support the general evaluation of this model, along with change subscription to keep dependents informed.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

arpa2.wsgi-0.5.1.tar.gz (4.3 kB view hashes)

Uploaded Source

Built Distributions

arpa2.wsgi-0.5.1-py3.7.egg (21.8 kB view hashes)

Uploaded Source

arpa2.wsgi-0.5.1-py3-none-any.whl (14.0 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page