Merge branch '8784-dir-listings'
[arvados.git] / services / api / app / models / collection.rb
1 # Copyright (C) The Arvados Authors. All rights reserved.
2 #
3 # SPDX-License-Identifier: AGPL-3.0
4
5 require 'arvados/keep'
6 require 'sweep_trashed_collections'
7
8 class Collection < ArvadosModel
9   extend CurrentApiClient
10   extend DbCurrentTime
11   include HasUuid
12   include KindAndEtag
13   include CommonApiTemplate
14
15   serialize :properties, Hash
16
17   before_validation :set_validation_timestamp
18   before_validation :default_empty_manifest
19   before_validation :check_encoding
20   before_validation :check_manifest_validity
21   before_validation :check_signatures
22   before_validation :strip_signatures_and_update_replication_confirmed
23   before_validation :ensure_trash_at_not_in_past
24   before_validation :sync_trash_state
25   before_validation :default_trash_interval
26   validate :ensure_pdh_matches_manifest_text
27   validate :validate_trash_and_delete_timing
28   before_save :set_file_names
29
30   # Query only untrashed collections by default.
31   default_scope { where("is_trashed = false") }
32
33   api_accessible :user, extend: :common do |t|
34     t.add :name
35     t.add :description
36     t.add :properties
37     t.add :portable_data_hash
38     t.add :signed_manifest_text, as: :manifest_text
39     t.add :manifest_text, as: :unsigned_manifest_text
40     t.add :replication_desired
41     t.add :replication_confirmed
42     t.add :replication_confirmed_at
43     t.add :delete_at
44     t.add :trash_at
45     t.add :is_trashed
46   end
47
48   after_initialize do
49     @signatures_checked = false
50     @computed_pdh_for_manifest_text = false
51   end
52
53   def self.attributes_required_columns
54     super.merge(
55                 # If we don't list manifest_text explicitly, the
56                 # params[:select] code gets confused by the way we
57                 # expose signed_manifest_text as manifest_text in the
58                 # API response, and never let clients select the
59                 # manifest_text column.
60                 #
61                 # We need trash_at and is_trashed to determine the
62                 # correct timestamp in signed_manifest_text.
63                 'manifest_text' => ['manifest_text', 'trash_at', 'is_trashed'],
64                 'unsigned_manifest_text' => ['manifest_text'],
65                 )
66   end
67
68   def self.ignored_select_attributes
69     super + ["updated_at", "file_names"]
70   end
71
72   def self.limit_index_columns_read
73     ["manifest_text"]
74   end
75
76   FILE_TOKEN = /^[[:digit:]]+:[[:digit:]]+:/
77   def check_signatures
78     return false if self.manifest_text.nil?
79
80     return true if current_user.andand.is_admin
81
82     # Provided the manifest_text hasn't changed materially since an
83     # earlier validation, it's safe to pass this validation on
84     # subsequent passes without checking any signatures. This is
85     # important because the signatures have probably been stripped off
86     # by the time we get to a second validation pass!
87     if @signatures_checked && @signatures_checked == computed_pdh
88       return true
89     end
90
91     if self.manifest_text_changed?
92       # Check permissions on the collection manifest.
93       # If any signature cannot be verified, raise PermissionDeniedError
94       # which will return 403 Permission denied to the client.
95       api_token = current_api_client_authorization.andand.api_token
96       signing_opts = {
97         api_token: api_token,
98         now: @validation_timestamp.to_i,
99       }
100       self.manifest_text.each_line do |entry|
101         entry.split.each do |tok|
102           if tok == '.' or tok.starts_with? './'
103             # Stream name token.
104           elsif tok =~ FILE_TOKEN
105             # This is a filename token, not a blob locator. Note that we
106             # keep checking tokens after this, even though manifest
107             # format dictates that all subsequent tokens will also be
108             # filenames. Safety first!
109           elsif Blob.verify_signature tok, signing_opts
110             # OK.
111           elsif Keep::Locator.parse(tok).andand.signature
112             # Signature provided, but verify_signature did not like it.
113             logger.warn "Invalid signature on locator #{tok}"
114             raise ArvadosModel::PermissionDeniedError
115           elsif Rails.configuration.permit_create_collection_with_unsigned_manifest
116             # No signature provided, but we are running in insecure mode.
117             logger.debug "Missing signature on locator #{tok} ignored"
118           elsif Blob.new(tok).empty?
119             # No signature provided -- but no data to protect, either.
120           else
121             logger.warn "Missing signature on locator #{tok}"
122             raise ArvadosModel::PermissionDeniedError
123           end
124         end
125       end
126     end
127     @signatures_checked = computed_pdh
128   end
129
130   def strip_signatures_and_update_replication_confirmed
131     if self.manifest_text_changed?
132       in_old_manifest = {}
133       if not self.replication_confirmed.nil?
134         self.class.each_manifest_locator(manifest_text_was) do |match|
135           in_old_manifest[match[1]] = true
136         end
137       end
138
139       stripped_manifest = self.class.munge_manifest_locators(manifest_text) do |match|
140         if not self.replication_confirmed.nil? and not in_old_manifest[match[1]]
141           # If the new manifest_text contains locators whose hashes
142           # weren't in the old manifest_text, storage replication is no
143           # longer confirmed.
144           self.replication_confirmed_at = nil
145           self.replication_confirmed = nil
146         end
147
148         # Return the locator with all permission signatures removed,
149         # but otherwise intact.
150         match[0].gsub(/\+A[^+]*/, '')
151       end
152
153       if @computed_pdh_for_manifest_text == manifest_text
154         # If the cached PDH was valid before stripping, it is still
155         # valid after stripping.
156         @computed_pdh_for_manifest_text = stripped_manifest.dup
157       end
158
159       self[:manifest_text] = stripped_manifest
160     end
161     true
162   end
163
164   def ensure_pdh_matches_manifest_text
165     if not manifest_text_changed? and not portable_data_hash_changed?
166       true
167     elsif portable_data_hash.nil? or not portable_data_hash_changed?
168       self.portable_data_hash = computed_pdh
169     elsif portable_data_hash !~ Keep::Locator::LOCATOR_REGEXP
170       errors.add(:portable_data_hash, "is not a valid locator")
171       false
172     elsif portable_data_hash[0..31] != computed_pdh[0..31]
173       errors.add(:portable_data_hash,
174                  "'#{portable_data_hash}' does not match computed hash '#{computed_pdh}'")
175       false
176     else
177       # Ignore the client-provided size part: always store
178       # computed_pdh in the database.
179       self.portable_data_hash = computed_pdh
180     end
181   end
182
183   def set_file_names
184     if self.manifest_text_changed?
185       self.file_names = manifest_files
186     end
187     true
188   end
189
190   def manifest_files
191     names = ''
192     if self.manifest_text
193       self.manifest_text.scan(/ \d+:\d+:(\S+)/) do |name|
194         names << name.first.gsub('\040',' ') + "\n"
195         break if names.length > 2**12
196       end
197     end
198
199     if self.manifest_text and names.length < 2**12
200       self.manifest_text.scan(/^\.\/(\S+)/m) do |stream_name|
201         names << stream_name.first.gsub('\040',' ') + "\n"
202         break if names.length > 2**12
203       end
204     end
205
206     names[0,2**12]
207   end
208
209   def default_empty_manifest
210     self.manifest_text ||= ''
211   end
212
213   def check_encoding
214     if manifest_text.encoding.name == 'UTF-8' and manifest_text.valid_encoding?
215       true
216     else
217       begin
218         # If Ruby thinks the encoding is something else, like 7-bit
219         # ASCII, but its stored bytes are equal to the (valid) UTF-8
220         # encoding of the same string, we declare it to be a UTF-8
221         # string.
222         utf8 = manifest_text
223         utf8.force_encoding Encoding::UTF_8
224         if utf8.valid_encoding? and utf8 == manifest_text.encode(Encoding::UTF_8)
225           self.manifest_text = utf8
226           return true
227         end
228       rescue
229       end
230       errors.add :manifest_text, "must use UTF-8 encoding"
231       false
232     end
233   end
234
235   def check_manifest_validity
236     begin
237       Keep::Manifest.validate! manifest_text
238       true
239     rescue ArgumentError => e
240       errors.add :manifest_text, e.message
241       false
242     end
243   end
244
245   def signed_manifest_text
246     if !has_attribute? :manifest_text
247       return nil
248     elsif is_trashed
249       return manifest_text
250     else
251       token = current_api_client_authorization.andand.api_token
252       exp = [db_current_time.to_i + Rails.configuration.blob_signature_ttl,
253              trash_at].compact.map(&:to_i).min
254       self.class.sign_manifest manifest_text, token, exp
255     end
256   end
257
258   def self.sign_manifest manifest, token, exp=nil
259     if exp.nil?
260       exp = db_current_time.to_i + Rails.configuration.blob_signature_ttl
261     end
262     signing_opts = {
263       api_token: token,
264       expire: exp,
265     }
266     m = munge_manifest_locators(manifest) do |match|
267       Blob.sign_locator(match[0], signing_opts)
268     end
269     return m
270   end
271
272   def self.munge_manifest_locators manifest
273     # Given a manifest text and a block, yield the regexp MatchData
274     # for each locator. Return a new manifest in which each locator
275     # has been replaced by the block's return value.
276     return nil if !manifest
277     return '' if manifest == ''
278
279     new_lines = []
280     manifest.each_line do |line|
281       line.rstrip!
282       new_words = []
283       line.split(' ').each do |word|
284         if new_words.empty?
285           new_words << word
286         elsif match = Keep::Locator::LOCATOR_REGEXP.match(word)
287           new_words << yield(match)
288         else
289           new_words << word
290         end
291       end
292       new_lines << new_words.join(' ')
293     end
294     new_lines.join("\n") + "\n"
295   end
296
297   def self.each_manifest_locator manifest
298     # Given a manifest text and a block, yield the regexp match object
299     # for each locator.
300     manifest.each_line do |line|
301       # line will have a trailing newline, but the last token is never
302       # a locator, so it's harmless here.
303       line.split(' ').each do |word|
304         if match = Keep::Locator::LOCATOR_REGEXP.match(word)
305           yield(match)
306         end
307       end
308     end
309   end
310
311   def self.normalize_uuid uuid
312     hash_part = nil
313     size_part = nil
314     uuid.split('+').each do |token|
315       if token.match(/^[0-9a-f]{32,}$/)
316         raise "uuid #{uuid} has multiple hash parts" if hash_part
317         hash_part = token
318       elsif token.match(/^\d+$/)
319         raise "uuid #{uuid} has multiple size parts" if size_part
320         size_part = token
321       end
322     end
323     raise "uuid #{uuid} has no hash part" if !hash_part
324     [hash_part, size_part].compact.join '+'
325   end
326
327   def self.get_compatible_images(readers, pattern, collections)
328     if collections.empty?
329       return []
330     end
331
332     migrations = Hash[
333       Link.where('tail_uuid in (?) AND link_class=? AND links.owner_uuid=?',
334                  collections.map(&:portable_data_hash),
335                  'docker_image_migration',
336                  system_user_uuid).
337       order('links.created_at asc').
338       map { |l|
339         [l.tail_uuid, l.head_uuid]
340       }]
341
342     migrated_collections = Hash[
343       Collection.readable_by(*readers).
344       where('portable_data_hash in (?)', migrations.values).
345       map { |c|
346         [c.portable_data_hash, c]
347       }]
348
349     collections.map { |c|
350       # Check if the listed image is compatible first, if not, then try the
351       # migration link.
352       manifest = Keep::Manifest.new(c.manifest_text)
353       if manifest.exact_file_count?(1) and manifest.files[0][1] =~ pattern
354         c
355       elsif m = migrated_collections[migrations[c.portable_data_hash]]
356         manifest = Keep::Manifest.new(m.manifest_text)
357         if manifest.exact_file_count?(1) and manifest.files[0][1] =~ pattern
358           m
359         end
360       end
361     }.compact
362   end
363
364   # Resolve a Docker repo+tag, hash, or collection PDH to an array of
365   # Collection objects, sorted by timestamp starting with the most recent
366   # match.
367   #
368   # If filter_compatible_format is true (the default), only return image
369   # collections which are support by the installation as indicated by
370   # Rails.configuration.docker_image_formats.  Will follow
371   # 'docker_image_migration' links if search_term resolves to an incompatible
372   # image, but an equivalent compatible image is available.
373   def self.find_all_for_docker_image(search_term, search_tag=nil, readers=nil, filter_compatible_format: true)
374     readers ||= [Thread.current[:user]]
375     base_search = Link.
376       readable_by(*readers).
377       readable_by(*readers, table_name: "collections").
378       joins("JOIN collections ON links.head_uuid = collections.uuid").
379       order("links.created_at DESC")
380
381     if (Rails.configuration.docker_image_formats.include? 'v1' and
382         Rails.configuration.docker_image_formats.include? 'v2') or filter_compatible_format == false
383       pattern = /^(sha256:)?[0-9A-Fa-f]{64}\.tar$/
384     elsif Rails.configuration.docker_image_formats.include? 'v2'
385       pattern = /^(sha256:)[0-9A-Fa-f]{64}\.tar$/
386     elsif Rails.configuration.docker_image_formats.include? 'v1'
387       pattern = /^[0-9A-Fa-f]{64}\.tar$/
388     else
389       raise "Unrecognized configuration for docker_image_formats #{Rails.configuration.docker_image_formats}"
390     end
391
392     # If the search term is a Collection locator that contains one file
393     # that looks like a Docker image, return it.
394     if loc = Keep::Locator.parse(search_term)
395       loc.strip_hints!
396       coll_match = readable_by(*readers).where(portable_data_hash: loc.to_s).limit(1)
397       return get_compatible_images(readers, pattern, coll_match)
398     end
399
400     if search_tag.nil? and (n = search_term.index(":"))
401       search_tag = search_term[n+1..-1]
402       search_term = search_term[0..n-1]
403     end
404
405     # Find Collections with matching Docker image repository+tag pairs.
406     matches = base_search.
407       where(link_class: "docker_image_repo+tag",
408             name: "#{search_term}:#{search_tag || 'latest'}")
409
410     # If that didn't work, find Collections with matching Docker image hashes.
411     if matches.empty?
412       matches = base_search.
413         where("link_class = ? and links.name LIKE ?",
414               "docker_image_hash", "#{search_term}%")
415     end
416
417     # Generate an order key for each result.  We want to order the results
418     # so that anything with an image timestamp is considered more recent than
419     # anything without; then we use the link's created_at as a tiebreaker.
420     uuid_timestamps = {}
421     matches.each do |link|
422       uuid_timestamps[link.head_uuid] = [(-link.properties["image_timestamp"].to_datetime.to_i rescue 0),
423        -link.created_at.to_i]
424      end
425
426     sorted = Collection.where('uuid in (?)', uuid_timestamps.keys).sort_by { |c|
427       uuid_timestamps[c.uuid]
428     }
429     compatible = get_compatible_images(readers, pattern, sorted)
430     if sorted.length > 0 and compatible.empty?
431       raise ArvadosModel::UnresolvableContainerError.new "Matching Docker image is incompatible with 'docker_image_formats' configuration."
432     end
433     compatible
434   end
435
436   def self.for_latest_docker_image(search_term, search_tag=nil, readers=nil)
437     find_all_for_docker_image(search_term, search_tag, readers).first
438   end
439
440   def self.searchable_columns operator
441     super - ["manifest_text"]
442   end
443
444   def self.full_text_searchable_columns
445     super - ["manifest_text"]
446   end
447
448   def self.where *args
449     SweepTrashedCollections.sweep_if_stale
450     super
451   end
452
453   protected
454   def portable_manifest_text
455     self.class.munge_manifest_locators(manifest_text) do |match|
456       if match[2] # size
457         match[1] + match[2]
458       else
459         match[1]
460       end
461     end
462   end
463
464   def compute_pdh
465     portable_manifest = portable_manifest_text
466     (Digest::MD5.hexdigest(portable_manifest) +
467      '+' +
468      portable_manifest.bytesize.to_s)
469   end
470
471   def computed_pdh
472     if @computed_pdh_for_manifest_text == manifest_text
473       return @computed_pdh
474     end
475     @computed_pdh = compute_pdh
476     @computed_pdh_for_manifest_text = manifest_text.dup
477     @computed_pdh
478   end
479
480   def ensure_permission_to_save
481     if (not current_user.andand.is_admin and
482         (replication_confirmed_at_changed? or replication_confirmed_changed?) and
483         not (replication_confirmed_at.nil? and replication_confirmed.nil?))
484       raise ArvadosModel::PermissionDeniedError.new("replication_confirmed and replication_confirmed_at attributes cannot be changed, except by setting both to nil")
485     end
486     super
487   end
488
489   # Use a single timestamp for all validations, even though each
490   # validation runs at a different time.
491   def set_validation_timestamp
492     @validation_timestamp = db_current_time
493   end
494
495   # If trash_at is being changed to a time in the past, change it to
496   # now. This allows clients to say "expires {client-current-time}"
497   # without failing due to clock skew, while avoiding odd log entries
498   # like "expiry date changed to {1 year ago}".
499   def ensure_trash_at_not_in_past
500     if trash_at_changed? && trash_at
501       self.trash_at = [@validation_timestamp, trash_at].max
502     end
503   end
504
505   # Caller can move into/out of trash by setting/clearing is_trashed
506   # -- however, if the caller also changes trash_at, then any changes
507   # to is_trashed are ignored.
508   def sync_trash_state
509     if is_trashed_changed? && !trash_at_changed?
510       if is_trashed
511         self.trash_at = @validation_timestamp
512       else
513         self.trash_at = nil
514         self.delete_at = nil
515       end
516     end
517     self.is_trashed = trash_at && trash_at <= @validation_timestamp || false
518     true
519   end
520
521   def default_trash_interval
522     if trash_at_changed? && !delete_at_changed?
523       # If trash_at is updated without touching delete_at,
524       # automatically update delete_at to a sensible value.
525       if trash_at.nil?
526         self.delete_at = nil
527       else
528         self.delete_at = trash_at + Rails.configuration.default_trash_lifetime.seconds
529       end
530     elsif !trash_at || !delete_at || trash_at > delete_at
531       # Not trash, or bogus arguments? Just validate in
532       # validate_trash_and_delete_timing.
533     elsif delete_at_changed? && delete_at >= trash_at
534       # Fix delete_at if needed, so it's not earlier than the expiry
535       # time on any permission tokens that might have been given out.
536
537       # In any case there are no signatures expiring after now+TTL.
538       # Also, if the existing trash_at time has already passed, we
539       # know we haven't given out any signatures since then.
540       earliest_delete = [
541         @validation_timestamp,
542         trash_at_was,
543       ].compact.min + Rails.configuration.blob_signature_ttl.seconds
544
545       # The previous value of delete_at is also an upper bound on the
546       # longest-lived permission token. For example, if TTL=14,
547       # trash_at_was=now-7, delete_at_was=now+7, then it is safe to
548       # set trash_at=now+6, delete_at=now+8.
549       earliest_delete = [earliest_delete, delete_at_was].compact.min
550
551       # If delete_at is too soon, use the earliest possible time.
552       if delete_at < earliest_delete
553         self.delete_at = earliest_delete
554       end
555     end
556   end
557
558   def validate_trash_and_delete_timing
559     if trash_at.nil? != delete_at.nil?
560       errors.add :delete_at, "must be set if trash_at is set, and must be nil otherwise"
561     elsif delete_at && delete_at < trash_at
562       errors.add :delete_at, "must not be earlier than trash_at"
563     end
564     true
565   end
566 end