Project

General

Profile

Actions

Feature #15061

closed

Redirect users to log in with correct federated identity

Added by Peter Amstutz about 5 years ago. Updated almost 5 years ago.

Status:
Resolved
Priority:
Normal
Assigned To:
Category:
-
Target version:
Story points:
5.0

Description

New design, based on discussion Apr 17

Existing user:

  1. When a user logs into a home cluster, make ajax calls to known federated cluster login endpoints to say "this browser prefers cluster X as home" which returns a cookie.
  2. User arrives at a federated cluster. The login button takes user to login endpoint on API server. User can also choose a specific home cluster for log in.
  3. Request to login endpoint includes cookie saying user prefers cluster X, which can be overridden with an explicit query parameter that indicates a home cluster
  4. API server redirects login to proper home cluster

Migrating to remote account (because you have an existing account or created one by accident)

  1. User logs in to local account
  2. User selects "migrate account" and selects home cluster X
  3. Current token is saved in local session storage and user is redirected to log into cluster X
  4. User is redirected back to cluster with salted token from cluster X
  5. Everything owned by local user is reassigned to remote user and local user is marked "redirect_to_user_uuid" to the remote
  6. User now uses token as remote user

Logging into a redirected account, no cookies or other hints telling us which cluster to use:

  1. User logs in to local account
  2. After log in, we realize redirected user is not local
  3. Display a page that says "this has been migrated to a remote account, must log in at home cluster"
  4. Redirect to home cluster
  5. User logs in a second time (Existing user flow)

Scripted user migration

  1. Admin generates list of email address and/or usernames assigned to each home cluster
  2. Get list of users on each cluster
  3. If there are user records with the email address or username that doesn't match the assigned home cluster, perform account merge
  4. Need to tweak "merge" endpoint for admin variant which accepts "old_user_uuid" and "new_user_uuid" instead of using current token / "new_user_token"

Files

users.csv (9.36 KB) users.csv Peter Amstutz, 05/08/2019 06:23 PM

Subtasks 7 (0 open7 closed)

Task #15089: Detailed designResolvedPeter Amstutz04/18/2019Actions
Task #15140: API server updatesResolvedPeter Amstutz04/18/2019Actions
Task #15141: Workbench2 updatesResolvedEric Biagiotti04/18/2019Actions
Task #15142: Review 15061-fed-loginResolvedPeter Amstutz04/18/2019Actions
Task #15208: Migration scriptResolvedPeter Amstutz04/18/2019Actions
Task #15219: Review 15061-fed-migrateResolvedPeter Amstutz04/18/2019Actions
Task #15221: Review workbench2 updatesResolvedPeter Amstutz04/18/2019Actions

Related issues

Related to Arvados - Idea #15088: [Workbench2] Replicate Workbench1 merge account featureResolvedEric Biagiotti05/02/2019Actions
Related to Arvados - Feature #15064: [Workbench2] Use long-lived cookies to improve login chooser defaultsResolvedPeter Amstutz05/14/2019Actions
Related to Arvados - Feature #15531: [SDK] Migrate federation to central LoginClusterResolvedPeter Amstutz09/23/2019Actions
Actions #2

Updated by Peter Amstutz about 5 years ago

  • Description updated (diff)
Actions #3

Updated by Peter Amstutz about 5 years ago

  • Description updated (diff)
Actions #4

Updated by Peter Amstutz about 5 years ago

  • Description updated (diff)
Actions #5

Updated by Peter Amstutz about 5 years ago

  • Description updated (diff)
Actions #6

Updated by Peter Amstutz about 5 years ago

  • Description updated (diff)
  • Story points set to 4.0
Actions #7

Updated by Peter Amstutz about 5 years ago

  • Target version changed from To Be Groomed to Arvados Future Sprints
Actions #8

Updated by Tom Clegg about 5 years ago

  • Related to Feature #15064: [Workbench2] Use long-lived cookies to improve login chooser defaults added
Actions #9

Updated by Tom Morris about 5 years ago

  • Target version changed from Arvados Future Sprints to 2019-04-24 Sprint
Actions #10

Updated by Tom Morris about 5 years ago

  • Related to Idea #15088: [Workbench2] Replicate Workbench1 merge account feature added
Actions #11

Updated by Tom Morris about 5 years ago

  • Description updated (diff)
Actions #12

Updated by Tom Morris about 5 years ago

  • Description updated (diff)
  • Target version changed from 2019-04-24 Sprint to To Be Groomed
Actions #13

Updated by Tom Morris about 5 years ago

  • Target version changed from To Be Groomed to 2019-04-24 Sprint
Actions #14

Updated by Peter Amstutz about 5 years ago

  1. When a user logs in / creates an account on cluster A (user_sessions_controller#create) send a simple federated request (like /arvados/v1/user/current) with a salted token to all clusters in the federation on behalf of the user. This will cause the remote clusters to cache a record of the remote user.
    1. Slightly awkward because we'd like controller to do this, but controller isn't hooked into the login process
    2. Controller sees the redirect from SSO back to API with the oauth2 one-off joshid auth token
    3. Then it sees the redirect response (with the API token)
    4. So controller could recognize the redirect response, intercept the token and spin off a thread to contact the other clusters
  2. When a user logs in / creates an account on cluster B and the account is inactive, check if there are any cluster A user records with the same email address.
    1. The options here seem to be to either make a special case in the security model ("permitted to see user accounts with same email address as the current user account") or a special case dedicated API call that bypasses the security model "/arvados/v1/users/same_email_as_me"
  3. Using whichever method is decided on, Workbench gets the user list of same email addresses (or other "probably same user" criteria) and presents the user with options to migrate accounts
    1. Sees that there is a pre-populated record from cluster A
    2. Prompt the user to migrate the (newly created) cluster B user to the cluster A user instead.
    3. This should come up automatically when the user is inactive, otherwise it is accessible through a menu item
    4. User is given a button to push that says "I meant to log in as cluster A user"
    5. This stores the token in session storage and sends the user to perform the login process again at cluster A
  4. User logs at cluster A and is redirected back with a token salted for cluster B.
    1. Return to the "merge/migrate account" page with the new token, and the old token in session storage
    2. Give the user a button that says "finish logging in" which actually uses the merge API to migrate the account (setting redirect_to_user_uuid to the cluster A user) the user finishes logging in.
    3. Set a parameter in local storage that indicates the user should log in using cluster A, this should make the UI select cluster A by default in the future.
    4. The user ends up at workbench B with a salted token.

Variant: user chooses to attempt to log as a local user to cluster B again (maybe they are on a different computer) but meant to log in as federated user

  1. User is authorized as existing user on B, which now has redirect_to_user_uuid set to the federated user on A
    1. We know the (remote) user she intended to log in as
    2. Issue a local token for that user? Authorizes as remote user at that cluster without communicating to A (home). Can't be used at federates, though (multi-site search won't work).

Questions to decide:

  • What is the API for getting the list of users with same email address?
  • What happens when you log into a cluster and the local user has redirect_to_user_uuid to a remote user?
Actions #15

Updated by Peter Amstutz about 5 years ago

  • Description updated (diff)
Actions #16

Updated by Tom Morris about 5 years ago

  • Target version changed from 2019-04-24 Sprint to To Be Groomed
  • Story points deleted (4.0)
Actions #17

Updated by Peter Amstutz about 5 years ago

  • Description updated (diff)
  • Target version changed from To Be Groomed to 2019-04-24 Sprint
  • Story points set to 4.0
Actions #18

Updated by Tom Morris about 5 years ago

  • Target version changed from 2019-04-24 Sprint to Arvados Future Sprints
  • Story points changed from 4.0 to 5.0
Actions #19

Updated by Tom Morris about 5 years ago

  • Target version changed from Arvados Future Sprints to 2019-05-08 Sprint
Actions #20

Updated by Peter Amstutz about 5 years ago

  • Assigned To set to Peter Amstutz
Actions #21

Updated by Tom Morris about 5 years ago

  • Related to deleted (Feature #15064: [Workbench2] Use long-lived cookies to improve login chooser defaults)
Actions #22

Updated by Tom Morris about 5 years ago

  • Related to Feature #15064: [Workbench2] Use long-lived cookies to improve login chooser defaults added
Actions #23

Updated by Tom Morris about 5 years ago

How do we handle the case where a user's home cluster is decommissioned? Do we need a migration utility to migrate accounts to a different cluster?

Actions #24

Updated by Peter Amstutz about 5 years ago

Tom Morris wrote:

How do we handle the case where a user's home cluster is decommissioned? Do we need a migration utility to migrate accounts to a different cluster?

I don't know, but that's out of scope for this ticket. We should discuss it in a future engineering design meeting.

Actions #25

Updated by Peter Amstutz almost 5 years ago

  • Status changed from New to In Progress
Actions #26

Updated by Peter Amstutz almost 5 years ago

Setting cookies (notes)

https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS?redirectlocale=en-US&redirectslug=HTTP_access_control#Requests_with_credentials

  1. API server publishes CORS header "Access-Control-Allow-Credentials: true" (this enables cross-domain cookies)
  2. API server adds a "browserhome" endpoint
  3. To set browser home, make ajax call to https://api/browserhome?set=xyzab, withCredentials = true, this responds with "Set-Cookie: browserhome=xyzab" (should this be GET or POST?)
  4. To get browser home, make ajax call to https://api/browserhome, withCredentials = true, this will read the Cookie and send it back

(I don't think we can use document.cookie because the wb2 document is served on a different domain from the API server.)

Actions #27

Updated by Peter Amstutz almost 5 years ago

Need to be able to migrate a remote user to a local user. This means reassigning ownership, permissions etc of the remote user to the local user.

The "redirect_to_user_uuid" feature only applies during the login process. However, for remote users, there's no login process on the (local) cluster. The user just shows up with a remote token.

This seems like a possible use case for merge with "redirect_to_new_user=false". The proposed behavior is to reassign ownership from the remote user to the local user except for things like API tokens and ssh keys.

However remote user account will still exist, and could be logged into again, which would be confusing. We could deactivate the remote user (but they could be reactivated, depending on the configuration). We could set "redirect_to_user_uuid" on the remote user record, although we don't actually want to redirect anything, this would effectively blacklist the remote user (and the error messages could tell you which user you're supposed to log in as).

Actions #28

Updated by Peter Amstutz almost 5 years ago

  • Target version changed from 2019-05-08 Sprint to 2019-05-22 Sprint
Actions #29

Updated by Peter Amstutz almost 5 years ago

  • Target version changed from 2019-05-22 Sprint to 2019-05-08 Sprint

Peter Amstutz wrote:

Need to be able to migrate a remote user to a local user. This means reassigning ownership, permissions etc of the remote user to the local user.

The "redirect_to_user_uuid" feature only applies during the login process. However, for remote users, there's no login process on the (local) cluster. The user just shows up with a remote token.

This seems like a possible use case for merge with "redirect_to_new_user=false". The proposed behavior is to reassign ownership from the remote user to the local user except for things like API tokens and ssh keys.

However remote user account will still exist, and could be logged into again, which would be confusing. We could deactivate the remote user (but they could be reactivated, depending on the configuration). We could set "redirect_to_user_uuid" on the remote user record, although we don't actually want to redirect anything, this would effectively blacklist the remote user (and the error messages could tell you which user you're supposed to log in as).

Not doing this on this ticket

Actions #30

Updated by Peter Amstutz almost 5 years ago

  • Target version changed from 2019-05-08 Sprint to 2019-05-22 Sprint
Actions #32

Updated by Peter Amstutz almost 5 years ago

Actions #33

Updated by Lucas Di Pentima almost 5 years ago

15061-fed-login LGTM.

The only observation is that the sass-rails gem used give deprecation warnings while I was doing the rails5 upgrade, and there is a sassc-rails gem that is a drop-in replacement. It seems that they made a release wrapping sassc-rails, see:

So maybe we want to directly ask for sassc-rails instead?

Actions #34

Updated by Peter Amstutz almost 5 years ago

Lucas Di Pentima wrote:

15061-fed-login LGTM.

The only observation is that the sass-rails gem used give deprecation warnings while I was doing the rails5 upgrade, and there is a sassc-rails gem that is a drop-in replacement. It seems that they made a release wrapping sassc-rails, see:

So maybe we want to directly ask for sassc-rails instead?

It is working now, so I don't want to mess with it.

Actions #37

Updated by Peter Amstutz almost 5 years ago

15061-fed-migrate @ 05bfa9a17e8d46d9a388fea130b7df33b7aa15c6

User migration script and documentation.

Actions #38

Updated by Lucas Di Pentima almost 5 years ago

Still unable to run the script against my 2-arvbox federation because of SSL cert validation issues. Nevertheless, here're some comments:

  • On documentation
    • Missing “to” in sentence: A federated user account is associated with a specific “home” cluster, and can be used access other clusters in the federation that trust the home cluster.
    • ‘at-sign‘ char in: “...for each user. In this example, person_b@example.com is assigned…"
  • On arv-federation-migrate
    • I think some kind of arguments help messages would be very beneficial.
    • The link to the documentation on the parser description is not pointing to the correct page
    • Should it do an initial check to see that remote_hosts settings are equal on every cluster defined on tokens.csv and that all the remote_hosts are listed on the file? I think it would be useful to detect misconfigurations and omissions on the tokens file.
    • Is line 115 necessary to do the migration call? Or is it just to confirm that the salted token works?
Actions #39

Updated by Peter Amstutz almost 5 years ago

Lucas Di Pentima wrote:

Still unable to run the script against my 2-arvbox federation because of SSL cert validation issues. Nevertheless, here're some comments:

  • On documentation
    • Missing “to” in sentence: A federated user account is associated with a specific “home” cluster, and can be used access other clusters in the federation that trust the home cluster.

Fixed.

  • ‘at-sign‘ char in: “...for each user. In this example, person_b@example.com is assigned…"

Fixed.

  • On arv-federation-migrate
    • I think some kind of arguments help messages would be very beneficial.

I added some help text. Let me know if you think it should say more.

  • The link to the documentation on the parser description is not pointing to the correct page

Fixed.

  • Should it do an initial check to see that remote_hosts settings are equal on every cluster defined on tokens.csv and that all the remote_hosts are listed on the file? I think it would be useful to detect misconfigurations and omissions on the tokens file.

Now it checks for well-connectedness among the clusters listed in the tokens file.

  • Is line 115 necessary to do the migration call? Or is it just to confirm that the salted token works?

It ensures that the remote user is listed so that it can be migrated to (otherwise it may fail if there is no user record).

Actions #41

Updated by Lucas Di Pentima almost 5 years ago

Still trying to manually test the script locally. It checked the --check argument against 4xphq & c97qk but didn't want to try the others arguments against those live clusters. In the meantime I have this comment:

  • The --check argument ignores the case where a federated cluster is listed on remoteHosts, but is missing on the tokens file. Mentioning this just in case it isn’t what we want.
Actions #42

Updated by Peter Amstutz almost 5 years ago

Lucas Di Pentima wrote:

Still trying to manually test the script locally. It checked the --check argument against 4xphq & c97qk but didn't want to try the others arguments against those live clusters. In the meantime I have this comment:

  • The --check argument ignores the case where a federated cluster is listed on remoteHosts, but is missing on the tokens file. Mentioning this just in case it isn’t what we want.

A cluster could be part of multiple federations, the goal here is to synchronize accounts among a single well-connected federation.

But it might make sense to generate a warning in that case, not a fatal error.

Actions #44

Updated by Lucas Di Pentima almost 5 years ago

Finally got the test env working!

  • Maybe it would be convenient to avoid accessing cached discovery document, it happened to me that one of the clusters’ discovery docs was cached with a misconfigured remoteHosts and the --check option was reporting something that wasn’t true.
  • When generating the report, the admin users were included. From what I’m reading at https://dev.arvados.org/issues/12995#note-19, it may not be desirable to allow admin user migrations because admin access will be lost.
Actions #45

Updated by Peter Amstutz almost 5 years ago

Lucas Di Pentima wrote:

Finally got the test env working!

  • Maybe it would be convenient to avoid accessing cached discovery document, it happened to me that one of the clusters’ discovery docs was cached with a misconfigured remoteHosts and the --check option was reporting something that wasn’t true.

Ah, you mean the cached discovery document use by the arvados sdk (there is was a similar problem in workbench2). Will fix.

  • When generating the report, the admin users were included. From what I’m reading at https://dev.arvados.org/issues/12995#note-19, it may not be desirable to allow admin user migrations because admin access will be lost.

The report needs to include both users because when you fill in the "home cluster" column it actually goes down the list and finds the user uuid in the same document that corresponds to that email address and cluster in order to do the merge.

But it could check for the case where the 'old' account is admin and print an error unless both the target is also admin.

Actions #46

Updated by Lucas Di Pentima almost 5 years ago

Additional comments:

  • If the admin makes a mistake when writing the uuid prefix when assigning a home to some account, the error message is for example "No user listed to migrate x1wjp-tpzed-2ujf6av44sres3t to xfp4l”, when the correct prefix was xfp5l, this can lead to confusion when dealing with big lists.
  • If re-running the migration with the same report (or some partial changes), there’s an api error that could be catched and reported without exiting (maybe the admin forgot to call a new report and is making a correction to the last one): arvados.errors.ApiError: <HttpError 422 when requesting https://172.17.0.3:8000/arvados/v1/users/merge?new_owner_uuid=xfp5l-j7d0g-pk63hj4cf18bus7&old_user_uuid=xfp5l-tpzed-boyvp0lkap9uvr9&redirect_to_new_user=true&alt=json&new_user_uuid=x1wjp-tpzed-c8oreg11zbl14xt returned "User in old_user_uuid not found">
  • It seems to be some kind of bug related to the order of which the tokens are listed on the tokens.csv file. Let’s suppose I have cluster1 & cluster2 on the federation, and a account on both. I’m able to log in to both accounts on both clusters without issues. Let’s suppose on the tokens.csv file I have cluster1 at the 1st line, cluster2 at the 2nd. Then, I get the report with both accounts listed. If I try to migrate cluster1’s account to cluster2, I get the following error: arvados.errors.ApiError: <HttpError 401 when requesting https://172.17.0.2:8000/arvados/v1/users/current?alt=json returned "Not logged in”> If I try the other way around, it works. Also, if I change the tokens order, I can do what I tried first.
Actions #47

Updated by Peter Amstutz almost 5 years ago

I did a big code cleanup and more validity checks and error handling.

15061-fed-migrate @ 36a33fe214b13cbe9388df92fc7bf83c81f42d11

Lucas Di Pentima wrote:

Additional comments:

  • If the admin makes a mistake when writing the uuid prefix when assigning a home to some account, the error message is for example "No user listed to migrate x1wjp-tpzed-2ujf6av44sres3t to xfp4l”, when the correct prefix was xfp5l, this can lead to confusion when dealing with big lists.

It should now offer a more useful error.

  • If re-running the migration with the same report (or some partial changes), there’s an api error that could be catched and reported without exiting (maybe the admin forgot to call a new report and is making a correction to the last one): arvados.errors.ApiError: <HttpError 422 when requesting https://172.17.0.3:8000/arvados/v1/users/merge?new_owner_uuid=xfp5l-j7d0g-pk63hj4cf18bus7&old_user_uuid=xfp5l-tpzed-boyvp0lkap9uvr9&redirect_to_new_user=true&alt=json&new_user_uuid=x1wjp-tpzed-c8oreg11zbl14xt returned "User in old_user_uuid not found">

This should be caught and produce a better error suggesting maybe the user was migrated already.

  • It seems to be some kind of bug related to the order of which the tokens are listed on the tokens.csv file. Let’s suppose I have cluster1 & cluster2 on the federation, and a account on both. I’m able to log in to both accounts on both clusters without issues. Let’s suppose on the tokens.csv file I have cluster1 at the 1st line, cluster2 at the 2nd. Then, I get the report with both accounts listed. If I try to migrate cluster1’s account to cluster2, I get the following error: arvados.errors.ApiError: <HttpError 401 when requesting https://172.17.0.2:8000/arvados/v1/users/current?alt=json returned "Not logged in”> If I try the other way around, it works. Also, if I change the tokens order, I can do what I tried first.

Yea I think what happened is that I was reusing the variable 'arv' and not reassigning it and so it would either work by accident or make an API call on the wrong cluster.

Actions #48

Updated by Lucas Di Pentima almost 5 years ago

This LGTM, thanks!

Actions #49

Updated by Peter Amstutz almost 5 years ago

Todo on api server redirect page (based on feedback / testing)

  • email of the user being redirected to
  • cancel button
Actions #50

Updated by Peter Amstutz almost 5 years ago

Peter Amstutz wrote:

Todo on api server redirect page (based on feedback / testing)

  • email of the user being redirected to
  • cancel button

Added this @ d8622da3183d2028b052e5c622635b96b6d4aa23

Actions #51

Updated by Peter Amstutz almost 5 years ago

SSO server tweak. Fixes the following bug:

  1. User goes to link account
  2. Users logs in with a different account
  3. User hits cancel
  4. User starts link account again
  5. User is automatically logged in with existing SSO session instead of

Solution in this branch is to give rails sessions a 1 minute timeout.

15061-session-timeout @ commit:2b71ad232495ece0403b5f717a561a38d6b8d0c6

Actions #52

Updated by Lucas Di Pentima almost 5 years ago

15061-session-timeout LGTM. 1 minute expiration time seems like a good enough middle ground.

Actions #53

Updated by Tom Morris almost 5 years ago

  • Target version changed from 2019-05-22 Sprint to 2019-06-05 Sprint
Actions #54

Updated by Peter Amstutz almost 5 years ago

  • Status changed from In Progress to Resolved
Actions #55

Updated by Tom Morris over 4 years ago

  • Related to Feature #15531: [SDK] Migrate federation to central LoginCluster added
Actions

Also available in: Atom PDF