diff options
author | Tim Hinderliter <tim@opscode.com> | 2009-12-28 15:19:16 -0800 |
---|---|---|
committer | Tim Hinderliter <tim@opscode.com> | 2009-12-28 15:19:16 -0800 |
commit | 9d4dcfa35df7f629dbcc1b29138cefa1d9509c72 (patch) | |
tree | ef25d9b3675ae67d4af19dac41434864ae55ce50 /lib | |
parent | 065c909660bb1509224e7f7525adc7bc90e4512b (diff) | |
download | mixlib-authentication-9d4dcfa35df7f629dbcc1b29138cefa1d9509c72.tar.gz |
fix CHEF-780 by signing the entire post body (including multipart boundaries)
when the POST's 'file' parameter isn't actually a File. Needs mixlib-authen
CHEF-780 changes to work. modified some comments for clarity.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/mixlib/authentication/signatureverification.rb | 17 | ||||
-rw-r--r-- | lib/mixlib/authentication/signedheaderauth.rb | 8 |
2 files changed, 20 insertions, 5 deletions
diff --git a/lib/mixlib/authentication/signatureverification.rb b/lib/mixlib/authentication/signatureverification.rb index 570a5b9..841e77a 100644 --- a/lib/mixlib/authentication/signatureverification.rb +++ b/lib/mixlib/authentication/signatureverification.rb @@ -64,17 +64,26 @@ module Mixlib @request_signature = headers.find_all { |h| h[0].to_s =~ /^x_ops_authorization_/ }.sort { |x,y| x.to_s <=> y.to_s}.map { |i| i[1] }.join("\n") Mixlib::Authentication::Log.debug "Reconstituted request signature: #{@request_signature}" + # The request signature is based on any file attached, if any. Otherwise + # it's based on the body of the request. + # TODO: tim: 2009-12-28: It'd be nice to remove this special case, and + # always hash the entire request body. In the file case it would just be + # expanded multipart text - the entire body of the POST. + # # Pull out any file that was attached to this request, using multipart # form uploads. # Depending on the server we're running in, multipart form uploads are # handed to us differently. # - In Passenger (Cookbooks Community Site), the File is handed to us # directly in the params hash. The name is whatever the client used, - # its value is therefore a File or Tempfile. + # its value is therefore a File or Tempfile. + # e.g. request['file_param'] = File + # # - In Merb (Chef server), the File is wrapped. The original parameter - # name used for the file is passed in with a Hash value. Within the hash - # is a name/value pair named 'file' which actually contains the Tempfile - # instance. + # name used for the file is used, but its value is a Hash. Within + # the hash is a name/value pair named 'file' which actually + # contains the Tempfile instance. + # e.g. request['file_param'] = { :file => Tempfile } file_param = request.params.values.find { |value| value.respond_to?(:read) } # No file_param; we're running in Merb, or it's just not there.. diff --git a/lib/mixlib/authentication/signedheaderauth.rb b/lib/mixlib/authentication/signedheaderauth.rb index 4d72a4a..c97a16e 100644 --- a/lib/mixlib/authentication/signedheaderauth.rb +++ b/lib/mixlib/authentication/signedheaderauth.rb @@ -45,7 +45,13 @@ module Mixlib # private_key<OpenSSL::PKey::RSA>:: user's RSA private key. def sign(private_key) digester = Mixlib::Authentication::Digester.new - @hashed_body = if self.file + + # Hash the file object if it was passed in, otherwise hash based on + # the body. + # TODO: tim 2009-12-28: It'd be nice to just remove this special case, + # always sign the entire request body, using the expanded multipart + # body in the case of a file being include. + @hashed_body = if self.file && self.file.respond_to?(:read) digester.hash_file(self.file) else digester.hash_body(self.body) |