We are currently looking into implementing our own STS (Microsoft WIF) for authenticating our users, and in that process we have come up with a few questions that we haven’t been able to answer.

We have different kinds of users, using different kinds of applications. Each kind of user needs some special types of claims only relevant for that kind of users and the application belonging. Note that we do not control all the clients.

Let’s say that all users are authorized using simple https using username and password (.NET MVC3). A user is uniquely identified by its type, username and password (not username and password alone). So I will need to create an endpoint for each user type, to be able to differentiate between them. When a user authorize, I’ll issue a token containing a claim representing the user type. Is there an easier way for doing this? Can I avoid an endpoint for each user type (currently there are three)?

My token service can then examine the authorized users’ token and transform the claims, issuing a token containing all the users’ type specific claims. So far so good, except for the multiple endpoints I think?

If I need to have multiple endpoints, should I expose different metadata documents as well, one for each endpoint? Having one big metadata document containing a description of all claims, doesn’t make any sense since there is no application that needs all claims.

Update

Some clarifications.

Certain applications are only used by certain types of users. Not one application can be used by multiple user types.

Depending on what type of application the request is coming from, username and passwords needs to be compared for that user type. There are user stores for each type of application. That is why I need to know what application type the request is coming from. I can't resolve the type by the username and password alone.

link|improve this question

feedback

2 Answers

Based on your problem description, it sounds like you have three indepent user "repositories" (one for each user type).

So imho this would be a valid scenario for three STS or a STS with multiple endpoints.

Another way to solve this could be to distinguish the user type by the indentifier of the replying party redirecting the user to the sts. This identifier is submitted in the wtrealm parameter.

The processing sequence could look like the following:

  1. Get configuration for relying party (wtrealm) from configuration store (I'd suggest a database for your rather complex case)
  2. Validate user with username, password and user type (from relying party configuration)
  3. Add claims depending on user type or relying party specific configuration.

The datasbase/class structure for this could look similiar to this: STS with multiple user types

link|improve this answer
Interesting approach. Looks like good candidate for a solution. Can If we choose to use one endpoint, what about the metadata exposed? I does not make much sense to expose all types of claims in the metadata document, only the claims belonging to the requesting application. Or does it? – Tommy Jakobsen Nov 23 '11 at 16:06
I am not shure about the role of meta data in WIF. My understanding is that the exposed meta data is just good for automated client configuration, but I am not an expert on this. I implemented something similiar and exposed only the common claims in the meta data document, but I don't know whether this is a good solution or even valid. – Peter Nov 23 '11 at 16:31
I see. Regarding that figure of yours, and especially the table representing the claims. Is this a common way to organize claims stored in a database? It's just that I figure another table containing all the claim values, paired with a FK to a user. This seems like a very "flat" structure, and can get messy quickly, when you have many claims. Or did I miss something? Can you have a more object-oriented structure (or normalized), if you know what I mean? – Tommy Jakobsen Nov 24 '11 at 8:32
I only store the claim types in this database table. The actual claims are constructed by a claims provider class with the following signature: IEnumerable<Claim> CreateClaims(IClaimsPrincipal principal, string claimType). This claims provider fetches the claim values (depending on the claim type) from the user record in the database. – Peter Nov 24 '11 at 14:33
Interesting approach Peter. Can you give me some concrete example of claims and maybe even show how they are stored? I imagine the provider class is some sort of a repository querying a database for the claim values? – Tommy Jakobsen Nov 24 '11 at 23:16
feedback

Need some more information to answer:

Are certain applications only used by certain types of users? Or can any user type access any application? If the former, you can configure the STS for that application to pass that user type as a claim. Each application can be configured to have its own subset of claims.

Where is the user type derived from? If from a repository, could you not simply construct a claim for it?

Update:

@Peter's solution should work.

Wrt. the 3 STS vs. 3 endpoints,

Many STS - can use same standard endpoint with different "code-behind". Would still work if you migrated to an out-the box solution . Extra work for certificate renewals.

One STS - custom endpoints won't be able to be migrated. Only one STS to update for certificate renewals.

Metadata - given that it can be generated dynamically, doesn't really matter. Refer Generating Federation Metadata Dynamically.

link|improve this answer
I updated the question with some clarifications. Does it make more sense to you now? – Tommy Jakobsen Nov 23 '11 at 8:57
Thanks for your thoughts on Peters solution, and thank you for the link to generating metadata dynamically. – Tommy Jakobsen Nov 24 '11 at 8:33
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.