1 # Copyright (C) The Arvados Authors. All rights reserved.
3 # SPDX-License-Identifier: AGPL-3.0
5 require 'can_be_an_owner'
7 class User < ArvadosModel
10 include CommonApiTemplate
12 extend CurrentApiClient
14 serialize :prefs, Hash
15 has_many :api_client_authorizations
18 with: /\A[A-Za-z][A-Za-z0-9]*\z/,
19 message: "must begin with a letter and contain only alphanumerics",
23 validate :must_unsetup_to_deactivate
24 validate :identity_url_nil_if_empty
25 before_update :prevent_privilege_escalation
26 before_update :prevent_inactive_admin
27 before_update :prevent_nonadmin_system_root
28 before_update :verify_repositories_empty, :if => Proc.new {
29 username.nil? and username_changed?
31 after_update :setup_on_activate
33 before_create :check_auto_admin
34 before_create :set_initial_username, :if => Proc.new {
35 username.nil? and email
37 after_create :after_ownership_change
38 after_create :setup_on_activate
39 after_create :add_system_group_permission_link
40 after_create :auto_setup_new_user, :if => Proc.new {
41 Rails.configuration.Users.AutoSetupNewUsers and
42 (uuid != system_user_uuid) and
43 (uuid != anonymous_user_uuid) and
44 (uuid[0..4] == Rails.configuration.ClusterID)
46 after_create :send_admin_notifications
48 before_update :before_ownership_change
49 after_update :after_ownership_change
50 after_update :send_profile_created_notification
51 after_update :sync_repository_names, :if => Proc.new {
52 (uuid != system_user_uuid) and
53 saved_change_to_username? and
54 (not username_before_last_save.nil?)
56 before_destroy :clear_permissions
57 after_destroy :remove_self_from_permissions
59 has_many :authorized_keys, :foreign_key => :authorized_user_uuid, :primary_key => :uuid
60 has_many :repositories, foreign_key: :owner_uuid, primary_key: :uuid
62 default_scope { where('redirect_to_user_uuid is null') }
64 api_accessible :user, extend: :common do |t|
80 ALL_PERMISSIONS = {read: true, write: true, manage: true}
82 # Map numeric permission levels (see lib/create_permission_view.sql)
83 # back to read/write/manage flags.
87 {read: true, write: true},
88 {read: true, write: true, manage: true}]
98 "#{first_name} #{last_name}".strip
103 Rails.configuration.Users.NewUsersAreActive ||
104 self.groups_i_can(:read).select { |x| x.match(/-f+$/) }.first)
107 def groups_i_can(verb)
108 my_groups = self.group_permissions(VAL_FOR_PERM[verb]).keys
110 my_groups << anonymous_group_uuid
116 actions.each do |action, target|
118 if target.respond_to? :uuid
119 target_uuid = target.uuid
122 target = ArvadosModel.find_by_uuid(target_uuid)
125 next if target_uuid == self.uuid
127 if action == :write && target && !target.new_record? &&
128 target.respond_to?(:frozen_by_uuid) &&
129 target.frozen_by_uuid_was
130 # Just an optimization to skip the PERMISSION_VIEW and
131 # FrozenGroup queries below
135 target_owner_uuid = target.owner_uuid if target.respond_to? :owner_uuid
137 user_uuids_subquery = USER_UUIDS_SUBQUERY_TEMPLATE % {user: "$1", perm_level: "$3"}
139 if !is_admin && !ActiveRecord::Base.connection.
141 SELECT 1 FROM #{PERMISSION_VIEW}
142 WHERE user_uuid in (#{user_uuids_subquery}) and
143 ((target_uuid = $2 and perm_level >= $3)
144 or (target_uuid = $4 and perm_level >= $3 and traverse_owned))
146 # "name" arg is a query label that appears in logs:
150 [nil, VAL_FOR_PERM[action]],
151 [nil, target_owner_uuid]]
157 if FrozenGroup.where(uuid: [target_uuid, target_owner_uuid]).any?
158 # self or parent is frozen
161 elsif action == :unfreeze
162 # "unfreeze" permission means "can write, but only if
163 # explicitly un-freezing at the same time" (see
164 # ArvadosModel#ensure_owner_uuid_is_permitted). If the
165 # permission query above passed the permission level of
166 # :unfreeze (which is the same as :manage), and the parent
167 # isn't also frozen, then un-freeze is allowed.
168 if FrozenGroup.where(uuid: target_owner_uuid).any?
176 def before_ownership_change
177 if owner_uuid_changed? and !self.owner_uuid_was.nil?
178 MaterializedPermission.where(user_uuid: owner_uuid_was, target_uuid: uuid).delete_all
179 update_permissions self.owner_uuid_was, self.uuid, REVOKE_PERM
183 def after_ownership_change
184 if saved_change_to_owner_uuid?
185 update_permissions self.owner_uuid, self.uuid, CAN_MANAGE_PERM
189 def clear_permissions
190 MaterializedPermission.where("user_uuid = ? and target_uuid != ?", uuid, uuid).delete_all
193 def forget_cached_group_perms
197 def remove_self_from_permissions
198 MaterializedPermission.where("target_uuid = ?", uuid).delete_all
199 check_permissions_against_full_refresh
202 # Return a hash of {user_uuid: group_perms}
204 # note: this does not account for permissions that a user gains by
205 # having can_manage on another user.
206 def self.all_group_permissions
208 ActiveRecord::Base.connection.
210 SELECT user_uuid, target_uuid, perm_level
211 FROM #{PERMISSION_VIEW}
214 # "name" arg is a query label that appears in logs:
215 "all_group_permissions").
216 rows.each do |user_uuid, group_uuid, max_p_val|
217 all_perms[user_uuid] ||= {}
218 all_perms[user_uuid][group_uuid] = PERMS_FOR_VAL[max_p_val.to_i]
223 # Return a hash of {group_uuid: perm_hash} where perm_hash[:read]
224 # and perm_hash[:write] are true if this user can read and write
225 # objects owned by group_uuid.
226 def group_permissions(level=1)
228 if @group_perms.empty?
229 user_uuids_subquery = USER_UUIDS_SUBQUERY_TEMPLATE % {user: "$1", perm_level: 1}
231 ActiveRecord::Base.connection.
233 SELECT target_uuid, perm_level
234 FROM #{PERMISSION_VIEW}
235 WHERE user_uuid in (#{user_uuids_subquery}) and perm_level >= 1
237 # "name" arg is a query label that appears in logs:
238 "User.group_permissions",
239 # "binds" arg is an array of [col_id, value] for '$1' vars:
241 rows.each do |group_uuid, max_p_val|
242 @group_perms[group_uuid] = PERMS_FOR_VAL[max_p_val.to_i]
250 @group_perms.select {|k,v| v[:write] }
252 @group_perms.select {|k,v| v[:manage] }
254 raise "level must be 1, 2 or 3"
259 def setup(repo_name: nil, vm_uuid: nil, send_notification_email: nil)
260 newly_invited = Link.where(tail_uuid: self.uuid,
261 head_uuid: all_users_group_uuid,
262 link_class: 'permission',
263 name: 'can_read').empty?
265 # Add can_read link from this user to "all users" which makes this
266 # user "invited", and (depending on config) a link in the opposite
267 # direction which makes this user visible to other users.
268 group_perms = add_to_all_users_group
271 repo_perm = if (!repo_name.nil? || Rails.configuration.Users.AutoSetupNewUsersWithRepository) and !username.nil?
272 repo_name ||= "#{username}/#{username}"
273 create_user_repo_link repo_name
276 # Add virtual machine
277 if vm_uuid.nil? and !Rails.configuration.Users.AutoSetupNewUsersWithVmUUID.empty?
278 vm_uuid = Rails.configuration.Users.AutoSetupNewUsersWithVmUUID
281 vm_login_perm = if vm_uuid && username
282 create_vm_login_permission_link(vm_uuid, username)
286 if send_notification_email.nil?
287 send_notification_email = Rails.configuration.Mail.SendUserSetupNotificationEmail
290 if newly_invited and send_notification_email and !Rails.configuration.Users.UserSetupMailText.empty?
292 UserNotifier.account_is_setup(self).deliver_now
294 logger.warn "Failed to send email to #{self.email}: #{e}"
298 forget_cached_group_perms
300 return [repo_perm, vm_login_perm, *group_perms, self].compact
303 # delete user signatures, login, repo, and vm perms, and mark as inactive
305 if self.uuid == system_user_uuid
306 raise "System root user cannot be deactivated"
309 # delete oid_login_perms for this user
311 # note: these permission links are obsolete, they have no effect
312 # on anything and they are not created for new users.
313 Link.where(tail_uuid: self.email,
314 link_class: 'permission',
315 name: 'can_login').destroy_all
317 # delete repo_perms for this user
318 Link.where(tail_uuid: self.uuid,
319 link_class: 'permission',
320 name: 'can_manage').destroy_all
322 # delete vm_login_perms for this user
323 Link.where(tail_uuid: self.uuid,
324 link_class: 'permission',
325 name: 'can_login').destroy_all
327 # delete "All users" group read permissions for this user
328 Link.where(tail_uuid: self.uuid,
329 head_uuid: all_users_group_uuid,
330 link_class: 'permission',
331 name: 'can_read').destroy_all
333 # delete any signatures by this user
334 Link.where(link_class: 'signature',
335 tail_uuid: self.uuid).destroy_all
337 # delete tokens for this user
338 ApiClientAuthorization.where(user_id: self.id).destroy_all
339 # delete ssh keys for this user
340 AuthorizedKey.where(owner_uuid: self.uuid).destroy_all
341 AuthorizedKey.where(authorized_user_uuid: self.uuid).destroy_all
343 # delete user preferences (including profile)
346 # mark the user as inactive
347 self.is_admin = false # can't be admin and inactive
348 self.is_active = false
349 forget_cached_group_perms
353 def must_unsetup_to_deactivate
354 if !self.new_record? &&
355 self.uuid[0..4] == Rails.configuration.Login.LoginCluster &&
356 self.uuid[0..4] != Rails.configuration.ClusterID
357 # OK to update our local record to whatever the LoginCluster
358 # reports, because self-activate is not allowed.
360 elsif self.is_active_changed? &&
361 self.is_active_was &&
364 # When a user is set up, they are added to the "All users"
365 # group. A user that is part of the "All users" group is
366 # allowed to self-activate.
368 # It doesn't make sense to deactivate a user (set is_active =
369 # false) without first removing them from the "All users" group,
370 # because they would be able to immediately reactivate
373 # The 'unsetup' method removes the user from the "All users"
374 # group (and also sets is_active = false) so send a message
375 # explaining the correct way to deactivate a user.
377 if Link.where(tail_uuid: self.uuid,
378 head_uuid: all_users_group_uuid,
379 link_class: 'permission',
380 name: 'can_read').any?
381 errors.add :is_active, "cannot be set to false directly, use the 'Deactivate' button on Workbench, or the 'unsetup' API call"
386 def set_initial_username(requested: false)
387 if !requested.is_a?(String) || requested.empty?
388 email_parts = email.partition("@")
389 local_parts = email_parts.first.partition("+")
390 if email_parts.any?(&:empty?)
392 elsif not local_parts.first.empty?
393 requested = local_parts.first
395 requested = email_parts.first
398 requested.sub!(/^[^A-Za-z]+/, "")
399 requested.gsub!(/[^A-Za-z0-9]/, "")
400 unless requested.empty?
401 self.username = find_usable_username_from(requested)
405 # Move this user's (i.e., self's) owned items to new_owner_uuid and
406 # new_user_uuid (for things normally owned directly by the user).
408 # If redirect_auth is true, also reassign auth tokens and ssh keys,
409 # and redirect this account to redirect_to_user_uuid, i.e., when a
410 # caller authenticates to this account in the future, the account
411 # redirect_to_user_uuid account will be used instead.
413 # current_user must have admin privileges, i.e., the caller is
414 # responsible for checking permission to do this.
415 def merge(new_owner_uuid:, new_user_uuid:, redirect_to_new_user:)
416 raise PermissionDeniedError if !current_user.andand.is_admin
417 raise "Missing new_owner_uuid" if !new_owner_uuid
418 raise "Missing new_user_uuid" if !new_user_uuid
419 transaction(requires_new: true) do
421 raise "cannot merge an already merged user" if self.redirect_to_user_uuid
423 new_user = User.where(uuid: new_user_uuid).first
424 raise "user does not exist" if !new_user
425 raise "cannot merge to an already merged user" if new_user.redirect_to_user_uuid
427 self.clear_permissions
428 new_user.clear_permissions
430 # If 'self' is a remote user, don't transfer authorizations
431 # (i.e. ability to access the account) to the new user, because
432 # that gives the remote site the ability to access the 'new'
433 # user account that takes over the 'self' account.
435 # If 'self' is a local user, it is okay to transfer
436 # authorizations, even if the 'new' user is a remote account,
437 # because the remote site does not gain the ability to access an
438 # account it could not before.
440 if redirect_to_new_user and self.uuid[0..4] == Rails.configuration.ClusterID
441 # Existing API tokens and ssh keys are updated to authenticate
443 ApiClientAuthorization.
445 update_all(user_id: new_user.id)
448 [AuthorizedKey, :owner_uuid],
449 [AuthorizedKey, :authorized_user_uuid],
455 # Destroy API tokens and ssh keys associated with the old
457 ApiClientAuthorization.where(user_id: id).destroy_all
458 AuthorizedKey.where(owner_uuid: uuid).destroy_all
459 AuthorizedKey.where(authorized_user_uuid: uuid).destroy_all
466 # References to the old user UUID in the context of a user ID
467 # (rather than a "home project" in the project hierarchy) are
468 # updated to point to the new user.
469 user_updates.each do |klass, column|
470 klass.where(column => uuid).update_all(column => new_user.uuid)
473 # Need to update repository names to new username
475 old_repo_name_re = /^#{Regexp.escape(username)}\//
476 Repository.where(:owner_uuid => uuid).each do |repo|
477 repo.owner_uuid = new_user.uuid
478 repo_name_sub = "#{new_user.username}/"
479 name = repo.name.sub(old_repo_name_re, repo_name_sub)
480 while (conflict = Repository.where(:name => name).first) != nil
481 repo_name_sub += "migrated"
482 name = repo.name.sub(old_repo_name_re, repo_name_sub)
489 # References to the merged user's "home project" are updated to
490 # point to new_owner_uuid.
491 ActiveRecord::Base.descendants.reject(&:abstract_class?).each do |klass|
492 next if [ApiClientAuthorization,
496 Repository].include?(klass)
497 next if !klass.columns.collect(&:name).include?('owner_uuid')
498 klass.where(owner_uuid: uuid).update_all(owner_uuid: new_owner_uuid)
501 if redirect_to_new_user
502 update_attributes!(redirect_to_user_uuid: new_user.uuid, username: nil)
504 skip_check_permissions_against_full_refresh do
505 update_permissions self.uuid, self.uuid, CAN_MANAGE_PERM
506 update_permissions new_user.uuid, new_user.uuid, CAN_MANAGE_PERM
507 update_permissions new_user.owner_uuid, new_user.uuid, CAN_MANAGE_PERM
509 update_permissions self.owner_uuid, self.uuid, CAN_MANAGE_PERM
516 while (uuid = user.redirect_to_user_uuid)
518 nextuser = User.unscoped.find_by_uuid(uuid)
520 raise Exception.new("user uuid #{user.uuid} redirects to nonexistent uuid '#{uuid}'")
525 raise "Starting from #{self.uuid} redirect_to_user_uuid exceeded maximum number of redirects"
531 def self.register info
532 # login info expected fields, all can be optional but at minimum
533 # must supply either 'identity_url' or 'email'
545 identity_url = info['identity_url']
547 if identity_url && identity_url.length > 0
548 # Only local users can create sessions, hence uuid_like_pattern
550 user = User.unscoped.where('identity_url = ? and uuid like ?',
552 User.uuid_like_pattern).first
553 primary_user = user.redirects_to if user
557 # identity url is unset or didn't find matching record.
558 emails = [info['email']] + (info['alternate_emails'] || [])
559 emails.select! {|em| !em.nil? && !em.empty?}
561 User.unscoped.where('email in (?) and uuid like ?',
563 User.uuid_like_pattern).each do |user|
565 primary_user = user.redirects_to
566 elsif primary_user.uuid != user.redirects_to.uuid
567 raise "Ambiguous email address, directs to both #{primary_user.uuid} and #{user.redirects_to.uuid}"
573 # New user registration
574 primary_user = User.new(:owner_uuid => system_user_uuid,
576 :is_active => Rails.configuration.Users.NewUsersAreActive)
578 primary_user.set_initial_username(requested: info['username']) if info['username'] && !info['username'].blank?
579 primary_user.identity_url = info['identity_url'] if identity_url
582 primary_user.email = info['email'] if info['email']
583 primary_user.first_name = info['first_name'] if info['first_name']
584 primary_user.last_name = info['last_name'] if info['last_name']
586 if (!primary_user.email or primary_user.email.empty?) and (!primary_user.identity_url or primary_user.identity_url.empty?)
587 raise "Must have supply at least one of 'email' or 'identity_url' to User.register"
590 act_as_system_user do
599 def self.attributes_required_columns
601 'can_write' => ['owner_uuid', 'uuid'],
602 'can_manage' => ['owner_uuid', 'uuid'],
606 def change_all_uuid_refs(old_uuid:, new_uuid:)
607 ActiveRecord::Base.descendants.reject(&:abstract_class?).each do |klass|
608 klass.columns.each do |col|
609 if col.name.end_with?('_uuid')
610 column = col.name.to_sym
611 klass.where(column => old_uuid).update_all(column => new_uuid)
617 def ensure_ownership_path_leads_to_user
621 def permission_to_update
622 if username_changed? || redirect_to_user_uuid_changed? || email_changed?
623 current_user.andand.is_admin
625 # users must be able to update themselves (even if they are
626 # inactive) in order to create sessions
627 self == current_user or super
631 def permission_to_create
632 current_user.andand.is_admin or
633 (self == current_user &&
634 self.redirect_to_user_uuid.nil? &&
635 self.is_active == Rails.configuration.Users.NewUsersAreActive)
639 return if self.uuid.end_with?('anonymouspublic')
640 if (User.where("email = ?",self.email).where(:is_admin => true).count == 0 and
641 !Rails.configuration.Users.AutoAdminUserWithEmail.empty? and self.email == Rails.configuration.Users["AutoAdminUserWithEmail"]) or
642 (User.where("uuid not like '%-000000000000000'").where(:is_admin => true).count == 0 and
643 Rails.configuration.Users.AutoAdminFirstUser)
645 self.is_active = true
649 def find_usable_username_from(basename)
650 # If "basename" is a usable username, return that.
651 # Otherwise, find a unique username "basenameN", where N is the
652 # smallest integer greater than 1, and return that.
653 # Return nil if a unique username can't be found after reasonable
655 quoted_name = self.class.connection.quote_string(basename)
656 next_username = basename
658 while Rails.configuration.Users.AutoSetupUsernameBlacklist[next_username]
660 next_username = "%s%i" % [basename, next_suffix]
662 0.upto(6).each do |suffix_len|
663 pattern = "%s%s" % [quoted_name, "_" * suffix_len]
665 where("username like '#{pattern}'").
667 order('username asc').
669 if other_user.username > next_username
671 elsif other_user.username == next_username
673 next_username = "%s%i" % [basename, next_suffix]
676 return next_username if (next_username.size <= pattern.size)
681 def prevent_privilege_escalation
682 if current_user.andand.is_admin
685 if self.is_active_changed?
686 if self.is_active != self.is_active_was
687 logger.warn "User #{current_user.uuid} tried to change is_active from #{self.is_active_was} to #{self.is_active} for #{self.uuid}"
688 self.is_active = self.is_active_was
691 if self.is_admin_changed?
692 if self.is_admin != self.is_admin_was
693 logger.warn "User #{current_user.uuid} tried to change is_admin from #{self.is_admin_was} to #{self.is_admin} for #{self.uuid}"
694 self.is_admin = self.is_admin_was
700 def prevent_inactive_admin
701 if self.is_admin and not self.is_active
702 # There is no known use case for the strange set of permissions
703 # that would result from this change. It's safest to assume it's
704 # a mistake and disallow it outright.
705 raise "Admin users cannot be inactive"
710 def prevent_nonadmin_system_root
711 if self.uuid == system_user_uuid and self.is_admin_changed? and !self.is_admin
712 raise "System root user cannot be non-admin"
717 def search_permissions(start, graph, merged={}, upstream_mask=nil, upstream_path={})
718 nextpaths = graph[start]
719 return merged if !nextpaths
720 return merged if upstream_path.has_key? start
721 upstream_path[start] = true
722 upstream_mask ||= ALL_PERMISSIONS
723 nextpaths.each do |head, mask|
726 merged[head][k] ||= v if upstream_mask[k]
728 search_permissions(head, graph, merged, upstream_mask.select { |k,v| v && merged[head][k] }, upstream_path)
730 upstream_path.delete start
734 def create_user_repo_link(repo_name)
735 # repo_name is optional
737 logger.warn ("Repository name not given for #{self.uuid}.")
741 repo = Repository.where(owner_uuid: uuid, name: repo_name).first_or_create!
742 logger.info { "repo uuid: " + repo[:uuid] }
743 repo_perm = Link.where(tail_uuid: uuid, head_uuid: repo.uuid,
744 link_class: "permission",
745 name: "can_manage").first_or_create!
746 logger.info { "repo permission: " + repo_perm[:uuid] }
750 # create login permission for the given vm_uuid, if it does not already exist
751 def create_vm_login_permission_link(vm_uuid, repo_name)
752 # vm uuid is optional
753 return if vm_uuid == ""
755 vm = VirtualMachine.where(uuid: vm_uuid).first
757 logger.warn "Could not find virtual machine for #{vm_uuid.inspect}"
758 raise "No vm found for #{vm_uuid}"
761 logger.info { "vm uuid: " + vm[:uuid] }
763 tail_uuid: uuid, head_uuid: vm.uuid,
764 link_class: "permission", name: "can_login",
769 select { |link| link.properties["username"] == repo_name }.
773 create(login_attrs.merge(properties: {"username" => repo_name}))
775 logger.info { "login permission: " + login_perm[:uuid] }
779 def add_to_all_users_group
780 resp = [Link.where(tail_uuid: self.uuid,
781 head_uuid: all_users_group_uuid,
782 link_class: 'permission',
783 name: 'can_read').first ||
784 Link.create(tail_uuid: self.uuid,
785 head_uuid: all_users_group_uuid,
786 link_class: 'permission',
788 if Rails.configuration.Users.ActivatedUsersAreVisibleToOthers
789 resp += [Link.where(tail_uuid: all_users_group_uuid,
790 head_uuid: self.uuid,
791 link_class: 'permission',
792 name: 'can_read').first ||
793 Link.create(tail_uuid: all_users_group_uuid,
794 head_uuid: self.uuid,
795 link_class: 'permission',
801 # Give the special "System group" permission to manage this user and
802 # all of this user's stuff.
803 def add_system_group_permission_link
804 return true if uuid == system_user_uuid
805 act_as_system_user do
806 Link.create(link_class: 'permission',
808 tail_uuid: system_group_uuid,
809 head_uuid: self.uuid)
813 # Send admin notifications
814 def send_admin_notifications
815 AdminNotifier.new_user(self).deliver_now
816 if not self.is_active then
817 AdminNotifier.new_inactive_user(self).deliver_now
821 # Automatically setup if is_active flag turns on
822 def setup_on_activate
823 return if [system_user_uuid, anonymous_user_uuid].include?(self.uuid)
825 (new_record? || saved_change_to_is_active? || will_save_change_to_is_active?)
830 # Automatically setup new user during creation
831 def auto_setup_new_user
835 # Send notification if the user saved profile for the first time
836 def send_profile_created_notification
837 if saved_change_to_prefs?
838 if prefs_before_last_save.andand.empty? || !prefs_before_last_save.andand['profile']
839 profile_notification_address = Rails.configuration.Users.UserProfileNotificationAddress
840 ProfileNotifier.profile_created(self, profile_notification_address).deliver_now if profile_notification_address and !profile_notification_address.empty?
845 def verify_repositories_empty
846 unless repositories.first.nil?
847 errors.add(:username, "can't be unset when the user owns repositories")
852 def sync_repository_names
853 old_name_re = /^#{Regexp.escape(username_before_last_save)}\//
854 name_sub = "#{username}/"
855 repositories.find_each do |repo|
856 repo.name = repo.name.sub(old_name_re, name_sub)
861 def identity_url_nil_if_empty
862 if identity_url == ""
863 self.identity_url = nil