3 class Collection < ArvadosModel
7 include CommonApiTemplate
9 serialize :properties, Hash
11 before_validation :default_empty_manifest
12 before_validation :check_encoding
13 before_validation :check_manifest_validity
14 before_validation :check_signatures
15 before_validation :strip_signatures_and_update_replication_confirmed
16 validate :ensure_pdh_matches_manifest_text
17 before_save :set_file_names
19 # Query only undeleted collections by default.
20 default_scope where("expires_at IS NULL or expires_at > CURRENT_TIMESTAMP")
22 api_accessible :user, extend: :common do |t|
26 t.add :portable_data_hash
27 t.add :signed_manifest_text, as: :manifest_text
28 t.add :replication_desired
29 t.add :replication_confirmed
30 t.add :replication_confirmed_at
33 def self.attributes_required_columns
35 # If we don't list manifest_text explicitly, the
36 # params[:select] code gets confused by the way we
37 # expose signed_manifest_text as manifest_text in the
38 # API response, and never let clients select the
39 # manifest_text column.
40 'manifest_text' => ['manifest_text'],
44 FILE_TOKEN = /^[[:digit:]]+:[[:digit:]]+:/
46 return false if self.manifest_text.nil?
48 return true if current_user.andand.is_admin
50 # Provided the manifest_text hasn't changed materially since an
51 # earlier validation, it's safe to pass this validation on
52 # subsequent passes without checking any signatures. This is
53 # important because the signatures have probably been stripped off
54 # by the time we get to a second validation pass!
55 return true if @signatures_checked and @signatures_checked == computed_pdh
57 if self.manifest_text_changed?
58 # Check permissions on the collection manifest.
59 # If any signature cannot be verified, raise PermissionDeniedError
60 # which will return 403 Permission denied to the client.
61 api_token = current_api_client_authorization.andand.api_token
64 now: db_current_time.to_i,
66 self.manifest_text.each_line do |entry|
67 entry.split.each do |tok|
68 if tok == '.' or tok.starts_with? './'
70 elsif tok =~ FILE_TOKEN
71 # This is a filename token, not a blob locator. Note that we
72 # keep checking tokens after this, even though manifest
73 # format dictates that all subsequent tokens will also be
74 # filenames. Safety first!
75 elsif Blob.verify_signature tok, signing_opts
77 elsif Keep::Locator.parse(tok).andand.signature
78 # Signature provided, but verify_signature did not like it.
79 logger.warn "Invalid signature on locator #{tok}"
80 raise ArvadosModel::PermissionDeniedError
81 elsif Rails.configuration.permit_create_collection_with_unsigned_manifest
82 # No signature provided, but we are running in insecure mode.
83 logger.debug "Missing signature on locator #{tok} ignored"
84 elsif Blob.new(tok).empty?
85 # No signature provided -- but no data to protect, either.
87 logger.warn "Missing signature on locator #{tok}"
88 raise ArvadosModel::PermissionDeniedError
93 @signatures_checked = computed_pdh
96 def strip_signatures_and_update_replication_confirmed
97 if self.manifest_text_changed?
99 if not self.replication_confirmed.nil?
100 self.class.each_manifest_locator(manifest_text_was) do |match|
101 in_old_manifest[match[1]] = true
105 stripped_manifest = self.class.munge_manifest_locators(manifest_text) do |match|
106 if not self.replication_confirmed.nil? and not in_old_manifest[match[1]]
107 # If the new manifest_text contains locators whose hashes
108 # weren't in the old manifest_text, storage replication is no
110 self.replication_confirmed_at = nil
111 self.replication_confirmed = nil
114 # Return the locator with all permission signatures removed,
115 # but otherwise intact.
116 match[0].gsub(/\+A[^+]*/, '')
119 if @computed_pdh_for_manifest_text == manifest_text
120 # If the cached PDH was valid before stripping, it is still
121 # valid after stripping.
122 @computed_pdh_for_manifest_text = stripped_manifest.dup
125 self[:manifest_text] = stripped_manifest
130 def ensure_pdh_matches_manifest_text
131 if not manifest_text_changed? and not portable_data_hash_changed?
133 elsif portable_data_hash.nil? or not portable_data_hash_changed?
134 self.portable_data_hash = computed_pdh
135 elsif portable_data_hash !~ Keep::Locator::LOCATOR_REGEXP
136 errors.add(:portable_data_hash, "is not a valid locator")
138 elsif portable_data_hash[0..31] != computed_pdh[0..31]
139 errors.add(:portable_data_hash,
140 "does not match computed hash #{computed_pdh}")
143 # Ignore the client-provided size part: always store
144 # computed_pdh in the database.
145 self.portable_data_hash = computed_pdh
150 if self.manifest_text_changed?
151 self.file_names = manifest_files
158 if self.manifest_text
159 self.manifest_text.scan(/ \d+:\d+:(\S+)/) do |name|
160 names << name.first.gsub('\040',' ') + "\n"
161 break if names.length > 2**12
165 if self.manifest_text and names.length < 2**12
166 self.manifest_text.scan(/^\.\/(\S+)/m) do |stream_name|
167 names << stream_name.first.gsub('\040',' ') + "\n"
168 break if names.length > 2**12
175 def default_empty_manifest
176 self.manifest_text ||= ''
180 if manifest_text.encoding.name == 'UTF-8' and manifest_text.valid_encoding?
184 # If Ruby thinks the encoding is something else, like 7-bit
185 # ASCII, but its stored bytes are equal to the (valid) UTF-8
186 # encoding of the same string, we declare it to be a UTF-8
189 utf8.force_encoding Encoding::UTF_8
190 if utf8.valid_encoding? and utf8 == manifest_text.encode(Encoding::UTF_8)
196 errors.add :manifest_text, "must use UTF-8 encoding"
201 def check_manifest_validity
203 Keep::Manifest.validate! manifest_text
205 rescue ArgumentError => e
206 errors.add :manifest_text, e.message
211 def signed_manifest_text
212 if has_attribute? :manifest_text
213 token = current_api_client_authorization.andand.api_token
214 @signed_manifest_text = self.class.sign_manifest manifest_text, token
218 def self.sign_manifest manifest, token
221 expire: db_current_time.to_i + Rails.configuration.blob_signature_ttl,
223 m = munge_manifest_locators(manifest) do |match|
224 Blob.sign_locator(match[0], signing_opts)
229 def self.munge_manifest_locators manifest
230 # Given a manifest text and a block, yield the regexp MatchData
231 # for each locator. Return a new manifest in which each locator
232 # has been replaced by the block's return value.
233 return nil if !manifest
234 return '' if manifest == ''
237 manifest.each_line do |line|
240 line.split(' ').each do |word|
243 elsif match = Keep::Locator::LOCATOR_REGEXP.match(word)
244 new_words << yield(match)
249 new_lines << new_words.join(' ')
251 new_lines.join("\n") + "\n"
254 def self.each_manifest_locator manifest
255 # Given a manifest text and a block, yield the regexp match object
257 manifest.each_line do |line|
258 # line will have a trailing newline, but the last token is never
259 # a locator, so it's harmless here.
260 line.split(' ').each do |word|
261 if match = Keep::Locator::LOCATOR_REGEXP.match(word)
268 def self.normalize_uuid uuid
271 uuid.split('+').each do |token|
272 if token.match /^[0-9a-f]{32,}$/
273 raise "uuid #{uuid} has multiple hash parts" if hash_part
275 elsif token.match /^\d+$/
276 raise "uuid #{uuid} has multiple size parts" if size_part
280 raise "uuid #{uuid} has no hash part" if !hash_part
281 [hash_part, size_part].compact.join '+'
284 # Return array of Collection objects
285 def self.find_all_for_docker_image(search_term, search_tag=nil, readers=nil)
286 readers ||= [Thread.current[:user]]
288 readable_by(*readers).
289 readable_by(*readers, table_name: "collections").
290 joins("JOIN collections ON links.head_uuid = collections.uuid").
291 order("links.created_at DESC")
293 # If the search term is a Collection locator that contains one file
294 # that looks like a Docker image, return it.
295 if loc = Keep::Locator.parse(search_term)
297 coll_match = readable_by(*readers).where(portable_data_hash: loc.to_s).limit(1).first
299 # Check if the Collection contains exactly one file whose name
300 # looks like a saved Docker image.
301 manifest = Keep::Manifest.new(coll_match.manifest_text)
302 if manifest.exact_file_count?(1) and
303 (manifest.files[0][1] =~ /^[0-9A-Fa-f]{64}\.tar$/)
309 if search_tag.nil? and (n = search_term.index(":"))
310 search_tag = search_term[n+1..-1]
311 search_term = search_term[0..n-1]
314 # Find Collections with matching Docker image repository+tag pairs.
315 matches = base_search.
316 where(link_class: "docker_image_repo+tag",
317 name: "#{search_term}:#{search_tag || 'latest'}")
319 # If that didn't work, find Collections with matching Docker image hashes.
321 matches = base_search.
322 where("link_class = ? and links.name LIKE ?",
323 "docker_image_hash", "#{search_term}%")
326 # Generate an order key for each result. We want to order the results
327 # so that anything with an image timestamp is considered more recent than
328 # anything without; then we use the link's created_at as a tiebreaker.
330 matches.all.map do |link|
331 uuid_timestamps[link.head_uuid] = [(-link.properties["image_timestamp"].to_datetime.to_i rescue 0),
332 -link.created_at.to_i]
334 Collection.where('uuid in (?)', uuid_timestamps.keys).sort_by { |c| uuid_timestamps[c.uuid] }
337 def self.for_latest_docker_image(search_term, search_tag=nil, readers=nil)
338 find_all_for_docker_image(search_term, search_tag, readers).first
341 def self.searchable_columns operator
342 super - ["manifest_text"]
345 def self.full_text_searchable_columns
346 super - ["manifest_text"]
350 def portable_manifest_text
351 self.class.munge_manifest_locators(manifest_text) do |match|
361 portable_manifest = portable_manifest_text
362 (Digest::MD5.hexdigest(portable_manifest) +
364 portable_manifest.bytesize.to_s)
368 if @computed_pdh_for_manifest_text == manifest_text
371 @computed_pdh = compute_pdh
372 @computed_pdh_for_manifest_text = manifest_text.dup
376 def ensure_permission_to_save
377 if (not current_user.andand.is_admin and
378 (replication_confirmed_at_changed? or replication_confirmed_changed?) and
379 not (replication_confirmed_at.nil? and replication_confirmed.nil?))
380 raise ArvadosModel::PermissionDeniedError.new("replication_confirmed and replication_confirmed_at attributes cannot be changed, except by setting both to nil")