Merge branch 'master' into 6277-check_manifest_validity
[arvados.git] / services / api / app / models / collection.rb
1 require 'arvados/keep'
2
3 class Collection < ArvadosModel
4   extend DbCurrentTime
5   include HasUuid
6   include KindAndEtag
7   include CommonApiTemplate
8
9   serialize :properties, Hash
10
11   before_validation :check_encoding
12   before_validation :check_manifest_validity
13   before_validation :check_signatures
14   before_validation :strip_signatures_and_update_replication_confirmed
15   validate :ensure_pdh_matches_manifest_text
16   before_save :set_file_names
17
18   # Query only undeleted collections by default.
19   default_scope where("expires_at IS NULL or expires_at > CURRENT_TIMESTAMP")
20
21   api_accessible :user, extend: :common do |t|
22     t.add :name
23     t.add :description
24     t.add :properties
25     t.add :portable_data_hash
26     t.add :signed_manifest_text, as: :manifest_text
27     t.add :replication_desired
28     t.add :replication_confirmed
29     t.add :replication_confirmed_at
30   end
31
32   def self.attributes_required_columns
33     super.merge(
34                 # If we don't list manifest_text explicitly, the
35                 # params[:select] code gets confused by the way we
36                 # expose signed_manifest_text as manifest_text in the
37                 # API response, and never let clients select the
38                 # manifest_text column.
39                 'manifest_text' => ['manifest_text'],
40                 )
41   end
42
43   FILE_TOKEN = /^[[:digit:]]+:[[:digit:]]+:/
44   def check_signatures
45     return false if self.manifest_text.nil?
46
47     return true if current_user.andand.is_admin
48
49     # Provided the manifest_text hasn't changed materially since an
50     # earlier validation, it's safe to pass this validation on
51     # subsequent passes without checking any signatures. This is
52     # important because the signatures have probably been stripped off
53     # by the time we get to a second validation pass!
54     return true if @signatures_checked and @signatures_checked == computed_pdh
55
56     if self.manifest_text_changed?
57       # Check permissions on the collection manifest.
58       # If any signature cannot be verified, raise PermissionDeniedError
59       # which will return 403 Permission denied to the client.
60       api_token = current_api_client_authorization.andand.api_token
61       signing_opts = {
62         api_token: api_token,
63         now: db_current_time.to_i,
64       }
65       self.manifest_text.each_line do |entry|
66         entry.split.each do |tok|
67           if tok == '.' or tok.starts_with? './'
68             # Stream name token.
69           elsif tok =~ FILE_TOKEN
70             # This is a filename token, not a blob locator. Note that we
71             # keep checking tokens after this, even though manifest
72             # format dictates that all subsequent tokens will also be
73             # filenames. Safety first!
74           elsif Blob.verify_signature tok, signing_opts
75             # OK.
76           elsif Keep::Locator.parse(tok).andand.signature
77             # Signature provided, but verify_signature did not like it.
78             logger.warn "Invalid signature on locator #{tok}"
79             raise ArvadosModel::PermissionDeniedError
80           elsif Rails.configuration.permit_create_collection_with_unsigned_manifest
81             # No signature provided, but we are running in insecure mode.
82             logger.debug "Missing signature on locator #{tok} ignored"
83           elsif Blob.new(tok).empty?
84             # No signature provided -- but no data to protect, either.
85           else
86             logger.warn "Missing signature on locator #{tok}"
87             raise ArvadosModel::PermissionDeniedError
88           end
89         end
90       end
91     end
92     @signatures_checked = computed_pdh
93   end
94
95   def strip_signatures_and_update_replication_confirmed
96     if self.manifest_text_changed?
97       in_old_manifest = {}
98       if not self.replication_confirmed.nil?
99         self.class.each_manifest_locator(manifest_text_was) do |match|
100           in_old_manifest[match[1]] = true
101         end
102       end
103
104       stripped_manifest = self.class.munge_manifest_locators(manifest_text) do |match|
105         if not self.replication_confirmed.nil? and not in_old_manifest[match[1]]
106           # If the new manifest_text contains locators whose hashes
107           # weren't in the old manifest_text, storage replication is no
108           # longer confirmed.
109           self.replication_confirmed_at = nil
110           self.replication_confirmed = nil
111         end
112
113         # Return the locator with all permission signatures removed,
114         # but otherwise intact.
115         match[0].gsub(/\+A[^+]*/, '')
116       end
117
118       if @computed_pdh_for_manifest_text == manifest_text
119         # If the cached PDH was valid before stripping, it is still
120         # valid after stripping.
121         @computed_pdh_for_manifest_text = stripped_manifest.dup
122       end
123
124       self[:manifest_text] = stripped_manifest
125     end
126     true
127   end
128
129   def ensure_pdh_matches_manifest_text
130     if not manifest_text_changed? and not portable_data_hash_changed?
131       true
132     elsif portable_data_hash.nil? or not portable_data_hash_changed?
133       self.portable_data_hash = computed_pdh
134     elsif portable_data_hash !~ Keep::Locator::LOCATOR_REGEXP
135       errors.add(:portable_data_hash, "is not a valid locator")
136       false
137     elsif portable_data_hash[0..31] != computed_pdh[0..31]
138       errors.add(:portable_data_hash,
139                  "does not match computed hash #{computed_pdh}")
140       false
141     else
142       # Ignore the client-provided size part: always store
143       # computed_pdh in the database.
144       self.portable_data_hash = computed_pdh
145     end
146   end
147
148   def set_file_names
149     if self.manifest_text_changed?
150       self.file_names = manifest_files
151     end
152     true
153   end
154
155   def manifest_files
156     names = ''
157     if self.manifest_text
158       self.manifest_text.scan(/ \d+:\d+:(\S+)/) do |name|
159         names << name.first.gsub('\040',' ') + "\n"
160         break if names.length > 2**12
161       end
162     end
163
164     if self.manifest_text and names.length < 2**12
165       self.manifest_text.scan(/^\.\/(\S+)/m) do |stream_name|
166         names << stream_name.first.gsub('\040',' ') + "\n"
167         break if names.length > 2**12
168       end
169     end
170
171     names[0,2**12]
172   end
173
174   def check_encoding
175     if manifest_text.encoding.name == 'UTF-8' and manifest_text.valid_encoding?
176       true
177     else
178       begin
179         # If Ruby thinks the encoding is something else, like 7-bit
180         # ASCII, but its stored bytes are equal to the (valid) UTF-8
181         # encoding of the same string, we declare it to be a UTF-8
182         # string.
183         utf8 = manifest_text
184         utf8.force_encoding Encoding::UTF_8
185         if utf8.valid_encoding? and utf8 == manifest_text.encode(Encoding::UTF_8)
186           manifest_text = utf8
187           return true
188         end
189       rescue
190       end
191       errors.add :manifest_text, "must use UTF-8 encoding"
192       false
193     end
194   end
195
196   def check_manifest_validity
197     begin
198       Keep::Manifest.validate! manifest_text
199       true
200     rescue => e
201       logger.warn e
202       false
203     end
204   end
205
206   def signed_manifest_text
207     if has_attribute? :manifest_text
208       token = current_api_client_authorization.andand.api_token
209       @signed_manifest_text = self.class.sign_manifest manifest_text, token
210     end
211   end
212
213   def self.sign_manifest manifest, token
214     signing_opts = {
215       api_token: token,
216       expire: db_current_time.to_i + Rails.configuration.blob_signature_ttl,
217     }
218     m = munge_manifest_locators(manifest) do |match|
219       Blob.sign_locator(match[0], signing_opts)
220     end
221     return m
222   end
223
224   def self.munge_manifest_locators manifest
225     # Given a manifest text and a block, yield the regexp MatchData
226     # for each locator. Return a new manifest in which each locator
227     # has been replaced by the block's return value.
228     return nil if !manifest
229     return '' if manifest == ''
230
231     new_lines = []
232     manifest.each_line do |line|
233       line.rstrip!
234       new_words = []
235       line.split(' ').each do |word|
236         if new_words.empty?
237           new_words << word
238         elsif match = Keep::Locator::LOCATOR_REGEXP.match(word)
239           new_words << yield(match)
240         else
241           new_words << word
242         end
243       end
244       new_lines << new_words.join(' ')
245     end
246     new_lines.join("\n") + "\n"
247   end
248
249   def self.each_manifest_locator manifest
250     # Given a manifest text and a block, yield the regexp match object
251     # for each locator.
252     manifest.each_line do |line|
253       # line will have a trailing newline, but the last token is never
254       # a locator, so it's harmless here.
255       line.split(' ').each do |word|
256         if match = Keep::Locator::LOCATOR_REGEXP.match(word)
257           yield(match)
258         end
259       end
260     end
261   end
262
263   def self.normalize_uuid uuid
264     hash_part = nil
265     size_part = nil
266     uuid.split('+').each do |token|
267       if token.match /^[0-9a-f]{32,}$/
268         raise "uuid #{uuid} has multiple hash parts" if hash_part
269         hash_part = token
270       elsif token.match /^\d+$/
271         raise "uuid #{uuid} has multiple size parts" if size_part
272         size_part = token
273       end
274     end
275     raise "uuid #{uuid} has no hash part" if !hash_part
276     [hash_part, size_part].compact.join '+'
277   end
278
279   # Return array of Collection objects
280   def self.find_all_for_docker_image(search_term, search_tag=nil, readers=nil)
281     readers ||= [Thread.current[:user]]
282     base_search = Link.
283       readable_by(*readers).
284       readable_by(*readers, table_name: "collections").
285       joins("JOIN collections ON links.head_uuid = collections.uuid").
286       order("links.created_at DESC")
287
288     # If the search term is a Collection locator that contains one file
289     # that looks like a Docker image, return it.
290     if loc = Keep::Locator.parse(search_term)
291       loc.strip_hints!
292       coll_match = readable_by(*readers).where(portable_data_hash: loc.to_s).limit(1).first
293       if coll_match
294         # Check if the Collection contains exactly one file whose name
295         # looks like a saved Docker image.
296         manifest = Keep::Manifest.new(coll_match.manifest_text)
297         if manifest.exact_file_count?(1) and
298             (manifest.files[0][1] =~ /^[0-9A-Fa-f]{64}\.tar$/)
299           return [coll_match]
300         end
301       end
302     end
303
304     if search_tag.nil? and (n = search_term.index(":"))
305       search_tag = search_term[n+1..-1]
306       search_term = search_term[0..n-1]
307     end
308
309     # Find Collections with matching Docker image repository+tag pairs.
310     matches = base_search.
311       where(link_class: "docker_image_repo+tag",
312             name: "#{search_term}:#{search_tag || 'latest'}")
313
314     # If that didn't work, find Collections with matching Docker image hashes.
315     if matches.empty?
316       matches = base_search.
317         where("link_class = ? and links.name LIKE ?",
318               "docker_image_hash", "#{search_term}%")
319     end
320
321     # Generate an order key for each result.  We want to order the results
322     # so that anything with an image timestamp is considered more recent than
323     # anything without; then we use the link's created_at as a tiebreaker.
324     uuid_timestamps = {}
325     matches.all.map do |link|
326       uuid_timestamps[link.head_uuid] = [(-link.properties["image_timestamp"].to_datetime.to_i rescue 0),
327        -link.created_at.to_i]
328     end
329     Collection.where('uuid in (?)', uuid_timestamps.keys).sort_by { |c| uuid_timestamps[c.uuid] }
330   end
331
332   def self.for_latest_docker_image(search_term, search_tag=nil, readers=nil)
333     find_all_for_docker_image(search_term, search_tag, readers).first
334   end
335
336   def self.searchable_columns operator
337     super - ["manifest_text"]
338   end
339
340   def self.full_text_searchable_columns
341     super - ["manifest_text"]
342   end
343
344   protected
345   def portable_manifest_text
346     self.class.munge_manifest_locators(manifest_text) do |match|
347       if match[2] # size
348         match[1] + match[2]
349       else
350         match[1]
351       end
352     end
353   end
354
355   def compute_pdh
356     portable_manifest = portable_manifest_text
357     (Digest::MD5.hexdigest(portable_manifest) +
358      '+' +
359      portable_manifest.bytesize.to_s)
360   end
361
362   def computed_pdh
363     if @computed_pdh_for_manifest_text == manifest_text
364       return @computed_pdh
365     end
366     @computed_pdh = compute_pdh
367     @computed_pdh_for_manifest_text = manifest_text.dup
368     @computed_pdh
369   end
370
371   def ensure_permission_to_save
372     if (not current_user.andand.is_admin and
373         (replication_confirmed_at_changed? or replication_confirmed_changed?) and
374         not (replication_confirmed_at.nil? and replication_confirmed.nil?))
375       raise ArvadosModel::PermissionDeniedError.new("replication_confirmed and replication_confirmed_at attributes cannot be changed, except by setting both to nil")
376     end
377     super
378   end
379 end