1 # Copyright (C) The Arvados Authors. All rights reserved.
3 # SPDX-License-Identifier: AGPL-3.0
6 require 'sweep_trashed_objects'
9 class Collection < ArvadosModel
10 extend CurrentApiClient
14 include CommonApiTemplate
17 # Posgresql JSONB columns should NOT be declared as serialized, Rails 5
18 # already know how to properly treat them.
19 attribute :properties, :jsonbHash, default: {}
20 attribute :storage_classes_desired, :jsonbArray, default: ["default"]
21 attribute :storage_classes_confirmed, :jsonbArray, default: []
23 before_validation :default_empty_manifest
24 before_validation :default_storage_classes, on: :create
25 before_validation :managed_properties, on: :create
26 before_validation :check_encoding
27 before_validation :check_manifest_validity
28 before_validation :check_signatures
29 before_validation :strip_signatures_and_update_replication_confirmed
30 before_validation :name_null_if_empty
31 validate :ensure_filesystem_compatible_name
32 validate :ensure_pdh_matches_manifest_text
33 validate :ensure_storage_classes_desired_is_not_empty
34 validate :ensure_storage_classes_contain_non_empty_strings
35 validate :versioning_metadata_updates, on: :update
36 validate :past_versions_cannot_be_updated, on: :update
37 validate :protected_managed_properties_updates, on: :update
38 after_validation :set_file_count_and_total_size
39 before_save :set_file_names
40 around_update :manage_versioning, unless: :is_past_version?
42 api_accessible :user, extend: :common do |t|
43 t.add lambda { |x| x.name || "" }, as: :name
46 t.add :portable_data_hash
47 t.add :signed_manifest_text, as: :manifest_text
48 t.add :manifest_text, as: :unsigned_manifest_text
49 t.add :replication_desired
50 t.add :replication_confirmed
51 t.add :replication_confirmed_at
52 t.add :storage_classes_desired
53 t.add :storage_classes_confirmed
54 t.add :storage_classes_confirmed_at
59 t.add :current_version_uuid
60 t.add :preserve_version
62 t.add :file_size_total
66 @signatures_checked = false
67 @computed_pdh_for_manifest_text = false
70 def self.attributes_required_columns
72 # If we don't list manifest_text explicitly, the
73 # params[:select] code gets confused by the way we
74 # expose signed_manifest_text as manifest_text in the
75 # API response, and never let clients select the
76 # manifest_text column.
78 # We need trash_at and is_trashed to determine the
79 # correct timestamp in signed_manifest_text.
80 'manifest_text' => ['manifest_text', 'trash_at', 'is_trashed'],
81 'unsigned_manifest_text' => ['manifest_text'],
86 def self.ignored_select_attributes
87 super + ["updated_at", "file_names"]
90 def self.limit_index_columns_read
94 FILE_TOKEN = /^[[:digit:]]+:[[:digit:]]+:/
96 throw(:abort) if self.manifest_text.nil?
98 return true if current_user.andand.is_admin
100 # Provided the manifest_text hasn't changed materially since an
101 # earlier validation, it's safe to pass this validation on
102 # subsequent passes without checking any signatures. This is
103 # important because the signatures have probably been stripped off
104 # by the time we get to a second validation pass!
105 if @signatures_checked && @signatures_checked == computed_pdh
109 if self.manifest_text_changed?
110 # Check permissions on the collection manifest.
111 # If any signature cannot be verified, raise PermissionDeniedError
112 # which will return 403 Permission denied to the client.
113 api_token = Thread.current[:token]
115 api_token: api_token,
116 now: @validation_timestamp.to_i,
118 self.manifest_text.each_line do |entry|
119 entry.split.each do |tok|
120 if tok == '.' or tok.starts_with? './'
122 elsif tok =~ FILE_TOKEN
123 # This is a filename token, not a blob locator. Note that we
124 # keep checking tokens after this, even though manifest
125 # format dictates that all subsequent tokens will also be
126 # filenames. Safety first!
127 elsif Blob.verify_signature tok, signing_opts
129 elsif Keep::Locator.parse(tok).andand.signature
130 # Signature provided, but verify_signature did not like it.
131 logger.warn "Invalid signature on locator #{tok}"
132 raise ArvadosModel::PermissionDeniedError
133 elsif !Rails.configuration.Collections.BlobSigning
134 # No signature provided, but we are running in insecure mode.
135 logger.debug "Missing signature on locator #{tok} ignored"
136 elsif Blob.new(tok).empty?
137 # No signature provided -- but no data to protect, either.
139 logger.warn "Missing signature on locator #{tok}"
140 raise ArvadosModel::PermissionDeniedError
145 @signatures_checked = computed_pdh
148 def strip_signatures_and_update_replication_confirmed
149 if self.manifest_text_changed?
151 if not self.replication_confirmed.nil?
152 self.class.each_manifest_locator(manifest_text_was) do |match|
153 in_old_manifest[match[1]] = true
157 stripped_manifest = self.class.munge_manifest_locators(manifest_text) do |match|
158 if not self.replication_confirmed.nil? and not in_old_manifest[match[1]]
159 # If the new manifest_text contains locators whose hashes
160 # weren't in the old manifest_text, storage replication is no
162 self.replication_confirmed_at = nil
163 self.replication_confirmed = nil
166 # Return the locator with all permission signatures removed,
167 # but otherwise intact.
168 match[0].gsub(/\+A[^+]*/, '')
171 if @computed_pdh_for_manifest_text == manifest_text
172 # If the cached PDH was valid before stripping, it is still
173 # valid after stripping.
174 @computed_pdh_for_manifest_text = stripped_manifest.dup
177 self[:manifest_text] = stripped_manifest
182 def ensure_pdh_matches_manifest_text
183 if not manifest_text_changed? and not portable_data_hash_changed?
185 elsif portable_data_hash.nil? or not portable_data_hash_changed?
186 self.portable_data_hash = computed_pdh
187 elsif portable_data_hash !~ Keep::Locator::LOCATOR_REGEXP
188 errors.add(:portable_data_hash, "is not a valid locator")
190 elsif portable_data_hash[0..31] != computed_pdh[0..31]
191 errors.add(:portable_data_hash,
192 "'#{portable_data_hash}' does not match computed hash '#{computed_pdh}'")
195 # Ignore the client-provided size part: always store
196 # computed_pdh in the database.
197 self.portable_data_hash = computed_pdh
201 def name_null_if_empty
208 if self.manifest_text_changed?
209 self.file_names = manifest_files
214 def set_file_count_and_total_size
215 # Only update the file stats if the manifest changed
216 if self.manifest_text_changed?
217 m = Keep::Manifest.new(self.manifest_text)
218 self.file_size_total = m.files_size
219 self.file_count = m.files_count
220 # If the manifest didn't change but the attributes did, ignore the changes
221 elsif self.file_count_changed? || self.file_size_total_changed?
222 self.file_count = self.file_count_was
223 self.file_size_total = self.file_size_total_was
229 return '' if !self.manifest_text
233 self.manifest_text.scan(/ \d+:\d+:(\S+)/) do |name|
236 names << name.first.gsub('\040',' ') + "\n"
238 self.manifest_text.scan(/^\.\/(\S+)/m) do |stream_name|
239 next if done[stream_name]
240 done[stream_name] = true
241 names << stream_name.first.gsub('\040',' ') + "\n"
246 def default_empty_manifest
247 self.manifest_text ||= ''
250 def skip_uuid_existence_check
251 # Avoid checking the existence of current_version_uuid, as it's
252 # assigned on creation of a new 'current version' collection, so
253 # the collection's UUID only lives on memory when the validation check
255 ['current_version_uuid']
258 def manage_versioning
259 should_preserve_version = should_preserve_version? # Time sensitive, cache value
260 return(yield) unless (should_preserve_version || syncable_updates.any?)
262 # Put aside the changes because with_lock does a record reload
263 changes = self.changes
267 # Copy the original state to save it as old version
268 if should_preserve_version
270 snapshot.uuid = nil # Reset UUID so it's created as a new record
271 snapshot.created_at = self.created_at
274 # Restore requested changes on the current version
275 changes.keys.each do |attr|
276 if attr == 'preserve_version' && changes[attr].last == false
277 next # Ignore false assignment, once true it'll be true until next version
279 self.attributes = {attr => changes[attr].last}
281 # Also update the current version reference
282 self.attributes = {'current_version_uuid' => changes[attr].last}
286 if should_preserve_version
288 self.preserve_version = false
293 sync_past_versions if syncable_updates.any?
295 snapshot.attributes = self.syncable_updates
296 leave_modified_by_user_alone do
297 act_as_system_user do
308 changes = self.changes
310 # If called after save...
311 changes = self.saved_changes
313 (syncable_attrs & changes.keys).each do |attr|
315 # Point old versions to current version's new UUID
316 updates['current_version_uuid'] = changes[attr].last
318 updates[attr] = changes[attr].last
324 def sync_past_versions
325 updates = self.syncable_updates
326 Collection.where('current_version_uuid = ? AND uuid != ?', self.uuid_before_last_save, self.uuid_before_last_save).each do |c|
327 c.attributes = updates
328 # Use a different validation context to skip the 'past_versions_cannot_be_updated'
329 # validator, as on this case it is legal to update some fields.
330 leave_modified_by_user_alone do
331 leave_modified_at_alone do
332 c.save(context: :update_old_versions)
338 def versionable_updates?(attrs)
339 (['manifest_text', 'description', 'properties', 'name'] & attrs).any?
343 ['uuid', 'owner_uuid', 'delete_at', 'trash_at', 'is_trashed', 'replication_desired', 'storage_classes_desired']
347 # Check for the '_was' values just in case the update operation
348 # includes a change on current_version_uuid or uuid.
349 !(new_record? || self.current_version_uuid_was == self.uuid_was)
352 def should_preserve_version?
353 return false unless (Rails.configuration.Collections.CollectionVersioning && versionable_updates?(self.changes.keys))
355 return false if self.is_trashed
357 idle_threshold = Rails.configuration.Collections.PreserveVersionIfIdle
358 if !self.preserve_version_was &&
359 (idle_threshold < 0 ||
360 (idle_threshold > 0 && self.modified_at_was > db_current_time-idle_threshold.seconds))
367 if !(manifest_text.encoding.name == 'UTF-8' and manifest_text.valid_encoding?)
369 # If Ruby thinks the encoding is something else, like 7-bit
370 # ASCII, but its stored bytes are equal to the (valid) UTF-8
371 # encoding of the same string, we declare it to be a UTF-8
374 utf8.force_encoding Encoding::UTF_8
375 if utf8.valid_encoding? and utf8 == manifest_text.encode(Encoding::UTF_8)
376 self.manifest_text = utf8
381 errors.add :manifest_text, "must use UTF-8 encoding"
386 def check_manifest_validity
388 Keep::Manifest.validate! manifest_text
390 rescue ArgumentError => e
391 errors.add :manifest_text, e.message
396 def signed_manifest_text
397 if !has_attribute? :manifest_text
402 token = Thread.current[:token]
403 exp = [db_current_time.to_i + Rails.configuration.Collections.BlobSigningTTL.to_i,
404 trash_at].compact.map(&:to_i).min
405 self.class.sign_manifest manifest_text, token, exp
409 def self.sign_manifest manifest, token, exp=nil
411 exp = db_current_time.to_i + Rails.configuration.Collections.BlobSigningTTL.to_i
417 m = munge_manifest_locators(manifest) do |match|
418 Blob.sign_locator(match[0], signing_opts)
423 def self.munge_manifest_locators manifest
424 # Given a manifest text and a block, yield the regexp MatchData
425 # for each locator. Return a new manifest in which each locator
426 # has been replaced by the block's return value.
427 return nil if !manifest
428 return '' if manifest == ''
431 manifest.each_line do |line|
434 line.split(' ').each do |word|
437 elsif match = Keep::Locator::LOCATOR_REGEXP.match(word)
438 new_words << yield(match)
443 new_lines << new_words.join(' ')
445 new_lines.join("\n") + "\n"
448 def self.each_manifest_locator manifest
449 # Given a manifest text and a block, yield the regexp match object
451 manifest.each_line do |line|
452 # line will have a trailing newline, but the last token is never
453 # a locator, so it's harmless here.
454 line.split(' ').each do |word|
455 if match = Keep::Locator::LOCATOR_REGEXP.match(word)
462 def self.normalize_uuid uuid
465 uuid.split('+').each do |token|
466 if token.match(/^[0-9a-f]{32,}$/)
467 raise "uuid #{uuid} has multiple hash parts" if hash_part
469 elsif token.match(/^\d+$/)
470 raise "uuid #{uuid} has multiple size parts" if size_part
474 raise "uuid #{uuid} has no hash part" if !hash_part
475 [hash_part, size_part].compact.join '+'
478 def self.get_compatible_images(readers, pattern, collections)
479 if collections.empty?
484 Link.where('tail_uuid in (?) AND link_class=? AND links.owner_uuid=?',
485 collections.map(&:portable_data_hash),
486 'docker_image_migration',
488 order('links.created_at asc').
490 [l.tail_uuid, l.head_uuid]
493 migrated_collections = Hash[
494 Collection.readable_by(*readers).
495 where('portable_data_hash in (?)', migrations.values).
497 [c.portable_data_hash, c]
500 collections.map { |c|
501 # Check if the listed image is compatible first, if not, then try the
503 manifest = Keep::Manifest.new(c.manifest_text)
504 if manifest.exact_file_count?(1) and manifest.files[0][1] =~ pattern
506 elsif m = migrated_collections[migrations[c.portable_data_hash]]
507 manifest = Keep::Manifest.new(m.manifest_text)
508 if manifest.exact_file_count?(1) and manifest.files[0][1] =~ pattern
515 # Resolve a Docker repo+tag, hash, or collection PDH to an array of
516 # Collection objects, sorted by timestamp starting with the most recent
519 # If filter_compatible_format is true (the default), only return image
520 # collections which are support by the installation as indicated by
521 # Rails.configuration.Containers.SupportedDockerImageFormats. Will follow
522 # 'docker_image_migration' links if search_term resolves to an incompatible
523 # image, but an equivalent compatible image is available.
524 def self.find_all_for_docker_image(search_term, search_tag=nil, readers=nil, filter_compatible_format: true)
525 readers ||= [Thread.current[:user]]
527 readable_by(*readers).
528 readable_by(*readers, table_name: "collections").
529 joins("JOIN collections ON links.head_uuid = collections.uuid").
530 order("links.created_at DESC")
532 docker_image_formats = Rails.configuration.Containers.SupportedDockerImageFormats.keys.map(&:to_s)
534 if (docker_image_formats.include? 'v1' and
535 docker_image_formats.include? 'v2') or filter_compatible_format == false
536 pattern = /^(sha256:)?[0-9A-Fa-f]{64}\.tar$/
537 elsif docker_image_formats.include? 'v2'
538 pattern = /^(sha256:)[0-9A-Fa-f]{64}\.tar$/
539 elsif docker_image_formats.include? 'v1'
540 pattern = /^[0-9A-Fa-f]{64}\.tar$/
542 raise "Unrecognized configuration for docker_image_formats #{docker_image_formats}"
545 # If the search term is a Collection locator that contains one file
546 # that looks like a Docker image, return it.
547 if loc = Keep::Locator.parse(search_term)
549 coll_match = readable_by(*readers).where(portable_data_hash: loc.to_s).limit(1)
550 rc = Rails.configuration.RemoteClusters.select{ |k|
551 k != :"*" && k != Rails.configuration.ClusterID}
552 if coll_match.any? or rc.length == 0
553 return get_compatible_images(readers, pattern, coll_match)
555 # Allow bare pdh that doesn't exist in the local database so
556 # that federated container requests which refer to remotely
557 # stored containers will validate.
558 return [Collection.new(portable_data_hash: loc.to_s)]
562 if search_tag.nil? and (n = search_term.index(":"))
563 search_tag = search_term[n+1..-1]
564 search_term = search_term[0..n-1]
567 # Find Collections with matching Docker image repository+tag pairs.
568 matches = base_search.
569 where(link_class: "docker_image_repo+tag",
570 name: "#{search_term}:#{search_tag || 'latest'}")
572 # If that didn't work, find Collections with matching Docker image hashes.
574 matches = base_search.
575 where("link_class = ? and links.name LIKE ?",
576 "docker_image_hash", "#{search_term}%")
579 # Generate an order key for each result. We want to order the results
580 # so that anything with an image timestamp is considered more recent than
581 # anything without; then we use the link's created_at as a tiebreaker.
583 matches.each do |link|
584 uuid_timestamps[link.head_uuid] = [(-link.properties["image_timestamp"].to_datetime.to_i rescue 0),
585 -link.created_at.to_i]
588 sorted = Collection.where('uuid in (?)', uuid_timestamps.keys).sort_by { |c|
589 uuid_timestamps[c.uuid]
591 compatible = get_compatible_images(readers, pattern, sorted)
592 if sorted.length > 0 and compatible.empty?
593 raise ArvadosModel::UnresolvableContainerError.new "Matching Docker image is incompatible with 'docker_image_formats' configuration."
598 def self.for_latest_docker_image(search_term, search_tag=nil, readers=nil)
599 find_all_for_docker_image(search_term, search_tag, readers).first
602 def self.searchable_columns operator
603 super - ["manifest_text"]
606 def self.full_text_searchable_columns
607 super - ["manifest_text", "storage_classes_desired", "storage_classes_confirmed", "current_version_uuid"]
611 SweepTrashedObjects.sweep_if_stale
617 # Although the defaults for these columns is already set up on the schema,
618 # collection creation from an API client seems to ignore them, making the
619 # validation on empty desired storage classes return an error.
620 def default_storage_classes
621 if self.storage_classes_desired.nil? || self.storage_classes_desired.empty?
622 self.storage_classes_desired = ["default"]
624 self.storage_classes_confirmed ||= []
627 # Sets managed properties at creation time
628 def managed_properties
629 managed_props = Rails.configuration.Collections.ManagedProperties.with_indifferent_access
630 if managed_props.empty?
633 (managed_props.keys - self.properties.keys).each do |key|
634 if managed_props[key]['Function'] == 'original_owner'
635 self.properties[key] = self.user_owner_uuid
636 elsif managed_props[key]['Value']
637 self.properties[key] = managed_props[key]['Value']
639 logger.warn "Unidentified default property definition '#{key}': #{managed_props[key].inspect}"
644 def portable_manifest_text
645 self.class.munge_manifest_locators(manifest_text) do |match|
655 portable_manifest = portable_manifest_text
656 (Digest::MD5.hexdigest(portable_manifest) +
658 portable_manifest.bytesize.to_s)
662 if @computed_pdh_for_manifest_text == manifest_text
665 @computed_pdh = compute_pdh
666 @computed_pdh_for_manifest_text = manifest_text.dup
670 def ensure_permission_to_save
671 if (not current_user.andand.is_admin)
672 if (replication_confirmed_at_changed? or replication_confirmed_changed?) and
673 not (replication_confirmed_at.nil? and replication_confirmed.nil?)
674 raise ArvadosModel::PermissionDeniedError.new("replication_confirmed and replication_confirmed_at attributes cannot be changed, except by setting both to nil")
676 if (storage_classes_confirmed_changed? or storage_classes_confirmed_at_changed?) and
677 not (storage_classes_confirmed == [] and storage_classes_confirmed_at.nil?)
678 raise ArvadosModel::PermissionDeniedError.new("storage_classes_confirmed and storage_classes_confirmed_at attributes cannot be changed, except by setting them to [] and nil respectively")
684 def ensure_storage_classes_desired_is_not_empty
685 if self.storage_classes_desired.empty?
686 raise ArvadosModel::InvalidStateTransitionError.new("storage_classes_desired shouldn't be empty")
690 def ensure_storage_classes_contain_non_empty_strings
691 (self.storage_classes_desired + self.storage_classes_confirmed).each do |c|
692 if !c.is_a?(String) || c == ''
693 raise ArvadosModel::InvalidStateTransitionError.new("storage classes should only be non-empty strings")
698 def past_versions_cannot_be_updated
700 errors.add(:base, "past versions cannot be updated")
705 def protected_managed_properties_updates
706 managed_properties = Rails.configuration.Collections.ManagedProperties.with_indifferent_access
707 if managed_properties.empty? || !properties_changed? || current_user.is_admin
710 protected_props = managed_properties.keys.select do |p|
711 Rails.configuration.Collections.ManagedProperties[p]['Protected']
713 # Pre-existent protected properties can't be updated
714 invalid_updates = properties_was.keys.select{|p| properties_was[p] != properties[p]} & protected_props
715 if !invalid_updates.empty?
716 invalid_updates.each do |p|
717 errors.add("protected property cannot be updated:", p)
719 raise PermissionDeniedError.new
724 def versioning_metadata_updates
726 if !is_past_version? && current_version_uuid_changed?
727 errors.add(:current_version_uuid, "cannot be updated")
731 errors.add(:version, "cannot be updated")
739 self.current_version_uuid ||= self.uuid