1 # Copyright (C) The Arvados Authors. All rights reserved.
3 # SPDX-License-Identifier: AGPL-3.0
5 require 'can_be_an_owner'
6 require 'refresh_permission_view'
8 class User < ArvadosModel
11 include CommonApiTemplate
13 extend CurrentApiClient
15 serialize :prefs, Hash
16 has_many :api_client_authorizations
19 with: /\A[A-Za-z][A-Za-z0-9]*\z/,
20 message: "must begin with a letter and contain only alphanumerics",
24 validate :must_unsetup_to_deactivate
25 before_update :prevent_privilege_escalation
26 before_update :prevent_inactive_admin
27 before_update :verify_repositories_empty, :if => Proc.new { |user|
28 user.username.nil? and user.username_changed?
30 before_update :setup_on_activate
31 before_create :check_auto_admin
32 before_create :set_initial_username, :if => Proc.new { |user|
33 user.username.nil? and user.email
35 after_create :setup_on_activate
36 after_create :add_system_group_permission_link
37 after_create :invalidate_permissions_cache
38 after_create :auto_setup_new_user, :if => Proc.new { |user|
39 Rails.configuration.Users.AutoSetupNewUsers and
40 (user.uuid != system_user_uuid) and
41 (user.uuid != anonymous_user_uuid)
43 after_create :send_admin_notifications
44 after_update :send_profile_created_notification
45 after_update :sync_repository_names, :if => Proc.new { |user|
46 (user.uuid != system_user_uuid) and
47 user.username_changed? and
48 (not user.username_was.nil?)
51 has_many :authorized_keys, :foreign_key => :authorized_user_uuid, :primary_key => :uuid
52 has_many :repositories, foreign_key: :owner_uuid, primary_key: :uuid
54 default_scope { where('redirect_to_user_uuid is null') }
56 api_accessible :user, extend: :common do |t|
70 ALL_PERMISSIONS = {read: true, write: true, manage: true}
72 # Map numeric permission levels (see lib/create_permission_view.sql)
73 # back to read/write/manage flags.
77 {read: true, write: true},
78 {read: true, write: true, manage: true}]
81 "#{first_name} #{last_name}".strip
86 Rails.configuration.Users.NewUsersAreActive ||
87 self.groups_i_can(:read).select { |x| x.match(/-f+$/) }.first)
90 def groups_i_can(verb)
91 my_groups = self.group_permissions.select { |uuid, mask| mask[verb] }.keys
93 my_groups << anonymous_group_uuid
99 return true if is_admin
100 actions.each do |action, target|
102 if target.respond_to? :uuid
103 target_uuid = target.uuid
106 target = ArvadosModel.find_by_uuid(target_uuid)
109 next if target_uuid == self.uuid
110 next if (group_permissions[target_uuid] and
111 group_permissions[target_uuid][action])
112 if target.respond_to? :owner_uuid
113 next if target.owner_uuid == self.uuid
114 next if (group_permissions[target.owner_uuid] and
115 group_permissions[target.owner_uuid][action])
117 sufficient_perms = case action
121 ['can_manage', 'can_write']
123 ['can_manage', 'can_write', 'can_read']
125 # (Skip this kind of permission opportunity
126 # if action is an unknown permission type)
129 # Check permission links with head_uuid pointing directly at
130 # the target object. If target is a Group, this is redundant
131 # and will fail except [a] if permission caching is broken or
132 # [b] during a race condition, where a permission link has
134 if Link.where(link_class: 'permission',
135 name: sufficient_perms,
136 tail_uuid: groups_i_can(action) + [self.uuid],
137 head_uuid: target_uuid).any?
146 def self.invalidate_permissions_cache(async=false)
147 refresh_permission_view(async)
150 def invalidate_permissions_cache
151 User.invalidate_permissions_cache
154 # Return a hash of {user_uuid: group_perms}
155 def self.all_group_permissions
157 ActiveRecord::Base.connection.
158 exec_query("SELECT user_uuid, target_owner_uuid, perm_level, trashed
159 FROM #{PERMISSION_VIEW}
160 WHERE target_owner_uuid IS NOT NULL",
161 # "name" arg is a query label that appears in logs:
162 "all_group_permissions",
163 ).rows.each do |user_uuid, group_uuid, max_p_val, trashed|
164 all_perms[user_uuid] ||= {}
165 all_perms[user_uuid][group_uuid] = PERMS_FOR_VAL[max_p_val.to_i]
170 # Return a hash of {group_uuid: perm_hash} where perm_hash[:read]
171 # and perm_hash[:write] are true if this user can read and write
172 # objects owned by group_uuid.
173 def group_permissions
174 group_perms = {self.uuid => {:read => true, :write => true, :manage => true}}
175 ActiveRecord::Base.connection.
176 exec_query("SELECT target_owner_uuid, perm_level, trashed
177 FROM #{PERMISSION_VIEW}
179 AND target_owner_uuid IS NOT NULL",
180 # "name" arg is a query label that appears in logs:
181 "group_permissions for #{uuid}",
182 # "binds" arg is an array of [col_id, value] for '$1' vars:
184 ).rows.each do |group_uuid, max_p_val, trashed|
185 group_perms[group_uuid] = PERMS_FOR_VAL[max_p_val.to_i]
191 def setup(repo_name: nil, vm_uuid: nil)
192 repo_perm = create_user_repo_link repo_name
193 vm_login_perm = create_vm_login_permission_link(vm_uuid, username) if vm_uuid
194 group_perm = create_user_group_link
196 return [repo_perm, vm_login_perm, group_perm, self].compact
199 # delete user signatures, login, repo, and vm perms, and mark as inactive
201 # delete oid_login_perms for this user
203 # note: these permission links are obsolete, they have no effect
204 # on anything and they are not created for new users.
205 Link.where(tail_uuid: self.email,
206 link_class: 'permission',
207 name: 'can_login').destroy_all
209 # delete repo_perms for this user
210 Link.where(tail_uuid: self.uuid,
211 link_class: 'permission',
212 name: 'can_manage').destroy_all
214 # delete vm_login_perms for this user
215 Link.where(tail_uuid: self.uuid,
216 link_class: 'permission',
217 name: 'can_login').destroy_all
219 # delete "All users" group read permissions for this user
220 group = Group.where(name: 'All users').select do |g|
221 g[:uuid].match(/-f+$/)
223 Link.where(tail_uuid: self.uuid,
224 head_uuid: group[:uuid],
225 link_class: 'permission',
226 name: 'can_read').destroy_all
228 # delete any signatures by this user
229 Link.where(link_class: 'signature',
230 tail_uuid: self.uuid).destroy_all
232 # delete user preferences (including profile)
235 # mark the user as inactive
236 self.is_active = false
240 def must_unsetup_to_deactivate
241 if self.is_active_changed? &&
242 self.is_active_was == true &&
245 group = Group.where(name: 'All users').select do |g|
246 g[:uuid].match(/-f+$/)
249 # When a user is set up, they are added to the "All users"
250 # group. A user that is part of the "All users" group is
251 # allowed to self-activate.
253 # It doesn't make sense to deactivate a user (set is_active =
254 # false) without first removing them from the "All users" group,
255 # because they would be able to immediately reactivate
258 # The 'unsetup' method removes the user from the "All users"
259 # group (and also sets is_active = false) so send a message
260 # explaining the correct way to deactivate a user.
262 if Link.where(tail_uuid: self.uuid,
263 head_uuid: group[:uuid],
264 link_class: 'permission',
265 name: 'can_read').any?
266 errors.add :is_active, "cannot be set to false directly, use the 'Deactivate' button on Workbench, or the 'unsetup' API call"
271 def set_initial_username(requested: false)
272 if !requested.is_a?(String) || requested.empty?
273 email_parts = email.partition("@")
274 local_parts = email_parts.first.partition("+")
275 if email_parts.any?(&:empty?)
277 elsif not local_parts.first.empty?
278 requested = local_parts.first
280 requested = email_parts.first
283 requested.sub!(/^[^A-Za-z]+/, "")
284 requested.gsub!(/[^A-Za-z0-9]/, "")
285 unless requested.empty?
286 self.username = find_usable_username_from(requested)
290 def update_uuid(new_uuid:)
291 if !current_user.andand.is_admin
292 raise PermissionDeniedError
294 if uuid == system_user_uuid || uuid == anonymous_user_uuid
295 raise "update_uuid cannot update system accounts"
297 if self.class != self.class.resource_class_for_uuid(new_uuid)
298 raise "invalid new_uuid #{new_uuid.inspect}"
300 transaction(requires_new: true) do
304 save!(validate: false)
305 change_all_uuid_refs(old_uuid: old_uuid, new_uuid: new_uuid)
309 # Move this user's (i.e., self's) owned items to new_owner_uuid and
310 # new_user_uuid (for things normally owned directly by the user).
312 # If redirect_auth is true, also reassign auth tokens and ssh keys,
313 # and redirect this account to redirect_to_user_uuid, i.e., when a
314 # caller authenticates to this account in the future, the account
315 # redirect_to_user_uuid account will be used instead.
317 # current_user must have admin privileges, i.e., the caller is
318 # responsible for checking permission to do this.
319 def merge(new_owner_uuid:, new_user_uuid:, redirect_to_new_user:)
320 raise PermissionDeniedError if !current_user.andand.is_admin
321 raise "Missing new_owner_uuid" if !new_owner_uuid
322 raise "Missing new_user_uuid" if !new_user_uuid
323 transaction(requires_new: true) do
325 raise "cannot merge an already merged user" if self.redirect_to_user_uuid
327 new_user = User.where(uuid: new_user_uuid).first
328 raise "user does not exist" if !new_user
329 raise "cannot merge to an already merged user" if new_user.redirect_to_user_uuid
331 # If 'self' is a remote user, don't transfer authorizations
332 # (i.e. ability to access the account) to the new user, because
333 # that gives the remote site the ability to access the 'new'
334 # user account that takes over the 'self' account.
336 # If 'self' is a local user, it is okay to transfer
337 # authorizations, even if the 'new' user is a remote account,
338 # because the remote site does not gain the ability to access an
339 # account it could not before.
341 if redirect_to_new_user and self.uuid[0..4] == Rails.configuration.ClusterID
342 # Existing API tokens and ssh keys are updated to authenticate
344 ApiClientAuthorization.
346 update_all(user_id: new_user.id)
349 [AuthorizedKey, :owner_uuid],
350 [AuthorizedKey, :authorized_user_uuid],
356 # Destroy API tokens and ssh keys associated with the old
358 ApiClientAuthorization.where(user_id: id).destroy_all
359 AuthorizedKey.where(owner_uuid: uuid).destroy_all
360 AuthorizedKey.where(authorized_user_uuid: uuid).destroy_all
367 # References to the old user UUID in the context of a user ID
368 # (rather than a "home project" in the project hierarchy) are
369 # updated to point to the new user.
370 user_updates.each do |klass, column|
371 klass.where(column => uuid).update_all(column => new_user.uuid)
374 # Need to update repository names to new username
376 old_repo_name_re = /^#{Regexp.escape(username)}\//
377 Repository.where(:owner_uuid => uuid).each do |repo|
378 repo.owner_uuid = new_user.uuid
379 repo_name_sub = "#{new_user.username}/"
380 name = repo.name.sub(old_repo_name_re, repo_name_sub)
381 while (conflict = Repository.where(:name => name).first) != nil
382 repo_name_sub += "migrated"
383 name = repo.name.sub(old_repo_name_re, repo_name_sub)
390 # References to the merged user's "home project" are updated to
391 # point to new_owner_uuid.
392 ActiveRecord::Base.descendants.reject(&:abstract_class?).each do |klass|
393 next if [ApiClientAuthorization,
397 Repository].include?(klass)
398 next if !klass.columns.collect(&:name).include?('owner_uuid')
399 klass.where(owner_uuid: uuid).update_all(owner_uuid: new_owner_uuid)
402 if redirect_to_new_user
403 update_attributes!(redirect_to_user_uuid: new_user.uuid, username: nil)
405 invalidate_permissions_cache
412 while (uuid = user.redirect_to_user_uuid)
414 nextuser = User.unscoped.find_by_uuid(uuid)
416 raise Exception.new("user uuid #{user.uuid} redirects to nonexistent uuid '#{uuid}'")
421 raise "Starting from #{self.uuid} redirect_to_user_uuid exceeded maximum number of redirects"
427 def self.register info
428 # login info expected fields, all can be optional but at minimum
429 # must supply either 'identity_url' or 'email'
441 identity_url = info['identity_url']
443 if identity_url && identity_url.length > 0
444 # Only local users can create sessions, hence uuid_like_pattern
446 user = User.unscoped.where('identity_url = ? and uuid like ?',
448 User.uuid_like_pattern).first
449 primary_user = user.redirects_to if user
453 # identity url is unset or didn't find matching record.
454 emails = [info['email']] + (info['alternate_emails'] || [])
455 emails.select! {|em| !em.nil? && !em.empty?}
457 User.unscoped.where('email in (?) and uuid like ?',
459 User.uuid_like_pattern).each do |user|
461 primary_user = user.redirects_to
462 elsif primary_user.uuid != user.redirects_to.uuid
463 raise "Ambiguous email address, directs to both #{primary_user.uuid} and #{user.redirects_to.uuid}"
469 # New user registration
470 primary_user = User.new(:owner_uuid => system_user_uuid,
472 :is_active => Rails.configuration.Users.NewUsersAreActive)
474 primary_user.set_initial_username(requested: info['username']) if info['username'] && !info['username'].blank?
475 primary_user.identity_url = info['identity_url'] if identity_url
478 primary_user.email = info['email'] if info['email']
479 primary_user.first_name = info['first_name'] if info['first_name']
480 primary_user.last_name = info['last_name'] if info['last_name']
482 if (!primary_user.email or primary_user.email.empty?) and (!primary_user.identity_url or primary_user.identity_url.empty?)
483 raise "Must have supply at least one of 'email' or 'identity_url' to User.register"
486 act_as_system_user do
495 def change_all_uuid_refs(old_uuid:, new_uuid:)
496 ActiveRecord::Base.descendants.reject(&:abstract_class?).each do |klass|
497 klass.columns.each do |col|
498 if col.name.end_with?('_uuid')
499 column = col.name.to_sym
500 klass.where(column => old_uuid).update_all(column => new_uuid)
506 def ensure_ownership_path_leads_to_user
510 def permission_to_update
511 if username_changed? || redirect_to_user_uuid_changed? || email_changed?
512 current_user.andand.is_admin
514 # users must be able to update themselves (even if they are
515 # inactive) in order to create sessions
516 self == current_user or super
520 def permission_to_create
521 current_user.andand.is_admin or
522 (self == current_user &&
523 self.redirect_to_user_uuid.nil? &&
524 self.is_active == Rails.configuration.Users.NewUsersAreActive)
528 return if self.uuid.end_with?('anonymouspublic')
529 if (User.where("email = ?",self.email).where(:is_admin => true).count == 0 and
530 !Rails.configuration.Users.AutoAdminUserWithEmail.empty? and self.email == Rails.configuration.Users["AutoAdminUserWithEmail"]) or
531 (User.where("uuid not like '%-000000000000000'").where(:is_admin => true).count == 0 and
532 Rails.configuration.Users.AutoAdminFirstUser)
534 self.is_active = true
538 def find_usable_username_from(basename)
539 # If "basename" is a usable username, return that.
540 # Otherwise, find a unique username "basenameN", where N is the
541 # smallest integer greater than 1, and return that.
542 # Return nil if a unique username can't be found after reasonable
544 quoted_name = self.class.connection.quote_string(basename)
545 next_username = basename
547 while Rails.configuration.Users.AutoSetupUsernameBlacklist[next_username]
549 next_username = "%s%i" % [basename, next_suffix]
551 0.upto(6).each do |suffix_len|
552 pattern = "%s%s" % [quoted_name, "_" * suffix_len]
554 where("username like '#{pattern}'").
556 order('username asc').
558 if other_user.username > next_username
560 elsif other_user.username == next_username
562 next_username = "%s%i" % [basename, next_suffix]
565 return next_username if (next_username.size <= pattern.size)
570 def prevent_privilege_escalation
571 if current_user.andand.is_admin
574 if self.is_active_changed?
575 if self.is_active != self.is_active_was
576 logger.warn "User #{current_user.uuid} tried to change is_active from #{self.is_active_was} to #{self.is_active} for #{self.uuid}"
577 self.is_active = self.is_active_was
580 if self.is_admin_changed?
581 if self.is_admin != self.is_admin_was
582 logger.warn "User #{current_user.uuid} tried to change is_admin from #{self.is_admin_was} to #{self.is_admin} for #{self.uuid}"
583 self.is_admin = self.is_admin_was
589 def prevent_inactive_admin
590 if self.is_admin and not self.is_active
591 # There is no known use case for the strange set of permissions
592 # that would result from this change. It's safest to assume it's
593 # a mistake and disallow it outright.
594 raise "Admin users cannot be inactive"
599 def search_permissions(start, graph, merged={}, upstream_mask=nil, upstream_path={})
600 nextpaths = graph[start]
601 return merged if !nextpaths
602 return merged if upstream_path.has_key? start
603 upstream_path[start] = true
604 upstream_mask ||= ALL_PERMISSIONS
605 nextpaths.each do |head, mask|
608 merged[head][k] ||= v if upstream_mask[k]
610 search_permissions(head, graph, merged, upstream_mask.select { |k,v| v && merged[head][k] }, upstream_path)
612 upstream_path.delete start
616 def create_user_repo_link(repo_name)
617 # repo_name is optional
619 logger.warn ("Repository name not given for #{self.uuid}.")
623 repo = Repository.where(owner_uuid: uuid, name: repo_name).first_or_create!
624 logger.info { "repo uuid: " + repo[:uuid] }
625 repo_perm = Link.where(tail_uuid: uuid, head_uuid: repo.uuid,
626 link_class: "permission",
627 name: "can_manage").first_or_create!
628 logger.info { "repo permission: " + repo_perm[:uuid] }
632 # create login permission for the given vm_uuid, if it does not already exist
633 def create_vm_login_permission_link(vm_uuid, repo_name)
634 # vm uuid is optional
635 return if vm_uuid == ""
637 vm = VirtualMachine.where(uuid: vm_uuid).first
639 logger.warn "Could not find virtual machine for #{vm_uuid.inspect}"
640 raise "No vm found for #{vm_uuid}"
643 logger.info { "vm uuid: " + vm[:uuid] }
645 tail_uuid: uuid, head_uuid: vm.uuid,
646 link_class: "permission", name: "can_login",
651 select { |link| link.properties["username"] == repo_name }.
655 create(login_attrs.merge(properties: {"username" => repo_name}))
657 logger.info { "login permission: " + login_perm[:uuid] }
661 # add the user to the 'All users' group
662 def create_user_group_link
663 return (Link.where(tail_uuid: self.uuid,
664 head_uuid: all_users_group[:uuid],
665 link_class: 'permission',
666 name: 'can_read').first or
667 Link.create(tail_uuid: self.uuid,
668 head_uuid: all_users_group[:uuid],
669 link_class: 'permission',
673 # Give the special "System group" permission to manage this user and
674 # all of this user's stuff.
675 def add_system_group_permission_link
676 return true if uuid == system_user_uuid
677 act_as_system_user do
678 Link.create(link_class: 'permission',
680 tail_uuid: system_group_uuid,
681 head_uuid: self.uuid)
685 # Send admin notifications
686 def send_admin_notifications
687 AdminNotifier.new_user(self).deliver_now
688 if not self.is_active then
689 AdminNotifier.new_inactive_user(self).deliver_now
693 # Automatically setup if is_active flag turns on
694 def setup_on_activate
695 return if [system_user_uuid, anonymous_user_uuid].include?(self.uuid)
696 if is_active && (new_record? || is_active_changed?)
701 # Automatically setup new user during creation
702 def auto_setup_new_user
705 create_vm_login_permission_link(Rails.configuration.Users.AutoSetupNewUsersWithVmUUID,
707 repo_name = "#{username}/#{username}"
708 if Rails.configuration.Users.AutoSetupNewUsersWithRepository and
709 Repository.where(name: repo_name).first.nil?
710 repo = Repository.create!(name: repo_name, owner_uuid: uuid)
711 Link.create!(tail_uuid: uuid, head_uuid: repo.uuid,
712 link_class: "permission", name: "can_manage")
717 # Send notification if the user saved profile for the first time
718 def send_profile_created_notification
719 if self.prefs_changed?
720 if self.prefs_was.andand.empty? || !self.prefs_was.andand['profile']
721 profile_notification_address = Rails.configuration.Users.UserProfileNotificationAddress
722 ProfileNotifier.profile_created(self, profile_notification_address).deliver_now if profile_notification_address and !profile_notification_address.empty?
727 def verify_repositories_empty
728 unless repositories.first.nil?
729 errors.add(:username, "can't be unset when the user owns repositories")
734 def sync_repository_names
735 old_name_re = /^#{Regexp.escape(username_was)}\//
736 name_sub = "#{username}/"
737 repositories.find_each do |repo|
738 repo.name = repo.name.sub(old_name_re, name_sub)