Layer7 API Management

 View Only

OpenSSO IAM Integration 

Nov 13, 2014 02:53 PM

As the entry point to an organization's services, XML, SOA and API gateways are responsible for controlling access. This typically involves authentication and authorization against a user directory (LDAP). However, it is often the case that identity and access management (IAM) is handled by some third-party access management product. One compelling reason for this is so that access control to both Web and Web services traffic is handled in one centrally administered location.

One popular IAM product is OpenSSO, formerly called Sun Java System Access Manager (JSAM). As part of the release of version 8.0, OpenSSO has exposed a number of its features as both REST and SOAP services called Identity Services. In this tutorial we'll show how integration between CA API Gateways and OpenSSO's IAM layer is easier and more flexible than ever, using these newly available services.

A typical idiom when interacting with any IAM product involves two steps:

  1. Authentication – This step involves sending credentials to the IAM layer - the authentication call. The response to a successful authentication call often includes some kind of single sign-on (SSO) token (e.g. Cookie) which can be used for subsequent requests.
  2. Authorization – This step checks whether a particular subject is allowed to access a given resource. This call often includes the SSO token from a successful authentication call.

Open SSO Flow Chart - Layer 7 Technologies

The goal for our policy is to follow this idiom using OpenSSO as described by the above flow chart. We will not cover OpenSSO user and resource configuration here as there is plenty of documentation for this already available.

The complete, working policy will look something like this:

Open SSO Policy - Layer 7 Technologies

Lines 3-7 set up variables that will be used in the event of an error and a SOAP fault needs to be returned. The four soapFault* context variables can be updated throughout the policy (lines 22 & 31) depending on the current step being executed so that the fault information returned is specific to the step that generated the error.

Open SSO Fault Response Properties - Layer 7 Technologies

Line 9 simply creates a variable to hold the name of the cookie issued/used by OpenSSO. This variable is used in various places throughout our policy so in the event the name of the cookie changes we just need to update this single variable.

Lines 10-13 show the types of credentials that are allowed. For this service we require that client requests include one of: HTTP Cookie, HTTP Basic or WS-Security Username Token Basic credentials, but we could add any credential type that requires a username & password in clear text.

At this point we branch our policy based on whether or not the request came in with an OpenSSO cookie. (Note that we could have branched our policy earlier by inserting the Require HTTP Cookie assertion between lines 15 and 16 and the Require HTTP Basic and Require WS-Security UsernameToken Profile assertions inside an OR statement between lines 20 and 21. However, I find that separating the credential gathering from subsequent processing easier to understand and follow.)

Lines 15-19 are executed if the incoming request contained a cookie. The only thing of note here is that we use a Regular Expression to extract only the cookie value, omitting any cookie attributes (e.g. Path, domain etc.) that may also be included.

Open SSO Regular Expression Properties - Layer 7 Technologies

This value is then saved to a variable called ssoToken for later use.

Lines 20–28 are executed if no cookie was included in the request. In this case we must call OpenSSO's authenticate method. To build this request message we can use the Set Context Variable assertion and populate it with a template request (generated using SoapUI).

Open SSO Context Variable Properties - Layer 7 Technologies

Once we have our template request, we simply populate the required values with context variables. The request.username and request.password variables are built-in variables available anytime an access control assertion that requires clear text credentials is present in policy.

Our authentication request can then be routed to the IdentityServices endpoint (Line 24). Be sure to change the Requested message source in the Request HTTP Rules tab of the routing assertion to route the authnReq message variable as opposed to the default request. Similarly, I've changed the Response message destination from the default response to authnResp.

Open SSO HTTP(s) Routing Properties - Layer 7 Technologies

Once we receive the response message, we'll evaluate it using XPath. We extract the SSO token out of the response message and save it using the same variable name as above, ssoToken.

At this point we've successfully authenticated the inbound credentials, either by using the cookie if one was present, or by authenticating directly against OpenSSO. Our final step is to authorize these credentials against a particular resource. This is what we do in lines 29-33.

We build our authorization request by once again using the Set Context Variable assertion and populating it with a template request.

Open SSO Context Variables - Layer 7 Technologies

We use the ssoToken variable we obtained earlier in policy as the subject id and another built in variable called service.defaultRoutingURL as the resource. The value of the resource must match a resource that has been configured in OpenSSO.

Once we have a complete request message we call the authorize method. Once again, but sure to modify the Request message source and Response message destination in the routing assertion to use message variables other than the default request and response. (eg. authzReq & authzResp).

We will evaluate the response using XPath again. The response to this call is quite simple. It contains a return element that's either true or false. If the response returns true, the credentials have successfully been authorized for the desired resource. In this case we simply route the Web service request to the back end for processing. In the event these credentials are not authorized a SOAP fault will be returned with the detail configured on line 31.

Open SSO Routing Properties - Layer 7 Technologies

In the Response HTTP Rules for the routing assertion that routes the original Web service request, note that we return the OpenSSO cookie in the response back to the caller so that it can be used for subsequent requests.

We now have a simple and flexible way to integrate with OpenSSO's IAM layer from the CA API Gateway directly from within policy.

Statistics
0 Favorited
2 Views
0 Files
0 Shares
0 Downloads

Tags and Keywords

Related Entries and Links

No Related Resource entered.