3604: Verify permission cache behavior in unsetup test
[arvados.git] / services / api / app / models / user.rb
1 require 'can_be_an_owner'
2
3 class User < ArvadosModel
4   include HasUuid
5   include KindAndEtag
6   include CommonApiTemplate
7   include CanBeAnOwner
8
9   serialize :prefs, Hash
10   has_many :api_client_authorizations
11   before_update :prevent_privilege_escalation
12   before_update :prevent_inactive_admin
13   before_create :check_auto_admin
14   after_create :add_system_group_permission_link
15   after_create :send_admin_notifications
16   after_update :send_profile_created_notification
17
18
19   has_many :authorized_keys, :foreign_key => :authorized_user_uuid, :primary_key => :uuid
20
21   api_accessible :user, extend: :common do |t|
22     t.add :email
23     t.add :full_name
24     t.add :first_name
25     t.add :last_name
26     t.add :identity_url
27     t.add :is_active
28     t.add :is_admin
29     t.add :is_invited
30     t.add :prefs
31   end
32
33   ALL_PERMISSIONS = {read: true, write: true, manage: true}
34
35   def full_name
36     "#{first_name} #{last_name}".strip
37   end
38
39   def is_invited
40     !!(self.is_active ||
41        Rails.configuration.new_users_are_active ||
42        self.groups_i_can(:read).select { |x| x.match /-f+$/ }.first)
43   end
44
45   def groups_i_can(verb)
46     my_groups = self.group_permissions.select { |uuid, mask| mask[verb] }.keys
47     if verb == :read
48       my_groups << anonymous_group_uuid
49     end
50     my_groups
51   end
52
53   def can?(actions)
54     return true if is_admin
55     actions.each do |action, target|
56       unless target.nil?
57         if target.respond_to? :uuid
58           target_uuid = target.uuid
59         else
60           target_uuid = target
61           target = ArvadosModel.find_by_uuid(target_uuid)
62         end
63       end
64       next if target_uuid == self.uuid
65       next if (group_permissions[target_uuid] and
66                group_permissions[target_uuid][action])
67       if target.respond_to? :owner_uuid
68         next if target.owner_uuid == self.uuid
69         next if (group_permissions[target.owner_uuid] and
70                  group_permissions[target.owner_uuid][action])
71       end
72       return false
73     end
74     true
75   end
76
77   def self.invalidate_permissions_cache
78     Rails.cache.delete_matched(/^groups_for_user_/)
79   end
80
81   # Return a hash of {group_uuid: perm_hash} where perm_hash[:read]
82   # and perm_hash[:write] are true if this user can read and write
83   # objects owned by group_uuid.
84   #
85   # The permission graph is built by repeatedly enumerating all
86   # permission links reachable from self.uuid, and then calling
87   # search_permissions
88   def group_permissions
89     Rails.cache.fetch "groups_for_user_#{self.uuid}" do
90       permissions_from = {}
91       todo = {self.uuid => true}
92       done = {}
93       # Build the equivalence class of permissions starting with
94       # self.uuid. On each iteration of this loop, todo contains
95       # the next set of uuids in the permission equivalence class
96       # to evaluate.
97       while !todo.empty?
98         lookup_uuids = todo.keys
99         lookup_uuids.each do |uuid| done[uuid] = true end
100         todo = {}
101         newgroups = []
102         # include all groups owned by the current set of uuids.
103         Group.where('owner_uuid in (?)', lookup_uuids).each do |group|
104           newgroups << [group.owner_uuid, group.uuid, 'can_manage']
105         end
106         # add any permission links from the current lookup_uuids to a
107         # User or Group.
108         Link.where('tail_uuid in (?) and link_class = ? and (head_uuid like ? or head_uuid like ?)',
109                    lookup_uuids,
110                    'permission',
111                    Group.uuid_like_pattern,
112                    User.uuid_like_pattern).each do |link|
113           newgroups << [link.tail_uuid, link.head_uuid, link.name]
114         end
115         newgroups.each do |tail_uuid, head_uuid, perm_name|
116           unless done.has_key? head_uuid
117             todo[head_uuid] = true
118           end
119           link_permissions = {}
120           case perm_name
121           when 'can_read'
122             link_permissions = {read:true}
123           when 'can_write'
124             link_permissions = {read:true,write:true}
125           when 'can_manage'
126             link_permissions = ALL_PERMISSIONS
127           end
128           permissions_from[tail_uuid] ||= {}
129           permissions_from[tail_uuid][head_uuid] ||= {}
130           link_permissions.each do |k,v|
131             permissions_from[tail_uuid][head_uuid][k] ||= v
132           end
133         end
134       end
135       search_permissions(self.uuid, permissions_from)
136     end
137   end
138
139   def self.setup(user, openid_prefix, repo_name=nil, vm_uuid=nil)
140     return user.setup_repo_vm_links(repo_name, vm_uuid, openid_prefix)
141   end
142
143   # create links
144   def setup_repo_vm_links(repo_name, vm_uuid, openid_prefix)
145     oid_login_perm = create_oid_login_perm openid_prefix
146     repo_perm = create_user_repo_link repo_name
147     vm_login_perm = create_vm_login_permission_link vm_uuid, repo_name
148     group_perm = create_user_group_link
149
150     return [oid_login_perm, repo_perm, vm_login_perm, group_perm, self].compact
151   end
152
153   # delete user signatures, login, repo, and vm perms, and mark as inactive
154   def unsetup
155     # delete oid_login_perms for this user
156     Link.destroy_all(tail_uuid: self.email,
157                      link_class: 'permission',
158                      name: 'can_login')
159
160     # delete repo_perms for this user
161     Link.destroy_all(tail_uuid: self.uuid,
162                      link_class: 'permission',
163                      name: 'can_manage')
164
165     # delete vm_login_perms for this user
166     Link.destroy_all(tail_uuid: self.uuid,
167                      link_class: 'permission',
168                      name: 'can_login')
169
170     # delete "All users' group read permissions for this user
171     group = Group.where(name: 'All users').select do |g|
172       g[:uuid].match /-f+$/
173     end.first
174     Link.destroy_all(tail_uuid: self.uuid,
175                      head_uuid: group[:uuid],
176                      link_class: 'permission',
177                      name: 'can_read')
178
179     # delete any signatures by this user
180     Link.destroy_all(link_class: 'signature',
181                      tail_uuid: self.uuid)
182
183     # mark the user as inactive
184     self.is_active = false
185     self.save!
186   end
187
188   protected
189
190   def ensure_ownership_path_leads_to_user
191     true
192   end
193
194   def permission_to_update
195     # users must be able to update themselves (even if they are
196     # inactive) in order to create sessions
197     self == current_user or super
198   end
199
200   def permission_to_create
201     current_user.andand.is_admin or
202       (self == current_user and
203        self.is_active == Rails.configuration.new_users_are_active)
204   end
205
206   def check_auto_admin
207     if User.where("uuid not like '%-000000000000000'").where(:is_admin => true).count == 0 and Rails.configuration.auto_admin_user
208       if self.email == Rails.configuration.auto_admin_user
209         self.is_admin = true
210         self.is_active = true
211       end
212     end
213   end
214
215   def prevent_privilege_escalation
216     if current_user.andand.is_admin
217       return true
218     end
219     if self.is_active_changed?
220       if self.is_active != self.is_active_was
221         logger.warn "User #{current_user.uuid} tried to change is_active from #{self.is_admin_was} to #{self.is_admin} for #{self.uuid}"
222         self.is_active = self.is_active_was
223       end
224     end
225     if self.is_admin_changed?
226       if self.is_admin != self.is_admin_was
227         logger.warn "User #{current_user.uuid} tried to change is_admin from #{self.is_admin_was} to #{self.is_admin} for #{self.uuid}"
228         self.is_admin = self.is_admin_was
229       end
230     end
231     true
232   end
233
234   def prevent_inactive_admin
235     if self.is_admin and not self.is_active
236       # There is no known use case for the strange set of permissions
237       # that would result from this change. It's safest to assume it's
238       # a mistake and disallow it outright.
239       raise "Admin users cannot be inactive"
240     end
241     true
242   end
243
244   def search_permissions(start, graph, merged={}, upstream_mask=nil, upstream_path={})
245     nextpaths = graph[start]
246     return merged if !nextpaths
247     return merged if upstream_path.has_key? start
248     upstream_path[start] = true
249     upstream_mask ||= ALL_PERMISSIONS
250     nextpaths.each do |head, mask|
251       merged[head] ||= {}
252       mask.each do |k,v|
253         merged[head][k] ||= v if upstream_mask[k]
254       end
255       search_permissions(head, graph, merged, upstream_mask.select { |k,v| v && merged[head][k] }, upstream_path)
256     end
257     upstream_path.delete start
258     merged
259   end
260
261   def create_oid_login_perm (openid_prefix)
262     login_perm_props = { "identity_url_prefix" => openid_prefix}
263
264     # Check oid_login_perm
265     oid_login_perms = Link.where(tail_uuid: self.email,
266                                    link_class: 'permission',
267                                    name: 'can_login').where("head_uuid = ?", self.uuid)
268
269     if !oid_login_perms.any?
270       # create openid login permission
271       oid_login_perm = Link.create(link_class: 'permission',
272                                    name: 'can_login',
273                                    tail_uuid: self.email,
274                                    head_uuid: self.uuid,
275                                    properties: login_perm_props
276                                   )
277       logger.info { "openid login permission: " + oid_login_perm[:uuid] }
278     else
279       oid_login_perm = oid_login_perms.first
280     end
281
282     return oid_login_perm
283   end
284
285   def create_user_repo_link(repo_name)
286     # repo_name is optional
287     if not repo_name
288       logger.warn ("Repository name not given for #{self.uuid}.")
289       return
290     end
291
292     # Check for an existing repository with the same name we're about to use.
293     repo = Repository.where(name: repo_name).first
294
295     if repo
296       logger.warn "Repository exists for #{repo_name}: #{repo[:uuid]}."
297
298       # Look for existing repository access for this repo
299       repo_perms = Link.where(tail_uuid: self.uuid,
300                               head_uuid: repo[:uuid],
301                               link_class: 'permission',
302                               name: 'can_manage')
303       if repo_perms.any?
304         logger.warn "User already has repository access " +
305             repo_perms.collect { |p| p[:uuid] }.inspect
306         return repo_perms.first
307       end
308     end
309
310     # create repo, if does not already exist
311     repo ||= Repository.create(name: repo_name)
312     logger.info { "repo uuid: " + repo[:uuid] }
313
314     repo_perm = Link.create(tail_uuid: self.uuid,
315                             head_uuid: repo[:uuid],
316                             link_class: 'permission',
317                             name: 'can_manage')
318     logger.info { "repo permission: " + repo_perm[:uuid] }
319     return repo_perm
320   end
321
322   # create login permission for the given vm_uuid, if it does not already exist
323   def create_vm_login_permission_link(vm_uuid, repo_name)
324     begin
325
326       # vm uuid is optional
327       if vm_uuid
328         vm = VirtualMachine.where(uuid: vm_uuid).first
329
330         if not vm
331           logger.warn "Could not find virtual machine for #{vm_uuid.inspect}"
332           raise "No vm found for #{vm_uuid}"
333         end
334       else
335         return
336       end
337
338       logger.info { "vm uuid: " + vm[:uuid] }
339
340       login_perms = Link.where(tail_uuid: self.uuid,
341                               head_uuid: vm[:uuid],
342                               link_class: 'permission',
343                               name: 'can_login')
344
345       perm_exists = false
346       login_perms.each do |perm|
347         if perm.properties['username'] == repo_name
348           perm_exists = perm
349           break
350         end
351       end
352
353       if perm_exists
354         login_perm = perm_exists
355       else
356         login_perm = Link.create(tail_uuid: self.uuid,
357                                  head_uuid: vm[:uuid],
358                                  link_class: 'permission',
359                                  name: 'can_login',
360                                  properties: {'username' => repo_name})
361         logger.info { "login permission: " + login_perm[:uuid] }
362       end
363
364       return login_perm
365     end
366   end
367
368   # add the user to the 'All users' group
369   def create_user_group_link
370     # Look up the "All users" group (we expect uuid *-*-fffffffffffffff).
371     group = Group.where(name: 'All users').select do |g|
372       g[:uuid].match /-f+$/
373     end.first
374
375     if not group
376       logger.warn "No 'All users' group with uuid '*-*-fffffffffffffff'."
377       raise "No 'All users' group with uuid '*-*-fffffffffffffff' is found"
378     else
379       logger.info { "\"All users\" group uuid: " + group[:uuid] }
380
381       group_perms = Link.where(tail_uuid: self.uuid,
382                               head_uuid: group[:uuid],
383                               link_class: 'permission',
384                               name: 'can_read')
385
386       if !group_perms.any?
387         group_perm = Link.create(tail_uuid: self.uuid,
388                                  head_uuid: group[:uuid],
389                                  link_class: 'permission',
390                                  name: 'can_read')
391         logger.info { "group permission: " + group_perm[:uuid] }
392       else
393         group_perm = group_perms.first
394       end
395
396       return group_perm
397     end
398   end
399
400   # Give the special "System group" permission to manage this user and
401   # all of this user's stuff.
402   #
403   def add_system_group_permission_link
404     act_as_system_user do
405       Link.create(link_class: 'permission',
406                   name: 'can_manage',
407                   tail_uuid: system_group_uuid,
408                   head_uuid: self.uuid)
409     end
410   end
411
412   # Send admin notifications
413   def send_admin_notifications
414     AdminNotifier.new_user(self).deliver
415     if not self.is_active then
416       AdminNotifier.new_inactive_user(self).deliver
417     end
418   end
419
420   # Send notification if the user saved profile for the first time
421   def send_profile_created_notification
422     if self.prefs_changed?
423       if self.prefs_was.andand.empty? || !self.prefs_was.andand['profile']
424         profile_notification_address = Rails.configuration.user_profile_notification_address
425         ProfileNotifier.profile_created(self, profile_notification_address).deliver if profile_notification_address
426       end
427     end
428   end
429
430 end