1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
|
#
# Author:: Christopher Brown (<cb@opscode.com>)
# Author:: Christopher Walters (<cw@opscode.com>)
# Copyright:: Copyright (c) 2009, 2010 Opscode, Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
require 'net/http'
require 'forwardable'
require 'mixlib/authentication'
require 'mixlib/authentication/http_authentication_request'
require 'mixlib/authentication/signedheaderauth'
module Mixlib
module Authentication
SignatureResponse = Struct.new(:name)
class SignatureVerification
extend Forwardable
def_delegator :@auth_request, :http_method
def_delegator :@auth_request, :path
def_delegator :@auth_request, :signing_description
def_delegator :@auth_request, :user_id
def_delegator :@auth_request, :timestamp
def_delegator :@auth_request, :host
def_delegator :@auth_request, :request_signature
def_delegator :@auth_request, :content_hash
def_delegator :@auth_request, :request
def_delegator :@auth_request, :server_api_version
include Mixlib::Authentication::SignedHeaderAuth
def initialize(request=nil)
@auth_request = HTTPAuthenticationRequest.new(request) if request
@valid_signature, @valid_timestamp, @valid_content_hash = false, false, false
@hashed_body = nil
end
def authenticate_user_request(request, user_lookup, time_skew=(15*60))
@auth_request = HTTPAuthenticationRequest.new(request)
authenticate_request(user_lookup, time_skew)
end
# Takes the request, boils down the pieces we are interested in,
# looks up the user, generates a signature, and compares to
# the signature in the request
# ====Headers
#
# X-Ops-Sign: algorithm=sha1;version=1.0;
# X-Ops-UserId: <user_id>
# X-Ops-Timestamp:
# X-Ops-Content-Hash:
# X-Ops-Authorization-#{line_number}
def authenticate_request(user_secret, time_skew=(15*60))
Mixlib::Authentication::Log.debug "Initializing header auth : #{request.inspect}"
@user_secret = user_secret
@allowed_time_skew = time_skew # in seconds
begin
parts = parse_signing_description
# version 1.0 clients don't include their algorithm in the
# signing description, so default to sha1
parts[:algorithm] ||= 'sha1'
verify_signature(parts[:algorithm], parts[:version])
verify_timestamp
verify_content_hash
rescue StandardError=>se
raise AuthenticationError,"Failed to authenticate user request. Check your client key and clock: #{se.message}", se.backtrace
end
if valid_request?
SignatureResponse.new(user_id)
else
nil
end
end
def valid_signature?
@valid_signature
end
def valid_timestamp?
@valid_timestamp
end
def valid_content_hash?
@valid_content_hash
end
def valid_request?
valid_signature? && valid_timestamp? && valid_content_hash?
end
# The authorization header is a Base64-encoded version of an RSA signature.
# The client sent it on multiple header lines, starting at index 1 -
# X-Ops-Authorization-1, X-Ops-Authorization-2, etc. Pull them out and
# concatenate.
def headers
@headers ||= request.env.inject({ }) { |memo, kv| memo[$2.gsub(/\-/,"_").downcase.to_sym] = kv[1] if kv[0] =~ /^(HTTP_)(.*)/; memo }
end
private
def assert_required_headers_present
MANDATORY_HEADERS.each do |header|
unless headers.key?(header)
raise MissingAuthenticationHeader, "required authentication header #{header.to_s.upcase} missing"
end
end
end
def verify_signature(algorithm, version)
candidate_block = canonicalize_request(algorithm, version)
signature = Base64.decode64(request_signature)
@valid_signature = case version
when '1.3'
digest = validate_sign_version_digest!(algorithm, version)
@user_secret.verify(digest.new, signature, candidate_block)
else
request_decrypted_block = @user_secret.public_decrypt(signature)
(request_decrypted_block == candidate_block)
end
# Keep the debug messages lined up so it's easy to scan them
Mixlib::Authentication::Log.debug("Verifying request signature:")
Mixlib::Authentication::Log.debug(" Expected Block is: '#{candidate_block}'")
Mixlib::Authentication::Log.debug("Decrypted block is: '#{request_decrypted_block}'")
Mixlib::Authentication::Log.debug("Signatures match? : '#{@valid_signature}'")
@valid_signature
rescue => e
Mixlib::Authentication::Log.debug("Failed to verify request signature: #{e.class.name}: #{e.message}")
@valid_signature = false
end
def verify_timestamp
@valid_timestamp = timestamp_within_bounds?(Time.parse(timestamp), Time.now)
end
def verify_content_hash
@valid_content_hash = (content_hash == hashed_body)
# Keep the debug messages lined up so it's easy to scan them
Mixlib::Authentication::Log.debug("Expected content hash is: '#{hashed_body}'")
Mixlib::Authentication::Log.debug(" Request Content Hash is: '#{content_hash}'")
Mixlib::Authentication::Log.debug(" Hashes match?: #{@valid_content_hash}")
@valid_content_hash
end
# The request signature is based on any file attached, if any. Otherwise
# it's based on the body of the request.
def hashed_body(digest=Digest::SHA1)
unless @hashed_body
# TODO: tim: 2009-112-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.
# e.g. request['file_param'] = File
#
# - In Merb (Chef server), the File is wrapped. The original parameter
# 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..
if file_param.nil?
hash_param = request.params.values.find { |value| value.respond_to?(:has_key?) } # Hash responds to :has_key? .
if !hash_param.nil?
file_param = hash_param.values.find { |value| value.respond_to?(:read) } # File/Tempfile responds to :read.
end
end
# Any file that's included in the request is hashed if it's there. Otherwise,
# we hash the body.
if file_param
Mixlib::Authentication::Log.debug "Digesting file_param: '#{file_param.inspect}'"
@hashed_body = digester.hash_file(file_param, digest)
else
body = request.raw_post
Mixlib::Authentication::Log.debug "Digesting body: '#{body}'"
@hashed_body = digester.hash_string(body, digest)
end
end
@hashed_body
end
# Compare the request timestamp with boundary time
#
#
# ====Parameters
# time1<Time>:: minuend
# time2<Time>:: subtrahend
#
def timestamp_within_bounds?(time1, time2)
time_diff = (time2-time1).abs
is_allowed = (time_diff < @allowed_time_skew)
Mixlib::Authentication::Log.debug "Request time difference: #{time_diff}, within #{@allowed_time_skew} seconds? : #{!!is_allowed}"
is_allowed
end
end
end
end
|