<div dir="ltr">I'd be more interested in the impact of not providing a user ID in the authentication response at all, but instead having a privileged call in keystone to *attempt* to lookup the user associated with a token, if one exists.<div>
<br></div><div style>Swift wouldn't be able to define ACL's by user_id, our 3-step authentication flow would have to change (GET /users/{user_id}/projects wouldn't be viable for users that don't know their own user_id)... can't think of anything else...</div>
</div><div class="gmail_extra"><br clear="all"><div><div><br></div>-Dolph</div>
<br><br><div class="gmail_quote">On Thu, Jan 31, 2013 at 12:33 PM, Adam Young <span dir="ltr"><<a href="mailto:ayoung@redhat.com" target="_blank">ayoung@redhat.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div class="im">On 01/31/2013 10:40 AM, David Chadwick wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
this is missing the whole point of federation and ABAC. We do not want to base access on unique IDs (or the lack of them) but rather on the identity attributes that users posses. Your proposal would only work if all users from the same IDP had the same set of identity attributes. But this is obviously not the case.<br>

</blockquote>
<br>
<br></div>
Nope.<br>
<br>
<br>
WHat matters is what is in the token.  The User ID is just a book-keeping tool in this case.<div class="im"><br>
<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<br>
As I said in a previous posting, a new way of thinking about authz is needed, one that is not based on the unique user IDs that Keystone assigns.<br>
</blockquote>
<br></div>
Think of it his way.  If i invite you to the Open Stack table via Federation, I am responsible for you.  The common userID is the account responsible for the actions of the ephemeral users.<br>
<br>
The token will have a set of identity attributes in it, signed by Keystone.  That is all the user needs, not a separate account in Keystone's user table.<br>
<br>
Another way of saying it is that we already have an ephemeral user construct, it is the token.<div class="im"><br>
<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<br>
For a start, when you first configure your federated OpenStack system, there wont be any users in the database and so there wont be any unique Keystone user IDs, so services wont be able to create ACLs based on them.<br>

</blockquote></div>
Not true.  There are mechanisms for pre-populateing the users, part of the install system.  You don't need to completely pull yourself up by your own bootstraps.<div class="HOEnZb"><div class="h5"><br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<br>
However, the users *do* exist, and they do have identity attributes that will be asserted by the IDPs. So the services *can* build their access controls at initialisation time, before any users are created in Keystone (I am only taking about end users not admin users which will exist). The services do this by deciding which keystone attributes (project, roles etc) they will give the users in exchange for their IDP asserted attributes via the new attribute mapping service we have built.<br>

<br>
So when a user does log in, via his IDP, a temporary user entry in Keystone is created for the session, his IDP attributes are mapped into the correct set of roles and projects (tenants), and the service gives the user the correct set of access rights. When the session is completed, the user entry will be automatically deleted from Keystone.<br>

<br>
Its clean and simple. Kristy is already building this<br>
<br>
regards<br>
<br>
David<br>
<br>
<br>
On 31/01/2013 15:29, Adam Young wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Create a user per federated source. Federated users with no unique IDs<br>
are associated with the common user account.  That account should be<br>
able to access the set of all resources that anyone in the account can<br>
have.  It should not have a password, and users should not be able to<br>
log in as that Federated user account.<br>
<br>
<br>
On 01/29/2013 07:41 AM, David Chadwick wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Hi Adam<br>
<br>
I have addressed auditability in my previous post. Misuse can still be<br>
addressed even with transient IDs and transient users, so no further<br>
comments here on that issue.<br>
<br>
In our initial implementation of FIM we did indeed create new users in<br>
Keystone for every new user arriving from an IDP. This has two<br>
negative consequences<br>
<br>
a) we cannot deal with users with transient IDs (as can be produced by<br>
Shibboleth) so we have to mandate that permanent IDs are used by all<br>
IDPs (which Shibboleth can do). Still its a (minor) limitation.<br>
<br>
b) we have a housekeeping problem of knowing when to delete old users<br>
from the user database. In our initial implementation we did not<br>
address this, so the database just keeps on growing unless manual<br>
intervention takes place. This is a tricky problem to solve. When<br>
should an entry be deleted? Time limits is not an adequate solution.<br>
My account at Kent has been active for 8 years and growing, whereas<br>
students accounts are deleted each year. Should the IDP notify<br>
Keystone every time its database is updated? Or something else?<br>
<br>
So we thought that a better option would be to only hold transient<br>
user entries in Keystone for the duration of the validity time of the<br>
identity assertion from the IdP. This solves the user management<br>
problem, as well as the rights revocation problem, since a user now<br>
only has rights for the duration of his session. (If you want active<br>
revocation in the middle of a session this is a different issue.) User<br>
management is pushed right back to the IDP, which is the right place<br>
for it. The IDP keeps its user database up to date, and only current<br>
users will be given credentials to access Keystone.<br>
<br>
As far as I can tell the only negative consequence is on a service<br>
which currently uses the user ID in its access control list. Since<br>
Keystone creates this ID automatically when a user entry is created,<br>
then the same user will have different ID for different sessions. So<br>
the user ID ACL system wont work without either<br>
<br>
a) Federated Keystone having a different way of assigning unique IDs<br>
to user entries, so that the IDs can be the same for the same user<br>
even if the entry is deleted then created again, or<br>
b) services using a different attribute type in their ACLs (one that<br>
still contains a permanent unique ID for the user).<br>
<br>
regards<br>
<br>
David<br>
<br>
<br>
On 28/01/2013 17:50, Adam Young wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
On 01/28/2013 08:20 AM, K.W.S.Siu wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Hello,<br>
<br>
When Federated Identity Management is used, the authentication<br>
statement issued by the external Identity Provider(s) may contain a<br>
temporary (or transient) identifier for the user rather than a<br>
permanent (or persistent) one. Because of this, it is not possible to<br>
always uniquely identify the user each time when federated<br>
authentication is used in Keystone (unless one of the user's identity<br>
attributes is globally unique, such as an email address). As an<br>
existing user is required to issue tokens, it is necessary to create a<br>
new user each time authentication takes place which could result in<br>
the backend storage becoming full of redundant data. As a solution to<br>
this, we propose the addition of a validity time field in the user<br>
entity which can be used to remove expired user data and allow<br>
temporary users to be created based on the ID provided by the Identity<br>
Provider. Determining the details of the new user account will be done<br>
by the proposed attribute mapping service.<br>
</blockquote>
<br>
That is a pretty important distinction.  It would potentially have<br>
impacts on Auditability.  Once you say the user object is transient, it<br>
n longer has an authority to address misuse, at which point it falls<br>
back on the organization that is Federated to Keystone. Would it be a<br>
cleaner solution to link the tokens with a single federated account, and<br>
then to use that account to create all tokens?  The tokens could have a<br>
subset of roles and access to a subset of endpoints based on the data<br>
approved by the Federated organization.  It would just be a metter of<br>
nailing down how the ephemera ids are issued.  I would almost want them<br>
to be stored in a separate table from the users, which is what the token<br>
table already is.<br>
Is it essential that we modify the user object, or are you just<br>
proposing it as a "path of least resistance?"<br>
<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<br>
At the moment we are wondering how people feel about this, and if<br>
anyone has any comments or suggestions.<br>
<br>
Many thanks,<br>
Kristy<br>
______________________________<u></u>_________________<br>
OpenStack-dev mailing list<br>
<a href="mailto:OpenStack-dev@lists.openstack.org" target="_blank">OpenStack-dev@lists.openstack.<u></u>org</a><br>
<a href="http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev" target="_blank">http://lists.openstack.org/<u></u>cgi-bin/mailman/listinfo/<u></u>openstack-dev</a><br>
</blockquote>
<br>
<br>
<br>
______________________________<u></u>_________________<br>
OpenStack-dev mailing list<br>
<a href="mailto:OpenStack-dev@lists.openstack.org" target="_blank">OpenStack-dev@lists.openstack.<u></u>org</a><br>
<a href="http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev" target="_blank">http://lists.openstack.org/<u></u>cgi-bin/mailman/listinfo/<u></u>openstack-dev</a><br>
</blockquote></blockquote>
<br>
</blockquote></blockquote>
<br>
<br>
______________________________<u></u>_________________<br>
OpenStack-dev mailing list<br>
<a href="mailto:OpenStack-dev@lists.openstack.org" target="_blank">OpenStack-dev@lists.openstack.<u></u>org</a><br>
<a href="http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev" target="_blank">http://lists.openstack.org/<u></u>cgi-bin/mailman/listinfo/<u></u>openstack-dev</a><br>
</div></div></blockquote></div><br></div>