]> git.proxmox.com Git - ceph.git/blame - ceph/src/rgw/rgw_auth_s3.h
bump version to 12.2.5-pve1
[ceph.git] / ceph / src / rgw / rgw_auth_s3.h
CommitLineData
7c673cae
FG
1// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
2// vim: ts=8 sw=2 smarttab
3
4#ifndef CEPH_RGW_AUTH_S3_H
5#define CEPH_RGW_AUTH_S3_H
6
31f18b77
FG
7#include <array>
8#include <memory>
7c673cae
FG
9#include <string>
10#include <tuple>
11
31f18b77
FG
12#include <boost/algorithm/string.hpp>
13#include <boost/container/static_vector.hpp>
14#include <boost/utility/string_ref.hpp>
15#include <boost/utility/string_view.hpp>
16
17#include "common/sstring.hh"
7c673cae
FG
18#include "rgw_common.h"
19#include "rgw_rest_s3.h"
20
21#include "rgw_auth.h"
22#include "rgw_auth_filters.h"
23#include "rgw_auth_keystone.h"
24
25
26namespace rgw {
27namespace auth {
28namespace s3 {
29
94b18763
FG
30static constexpr auto RGW_AUTH_GRACE = std::chrono::minutes{15};
31
32// returns true if the request time is within RGW_AUTH_GRACE of the current time
33bool is_time_skew_ok(time_t t);
34
7c673cae
FG
35class ExternalAuthStrategy : public rgw::auth::Strategy,
36 public rgw::auth::RemoteApplier::Factory {
37 typedef rgw::auth::IdentityApplier::aplptr_t aplptr_t;
38 RGWRados* const store;
39
40 using keystone_config_t = rgw::keystone::CephCtxConfig;
41 using keystone_cache_t = rgw::keystone::TokenCache;
42 using EC2Engine = rgw::auth::keystone::EC2Engine;
43
3efd9988 44 boost::optional <EC2Engine> keystone_engine;
7c673cae
FG
45 LDAPEngine ldap_engine;
46
47 aplptr_t create_apl_remote(CephContext* const cct,
48 const req_state* const s,
49 rgw::auth::RemoteApplier::acl_strategy_t&& acl_alg,
50 const rgw::auth::RemoteApplier::AuthInfo info
51 ) const override {
52 auto apl = rgw::auth::add_sysreq(cct, store, s,
53 rgw::auth::RemoteApplier(cct, store, std::move(acl_alg), info,
224ce89b 54 cct->_conf->rgw_keystone_implicit_tenants));
7c673cae
FG
55 /* TODO(rzarzynski): replace with static_ptr. */
56 return aplptr_t(new decltype(apl)(std::move(apl)));
57 }
58
59public:
60 ExternalAuthStrategy(CephContext* const cct,
61 RGWRados* const store,
31f18b77 62 AWSEngine::VersionAbstractor* const ver_abstractor)
7c673cae 63 : store(store),
31f18b77 64 ldap_engine(cct, store, *ver_abstractor,
7c673cae
FG
65 static_cast<rgw::auth::RemoteApplier::Factory*>(this)) {
66
67 if (cct->_conf->rgw_s3_auth_use_keystone &&
68 ! cct->_conf->rgw_keystone_url.empty()) {
3efd9988
FG
69
70 keystone_engine.emplace(cct, ver_abstractor,
71 static_cast<rgw::auth::RemoteApplier::Factory*>(this),
72 keystone_config_t::get_instance(),
73 keystone_cache_t::get_instance<keystone_config_t>());
74 add_engine(Control::SUFFICIENT, *keystone_engine);
75
7c673cae
FG
76 }
77
78 if (cct->_conf->rgw_s3_auth_use_ldap &&
79 ! cct->_conf->rgw_ldap_uri.empty()) {
80 add_engine(Control::SUFFICIENT, ldap_engine);
81 }
82 }
83
84 const char* get_name() const noexcept override {
85 return "rgw::auth::s3::AWSv2ExternalAuthStrategy";
86 }
87};
88
89
d2e6a577
FG
90template <class AbstractorT,
91 bool AllowAnonAccessT = false>
31f18b77
FG
92class AWSAuthStrategy : public rgw::auth::Strategy,
93 public rgw::auth::LocalApplier::Factory {
7c673cae
FG
94 typedef rgw::auth::IdentityApplier::aplptr_t aplptr_t;
95
31f18b77
FG
96 static_assert(std::is_base_of<rgw::auth::s3::AWSEngine::VersionAbstractor,
97 AbstractorT>::value,
98 "AbstractorT must be a subclass of rgw::auth::s3::VersionAbstractor");
7c673cae
FG
99
100 RGWRados* const store;
31f18b77 101 AbstractorT ver_abstractor;
7c673cae 102
d2e6a577 103 S3AnonymousEngine anonymous_engine;
7c673cae 104 ExternalAuthStrategy external_engines;
31f18b77 105 LocalEngine local_engine;
7c673cae
FG
106
107 aplptr_t create_apl_local(CephContext* const cct,
108 const req_state* const s,
109 const RGWUserInfo& user_info,
110 const std::string& subuser) const override {
111 auto apl = rgw::auth::add_sysreq(cct, store, s,
112 rgw::auth::LocalApplier(cct, user_info, subuser));
113 /* TODO(rzarzynski): replace with static_ptr. */
114 return aplptr_t(new decltype(apl)(std::move(apl)));
115 }
116
117public:
31f18b77
FG
118 AWSAuthStrategy(CephContext* const cct,
119 RGWRados* const store)
7c673cae 120 : store(store),
31f18b77 121 ver_abstractor(cct),
d2e6a577
FG
122 anonymous_engine(cct,
123 static_cast<rgw::auth::LocalApplier::Factory*>(this)),
31f18b77
FG
124 external_engines(cct, store, &ver_abstractor),
125 local_engine(cct, store, ver_abstractor,
7c673cae 126 static_cast<rgw::auth::LocalApplier::Factory*>(this)) {
d2e6a577
FG
127 /* The anynoymous auth. */
128 if (AllowAnonAccessT) {
129 add_engine(Control::SUFFICIENT, anonymous_engine);
130 }
7c673cae 131
d2e6a577 132 /* The external auth. */
7c673cae
FG
133 Control local_engine_mode;
134 if (! external_engines.is_empty()) {
135 add_engine(Control::SUFFICIENT, external_engines);
136
137 local_engine_mode = Control::FALLBACK;
138 } else {
139 local_engine_mode = Control::SUFFICIENT;
140 }
141
d2e6a577 142 /* The local auth. */
7c673cae
FG
143 if (cct->_conf->rgw_s3_auth_use_rados) {
144 add_engine(local_engine_mode, local_engine);
145 }
146 }
147
148 const char* get_name() const noexcept override {
31f18b77 149 return "rgw::auth::s3::AWSAuthStrategy";
7c673cae
FG
150 }
151};
152
31f18b77
FG
153
154class AWSv4ComplMulti : public rgw::auth::Completer,
155 public rgw::io::DecoratedRestfulClient<rgw::io::RestfulClient*>,
156 public std::enable_shared_from_this<AWSv4ComplMulti> {
157 using io_base_t = rgw::io::DecoratedRestfulClient<rgw::io::RestfulClient*>;
158 using signing_key_t = std::array<unsigned char,
159 CEPH_CRYPTO_HMACSHA256_DIGESTSIZE>;
160
161 CephContext* const cct;
162
163 const boost::string_view date;
164 const boost::string_view credential_scope;
165 const signing_key_t signing_key;
166
167 class ChunkMeta {
168 size_t data_offset_in_stream = 0;
169 size_t data_length = 0;
170 std::string signature;
171
172 ChunkMeta(const size_t data_starts_in_stream,
173 const size_t data_length,
174 const boost::string_ref signature)
175 : data_offset_in_stream(data_starts_in_stream),
176 data_length(data_length),
177 signature(signature.to_string()) {
178 }
179
180 ChunkMeta(const boost::string_view& signature)
181 : signature(signature.to_string()) {
182 }
183
184 public:
185 static constexpr size_t SIG_SIZE = 64;
186
187 /* Let's suppose the data length fields can't exceed uint64_t. */
188 static constexpr size_t META_MAX_SIZE = \
189 sarrlen("\r\nffffffffffffffff;chunk-signature=") + SIG_SIZE + sarrlen("\r\n");
190
191 /* The metadata size of for the last, empty chunk. */
192 static constexpr size_t META_MIN_SIZE = \
193 sarrlen("0;chunk-signature=") + SIG_SIZE + sarrlen("\r\n");
194
195 /* Detect whether a given stream_pos fits in boundaries of a chunk. */
196 bool is_new_chunk_in_stream(size_t stream_pos) const;
197
198 /* Get the remaining data size. */
199 size_t get_data_size(size_t stream_pos) const;
200
201 const std::string& get_signature() const {
202 return signature;
203 }
204
205 /* Factory: create an object representing metadata of first, initial chunk
206 * in a stream. */
207 static ChunkMeta create_first(const boost::string_view& seed_signature) {
208 return ChunkMeta(seed_signature);
209 }
210
211 /* Factory: parse a block of META_MAX_SIZE bytes and creates an object
212 * representing non-first chunk in a stream. As the process is sequential
213 * and depends on the previous chunk, caller must pass it. */
214 static std::pair<ChunkMeta, size_t> create_next(CephContext* cct,
215 ChunkMeta&& prev,
216 const char* metabuf,
217 size_t metabuf_len);
218 } chunk_meta;
219
220 size_t stream_pos;
221 boost::container::static_vector<char, ChunkMeta::META_MAX_SIZE> parsing_buf;
222 ceph::crypto::SHA256* sha256_hash;
223 std::string prev_chunk_signature;
224
225 bool is_signature_mismatched();
226 std::string calc_chunk_signature(const std::string& payload_hash) const;
227
228public:
229 /* We need the constructor to be public because of the std::make_shared that
230 * is employed by the create() method. */
231 AWSv4ComplMulti(const req_state* const s,
232 boost::string_view date,
233 boost::string_view credential_scope,
234 boost::string_view seed_signature,
235 const signing_key_t& signing_key)
236 : io_base_t(nullptr),
237 cct(s->cct),
238 date(std::move(date)),
239 credential_scope(std::move(credential_scope)),
240 signing_key(signing_key),
241
242 /* The evolving state. */
243 chunk_meta(ChunkMeta::create_first(seed_signature)),
244 stream_pos(0),
245 sha256_hash(calc_hash_sha256_open_stream()),
246 prev_chunk_signature(std::move(seed_signature)) {
247 }
248
249 ~AWSv4ComplMulti() {
250 if (sha256_hash) {
251 calc_hash_sha256_close_stream(&sha256_hash);
252 }
253 }
254
255 /* rgw::io::DecoratedRestfulClient. */
256 size_t recv_body(char* buf, size_t max) override;
257
258 /* rgw::auth::Completer. */
259 void modify_request_state(req_state* s_rw) override;
260 bool complete() override;
261
262 /* Factories. */
263 static cmplptr_t create(const req_state* s,
264 boost::string_view date,
265 boost::string_view credential_scope,
266 boost::string_view seed_signature,
267 const boost::optional<std::string>& secret_key);
268
269};
270
271class AWSv4ComplSingle : public rgw::auth::Completer,
272 public rgw::io::DecoratedRestfulClient<rgw::io::RestfulClient*>,
273 public std::enable_shared_from_this<AWSv4ComplSingle> {
274 using io_base_t = rgw::io::DecoratedRestfulClient<rgw::io::RestfulClient*>;
275
276 CephContext* const cct;
277 const char* const expected_request_payload_hash;
278 ceph::crypto::SHA256* sha256_hash = nullptr;
279
280public:
281 /* Defined in rgw_auth_s3.cc because of get_v4_exp_payload_hash(). We need
282 * the constructor to be public because of the std::make_shared employed by
283 * the create() method. */
284 AWSv4ComplSingle(const req_state* const s);
285
286 ~AWSv4ComplSingle() {
287 if (sha256_hash) {
288 calc_hash_sha256_close_stream(&sha256_hash);
289 }
290 }
291
292 /* rgw::io::DecoratedRestfulClient. */
293 size_t recv_body(char* buf, size_t max) override;
294
295 /* rgw::auth::Completer. */
296 void modify_request_state(req_state* s_rw) override;
297 bool complete() override;
298
299 /* Factories. */
300 static cmplptr_t create(const req_state* s,
301 const boost::optional<std::string>&);
302
303};
304
7c673cae
FG
305} /* namespace s3 */
306} /* namespace auth */
307} /* namespace rgw */
308
309void rgw_create_s3_canonical_header(
310 const char *method,
311 const char *content_md5,
312 const char *content_type,
313 const char *date,
314 const std::map<std::string, std::string>& meta_map,
315 const char *request_uri,
316 const std::map<std::string, std::string>& sub_resources,
317 std::string& dest_str);
318bool rgw_create_s3_canonical_header(const req_info& info,
319 utime_t *header_time, /* out */
320 std::string& dest, /* out */
321 bool qsr);
322static inline std::tuple<bool, std::string, utime_t>
323rgw_create_s3_canonical_header(const req_info& info, const bool qsr) {
324 std::string dest;
325 utime_t header_time;
326
327 const bool ok = rgw_create_s3_canonical_header(info, &header_time, dest, qsr);
328 return std::make_tuple(ok, dest, header_time);
329}
330
31f18b77
FG
331namespace rgw {
332namespace auth {
333namespace s3 {
334
335static constexpr char AWS4_HMAC_SHA256_STR[] = "AWS4-HMAC-SHA256";
224ce89b 336static constexpr char AWS4_HMAC_SHA256_PAYLOAD_STR[] = "AWS4-HMAC-SHA256-PAYLOAD";
31f18b77
FG
337
338static constexpr char AWS4_EMPTY_PAYLOAD_HASH[] = \
339 "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855";
340
341static constexpr char AWS4_UNSIGNED_PAYLOAD_HASH[] = "UNSIGNED-PAYLOAD";
342
343static constexpr char AWS4_STREAMING_PAYLOAD_HASH[] = \
344 "STREAMING-AWS4-HMAC-SHA256-PAYLOAD";
345
346int parse_credentials(const req_info& info, /* in */
347 boost::string_view& access_key_id, /* out */
348 boost::string_view& credential_scope, /* out */
349 boost::string_view& signedheaders, /* out */
350 boost::string_view& signature, /* out */
351 boost::string_view& date, /* out */
352 bool& using_qs); /* out */
353
354static inline std::string get_v4_canonical_uri(const req_info& info) {
355 /* The code should normalize according to RFC 3986 but S3 does NOT do path
356 * normalization that SigV4 typically does. This code follows the same
357 * approach that boto library. See auth.py:canonical_uri(...). */
358
359 std::string canonical_uri = info.request_uri_aws4;
360
361 if (canonical_uri.empty()) {
362 canonical_uri = "/";
363 } else {
364 boost::replace_all(canonical_uri, "+", "%20");
365 }
366
367 return canonical_uri;
368}
369
370static inline const char* get_v4_exp_payload_hash(const req_info& info)
371{
372 /* In AWSv4 the hash of real, transfered payload IS NOT necessary to form
373 * a Canonical Request, and thus verify a Signature. x-amz-content-sha256
374 * header lets get the information very early -- before seeing first byte
375 * of HTTP body. As a consequence, we can decouple Signature verification
376 * from payload's fingerprint check. */
377 const char *expected_request_payload_hash = \
378 info.env->get("HTTP_X_AMZ_CONTENT_SHA256");
379
380 if (!expected_request_payload_hash) {
381 /* An HTTP client MUST send x-amz-content-sha256. The single exception
382 * is the case of using the Query Parameters where "UNSIGNED-PAYLOAD"
383 * literals are used for crafting Canonical Request:
384 *
385 * You don't include a payload hash in the Canonical Request, because
386 * when you create a presigned URL, you don't know the payload content
387 * because the URL is used to upload an arbitrary payload. Instead, you
388 * use a constant string UNSIGNED-PAYLOAD. */
389 expected_request_payload_hash = AWS4_UNSIGNED_PAYLOAD_HASH;
390 }
391
392 return expected_request_payload_hash;
393}
394
395static inline bool is_v4_payload_unsigned(const char* const exp_payload_hash)
396{
397 return boost::equals(exp_payload_hash, AWS4_UNSIGNED_PAYLOAD_HASH);
398}
399
400static inline bool is_v4_payload_empty(const req_state* const s)
401{
402 /* from rfc2616 - 4.3 Message Body
403 *
404 * "The presence of a message-body in a request is signaled by the inclusion
405 * of a Content-Length or Transfer-Encoding header field in the request's
406 * message-headers." */
407 return s->content_length == 0 &&
408 s->info.env->get("HTTP_TRANSFER_ENCODING") == nullptr;
409}
410
411static inline bool is_v4_payload_streamed(const char* const exp_payload_hash)
412{
413 return boost::equals(exp_payload_hash, AWS4_STREAMING_PAYLOAD_HASH);
414}
415
416std::string get_v4_canonical_qs(const req_info& info, bool using_qs);
417
418boost::optional<std::string>
419get_v4_canonical_headers(const req_info& info,
420 const boost::string_view& signedheaders,
421 bool using_qs,
422 bool force_boto2_compat);
423
424extern sha256_digest_t
425get_v4_canon_req_hash(CephContext* cct,
426 const boost::string_view& http_verb,
427 const std::string& canonical_uri,
428 const std::string& canonical_qs,
429 const std::string& canonical_hdrs,
430 const boost::string_view& signed_hdrs,
431 const boost::string_view& request_payload_hash);
432
433AWSEngine::VersionAbstractor::string_to_sign_t
434get_v4_string_to_sign(CephContext* cct,
435 const boost::string_view& algorithm,
436 const boost::string_view& request_date,
437 const boost::string_view& credential_scope,
438 const sha256_digest_t& canonreq_hash);
439
440extern AWSEngine::VersionAbstractor::server_signature_t
441get_v4_signature(const boost::string_view& credential_scope,
442 CephContext* const cct,
443 const boost::string_view& secret_key,
444 const AWSEngine::VersionAbstractor::string_to_sign_t& string_to_sign);
445
446extern AWSEngine::VersionAbstractor::server_signature_t
447get_v2_signature(CephContext*,
448 const std::string& secret_key,
449 const AWSEngine::VersionAbstractor::string_to_sign_t& string_to_sign);
450
451} /* namespace s3 */
452} /* namespace auth */
453} /* namespace rgw */
7c673cae
FG
454
455#endif