Modular resource-based authentication and authorization for Rails/Rack
Rails::Auth is a flexible library designed for both authentication (AuthN) and authorization (AuthZ) using Rack Middleware. It splits the AuthN and AuthZ steps into separate middleware classes, using AuthN middleware to first verify credentials (such as X.509 certificates or cookies), then authorizing the request via separate AuthZ middleware that consumes these credentials, e.g. access control lists (ACLs).
Rails::Auth can be used to authenticate and authorize end users using browser cookies, service-to-service requests using X.509 client certificates, or any other clients with credentials that have proper authenticating middleware.
Rails::Auth makes use of multiple, independent, single-purpose middleware classes to handle specific types of AuthN/AuthZ.
Rails::Auth ships with the following AuthN middleware:
Rails::Auth::X509::Middleware
: authenticates X.509 certificates obtained from the Rack environment.
The goal of Rails::Auth's AuthN middleware is to authenticate credentials
taken from the Rack environment and place objects representing them under
the "rails-auth.credentials"
key within the Rack environment for use by
subsequent AuthN or AuthZ middleware. The built-in support is for X.509
client certificates, but other middleware could handle authentication of
cookies or (OAuth) bearer credentials.
The intended usage is to have multiple AuthN middlewares that are capable of extracting different types of credentials, but also allowing AuthZ middleware to apply a single policy to all of them. It's also possible to chain AuthN middleware together such that one credential obtained earlier in the middleware stack is used to authenticate another (for e.g. channel-bound cookies).
Rails::Auth ships with one primary AuthZ middleware:
Rails::Auth::ACL::Middleware
: support for Access Control Lists.
Access Control Lists (ACLs) let you write a single, declarative policy for authorization in your application. ACLs are pluggable and let you write a single policy which can authorize access using different types of credentials.
ACLs are a declarative approach to authorization, consolidating policies into a single file that can be easily audited by a security team without deep understanding of the many eccentricities of Rails. These policies provide coarse-grained authorization based on routes (as matched by regexes) and the credentials extracted by the AuthN middleware. However, the do not provide AuthZ which includes specific domain objects, or policies around them.
Below is a comparison of how Rails::Auth relates to the existing landscape of Rails AuthN and AuthZ libraries. These are grouped into two different categories: libraries Rails::Auth replaces, and libraries with which Rails::Auth can be used in a complementary fashion.
-
Warden: Uses a single "opinionated" Rack middleware providing user-centric authentication and methods that allow controllers to imperatively interrogate the authentication context for authorization purposes. By comparison Rails::Auth is not prescriptive and much more flexible about credential types (supporting credentials for both user and service clients) and uses declarative authorization policies in the form of ACLs.
-
Devise: A mature, flexible, expansive framework primarily intended for user authentication. Some of the same caveats as Warden apply, however Devise provides a framework for modeling users within a Rails app along with common authentication flows, making it somewhat orthogonal to what Rails::Auth provides. Rails::Auth is designed to easily support claims-based identity systems where user identity is outsourced to a separate microservice.
-
Pundit: Domain object-centric fine-grained authorization using clean object-oriented APIs. Pundit makes authorization decisions around particular objects based on policy objects and contexts. Rails::Auth's credentials can be used as a powerful policy context for Pundit.
-
CanCanCan: a continuation of the popular CanCan AuthZ library after a period of neglect. Uses a more DSL-like approach to AuthZ than Pundit, but provides many facilities similar to Pundit for domain object-centric AuthZ.
Add this line to your application's Gemfile:
gem 'rails-auth'
And then execute:
$ bundle
Or install it yourself as:
$ gem install rails-auth
To use Rails::Auth you will need to configure the relevant AuthN and AuthZ middleware for your app.
Rails::Auth ships with the following middleware:
- AuthN:
Rails::Auth::X509::Middleware
: support for authenticating clients by their SSL/TLS client certificates. - AuthZ:
Rails::Auth::ACL::Middleware
: support for authorizing requests using Access Control Lists (ACLs).
Documentation of these middleware and how to use them is provided below.
Rails::Auth includes a module of helper methods you can use from Rails controllers. Include them like so:
class ApplicationController < ActionController::Base
include Rails::Auth::ControllerMethods
def x509_certificate_ou
credentials[:x509].try(:ou)
end
def current_username
# Note: Rails::Auth doesn't provide a middleware to extract this, it's
# just an example of how you could use it with your own claims-based
# identity system.
credentials[:identity_claims].try(:username)
end
end
This defines the following methods:
#credentials
: obtain a HashWithIndifferentAccess containing all of the credentials that Rails::Auth has extracted using its AuthN middleware.
ACLs are the main tool Rails::Auth provides for AuthZ. ACLs use a set of route-by-route matchers to control access to particular resources.
Rails::Auth encourages the use of YAML files for storing ACL definitions,
although the use of YAML is not mandatory and the corresponding object
structure output from YAML.load
can be passed in instead. The following is
an example of an ACL definition in YAML:
---
- resources:
- method: ALL
path: /foo/bar/.*
allow_x509_subject:
ou: ponycopter
allow_claims:
groups: ["example"]
- resources:
- method: ALL
path: /_admin/?.*
allow_claims:
groups: ["admins"]
- resources:
- method: GET
path: /internal/frobnobs/.*
allow_x509_subject:
ou: frobnobber
- resources:
- method: GET
path: /
allow_all: true
An ACL consists of a list of guard expressions, each of which contains a list of resources and a set of predicates which can authorize access to those resources. Any matching predicate will authorize access to any of the resources listed for a given expression.
Resources are defined by the following constraints:
- method: The requested HTTP method, or
"ALL"
to allow any method - path: A regular expression to match the path.
\A
and\z
are added by default to the beginning and end of the regex to ensure the entire path and not a substring is matched. - host (optional): a regular expression to match the
Host:
header passed by the client. Useful if your app services traffic for more than one hostname and you'd like to restrict ACLs by host.
Once you've defined an ACL, you'll need to create a corresponding ACL object in Ruby and a middleware to authorize requests using that ACL. Add the following code anywhere you can modify the middleware chain (e.g. config.ru):
app = MyRackApp.new
acl = Rails::Auth::ACL.from_yaml(
File.read("/path/to/my/acl.yaml"),
matchers: { allow_claims: MyClaimsMatcher }
)
acl_auth = Rails::Auth::ACL::Middleware.new(app, acl: acl)
run acl_auth
You'll need to pass in a hash of predicate matchers that correspond to the
keys in the ACL. See the "X.509 Client Certificates" section below for how
to configure the middleware for allow_x509_subject
.
The following predicate matchers are built-in and always available:
- allow_all: (options:
true
orfalse
) always allow requests to the given resources (so long astrue
is passed as the option)
Custom predicate matchers can be any Ruby class that responds to the #match
method. The full Rack environment is passed to #match
. The corresponding
object from the ACL definition is passed to the class's #initialize
method.
Here is an example of a simple custom predicate matcher:
class MyClaimsMatcher
def initialize(options)
@options = options
end
def match(env)
claims = Rails::Auth.credentials(env)["claims"]
return false unless credential
@options["groups"].any? { |group| claims["groups"].include?(group) }
end
end
Add an Rails::Auth::X509::Middleware
object to your Rack middleware chain to
verify X.509 client certificates (in e.g. config.ru):
app = MyRackApp.new
acl = Rails::Auth::ACL.from_yaml(
File.read("/path/to/my/acl.yaml")
matchers: { allow_x509_subject: Rails::Auth::X509::Matcher }
)
acl_auth = Rails::Auth::ACL::Middleware.new(app, acl: acl)
x509_auth = Rails::Auth::X509::Middleware.new(
acl_auth,
ca_file: "/path/to/my/cabundle.pem"
cert_filters: { 'X-SSL-Client-Cert' => :pem },
require_cert: true
)
run x509_auth
The constructor takes the following parameters:
- app: the next Rack middleware in the chain. You'll likely want to use
an
Rails::Auth::ACL::Middleware
instance as the next middleware in the chain. - ca_file: Path to the certificate authority (CA) bundle with which to authenticate clients. This will typically be the certificates for the internal CA(s) you use to issue X.509 certificates to internal services, as opposed to commercial CAs typically used by browsers. Client certificates will be ignored unless they can be verified by one of the CAs in this bundle.
- cert_filters: A
Hash
which configures how client certificates are extracted from the Rack environment. You will need to configure your web server to include the certificate in the Rack environment. See notes below for more details. - require_cert: (default
false
) require a valid client cert in order for the request to complete. This disallows access to your app from any clients who do not have a valid client certificate. When enabled, the middleware will raise theRails::Auth::X509::CertificateVerifyFailed
exception.
When creating Rails::Auth::ACL::Middleware
, make sure to pass in
matchers: { allow_x509_subject: Rails::Auth::X509::Matcher }
in order to use
this predicate in your ACLs. This predicate matcher is not enabled by default.
For client certs to work, you will need to configure your web server to include
them in your Rack environment, and also configure cert_filters
correctly to
filter and process them from the Rack environment.
For example, if you're using nginx + Passenger, you'll need to add something like the following to your nginx configuration:
passenger_set_cgi_param X-SSL-Client-Cert $ssl_client_raw_cert;
Once the client certificate is in the Rack environment in some form, you'll
need to configure a filter object which can convert it from its Rack
environment form into an OpenSSL::X509::Certificate
instance. There are
two built in filters you can reference as symbols to do this:
:pem
: parses certificates from the Privacy Enhanced Mail format:java
: convertssun.security.x509.X509CertImpl
object instances
The cert_filters
parameter is a mapping of Rack environment names to
corresponding filters:
cert_filters: { 'X-SSL-Client-Cert' => :pem }
In addition to these symbols, a filter can be any object that responds to the
#call
method, such as a Proc
. The following filter will parse PEM
certificates:
cert_filters: { 'X-SSL-Client-Cert' => proc { |pem| OpenSSL::X509::Certificate.new(pem) } }
When certificates are recognized and verified, a Rails::Auth::X509::Certificate
object will be added to the Rack environment under env["rails-auth.credentials"]["x509"]
.
This middleware will never add any certificate to the environment's credentials
that hasn't been verified against the configured CA bundle.
When an authorization error occurs, the Rails::Auth::NotAuthorizedError
exception is raised up the middleware chain. However, it's likely you would
prefer to show an error page than have an unhandled exception.
You can write your own middleware that catches Rails::Auth::NotAuthorizedError
if you'd like. However, this library includes two middleware for rescuing this
exception for you and displaying an error page.
This middleware displays a detailed error page intended to help debug authorization errors:
Please be aware this middleware leaks information about your ACL to a potential attacker.
Make sure you're ok with that information being public before using it. If you would like
to avoid leaking that information, see Rails::Auth::ErrorPage::Middleware
below.
app = MyRackApp.new
acl = Rails::Auth::ACL.from_yaml(
File.read("/path/to/my/acl.yaml")
matchers: { allow_x509_subject: Rails::Auth::X509::Matcher }
)
acl_auth = Rails::Auth::ACL::Middleware.new(app, acl: acl)
x509_auth = Rails::Auth::X509::Middleware.new(
acl_auth,
ca_file: "/path/to/my/cabundle.pem"
cert_filters: { 'X-SSL-Client-Cert' => :pem },
require_cert: true
)
error_page = Rails::Auth::ErrorPage::Middleware.new(x509_auth, acl: acl)
run error_page
This middleware catches Rails::Auth::NotAuthorizedError
and renders a given static HTML file,
e.g. the 403.html file which ships with Rails. It will not give detailed errors to your users,
but it also won't leak information to an attacker.
app = MyRackApp.new
acl = Rails::Auth::ACL.from_yaml(
File.read("/path/to/my/acl.yaml")
matchers: { allow_x509_subject: Rails::Auth::X509::Matcher }
)
acl_auth = Rails::Auth::ACL::Middleware.new(app, acl: acl)
x509_auth = Rails::Auth::X509::Middleware.new(
acl_auth,
ca_file: "/path/to/my/cabundle.pem"
cert_filters: { 'X-SSL-Client-Cert' => :pem },
require_cert: true
)
error_page = Rails::Auth::ErrorPage::Middleware.new(
x509_auth,
page_body: File.read("path/to/403.html")
)
run error_page
Rails::Auth includes built-in matchers that allow you to write tests for your ACLs to ensure they have the behavior you expect.
To enable RSpec support, require the following:
require "rails/auth/rspec"
Below is an example of how to write an ACL spec:
RSpec.describe "example_acl.yml", acl_spec: true do
let(:example_credentials) { x509_certificate_hash(ou: "ponycopter") }
subject do
Rails::Auth::ACL.from_yaml(
File.read("/path/to/example_acl.yml"),
matchers: { allow_x509_subject: Rails::Auth::X509::Matcher } # add your custom matchers too
)
end
describe "/path/to/resource" do
it { is_expected.to permit get_request(certificates: example_credentials) }
it { is_expected.not_to permit get_request) }
end
end
The following helper methods are available:
x509_certificate
,x509_certificate_hash
: create instance doubles of Rails::Auth::X509::Certificate- Request builders: The following methods build requests from the described path:
get_request
head_request
put_request
post_request
delete_request
options_request
path_request
link_request
unlink_request
The following matchers are available:
allow_request
: allows a request with the given Rack environment, and optional credentials
Rails::Auth::Credentials::InjectorMiddleware
allows you to arbitrarily override
the credentials in the Rack environment. This is useful for development and testing
purposes when you'd like to simulate certain credentials being in place without
e.g. actually configuring unique X.509 certificates for each scenario.
Below is an example of how you might configure Rails' config/environments/development.rb
and config/environments/test.rb
files to use the middleware:
Rails.application.configure do
# Settings specified here will take precedence over those in config/application.rb.
[...]
# Simulate being "joeadmin" when used in development
config.middleware.insert_before Rails::Auth::ACL::Middleware,
Rails::Auth::Credentials::InjectorMiddleware,
"user_token" => MyCredential.new(
username: "joeadmin",
claims: %w(admins),
)
end
Rails.application.configure do
# Settings specified here will take precedence over those in config/application.rb.
[...]
# Support configurable test credentials for simulating various scenarios in tests
config.x.test.credentials = {}
config.middleware.insert_before Rails::Auth::ACL::Middleware,
Rails::Auth::Credentials::InjectorMiddleware,
config.x.test.credentials
end
Now in your tests, you can change Rails.configuration.x.test.credentials
and it
will be injected into the Rack environment.
Any contributors to the master rails-auth repository must sign the Individual Contributor License Agreement (CLA). It's a short form that covers our bases and makes sure you're eligible to contribute.
When you have a change you'd like to see in the master repository, send a pull request. Before we merge your request, we'll make sure you're in the list of people who have signed a CLA.
Copyright (c) 2016 Square Inc. Distributed under the Apache 2.0 License. See LICENSE file for further details.