A SAML 2.0 Service Provider Single-Sign-On Authentication library. This Plug library can be used to SAML enable a Plug/Phoenix application.
This has been used in the wild with the following Identity Providers:
- Okta
- Ping Identity
- OneLogin
- ADFS
- Nexus GO
- Shibboleth
- SimpleSAMLphp
Please send a note by DM if you have successfully used Samly
with other Identity Providers.
This library uses Erlang esaml
to provide
plug enabled routes.
# mix.exs
# v1.0.0 uses esaml v4.2 which in turn relies on cowboy 2.x
# If you need to work with cowboy 1.x, you need the following override:
# {:esaml, "~> 3.7", override: true}
defp deps() do
[
# ...
{:samly, "~> 1.0.0"},
]
end
Add Samly.Provider
to your application supervision tree.
# application.ex
children = [
# ...
{Samly.Provider, []},
]
Make the following change in your application router.
# router.ex
# Add the following scope ahead of other routes
# Keep this as a top-level scope and **do not** add
# any plugs or pipelines explicitly to this scope.
scope "/sso" do
forward "/", Samly.Router
end
Samly
needs a private key and a corresponding certificate. These are used to
sign the SAML requests when communicating with the Identity Provider. This certificate
should be made available to Samly
via config settings. It should also be made
available to the Identity Provider so it can verify the SAML signed requests.
You can create a self-signed certificate for this purpose. You can use phx.gen.cert
mix task that is available as part of Phoenix 1.4 or use openssl
directly to generate
the key and corresponding certificate.
(Check out samly_howto
README.md
for this.)
Samly
expects information about the Identity Provider including information about
its SAML endpoints in an XML file. Most Identity Providers have some way of
exporting the IdP metadata in XML form. Some may provide a web UI to export/save
the XML locally. Others may provide a URL that can be used to fetch the metadata.
For example, SimpleSAMLPhp
IdP provides a URL for the metadata. You can fetch
it using wget
.
wget --no-check-certificate -O idp1_metadata.xml https://idp1.samly:9091/simplesaml/saml2/idp/metadata.php
If you are using the SimpleSAMLPhp
administrative Web UI, login with you
admin credentials (https://idp1.samly:9091/simplesaml
). Go to the Federation
tab. At the top there will be a section titled "SAML 2.0 IdP Metadata". Click
on the Show metadata
link. Copy the metadata XML from this page and save it
in a local file (idp1_metadata.xml
for example).
Make sure to save this XML file and provide the path to the saved file in
Samly
configuration.
Samly
has the ability to support multiple Identity Providers. All IdPs that
Samly
needs to talk to must have an identifier (idp_id). This IdP id will be
used in the service provider URLs. This is how Samly
figures out which SAML
request corresponds to what IdP so that it can perform relevant validation checks
and process the requests/responses.
There are two options when it comes to how the idp_id is represented in the Service Provider SAML URLs.
In this model, the idp_id is present as a URL path segment. Here is an
example URL: https://do-good.org/sso/auth/signin/affiliates
. The idp_id
in this URL is "affiliates". If you have more than one IdP, only this last
part changes. The URLs for this model are:
Description | URL |
---|---|
Sign-in button/link in Web UI | /sso/auth/signin/affiliates |
Sign-out button/link in Web UI | /sso/auth/signout/affiliates |
SP Metadata URL | https://do-good.org/sso/sp/metadata/affiliates |
SAML Assertion Consumer Service | https://do-good.org/sso/sp/consume/affiliates |
SAML SingleLogout Service | https://do-good.org/sso/sp/logout/affiliates |
The path segment model is the default one in Samly
. If there is only one Identity Provider, use this mode.
These URL routes are automatically created based on the configuration information and the above mentioned router scope definition.
Use the Sign-in and Sign-out URLs shown above in your application's Web UI buttons/links. When the end-user clicks on these buttons/links, the HTTP
GET
request is handled bySamly
which internally does aPOST
that in turn sends the appropriate SAML request to the IdP.
In this model, the subdomain name is used as the idp_id. Here is an example URL: https://ngo.do-good.org/sso/auth/signin
. Here ngo
is the idp_id. The URLs supported by Samly
in this model look different.
Description | URL |
---|---|
Sign-in button/link in Web UI | /sso/auth/signin |
Sign-out button/link in Web UI | /sso/auth/signout |
SP Metadata URL | https://ngo.do-good.org/sso/sp/metadata |
SAML Assertion Consumer Service | https://ngo.do-good.org/sso/sp/consume |
SAML SingleLogout Service | https://ngo.do-good.org/sso/sp/logout |
Take a look at
samly_howto
- a reference/demo application on how to use this library.Make sure to use HTTPS URLs in production deployments.
The sign-in and sign-out URLs (HTTP GET) mentioned above optionally take a target_url
query parameter. Samly
will redirect the browser to these URLs upon successfuly
completing the sign-in/sign-out operations initiated from your application.
This
target_url
query parameter value must bex-www-form-urlencoded
.
# config/dev.exs
config :samly, Samly.Provider,
idp_id_from: :path_segment,
service_providers: [
%{
id: "do-good-affiliates-sp",
entity_id: "urn:do-good.org:affiliates-app",
certfile: "path/to/samly/certfile.pem",
keyfile: "path/to/samly/keyfile.pem",
#contact_name: "Affiliates Admin",
#contact_email: "[email protected]",
#org_name: "Do Good",
#org_displayname: "Goodly, No evil!",
#org_url: "https://do-good.org"
}
],
identity_providers: [
%{
id: "affiliates",
sp_id: "do-good-affiliates-sp",
base_url: "https://do-good.org/sso",
metadata_file: "idp1_metadata.xml",
#pre_session_create_pipeline: MySamlyPipeline,
#use_redirect_for_req: false,
#sign_requests: true,
#sign_metadata: true,
#signed_assertion_in_resp: true,
#signed_envelopes_in_resp: true,
#allow_idp_initiated_flow: false,
#allowed_target_urls: ["https://do-good.org"],
#nameid_format: :transient
}
]
Parameters | Description |
---|---|
idp_id_from |
(optional):path_segment or :subdomain . Default is :path_segment . |
Service Provider Parameters | |
id |
(mandatory) |
identity_id |
(optional) If omitted, the metadata URL will be used |
certfile |
(optional) This is needed when SAML requests/responses from Samly need to be signed. Make sure to set this in a production deployment. Could be omitted during development if your IDP is setup to not require signing. If that is the case, the following Identity Provider Parameters must be explicitly set to false: sign_requests , sign_metadata |
keyfile |
(optional) Similar to certfile |
contact_name |
(optional) Technical contact name for the Service Provider |
contact_email |
(optional) Technical contact email address |
org_name |
(optional) SAML Service Provider (your app) Organization name |
org_displayname |
(optional) SAML SP Organization displayname |
org_url |
(optional) Service Provider Organization web site URL |
Identity Provider Parameters | |
id |
(mandatory) This will be the idp_id in the URLs |
sp_id |
(mandatory) The service provider definition to be used with this Identity Provider definition |
base_url |
(optional) If missing Samly will use the current URL to derive this. It is better to define this in production deployment. |
metadata_file |
(mandatory) Path to the IdP metadata XML file obtained from the Identity Provider. |
pre_session_create_pipeline |
(optional) Check the customization section. |
use_redirect_for_req |
(optional) Default is false . When this is false , Samly will POST to the IdP SAML endpoints. |
sign_requests , sign_metadata |
(optional) Default is true . |
signed_assertion_in_resp , signed_envelopes_in_resp |
(optional) Default is true . When true , Samly expects the requests and responses from IdP to be signed. |
allow_idp_initiated_flow |
(optional) Default is false . IDP initiated SSO is allowed only when this is set to true . |
allowed_target_urls |
(optional) Default is [] . Samly uses this only when allow_idp_initiated_flow parameter is set to true . Make sure to set this to one or more exact URLs you want to allow (whitelist). The URL to redirect the user after completing the SSO flow is sent from IDP in auth response as relay_state . This relay_state target URL is matched against this URL list. Set the value to nil if you do not want this whitelist capability. |
nameid_format |
(optional) When specified, Samly includes the value as the NameIDPolicy element's Format attribute in the login request. Value must either be a string or one of the following atoms: :email , :x509 , :windows , :krb , :persistent , :transient . Use the string value when you need to specify a non-standard/custom nameid format supported by your IdP. |
Samly
internally maintains the authenticated SAML assertions (from LoginResponse
SAML requests).
There are two built-in state store options available - one based on ETS and the other on Plug Sessions.
The ETS store can be setup using the following configuration:
config :samly, Samly.State,
store: Samly.State.ETS,
opts: [table: :my_ets_table]
This state configuration is optional. If omitted, Samly
uses Samly.State.ETS
provider by default.
Options | Description |
---|---|
opts |
(optional) The :table option is the ETS table name for storing the assertions. This ETS table is created during the store provider initialization if it is not already present. Default is samly_assertions_table . |
Use
Samly.State.Session
provider in a clustered deployment. This provider uses the Plug Sessions to keep the authenticated SAML assertions.
This session based provider can be enabled using the following:
config :samly, Samly.State,
store: Samly.State.Session,
opts: [key: :my_assertion_key]
Options | Description |
---|---|
opts |
(optional) The :key is the name of the session key where assertion is stored. Default is :samly_assertion . |
Once authentication is completed successfully, IdP sends a "consume" SAML
request to Samly
. Samly
in-turn performs its own checks (including checking
the integrity of the "consume" request). At this point, the SAML assertion
with the authenticated user subject and attributes is available.
The subject in the SAML assertion is tracked by Samly
so that subsequent
logout/signout request, either service provider initiated or IdP initiated
would result in proper removal of the corresponding SAML assertion.
Use the Samly.get_active_assertion
function to get the SAML assertion
for the currently authenticated user. This function will return nil
if
the user is not authenticated.
Avoid using the subject in the SAML assertion in UI. Depending on how the IdP is setup, this might be a randomly generated id.
You should only rely on the user attributes in the assertion. As an application working with an IdP, you should know which attributes will be made available to your application and out of those attributes which one should be treated as the logged in userid/name. For example it could be "uid" or "email" depending on how the authentication source is setup in the IdP.
Samly
allows you to specify a Plug Pipeline if you need more control over
the authenticated user's attributes and/or do a Just-in-time user creation.
The Plug Pipeline is invoked after the user has successfully authenticated
with the IdP but before a session is created.
This is just a vanilla Plug Pipeline. The SAML assertion from
the IdP is made available in the Plug connection as a "private".
If you want to derive new attributes, create an Elixir map data (%{}
)
and update the computed
field of the SAML assertion and put it back
in the Plug connection private with Conn.put_private
call.
Here is a sample pipeline that shows this:
defmodule MySamlyPipeline do
use Plug.Builder
alias Samly.{Assertion}
plug :compute_attributes
plug :jit_provision_user
def compute_attributes(conn, _opts) do
assertion = conn.private[:samly_assertion]
first_name = Map.get(assertion.attributes, "first_name")
last_name = Map.get(assertion.attributes, "last_name")
computed = %{"full_name" => "#{first_name} #{last_name}"}
assertion = %Assertion{assertion | computed: computed}
conn
|> put_private(:samly_assertion, assertion)
# If you have an error condition:
# conn
# |> send_resp(404, "attribute mapping failed")
# |> halt()
end
def jit_provision_user(conn, _opts) do
# your user creation here ...
conn
end
end
Make this pipeline available in your config:
config :samly, Samly.Provider,
identity_providers: [
%{
# ...
pre_session_create_pipeline: MySamlyPipeline,
# ...
}
]
Take a look at the implementation of Samly.State.ETS
or Samly.State.Session
and use those as examples showing how to create your own state store (based on redis, memcached, database etc.).
Samly
initiated sign-in/sign-out requests sendRelayState
to IdP and expect to get that back. Mismatched or missingRelayState
in IdP responses to SP initiated requests will fail (with HTTP403 access_denied
).- Besides the
RelayState
, the request and responseidp_id
s must match. Reponse is rejected if they don't. Samly
makes the original request ID that an auth response corresponds to inSamly.Subject.in_response_to
field. It is the responsibility of the consuming application to use this information along with the validity period in the assertion to check for replay attacks. The consuming application should use thepre_session_create_pipeline
to perform this check. You may need a database or a distributed cache such as memcache in a clustered setup to keep track of these request IDs for their validity period to perform this check. Be aware thatin_response_to
field is not set when IDP initialized authorization flow is used.- OOTB SAML requests and responses are signed.
- Signature digest method supported:
SHA256
.Some Identity Providers may be using
SHA1
by default. Make sure to configure the IdP to useSHA256
.Samly
will reject (access_denied
) IdP responses usingSHA1
. esaml
provides additional checks such as trusted certificate verification, recipient verification among others.- By default,
Samly
signs the SAML requests it sends to the Identity Provider. It also expects the SAML reqsponses to be signed (both assertion and envelopes). If your IdP is not configured to sign, you will have to explicitly turn them off in the configuration. It is highly recommended to turn signing on in production deployments. - Encypted Assertions are supported in
Samly
. There are no explicit config settings for this. Decryption happens automatically when encrypted assertions are detected in the SAML response. - Make sure to use HTTPS URLs in production deployments.
Docker based setup of SimpleSAMLPhp
is made available
at samly_simplesaml
Git Repo.
Check out the README.md
file of this repo.
There is also a Docker based setup of Shibboleth
.
Checkout the corresponding README.md
file in samly_shibboleth
Git Repo.
Clone the samly_howto
Git Repo.
Detailed instructions on how to setup and run this application are available
in the README.md
file in this repo.
It is recommended that you use the
SamlyHowto
application to sort out any configuration issues by making that demo application work successfully with your Identity Provider (IdP) before attempting your application.This demo application supports experimentation with multiple IdPs.
If you are using samly_simplesaml
or samly_shibboleth
, the instructions
you followed there would take care of registering your Phoenix SAML Service provider
appliccation. For any other IdP, follow the instructions from the respective
IdP vendor.
access_denied {:error, :bad_recipient}
- Check the base_url
in your Samly
config setting under indentity_providers
.
access_denied {:error, :bad_audience}
- Make sure that the entity_id
in
the Samly
config setting is correct.
access_denied {:envelope, {:error, :cert_no_accepted}}
- Make sure the
Identity Provider metadata XML file you are using in the Samly
config setting
is correct and corresponds to the IdP you are attempting to talk to. You get
this error if the certificate used by the IdP to sign the SAML responses
has changed and you don't have the updated IdP metadata XML file on the Samly
end.