18676: make v2 token check more strict, and add the ["GET /"] scope to
[arvados.git] / services / api / app / models / api_client_authorization.rb
1 # Copyright (C) The Arvados Authors. All rights reserved.
2 #
3 # SPDX-License-Identifier: AGPL-3.0
4
5 class ApiClientAuthorization < ArvadosModel
6   include HasUuid
7   include KindAndEtag
8   include CommonApiTemplate
9   extend CurrentApiClient
10   extend DbCurrentTime
11
12   belongs_to :api_client
13   belongs_to :user
14   after_initialize :assign_random_api_token
15   serialize :scopes, Array
16
17   before_validation :clamp_token_expiration
18
19   api_accessible :user, extend: :common do |t|
20     t.add :owner_uuid
21     t.add :user_id
22     t.add :api_client_id
23     # NB the "api_token" db column is a misnomer in that it's only the
24     # "secret" part of a token: a v1 token is just the secret, but a
25     # v2 token is "v2/uuid/secret".
26     t.add :api_token
27     t.add :created_by_ip_address
28     t.add :default_owner_uuid
29     t.add :expires_at
30     t.add :last_used_at
31     t.add :last_used_by_ip_address
32     t.add :scopes
33   end
34
35   UNLOGGED_CHANGES = ['last_used_at', 'last_used_by_ip_address', 'updated_at']
36
37   def assign_random_api_token
38     self.api_token ||= rand(2**256).to_s(36)
39   end
40
41   def owner_uuid
42     self.user.andand.uuid
43   end
44   def owner_uuid_was
45     self.user_id_changed? ? User.where(id: self.user_id_was).first.andand.uuid : self.user.andand.uuid
46   end
47   def owner_uuid_changed?
48     self.user_id_changed?
49   end
50
51   def modified_by_client_uuid
52     nil
53   end
54   def modified_by_client_uuid=(x) end
55
56   def modified_by_user_uuid
57     nil
58   end
59   def modified_by_user_uuid=(x) end
60
61   def modified_at
62     nil
63   end
64   def modified_at=(x) end
65
66   def scopes_allow?(req_s)
67     scopes.each do |scope|
68       return true if (scope == 'all') or (scope == req_s) or
69         ((scope.end_with? '/') and (req_s.start_with? scope))
70     end
71     false
72   end
73
74   def scopes_allow_request?(request)
75     method = request.request_method
76     if method == 'HEAD'
77       (scopes_allow?(['HEAD', request.path].join(' ')) ||
78        scopes_allow?(['GET', request.path].join(' ')))
79     else
80       scopes_allow?([method, request.path].join(' '))
81     end
82   end
83
84   def logged_attributes
85     super.except 'api_token'
86   end
87
88   def self.default_orders
89     ["#{table_name}.id desc"]
90   end
91
92   def self.remote_host(uuid_prefix:)
93     (Rails.configuration.RemoteClusters[uuid_prefix].andand["Host"]) ||
94       (Rails.configuration.RemoteClusters["*"]["Proxy"] &&
95        uuid_prefix+".arvadosapi.com")
96   end
97
98   def self.make_http_client(uuid_prefix:)
99     clnt = HTTPClient.new
100
101     if uuid_prefix && (Rails.configuration.RemoteClusters[uuid_prefix].andand.Insecure ||
102                        Rails.configuration.RemoteClusters['*'].andand.Insecure)
103       clnt.ssl_config.verify_mode = OpenSSL::SSL::VERIFY_NONE
104     else
105       # Use system CA certificates
106       ["/etc/ssl/certs/ca-certificates.crt",
107        "/etc/pki/tls/certs/ca-bundle.crt"]
108         .select { |ca_path| File.readable?(ca_path) }
109         .each { |ca_path| clnt.ssl_config.add_trust_ca(ca_path) }
110     end
111     clnt
112   end
113
114   def self.check_anonymous_user_token token
115     case token[0..2]
116     when 'v2/'
117       _, token_uuid, secret, optional = token.split('/')
118       unless token_uuid.andand.length == 27 && secret.andand.length.andand > 0 &&
119              token_uuid == Rails.configuration.ClusterID+"-gj3su-anonymouspublic"
120         # invalid v2 token, or v2 token for another user
121         return nil
122       end
123     else
124       # v1 token
125       secret = token
126     end
127
128     # The anonymous token content and minimum length is verified in lib/config
129     if secret.length >= 0 && secret == Rails.configuration.Users.AnonymousUserToken
130       return ApiClientAuthorization.new(user: User.find_by_uuid(anonymous_user_uuid),
131                                         uuid: Rails.configuration.ClusterID+"-gj3su-anonymouspublic",
132                                         api_token: token,
133                                         api_client: anonymous_user_token_api_client,
134                                         scopes: ['GET /'])
135     else
136       return nil
137     end
138   end
139
140   def self.check_system_root_token token
141     if token == Rails.configuration.SystemRootToken
142       return ApiClientAuthorization.new(user: User.find_by_uuid(system_user_uuid),
143                                         uuid: Rails.configuration.ClusterID+"-gj3su-000000000000000",
144                                         api_token: token,
145                                         api_client: system_root_token_api_client)
146     else
147       return nil
148     end
149   end
150
151   def self.validate(token:, remote: nil)
152     return nil if token.nil? or token.empty?
153     remote ||= Rails.configuration.ClusterID
154
155     auth = self.check_anonymous_user_token(token)
156     if !auth.nil?
157       return auth
158     end
159
160     auth = self.check_system_root_token(token)
161     if !auth.nil?
162       return auth
163     end
164
165     token_uuid = ''
166     secret = token
167     stored_secret = nil         # ...if different from secret
168     optional = nil
169
170     case token[0..2]
171     when 'v2/'
172       _, token_uuid, secret, optional = token.split('/')
173       unless token_uuid.andand.length == 27 && secret.andand.length.andand > 0
174         return nil
175       end
176
177       if !optional.nil?
178         # if "optional" is a container uuid, check that it
179         # matches expections.
180         c = Container.where(uuid: optional).first
181         if !c.nil?
182           if !c.auth_uuid.nil? and c.auth_uuid != token_uuid
183             # token doesn't match the container's token
184             return nil
185           end
186           if !c.runtime_token.nil? and "v2/#{token_uuid}/#{secret}" != c.runtime_token
187             # token doesn't match the container's token
188             return nil
189           end
190           if ![Container::Locked, Container::Running].include?(c.state)
191             # container isn't locked or running, token shouldn't be used
192             return nil
193           end
194         end
195       end
196
197       # fast path: look up the token in the local database
198       auth = ApiClientAuthorization.
199              includes(:user, :api_client).
200              where('uuid=? and (expires_at is null or expires_at > CURRENT_TIMESTAMP)', token_uuid).
201              first
202       if auth && auth.user &&
203          (secret == auth.api_token ||
204           secret == OpenSSL::HMAC.hexdigest('sha1', auth.api_token, remote))
205         # found it
206         if token_uuid[0..4] != Rails.configuration.ClusterID
207           Rails.logger.debug "found cached remote token #{token_uuid} with secret #{secret} in local db"
208         end
209         return auth
210       end
211
212       upstream_cluster_id = token_uuid[0..4]
213       if upstream_cluster_id == Rails.configuration.ClusterID
214         # Token is supposedly issued by local cluster, but if the
215         # token were valid, we would have been found in the database
216         # in the above query.
217         return nil
218       elsif upstream_cluster_id.length != 5
219         # malformed
220         return nil
221       end
222
223     else
224       # token is not a 'v2' token. It could be just the secret part
225       # ("v1 token") -- or it could be an OpenIDConnect access token,
226       # in which case either (a) the controller will have inserted a
227       # row with api_token = hmac(systemroottoken,oidctoken) before
228       # forwarding it, or (b) we'll have done that ourselves, or (c)
229       # we'll need to ask LoginCluster to validate it for us below,
230       # and then insert a local row for a faster lookup next time.
231       hmac = OpenSSL::HMAC.hexdigest('sha256', Rails.configuration.SystemRootToken, token)
232       auth = ApiClientAuthorization.
233                includes(:user, :api_client).
234                where('api_token in (?, ?) and (expires_at is null or expires_at > CURRENT_TIMESTAMP)', token, hmac).
235                first
236       if auth && auth.user
237         return auth
238       elsif !Rails.configuration.Login.LoginCluster.blank? && Rails.configuration.Login.LoginCluster != Rails.configuration.ClusterID
239         # An unrecognized non-v2 token might be an OIDC Access Token
240         # that can be verified by our login cluster in the code
241         # below. If so, we'll stuff the database with hmac instead of
242         # the real OIDC token.
243         upstream_cluster_id = Rails.configuration.Login.LoginCluster
244         stored_secret = hmac
245       else
246         return nil
247       end
248     end
249
250     # Invariant: upstream_cluster_id != Rails.configuration.ClusterID
251     #
252     # In other words the remaining code in this method decides
253     # whether to accept a token that was issued by a remote cluster
254     # when the token is absent or expired in our database.  To
255     # begin, we need to ask the cluster that issued the token to
256     # [re]validate it.
257     clnt = ApiClientAuthorization.make_http_client(uuid_prefix: upstream_cluster_id)
258
259     host = remote_host(uuid_prefix: upstream_cluster_id)
260     if !host
261       Rails.logger.warn "remote authentication rejected: no host for #{upstream_cluster_id.inspect}"
262       return nil
263     end
264
265     begin
266       remote_user = SafeJSON.load(
267         clnt.get_content('https://' + host + '/arvados/v1/users/current',
268                          {'remote' => Rails.configuration.ClusterID},
269                          {'Authorization' => 'Bearer ' + token}))
270     rescue => e
271       Rails.logger.warn "remote authentication with token #{token.inspect} failed: #{e}"
272       return nil
273     end
274
275     # Check the response is well formed.
276     if !remote_user.is_a?(Hash) || !remote_user['uuid'].is_a?(String)
277       Rails.logger.warn "remote authentication rejected: remote_user=#{remote_user.inspect}"
278       return nil
279     end
280
281     remote_user_prefix = remote_user['uuid'][0..4]
282
283     # Get token scope, and make sure we use the same UUID as the
284     # remote when caching the token.
285     remote_token = nil
286     begin
287       remote_token = SafeJSON.load(
288         clnt.get_content('https://' + host + '/arvados/v1/api_client_authorizations/current',
289                          {'remote' => Rails.configuration.ClusterID},
290                          {'Authorization' => 'Bearer ' + token}))
291       Rails.logger.debug "retrieved remote token #{remote_token.inspect}"
292       token_uuid = remote_token['uuid']
293       if !token_uuid.match(HasUuid::UUID_REGEX) || token_uuid[0..4] != upstream_cluster_id
294         raise "remote cluster #{upstream_cluster_id} returned invalid token uuid #{token_uuid.inspect}"
295       end
296     rescue HTTPClient::BadResponseError => e
297       if e.res.status != 401
298         raise
299       end
300       rev = SafeJSON.load(clnt.get_content('https://' + host + '/discovery/v1/apis/arvados/v1/rest'))['revision']
301       if rev >= '20010101' && rev < '20210503'
302         Rails.logger.warn "remote cluster #{upstream_cluster_id} at #{host} with api rev #{rev} does not provide token expiry and scopes; using scopes=['all']"
303       else
304         # remote server is new enough that it should have accepted
305         # this request if the token was valid
306         raise
307       end
308     rescue => e
309       Rails.logger.warn "error getting remote token details for #{token.inspect}: #{e}"
310       return nil
311     end
312
313     # Clusters can only authenticate for their own users.
314     if remote_user_prefix != upstream_cluster_id
315       Rails.logger.warn "remote authentication rejected: claimed remote user #{remote_user_prefix} but token was issued by #{upstream_cluster_id}"
316       return nil
317     end
318
319     # Invariant:    remote_user_prefix == upstream_cluster_id
320     # therefore:    remote_user_prefix != Rails.configuration.ClusterID
321
322     # Add or update user and token in local database so we can
323     # validate subsequent requests faster.
324
325     if remote_user['uuid'][-22..-1] == '-tpzed-anonymouspublic'
326       # Special case: map the remote anonymous user to local anonymous user
327       remote_user['uuid'] = anonymous_user_uuid
328     end
329
330     user = User.find_by_uuid(remote_user['uuid'])
331
332     if !user
333       # Create a new record for this user.
334       user = User.new(uuid: remote_user['uuid'],
335                       is_active: false,
336                       is_admin: false,
337                       email: remote_user['email'],
338                       owner_uuid: system_user_uuid)
339       user.set_initial_username(requested: remote_user['username'])
340     end
341
342     # Sync user record.
343     act_as_system_user do
344       %w[first_name last_name email prefs].each do |attr|
345         user.send(attr+'=', remote_user[attr])
346       end
347
348       if remote_user['uuid'][-22..-1] == '-tpzed-000000000000000'
349         user.first_name = "root"
350         user.last_name = "from cluster #{remote_user_prefix}"
351       end
352
353       begin
354         user.save!
355       rescue ActiveRecord::RecordInvalid, ActiveRecord::RecordNotUnique
356         Rails.logger.debug("remote user #{remote_user['uuid']} already exists, retrying...")
357         # Some other request won the race: retry fetching the user record.
358         user = User.find_by_uuid(remote_user['uuid'])
359         if !user
360           Rails.logger.warn("cannot find or create remote user #{remote_user['uuid']}")
361           return nil
362         end
363       end
364
365       if user.is_invited && !remote_user['is_invited']
366         # Remote user is not "invited" state, they should be unsetup, which
367         # also makes them inactive.
368         user.unsetup
369       else
370         if !user.is_invited && remote_user['is_invited'] and
371           (remote_user_prefix == Rails.configuration.Login.LoginCluster or
372            Rails.configuration.Users.AutoSetupNewUsers or
373            Rails.configuration.Users.NewUsersAreActive or
374            Rails.configuration.RemoteClusters[remote_user_prefix].andand["ActivateUsers"])
375           user.setup
376         end
377
378         if !user.is_active && remote_user['is_active'] && user.is_invited and
379           (remote_user_prefix == Rails.configuration.Login.LoginCluster or
380            Rails.configuration.Users.NewUsersAreActive or
381            Rails.configuration.RemoteClusters[remote_user_prefix].andand["ActivateUsers"])
382           user.update_attributes!(is_active: true)
383         elsif user.is_active && !remote_user['is_active']
384           user.update_attributes!(is_active: false)
385         end
386
387         if remote_user_prefix == Rails.configuration.Login.LoginCluster and
388           user.is_active and
389           user.is_admin != remote_user['is_admin']
390           # Remote cluster controls our user database, including the
391           # admin flag.
392           user.update_attributes!(is_admin: remote_user['is_admin'])
393         end
394       end
395
396       # If stored_secret is set, we save stored_secret in the database
397       # but return the real secret to the caller. This way, if we end
398       # up returning the auth record to the client, they see the same
399       # secret they supplied, instead of the HMAC we saved in the
400       # database.
401       stored_secret = stored_secret || secret
402
403       # We will accept this token (and avoid reloading the user
404       # record) for 'RemoteTokenRefresh' (default 5 minutes).
405       exp = [db_current_time + Rails.configuration.Login.RemoteTokenRefresh,
406              remote_token.andand['expires_at']].compact.min
407       scopes = remote_token.andand['scopes'] || ['all']
408       begin
409         retries ||= 0
410         auth = ApiClientAuthorization.find_or_create_by(uuid: token_uuid) do |auth|
411           auth.user = user
412           auth.api_token = stored_secret
413           auth.api_client_id = 0
414           auth.scopes = scopes
415           auth.expires_at = exp
416         end
417       rescue ActiveRecord::RecordNotUnique
418         Rails.logger.debug("cached remote token #{token_uuid} already exists, retrying...")
419         # Some other request won the race: retry just once before erroring out
420         if (retries += 1) <= 1
421           retry
422         else
423           Rails.logger.warn("cannot find or create cached remote token #{token_uuid}")
424           return nil
425         end
426       end
427       auth.update_attributes!(user: user,
428                               api_token: stored_secret,
429                               api_client_id: 0,
430                               scopes: scopes,
431                               expires_at: exp)
432       Rails.logger.debug "cached remote token #{token_uuid} with secret #{stored_secret} and scopes #{scopes} in local db"
433       auth.api_token = secret
434       return auth
435     end
436
437     return nil
438   end
439
440   def token
441     v2token
442   end
443
444   def v1token
445     api_token
446   end
447
448   def v2token
449     'v2/' + uuid + '/' + api_token
450   end
451
452   def salted_token(remote:)
453     if remote.nil?
454       token
455     end
456     'v2/' + uuid + '/' + OpenSSL::HMAC.hexdigest('sha1', api_token, remote)
457   end
458
459   protected
460
461   def clamp_token_expiration
462     if Rails.configuration.API.MaxTokenLifetime > 0
463       max_token_expiration = db_current_time + Rails.configuration.API.MaxTokenLifetime
464       if (self.new_record? || self.expires_at_changed?) && (self.expires_at.nil? || (self.expires_at > max_token_expiration && !current_user.andand.is_admin))
465         self.expires_at = max_token_expiration
466       end
467     end
468   end
469
470   def permission_to_create
471     current_user.andand.is_admin or (current_user.andand.id == self.user_id)
472   end
473
474   def permission_to_update
475     permission_to_create && !uuid_changed? &&
476       (current_user.andand.is_admin || !user_id_changed?)
477   end
478
479   def log_update
480     super unless (saved_changes.keys - UNLOGGED_CHANGES).empty?
481   end
482 end