]> git.proxmox.com Git - ceph.git/blame - ceph/src/rgw/rgw_rest.cc
update source to 12.2.11
[ceph.git] / ceph / src / rgw / rgw_rest.cc
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
31f18b77 4
7c673cae
FG
5#include <errno.h>
6#include <limits.h>
7
8#include <boost/algorithm/string.hpp>
9#include "common/Formatter.h"
10#include "common/HTMLFormatter.h"
11#include "common/utf8.h"
12#include "include/str_list.h"
13#include "rgw_common.h"
14#include "rgw_rados.h"
15#include "rgw_formats.h"
16#include "rgw_op.h"
17#include "rgw_rest.h"
18#include "rgw_rest_swift.h"
19#include "rgw_rest_s3.h"
20#include "rgw_swift_auth.h"
21#include "rgw_cors_s3.h"
7c673cae
FG
22
23#include "rgw_client_io.h"
24#include "rgw_resolve.h"
25
26#include <numeric>
27
28#define dout_subsys ceph_subsys_rgw
29
31f18b77
FG
30struct rgw_http_status_code {
31 int code;
32 const char *name;
33};
34
35const static struct rgw_http_status_code http_codes[] = {
36 { 100, "Continue" },
37 { 200, "OK" },
38 { 201, "Created" },
39 { 202, "Accepted" },
40 { 204, "No Content" },
41 { 205, "Reset Content" },
42 { 206, "Partial Content" },
43 { 207, "Multi Status" },
44 { 208, "Already Reported" },
45 { 300, "Multiple Choices" },
46 { 301, "Moved Permanently" },
47 { 302, "Found" },
48 { 303, "See Other" },
49 { 304, "Not Modified" },
50 { 305, "User Proxy" },
51 { 306, "Switch Proxy" },
52 { 307, "Temporary Redirect" },
53 { 308, "Permanent Redirect" },
54 { 400, "Bad Request" },
55 { 401, "Unauthorized" },
56 { 402, "Payment Required" },
57 { 403, "Forbidden" },
58 { 404, "Not Found" },
59 { 405, "Method Not Allowed" },
60 { 406, "Not Acceptable" },
61 { 407, "Proxy Authentication Required" },
62 { 408, "Request Timeout" },
63 { 409, "Conflict" },
64 { 410, "Gone" },
65 { 411, "Length Required" },
66 { 412, "Precondition Failed" },
67 { 413, "Request Entity Too Large" },
68 { 414, "Request-URI Too Long" },
69 { 415, "Unsupported Media Type" },
70 { 416, "Requested Range Not Satisfiable" },
71 { 417, "Expectation Failed" },
72 { 422, "Unprocessable Entity" },
73 { 500, "Internal Server Error" },
74 { 501, "Not Implemented" },
75 { 0, NULL },
76};
7c673cae
FG
77
78struct rgw_http_attr {
79 const char *rgw_attr;
80 const char *http_attr;
81};
82
83/*
84 * mapping between rgw object attrs and output http fields
85 */
86static const struct rgw_http_attr base_rgw_to_http_attrs[] = {
87 { RGW_ATTR_CONTENT_LANG, "Content-Language" },
88 { RGW_ATTR_EXPIRES, "Expires" },
89 { RGW_ATTR_CACHE_CONTROL, "Cache-Control" },
90 { RGW_ATTR_CONTENT_DISP, "Content-Disposition" },
91 { RGW_ATTR_CONTENT_ENC, "Content-Encoding" },
92 { RGW_ATTR_USER_MANIFEST, "X-Object-Manifest" },
93 { RGW_ATTR_X_ROBOTS_TAG , "X-Robots-Tag" },
94 /* RGW_ATTR_AMZ_WEBSITE_REDIRECT_LOCATION header depends on access mode:
95 * S3 endpoint: x-amz-website-redirect-location
96 * S3Website endpoint: Location
97 */
98 { RGW_ATTR_AMZ_WEBSITE_REDIRECT_LOCATION, "x-amz-website-redirect-location" },
99};
100
101
102struct generic_attr {
103 const char *http_header;
104 const char *rgw_attr;
105};
106
107/*
108 * mapping between http env fields and rgw object attrs
109 */
110static const struct generic_attr generic_attrs[] = {
111 { "CONTENT_TYPE", RGW_ATTR_CONTENT_TYPE },
112 { "HTTP_CONTENT_LANGUAGE", RGW_ATTR_CONTENT_LANG },
113 { "HTTP_EXPIRES", RGW_ATTR_EXPIRES },
114 { "HTTP_CACHE_CONTROL", RGW_ATTR_CACHE_CONTROL },
115 { "HTTP_CONTENT_DISPOSITION", RGW_ATTR_CONTENT_DISP },
116 { "HTTP_CONTENT_ENCODING", RGW_ATTR_CONTENT_ENC },
117 { "HTTP_X_ROBOTS_TAG", RGW_ATTR_X_ROBOTS_TAG },
118};
119
120map<string, string> rgw_to_http_attrs;
121static map<string, string> generic_attrs_map;
122map<int, const char *> http_status_names;
123
124/*
125 * make attrs look_like_this
126 * converts dashes to underscores
127 */
128string lowercase_underscore_http_attr(const string& orig)
129{
130 const char *s = orig.c_str();
131 char buf[orig.size() + 1];
132 buf[orig.size()] = '\0';
133
134 for (size_t i = 0; i < orig.size(); ++i, ++s) {
135 switch (*s) {
136 case '-':
137 buf[i] = '_';
138 break;
139 default:
140 buf[i] = tolower(*s);
141 }
142 }
143 return string(buf);
144}
145
146/*
147 * make attrs LOOK_LIKE_THIS
148 * converts dashes to underscores
149 */
150string uppercase_underscore_http_attr(const string& orig)
151{
152 const char *s = orig.c_str();
153 char buf[orig.size() + 1];
154 buf[orig.size()] = '\0';
155
156 for (size_t i = 0; i < orig.size(); ++i, ++s) {
157 switch (*s) {
158 case '-':
159 buf[i] = '_';
160 break;
161 default:
162 buf[i] = toupper(*s);
163 }
164 }
165 return string(buf);
166}
167
168/*
169 * make attrs look-like-this
170 * converts underscores to dashes
171 */
172string lowercase_dash_http_attr(const string& orig)
173{
174 const char *s = orig.c_str();
175 char buf[orig.size() + 1];
176 buf[orig.size()] = '\0';
177
178 for (size_t i = 0; i < orig.size(); ++i, ++s) {
179 switch (*s) {
180 case '_':
181 buf[i] = '-';
182 break;
183 default:
184 buf[i] = tolower(*s);
185 }
186 }
187 return string(buf);
188}
189
190/*
191 * make attrs Look-Like-This
192 * converts underscores to dashes
193 */
194string camelcase_dash_http_attr(const string& orig)
195{
196 const char *s = orig.c_str();
197 char buf[orig.size() + 1];
198 buf[orig.size()] = '\0';
199
200 bool last_sep = true;
201
202 for (size_t i = 0; i < orig.size(); ++i, ++s) {
203 switch (*s) {
204 case '_':
205 case '-':
206 buf[i] = '-';
207 last_sep = true;
208 break;
209 default:
210 if (last_sep) {
211 buf[i] = toupper(*s);
212 } else {
213 buf[i] = tolower(*s);
214 }
215 last_sep = false;
216 }
217 }
218 return string(buf);
219}
220
221/* avoid duplicate hostnames in hostnames lists */
222static set<string> hostnames_set;
223static set<string> hostnames_s3website_set;
224
225void rgw_rest_init(CephContext *cct, RGWRados *store, RGWZoneGroup& zone_group)
226{
227 store->init_host_id();
228
229 for (const auto& rgw2http : base_rgw_to_http_attrs) {
230 rgw_to_http_attrs[rgw2http.rgw_attr] = rgw2http.http_attr;
231 }
232
233 for (const auto& http2rgw : generic_attrs) {
234 generic_attrs_map[http2rgw.http_header] = http2rgw.rgw_attr;
235 }
236
237 list<string> extended_http_attrs;
238 get_str_list(cct->_conf->rgw_extended_http_attrs, extended_http_attrs);
239
240 list<string>::iterator iter;
241 for (iter = extended_http_attrs.begin(); iter != extended_http_attrs.end(); ++iter) {
242 string rgw_attr = RGW_ATTR_PREFIX;
243 rgw_attr.append(lowercase_underscore_http_attr(*iter));
244
245 rgw_to_http_attrs[rgw_attr] = camelcase_dash_http_attr(*iter);
246
247 string http_header = "HTTP_";
248 http_header.append(uppercase_underscore_http_attr(*iter));
249
250 generic_attrs_map[http_header] = rgw_attr;
251 }
252
253 for (const struct rgw_http_status_code *h = http_codes; h->code; h++) {
254 http_status_names[h->code] = h->name;
255 }
256
257 hostnames_set.insert(cct->_conf->rgw_dns_name);
258 hostnames_set.insert(zone_group.hostnames.begin(), zone_group.hostnames.end());
259 hostnames_set.erase(""); // filter out empty hostnames
260 ldout(cct, 20) << "RGW hostnames: " << hostnames_set << dendl;
261 /* TODO: We should have a sanity check that no hostname matches the end of
262 * any other hostname, otherwise we will get ambigious results from
263 * rgw_find_host_in_domains.
264 * Eg:
265 * Hostnames: [A, B.A]
266 * Inputs: [Z.A, X.B.A]
267 * Z.A clearly splits to subdomain=Z, domain=Z
268 * X.B.A ambigously splits to both {X, B.A} and {X.B, A}
269 */
270
271 hostnames_s3website_set.insert(cct->_conf->rgw_dns_s3website_name);
272 hostnames_s3website_set.insert(zone_group.hostnames_s3website.begin(), zone_group.hostnames_s3website.end());
273 hostnames_s3website_set.erase(""); // filter out empty hostnames
274 ldout(cct, 20) << "RGW S3website hostnames: " << hostnames_s3website_set << dendl;
275 /* TODO: we should repeat the hostnames_set sanity check here
276 * and ALSO decide about overlap, if any
277 */
278}
279
280static bool str_ends_with(const string& s, const string& suffix, size_t *pos)
281{
282 size_t len = suffix.size();
283 if (len > (size_t)s.size()) {
284 return false;
285 }
286
287 ssize_t p = s.size() - len;
288 if (pos) {
289 *pos = p;
290 }
291
292 return s.compare(p, len, suffix) == 0;
293}
294
295static bool rgw_find_host_in_domains(const string& host, string *domain, string *subdomain, set<string> valid_hostnames_set)
296{
297 set<string>::iterator iter;
298 /** TODO, Future optimization
299 * store hostnames_set elements _reversed_, and look for a prefix match,
300 * which is much faster than a suffix match.
301 */
302 for (iter = valid_hostnames_set.begin(); iter != valid_hostnames_set.end(); ++iter) {
303 size_t pos;
304 if (!str_ends_with(host, *iter, &pos))
305 continue;
306
307 if (pos == 0) {
308 *domain = host;
309 subdomain->clear();
310 } else {
311 if (host[pos - 1] != '.') {
312 continue;
313 }
314
315 *domain = host.substr(pos);
316 *subdomain = host.substr(0, pos - 1);
317 }
318 return true;
319 }
320 return false;
321}
322
323static void dump_status(struct req_state *s, int status,
324 const char *status_name)
325{
326 s->formatter->set_status(status, status_name);
327 try {
328 RESTFUL_IO(s)->send_status(status, status_name);
329 } catch (rgw::io::Exception& e) {
330 ldout(s->cct, 0) << "ERROR: s->cio->send_status() returned err="
331 << e.what() << dendl;
332 }
333}
334
335void rgw_flush_formatter_and_reset(struct req_state *s, Formatter *formatter)
336{
337 std::ostringstream oss;
338 formatter->output_footer();
339 formatter->flush(oss);
340 std::string outs(oss.str());
341 if (!outs.empty() && s->op != OP_HEAD) {
342 dump_body(s, outs);
343 }
344
345 s->formatter->reset();
346}
347
348void rgw_flush_formatter(struct req_state *s, Formatter *formatter)
349{
350 std::ostringstream oss;
351 formatter->flush(oss);
352 std::string outs(oss.str());
353 if (!outs.empty() && s->op != OP_HEAD) {
354 dump_body(s, outs);
355 }
356}
357
7c673cae
FG
358void dump_errno(int http_ret, string& out) {
359 stringstream ss;
360
361 ss << http_ret << " " << http_status_names[http_ret];
362 out = ss.str();
363}
364
365void dump_errno(const struct rgw_err &err, string& out) {
366 dump_errno(err.http_ret, out);
367}
368
369void dump_errno(struct req_state *s)
370{
371 dump_status(s, s->err.http_ret, http_status_names[s->err.http_ret]);
372}
373
374void dump_errno(struct req_state *s, int http_ret)
375{
376 dump_status(s, http_ret, http_status_names[http_ret]);
377}
378
379void dump_header(struct req_state* const s,
380 const boost::string_ref& name,
381 const boost::string_ref& val)
382{
383 try {
384 RESTFUL_IO(s)->send_header(name, val);
385 } catch (rgw::io::Exception& e) {
386 ldout(s->cct, 0) << "ERROR: s->cio->send_header() returned err="
387 << e.what() << dendl;
388 }
389}
390
391static inline boost::string_ref get_sanitized_hdrval(ceph::buffer::list& raw)
392{
393 /* std::string and thus boost::string_ref ARE OBLIGED to carry multiple
394 * 0x00 and count them to the length of a string. We need to take that
395 * into consideration and sanitize the size of a ceph::buffer::list used
396 * to store metadata values (x-amz-meta-*, X-Container-Meta-*, etags).
397 * Otherwise we might send 0x00 to clients. */
398 const char* const data = raw.c_str();
399 size_t len = raw.length();
400
401 if (len && data[len - 1] == '\0') {
402 /* That's the case - the null byte has been included at the last position
403 * of the bufferlist. We need to restore the proper string length we'll
404 * pass to string_ref. */
405 len--;
406 }
407
408 return boost::string_ref(data, len);
409}
410
411void dump_header(struct req_state* const s,
412 const boost::string_ref& name,
413 ceph::buffer::list& bl)
414{
415 return dump_header(s, name, get_sanitized_hdrval(bl));
416}
417
418void dump_header(struct req_state* const s,
419 const boost::string_ref& name,
420 const long long val)
421{
422 char buf[32];
423 const auto len = snprintf(buf, sizeof(buf), "%lld", val);
424
425 return dump_header(s, name, boost::string_ref(buf, len));
426}
427
428void dump_header(struct req_state* const s,
429 const boost::string_ref& name,
430 const utime_t& ut)
431{
432 char buf[32];
433 const auto len = snprintf(buf, sizeof(buf), "%lld.%05d",
434 static_cast<long long>(ut.sec()),
435 static_cast<int>(ut.usec() / 10));
436
437 return dump_header(s, name, boost::string_ref(buf, len));
438}
439
440void dump_content_length(struct req_state* const s, const uint64_t len)
441{
442 try {
443 RESTFUL_IO(s)->send_content_length(len);
444 } catch (rgw::io::Exception& e) {
445 ldout(s->cct, 0) << "ERROR: s->cio->send_content_length() returned err="
446 << e.what() << dendl;
447 }
448 dump_header(s, "Accept-Ranges", "bytes");
449}
450
451static void dump_chunked_encoding(struct req_state* const s)
452{
453 try {
454 RESTFUL_IO(s)->send_chunked_transfer_encoding();
455 } catch (rgw::io::Exception& e) {
456 ldout(s->cct, 0) << "ERROR: RESTFUL_IO(s)->send_chunked_transfer_encoding()"
457 << " returned err=" << e.what() << dendl;
458 }
459}
460
461void dump_etag(struct req_state* const s,
462 const boost::string_ref& etag,
463 const bool quoted)
464{
465 if (etag.empty()) {
466 return;
467 }
468
469 if (s->prot_flags & RGW_REST_SWIFT && ! quoted) {
470 return dump_header(s, "etag", etag);
471 } else {
472 return dump_header_quoted(s, "ETag", etag);
473 }
474}
475
476void dump_etag(struct req_state* const s,
477 ceph::buffer::list& bl_etag,
478 const bool quoted)
479{
480 return dump_etag(s, get_sanitized_hdrval(bl_etag), quoted);
481}
482
483void dump_bucket_from_state(struct req_state *s)
484{
485 if (g_conf->rgw_expose_bucket && ! s->bucket_name.empty()) {
486 if (! s->bucket_tenant.empty()) {
487 dump_header(s, "Bucket",
488 url_encode(s->bucket_tenant + "/" + s->bucket_name));
489 } else {
490 dump_header(s, "Bucket", url_encode(s->bucket_name));
491 }
492 }
493}
494
495void dump_uri_from_state(struct req_state *s)
496{
497 if (strcmp(s->info.request_uri.c_str(), "/") == 0) {
498
499 string location = "http://";
500 string server = s->info.env->get("SERVER_NAME", "<SERVER_NAME>");
501 location.append(server);
502 location += "/";
503 if (!s->bucket_name.empty()) {
504 if (!s->bucket_tenant.empty()) {
505 location += s->bucket_tenant;
506 location += ":";
507 }
508 location += s->bucket_name;
509 location += "/";
510 if (!s->object.empty()) {
511 location += s->object.name;
512 dump_header(s, "Location", location);
513 }
514 }
515 } else {
516 dump_header_quoted(s, "Location", s->info.request_uri);
517 }
518}
519
520void dump_redirect(struct req_state * const s, const std::string& redirect)
521{
522 return dump_header_if_nonempty(s, "Location", redirect);
523}
524
525static size_t dump_time_header_impl(char (&timestr)[TIME_BUF_SIZE],
526 const real_time t)
527{
528 const utime_t ut(t);
529 time_t secs = static_cast<time_t>(ut.sec());
530
531 struct tm result;
532 const struct tm * const tmp = gmtime_r(&secs, &result);
533 if (tmp == nullptr) {
534 return 0;
535 }
536
537 return strftime(timestr, sizeof(timestr),
538 "%a, %d %b %Y %H:%M:%S %Z", tmp);
539}
540
541void dump_time_header(struct req_state *s, const char *name, real_time t)
542{
543 char timestr[TIME_BUF_SIZE];
544
545 const size_t len = dump_time_header_impl(timestr, t);
546 if (len == 0) {
547 return;
548 }
549
550 return dump_header(s, name, boost::string_ref(timestr, len));
551}
552
553std::string dump_time_to_str(const real_time& t)
554{
555 char timestr[TIME_BUF_SIZE];
556 dump_time_header_impl(timestr, t);
557
558 return timestr;
559}
560
561
562void dump_last_modified(struct req_state *s, real_time t)
563{
564 dump_time_header(s, "Last-Modified", t);
565}
566
567void dump_epoch_header(struct req_state *s, const char *name, real_time t)
568{
569 utime_t ut(t);
570 char buf[65];
571 const auto len = snprintf(buf, sizeof(buf), "%lld.%09lld",
572 (long long)ut.sec(),
573 (long long)ut.nsec());
574
575 return dump_header(s, name, boost::string_ref(buf, len));
576}
577
578void dump_time(struct req_state *s, const char *name, real_time *t)
579{
580 char buf[TIME_BUF_SIZE];
581 rgw_to_iso8601(*t, buf, sizeof(buf));
582
583 s->formatter->dump_string(name, buf);
584}
585
586void dump_owner(struct req_state *s, const rgw_user& id, string& name,
587 const char *section)
588{
589 if (!section)
590 section = "Owner";
591 s->formatter->open_object_section(section);
592 s->formatter->dump_string("ID", id.to_str());
593 s->formatter->dump_string("DisplayName", name);
594 s->formatter->close_section();
595}
596
597void dump_access_control(struct req_state *s, const char *origin,
598 const char *meth,
599 const char *hdr, const char *exp_hdr,
600 uint32_t max_age) {
601 if (origin && (origin[0] != '\0')) {
602 dump_header(s, "Access-Control-Allow-Origin", origin);
603 /* If the server specifies an origin host rather than "*",
604 * then it must also include Origin in the Vary response header
605 * to indicate to clients that server responses will differ
606 * based on the value of the Origin request header.
607 */
608 if (strcmp(origin, "*") != 0) {
609 dump_header(s, "Vary", "Origin");
610 }
611
612 if (meth && (meth[0] != '\0')) {
613 dump_header(s, "Access-Control-Allow-Methods", meth);
614 }
615 if (hdr && (hdr[0] != '\0')) {
616 dump_header(s, "Access-Control-Allow-Headers", hdr);
617 }
618 if (exp_hdr && (exp_hdr[0] != '\0')) {
619 dump_header(s, "Access-Control-Expose-Headers", exp_hdr);
620 }
621 if (max_age != CORS_MAX_AGE_INVALID) {
622 dump_header(s, "Access-Control-Max-Age", max_age);
623 }
624 }
625}
626
627void dump_access_control(req_state *s, RGWOp *op)
628{
629 string origin;
630 string method;
631 string header;
632 string exp_header;
633 unsigned max_age = CORS_MAX_AGE_INVALID;
634
635 if (!op->generate_cors_headers(origin, method, header, exp_header, &max_age))
636 return;
637
638 dump_access_control(s, origin.c_str(), method.c_str(), header.c_str(),
639 exp_header.c_str(), max_age);
640}
641
642void dump_start(struct req_state *s)
643{
644 if (!s->content_started) {
645 s->formatter->output_header();
646 s->content_started = true;
647 }
648}
649
650void dump_trans_id(req_state *s)
651{
652 if (s->prot_flags & RGW_REST_SWIFT) {
653 dump_header(s, "X-Trans-Id", s->trans_id);
654 dump_header(s, "X-Openstack-Request-Id", s->trans_id);
655 } else if (s->trans_id.length()) {
656 dump_header(s, "x-amz-request-id", s->trans_id);
657 }
658}
659
660void end_header(struct req_state* s, RGWOp* op, const char *content_type,
661 const int64_t proposed_content_length, bool force_content_type,
662 bool force_no_error)
663{
664 string ctype;
665
666 dump_trans_id(s);
667
31f18b77 668 if ((!s->is_err()) &&
7c673cae
FG
669 (s->bucket_info.owner != s->user->user_id) &&
670 (s->bucket_info.requester_pays)) {
671 dump_header(s, "x-amz-request-charged", "requester");
672 }
673
674 if (op) {
675 dump_access_control(s, op);
676 }
677
678 if (s->prot_flags & RGW_REST_SWIFT && !content_type) {
679 force_content_type = true;
680 }
681
682 /* do not send content type if content length is zero
683 and the content type was not set by the user */
684 if (force_content_type ||
31f18b77 685 (!content_type && s->formatter->get_len() != 0) || s->is_err()){
7c673cae
FG
686 switch (s->format) {
687 case RGW_FORMAT_XML:
688 ctype = "application/xml";
689 break;
690 case RGW_FORMAT_JSON:
691 ctype = "application/json";
692 break;
693 case RGW_FORMAT_HTML:
694 ctype = "text/html";
695 break;
696 default:
697 ctype = "text/plain";
698 break;
699 }
700 if (s->prot_flags & RGW_REST_SWIFT)
701 ctype.append("; charset=utf-8");
702 content_type = ctype.c_str();
703 }
31f18b77 704 if (!force_no_error && s->is_err()) {
7c673cae 705 dump_start(s);
31f18b77 706 dump(s);
7c673cae
FG
707 dump_content_length(s, s->formatter->get_len());
708 } else {
709 if (proposed_content_length == CHUNKED_TRANSFER_ENCODING) {
710 dump_chunked_encoding(s);
711 } else if (proposed_content_length != NO_CONTENT_LENGTH) {
712 dump_content_length(s, proposed_content_length);
713 }
714 }
715
716 if (content_type) {
717 dump_header(s, "Content-Type", content_type);
718 }
719
720 try {
721 RESTFUL_IO(s)->complete_header();
722 } catch (rgw::io::Exception& e) {
723 ldout(s->cct, 0) << "ERROR: RESTFUL_IO(s)->complete_header() returned err="
724 << e.what() << dendl;
725 }
726
727 ACCOUNTING_IO(s)->set_account(true);
728 rgw_flush_formatter_and_reset(s, s->formatter);
729}
730
31f18b77
FG
731void abort_early(struct req_state *s, RGWOp* op, int err_no,
732 RGWHandler* handler)
7c673cae
FG
733{
734 string error_content("");
735 if (!s->formatter) {
736 s->formatter = new JSONFormatter;
737 s->format = RGW_FORMAT_JSON;
738 }
739
740 // op->error_handler is responsible for calling it's handler error_handler
741 if (op != NULL) {
742 int new_err_no;
743 new_err_no = op->error_handler(err_no, &error_content);
744 ldout(s->cct, 20) << "op->ERRORHANDLER: err_no=" << err_no
745 << " new_err_no=" << new_err_no << dendl;
746 err_no = new_err_no;
747 } else if (handler != NULL) {
748 int new_err_no;
749 new_err_no = handler->error_handler(err_no, &error_content);
750 ldout(s->cct, 20) << "handler->ERRORHANDLER: err_no=" << err_no
751 << " new_err_no=" << new_err_no << dendl;
752 err_no = new_err_no;
753 }
754
755 // If the error handler(s) above dealt with it completely, they should have
756 // returned 0. If non-zero, we need to continue here.
757 if (err_no) {
758 // Watch out, we might have a custom error state already set!
31f18b77 759 if (!s->err.http_ret || s->err.http_ret == 200) {
7c673cae 760 set_req_state_err(s, err_no);
7c673cae 761 }
31f18b77 762 dump_errno(s);
7c673cae
FG
763 dump_bucket_from_state(s);
764 if (err_no == -ERR_PERMANENT_REDIRECT || err_no == -ERR_WEBSITE_REDIRECT) {
765 string dest_uri;
766 if (!s->redirect.empty()) {
767 dest_uri = s->redirect;
768 } else if (!s->zonegroup_endpoint.empty()) {
769 dest_uri = s->zonegroup_endpoint;
770 /*
771 * reqest_uri is always start with slash, so we need to remove
772 * the unnecessary slash at the end of dest_uri.
773 */
774 if (dest_uri[dest_uri.size() - 1] == '/') {
775 dest_uri = dest_uri.substr(0, dest_uri.size() - 1);
776 }
777 dest_uri += s->info.request_uri;
778 dest_uri += "?";
779 dest_uri += s->info.request_params;
780 }
781
782 if (!dest_uri.empty()) {
783 dump_redirect(s, dest_uri);
784 }
785 }
786
787 if (!error_content.empty()) {
788 /*
789 * TODO we must add all error entries as headers here:
790 * when having a working errordoc, then the s3 error fields are
791 * rendered as HTTP headers, e.g.:
792 * x-amz-error-code: NoSuchKey
793 * x-amz-error-message: The specified key does not exist.
794 * x-amz-error-detail-Key: foo
795 */
796 end_header(s, op, NULL, error_content.size(), false, true);
797 RESTFUL_IO(s)->send_body(error_content.c_str(), error_content.size());
798 } else {
799 end_header(s, op);
800 }
801 }
802 perfcounter->inc(l_rgw_failed_req);
803}
804
805void dump_continue(struct req_state * const s)
806{
807 try {
808 RESTFUL_IO(s)->send_100_continue();
809 } catch (rgw::io::Exception& e) {
810 ldout(s->cct, 0) << "ERROR: RESTFUL_IO(s)->send_100_continue() returned err="
811 << e.what() << dendl;
812 }
813}
814
815void dump_range(struct req_state* const s,
816 const uint64_t ofs,
817 const uint64_t end,
818 const uint64_t total)
819{
820 /* dumping range into temp buffer first, as libfcgi will fail to digest
821 * %lld */
822 char range_buf[128];
823 size_t len;
824
825 if (! total) {
826 len = snprintf(range_buf, sizeof(range_buf), "bytes */%lld",
827 static_cast<long long>(total));
828 } else {
829 len = snprintf(range_buf, sizeof(range_buf), "bytes %lld-%lld/%lld",
830 static_cast<long long>(ofs),
831 static_cast<long long>(end),
832 static_cast<long long>(total));
833 }
834
835 return dump_header(s, "Content-Range", boost::string_ref(range_buf, len));
836}
837
838
839int dump_body(struct req_state* const s,
840 const char* const buf,
841 const size_t len)
842{
843 try {
844 return RESTFUL_IO(s)->send_body(buf, len);
845 } catch (rgw::io::Exception& e) {
846 return -e.code().value();
847 }
848}
849
850int dump_body(struct req_state* const s, /* const */ ceph::buffer::list& bl)
851{
852 return dump_body(s, bl.c_str(), bl.length());
853}
854
855int dump_body(struct req_state* const s, const std::string& str)
856{
857 return dump_body(s, str.c_str(), str.length());
858}
859
860int recv_body(struct req_state* const s,
861 char* const buf,
862 const size_t max)
863{
864 try {
31f18b77 865 return RESTFUL_IO(s)->recv_body(buf, max);
7c673cae
FG
866 } catch (rgw::io::Exception& e) {
867 return -e.code().value();
868 }
869}
870
871int RGWGetObj_ObjStore::get_params()
872{
873 range_str = s->info.env->get("HTTP_RANGE");
874 if_mod = s->info.env->get("HTTP_IF_MODIFIED_SINCE");
875 if_unmod = s->info.env->get("HTTP_IF_UNMODIFIED_SINCE");
876 if_match = s->info.env->get("HTTP_IF_MATCH");
877 if_nomatch = s->info.env->get("HTTP_IF_NONE_MATCH");
878
879 if (s->system_request) {
880 mod_zone_id = s->info.env->get_int("HTTP_DEST_ZONE_SHORT_ID", 0);
881 mod_pg_ver = s->info.env->get_int("HTTP_DEST_PG_VER", 0);
882 rgwx_stat = s->info.args.exists(RGW_SYS_PARAM_PREFIX "stat");
883 get_data &= (!rgwx_stat);
884 }
885
28e407b8
AA
886 if (s->info.args.exists(GET_TORRENT)) {
887 return torrent.get_params();
7c673cae 888 }
7c673cae
FG
889 return 0;
890}
891
892int RESTArgs::get_string(struct req_state *s, const string& name,
893 const string& def_val, string *val, bool *existed)
894{
895 bool exists;
896 *val = s->info.args.get(name, &exists);
897
898 if (existed)
899 *existed = exists;
900
901 if (!exists) {
902 *val = def_val;
903 return 0;
904 }
905
906 return 0;
907}
908
909int RESTArgs::get_uint64(struct req_state *s, const string& name,
910 uint64_t def_val, uint64_t *val, bool *existed)
911{
912 bool exists;
913 string sval = s->info.args.get(name, &exists);
914
915 if (existed)
916 *existed = exists;
917
918 if (!exists) {
919 *val = def_val;
920 return 0;
921 }
922
923 int r = stringtoull(sval, val);
924 if (r < 0)
925 return r;
926
927 return 0;
928}
929
930int RESTArgs::get_int64(struct req_state *s, const string& name,
931 int64_t def_val, int64_t *val, bool *existed)
932{
933 bool exists;
934 string sval = s->info.args.get(name, &exists);
935
936 if (existed)
937 *existed = exists;
938
939 if (!exists) {
940 *val = def_val;
941 return 0;
942 }
943
944 int r = stringtoll(sval, val);
945 if (r < 0)
946 return r;
947
948 return 0;
949}
950
951int RESTArgs::get_uint32(struct req_state *s, const string& name,
952 uint32_t def_val, uint32_t *val, bool *existed)
953{
954 bool exists;
955 string sval = s->info.args.get(name, &exists);
956
957 if (existed)
958 *existed = exists;
959
960 if (!exists) {
961 *val = def_val;
962 return 0;
963 }
964
965 int r = stringtoul(sval, val);
966 if (r < 0)
967 return r;
968
969 return 0;
970}
971
972int RESTArgs::get_int32(struct req_state *s, const string& name,
973 int32_t def_val, int32_t *val, bool *existed)
974{
975 bool exists;
976 string sval = s->info.args.get(name, &exists);
977
978 if (existed)
979 *existed = exists;
980
981 if (!exists) {
982 *val = def_val;
983 return 0;
984 }
985
986 int r = stringtol(sval, val);
987 if (r < 0)
988 return r;
989
990 return 0;
991}
992
993int RESTArgs::get_time(struct req_state *s, const string& name,
994 const utime_t& def_val, utime_t *val, bool *existed)
995{
996 bool exists;
997 string sval = s->info.args.get(name, &exists);
998
999 if (existed)
1000 *existed = exists;
1001
1002 if (!exists) {
1003 *val = def_val;
1004 return 0;
1005 }
1006
1007 uint64_t epoch, nsec;
1008
1009 int r = utime_t::parse_date(sval, &epoch, &nsec);
1010 if (r < 0)
1011 return r;
1012
1013 *val = utime_t(epoch, nsec);
1014
1015 return 0;
1016}
1017
1018int RESTArgs::get_epoch(struct req_state *s, const string& name, uint64_t def_val, uint64_t *epoch, bool *existed)
1019{
1020 bool exists;
1021 string date = s->info.args.get(name, &exists);
1022
1023 if (existed)
1024 *existed = exists;
1025
1026 if (!exists) {
1027 *epoch = def_val;
1028 return 0;
1029 }
1030
1031 int r = utime_t::parse_date(date, epoch, NULL);
1032 if (r < 0)
1033 return r;
1034
1035 return 0;
1036}
1037
1038int RESTArgs::get_bool(struct req_state *s, const string& name, bool def_val, bool *val, bool *existed)
1039{
1040 bool exists;
1041 string sval = s->info.args.get(name, &exists);
1042
1043 if (existed)
1044 *existed = exists;
1045
1046 if (!exists) {
1047 *val = def_val;
1048 return 0;
1049 }
1050
1051 const char *str = sval.c_str();
1052
1053 if (sval.empty() ||
1054 strcasecmp(str, "true") == 0 ||
1055 sval.compare("1") == 0) {
1056 *val = true;
1057 return 0;
1058 }
1059
1060 if (strcasecmp(str, "false") != 0 &&
1061 sval.compare("0") != 0) {
1062 *val = def_val;
1063 return -EINVAL;
1064 }
1065
1066 *val = false;
1067 return 0;
1068}
1069
1070
1071void RGWRESTFlusher::do_start(int ret)
1072{
1073 set_req_state_err(s, ret); /* no going back from here */
1074 dump_errno(s);
1075 dump_start(s);
1076 end_header(s, op);
1077 rgw_flush_formatter_and_reset(s, s->formatter);
1078}
1079
1080void RGWRESTFlusher::do_flush()
1081{
1082 rgw_flush_formatter(s, s->formatter);
1083}
1084
1085int RGWPutObj_ObjStore::verify_params()
1086{
1087 if (s->length) {
1088 off_t len = atoll(s->length);
1089 if (len > (off_t)(s->cct->_conf->rgw_max_put_size)) {
1090 return -ERR_TOO_LARGE;
1091 }
1092 }
1093
1094 return 0;
1095}
1096
1097int RGWPutObj_ObjStore::get_params()
1098{
1099 /* start gettorrent */
1100 if (s->cct->_conf->rgw_torrent_flag)
1101 {
1102 int ret = 0;
1103 ret = torrent.get_params();
1104 ldout(s->cct, 5) << "NOTICE: open produce torrent file " << dendl;
1105 if (ret < 0)
1106 {
1107 return ret;
1108 }
1109 torrent.set_info_name((s->object).name);
1110 }
1111 /* end gettorrent */
1112 supplied_md5_b64 = s->info.env->get("HTTP_CONTENT_MD5");
1113
1114 return 0;
1115}
1116
7c673cae
FG
1117int RGWPutObj_ObjStore::get_data(bufferlist& bl)
1118{
1119 size_t cl;
1120 uint64_t chunk_size = s->cct->_conf->rgw_max_chunk_size;
1121 if (s->length) {
1122 cl = atoll(s->length) - ofs;
1123 if (cl > chunk_size)
1124 cl = chunk_size;
1125 } else {
1126 cl = chunk_size;
1127 }
1128
1129 int len = 0;
b5b8bbf5 1130 {
7c673cae
FG
1131 ACCOUNTING_IO(s)->set_account(true);
1132 bufferptr bp(cl);
1133
1134 const auto read_len = recv_body(s, bp.c_str(), cl);
1135 if (read_len < 0) {
1136 return read_len;
1137 }
1138
1139 len = read_len;
1140 bl.append(bp, 0, len);
1141
7c673cae
FG
1142 ACCOUNTING_IO(s)->set_account(false);
1143 }
1144
1145 if ((uint64_t)ofs + len > s->cct->_conf->rgw_max_put_size) {
1146 return -ERR_TOO_LARGE;
1147 }
1148
1149 if (!ofs)
1150 supplied_md5_b64 = s->info.env->get("HTTP_CONTENT_MD5");
1151
1152 return len;
1153}
1154
1155
1156/*
1157 * parses params in the format: 'first; param1=foo; param2=bar'
1158 */
1159void RGWPostObj_ObjStore::parse_boundary_params(const std::string& params_str,
1160 std::string& first,
1161 std::map<std::string,
1162 std::string>& params)
1163{
1164 size_t pos = params_str.find(';');
1165 if (std::string::npos == pos) {
1166 first = rgw_trim_whitespace(params_str);
1167 return;
1168 }
1169
1170 first = rgw_trim_whitespace(params_str.substr(0, pos));
1171 pos++;
1172
1173 while (pos < params_str.size()) {
1174 size_t end = params_str.find(';', pos);
1175 if (std::string::npos == end) {
1176 end = params_str.size();
1177 }
1178
1179 std::string param = params_str.substr(pos, end - pos);
1180 size_t eqpos = param.find('=');
1181
1182 if (std::string::npos != eqpos) {
1183 std::string param_name = rgw_trim_whitespace(param.substr(0, eqpos));
1184 std::string val = rgw_trim_quotes(param.substr(eqpos + 1));
1185 params[std::move(param_name)] = std::move(val);
1186 } else {
1187 params[rgw_trim_whitespace(param)] = "";
1188 }
1189
1190 pos = end + 1;
1191 }
1192}
1193
1194int RGWPostObj_ObjStore::parse_part_field(const std::string& line,
1195 std::string& field_name, /* out */
1196 post_part_field& field) /* out */
1197{
1198 size_t pos = line.find(':');
1199 if (pos == string::npos)
1200 return -EINVAL;
1201
1202 field_name = line.substr(0, pos);
1203 if (pos >= line.size() - 1)
1204 return 0;
1205
1206 parse_boundary_params(line.substr(pos + 1), field.val, field.params);
1207
1208 return 0;
1209}
1210
1211static bool is_crlf(const char *s)
1212{
1213 return (*s == '\r' && *(s + 1) == '\n');
1214}
1215
1216/*
1217 * find the index of the boundary, if exists, or optionally the next end of line
1218 * also returns how many bytes to skip
1219 */
1220static int index_of(ceph::bufferlist& bl,
1221 uint64_t max_len,
1222 const std::string& str,
1223 const bool check_crlf,
1224 bool& reached_boundary,
1225 int& skip)
1226{
1227 reached_boundary = false;
1228 skip = 0;
1229
1230 if (str.size() < 2) // we assume boundary is at least 2 chars (makes it easier with crlf checks)
1231 return -EINVAL;
1232
1233 if (bl.length() < str.size())
1234 return -1;
1235
1236 const char *buf = bl.c_str();
1237 const char *s = str.c_str();
1238
1239 if (max_len > bl.length())
1240 max_len = bl.length();
1241
1242 for (uint64_t i = 0; i < max_len; i++, buf++) {
1243 if (check_crlf &&
1244 i >= 1 &&
1245 is_crlf(buf - 1)) {
1246 return i + 1; // skip the crlf
1247 }
1248 if ((i < max_len - str.size() + 1) &&
1249 (buf[0] == s[0] && buf[1] == s[1]) &&
1250 (strncmp(buf, s, str.size()) == 0)) {
1251 reached_boundary = true;
1252 skip = str.size();
1253
1254 /* oh, great, now we need to swallow the preceding crlf
1255 * if exists
1256 */
1257 if ((i >= 2) &&
1258 is_crlf(buf - 2)) {
1259 i -= 2;
1260 skip += 2;
1261 }
1262 return i;
1263 }
1264 }
1265
1266 return -1;
1267}
1268
1269int RGWPostObj_ObjStore::read_with_boundary(ceph::bufferlist& bl,
1270 uint64_t max,
1271 const bool check_crlf,
1272 bool& reached_boundary,
1273 bool& done)
1274{
1275 uint64_t cl = max + 2 + boundary.size();
1276
1277 if (max > in_data.length()) {
1278 uint64_t need_to_read = cl - in_data.length();
1279
1280 bufferptr bp(need_to_read);
1281
1282 const auto read_len = recv_body(s, bp.c_str(), need_to_read);
1283 if (read_len < 0) {
1284 return read_len;
1285 }
1286 in_data.append(bp, 0, read_len);
1287 }
1288
1289 done = false;
1290 int skip;
1291 const int index = index_of(in_data, cl, boundary, check_crlf,
1292 reached_boundary, skip);
1293 if (index >= 0) {
1294 max = index;
1295 }
1296
1297 if (max > in_data.length()) {
1298 max = in_data.length();
1299 }
1300
1301 bl.substr_of(in_data, 0, max);
1302
1303 ceph::bufferlist new_read_data;
1304
1305 /*
1306 * now we need to skip boundary for next time, also skip any crlf, or
1307 * check to see if it's the last final boundary (marked with "--" at the end
1308 */
1309 if (reached_boundary) {
1310 int left = in_data.length() - max;
1311 if (left < skip + 2) {
1312 int need = skip + 2 - left;
1313 bufferptr boundary_bp(need);
1314 const int r = recv_body(s, boundary_bp.c_str(), need);
1315 if (r < 0) {
1316 return r;
1317 }
1318 in_data.append(boundary_bp);
1319 }
1320 max += skip; // skip boundary for next time
1321 if (in_data.length() >= max + 2) {
1322 const char *data = in_data.c_str();
1323 if (is_crlf(data + max)) {
1324 max += 2;
1325 } else {
1326 if (*(data + max) == '-' &&
1327 *(data + max + 1) == '-') {
1328 done = true;
1329 max += 2;
1330 }
1331 }
1332 }
1333 }
1334
1335 new_read_data.substr_of(in_data, max, in_data.length() - max);
1336 in_data = new_read_data;
1337
1338 return 0;
1339}
1340
1341int RGWPostObj_ObjStore::read_line(ceph::bufferlist& bl,
1342 const uint64_t max,
1343 bool& reached_boundary,
1344 bool& done)
1345{
1346 return read_with_boundary(bl, max, true, reached_boundary, done);
1347}
1348
1349int RGWPostObj_ObjStore::read_data(ceph::bufferlist& bl,
1350 const uint64_t max,
1351 bool& reached_boundary,
1352 bool& done)
1353{
1354 return read_with_boundary(bl, max, false, reached_boundary, done);
1355}
1356
1357
1358int RGWPostObj_ObjStore::read_form_part_header(struct post_form_part* const part,
1359 bool& done)
1360{
1361 bufferlist bl;
1362 bool reached_boundary;
1363 uint64_t chunk_size = s->cct->_conf->rgw_max_chunk_size;
1364 int r = read_line(bl, chunk_size, reached_boundary, done);
1365 if (r < 0) {
1366 return r;
1367 }
1368
1369 if (done) {
1370 return 0;
1371 }
1372
1373 if (reached_boundary) { // skip the first boundary
1374 r = read_line(bl, chunk_size, reached_boundary, done);
1375 if (r < 0) {
1376 return r;
1377 } else if (done) {
1378 return 0;
1379 }
1380 }
1381
1382 while (true) {
1383 /*
1384 * iterate through fields
1385 */
1386 std::string line = rgw_trim_whitespace(string(bl.c_str(), bl.length()));
1387
1388 if (line.empty()) {
1389 break;
1390 }
1391
1392 struct post_part_field field;
1393
1394 string field_name;
1395 r = parse_part_field(line, field_name, field);
1396 if (r < 0) {
1397 return r;
1398 }
1399
1400 part->fields[field_name] = field;
1401
1402 if (stringcasecmp(field_name, "Content-Disposition") == 0) {
1403 part->name = field.params["name"];
1404 }
1405
1406 if (reached_boundary) {
1407 break;
1408 }
1409
1410 r = read_line(bl, chunk_size, reached_boundary, done);
1411 }
1412
1413 return 0;
1414}
1415
1416bool RGWPostObj_ObjStore::part_str(parts_collection_t& parts,
1417 const std::string& name,
1418 std::string* val)
1419{
1420 const auto iter = parts.find(name);
1421 if (std::end(parts) == iter) {
1422 return false;
1423 }
1424
1425 ceph::bufferlist& data = iter->second.data;
1426 std::string str = string(data.c_str(), data.length());
1427 *val = rgw_trim_whitespace(str);
1428 return true;
1429}
1430
1431std::string RGWPostObj_ObjStore::get_part_str(parts_collection_t& parts,
1432 const std::string& name,
1433 const std::string& def_val)
1434{
1435 std::string val;
1436
1437 if (part_str(parts, name, &val)) {
1438 return val;
1439 } else {
1440 return rgw_trim_whitespace(def_val);
1441 }
1442}
1443
1444bool RGWPostObj_ObjStore::part_bl(parts_collection_t& parts,
1445 const std::string& name,
1446 ceph::bufferlist* pbl)
1447{
1448 const auto iter = parts.find(name);
1449 if (std::end(parts) == iter) {
1450 return false;
1451 }
1452
1453 *pbl = iter->second.data;
1454 return true;
1455}
1456
1457int RGWPostObj_ObjStore::verify_params()
1458{
1459 /* check that we have enough memory to store the object
1460 note that this test isn't exact and may fail unintentionally
1461 for large requests is */
1462 if (!s->length) {
1463 return -ERR_LENGTH_REQUIRED;
1464 }
1465 off_t len = atoll(s->length);
1466 if (len > (off_t)(s->cct->_conf->rgw_max_put_size)) {
1467 return -ERR_TOO_LARGE;
1468 }
1469
224ce89b
WB
1470 supplied_md5_b64 = s->info.env->get("HTTP_CONTENT_MD5");
1471
7c673cae
FG
1472 return 0;
1473}
1474
1475int RGWPostObj_ObjStore::get_params()
1476{
1477 if (s->expect_cont) {
1478 /* OK, here it really gets ugly. With POST, the params are embedded in the
1479 * request body, so we need to continue before being able to actually look
1480 * at them. This diverts from the usual request flow. */
1481 dump_continue(s);
1482 s->expect_cont = false;
1483 }
1484
1485 std::string req_content_type_str = s->info.env->get("CONTENT_TYPE", "");
1486 std::string req_content_type;
1487 std::map<std::string, std::string> params;
1488 parse_boundary_params(req_content_type_str, req_content_type, params);
1489
1490 if (req_content_type.compare("multipart/form-data") != 0) {
1491 err_msg = "Request Content-Type is not multipart/form-data";
1492 return -EINVAL;
1493 }
1494
1495 if (s->cct->_conf->subsys.should_gather(ceph_subsys_rgw, 20)) {
1496 ldout(s->cct, 20) << "request content_type_str="
1497 << req_content_type_str << dendl;
1498 ldout(s->cct, 20) << "request content_type params:" << dendl;
1499
1500 for (const auto& pair : params) {
1501 ldout(s->cct, 20) << " " << pair.first << " -> " << pair.second
1502 << dendl;
1503 }
1504 }
1505
1506 const auto iter = params.find("boundary");
1507 if (std::end(params) == iter) {
1508 err_msg = "Missing multipart boundary specification";
1509 return -EINVAL;
1510 }
1511
1512 /* Create the boundary. */
1513 boundary = "--";
1514 boundary.append(iter->second);
1515
1516 return 0;
1517}
1518
1519
1520int RGWPutACLs_ObjStore::get_params()
1521{
1522 const auto max_size = s->cct->_conf->rgw_max_put_param_size;
1523 op_ret = rgw_rest_read_all_input(s, &data, &len, max_size, false);
1524 return op_ret;
1525}
1526
1527int RGWPutLC_ObjStore::get_params()
1528{
1529 const auto max_size = s->cct->_conf->rgw_max_put_param_size;
1530 op_ret = rgw_rest_read_all_input(s, &data, &len, max_size, false);
1531 return op_ret;
1532}
1533
1534static int read_all_chunked_input(req_state *s, char **pdata, int *plen, const uint64_t max_read)
1535{
1536#define READ_CHUNK 4096
1537#define MAX_READ_CHUNK (128 * 1024)
1538 int need_to_read = READ_CHUNK;
1539 int total = need_to_read;
1540 char *data = (char *)malloc(total + 1);
1541 if (!data)
1542 return -ENOMEM;
1543
1544 int read_len = 0, len = 0;
1545 do {
1546 read_len = recv_body(s, data + len, need_to_read);
1547 if (read_len < 0) {
1548 free(data);
1549 return read_len;
1550 }
1551
1552 len += read_len;
1553
1554 if (read_len == need_to_read) {
1555 if (need_to_read < MAX_READ_CHUNK)
1556 need_to_read *= 2;
1557
1558 if ((unsigned)total > max_read) {
1559 free(data);
1560 return -ERANGE;
1561 }
1562 total += need_to_read;
1563
1564 void *p = realloc(data, total + 1);
1565 if (!p) {
1566 free(data);
1567 return -ENOMEM;
1568 }
1569 data = (char *)p;
1570 } else {
1571 break;
1572 }
1573
1574 } while (true);
1575 data[len] = '\0';
1576
1577 *pdata = data;
1578 *plen = len;
1579
1580 return 0;
1581}
1582
1583int rgw_rest_read_all_input(struct req_state *s, char **pdata, int *plen,
1584 const uint64_t max_len, const bool allow_chunked)
1585{
1586 size_t cl = 0;
1587 int len = 0;
1588 char *data = NULL;
1589
1590 if (s->length)
1591 cl = atoll(s->length);
1592 else if (!allow_chunked)
1593 return -ERR_LENGTH_REQUIRED;
1594
1595 if (cl) {
1596 if (cl > (size_t)max_len) {
1597 return -ERANGE;
1598 }
1599 data = (char *)malloc(cl + 1);
1600 if (!data) {
1601 return -ENOMEM;
1602 }
1603 len = recv_body(s, data, cl);
1604 if (len < 0) {
1605 free(data);
1606 return len;
1607 }
1608 data[len] = '\0';
1609 } else if (allow_chunked && !s->length) {
1610 const char *encoding = s->info.env->get("HTTP_TRANSFER_ENCODING");
1611 if (!encoding || strcmp(encoding, "chunked") != 0)
1612 return -ERR_LENGTH_REQUIRED;
1613
1614 int ret = read_all_chunked_input(s, &data, &len, max_len);
1615 if (ret < 0)
1616 return ret;
1617 }
1618
1619 *plen = len;
1620 *pdata = data;
1621
1622 return 0;
1623}
1624
1625int RGWCompleteMultipart_ObjStore::get_params()
1626{
1627 upload_id = s->info.args.get("uploadId");
1628
1629 if (upload_id.empty()) {
1630 op_ret = -ENOTSUP;
1631 return op_ret;
1632 }
1633
1634#define COMPLETE_MULTIPART_MAX_LEN (1024 * 1024) /* api defines max 10,000 parts, this should be enough */
1635 op_ret = rgw_rest_read_all_input(s, &data, &len, COMPLETE_MULTIPART_MAX_LEN);
1636 if (op_ret < 0)
1637 return op_ret;
1638
1639 return 0;
1640}
1641
1642int RGWListMultipart_ObjStore::get_params()
1643{
1644 upload_id = s->info.args.get("uploadId");
1645
1646 if (upload_id.empty()) {
1647 op_ret = -ENOTSUP;
1648 }
1649 string marker_str = s->info.args.get("part-number-marker");
1650
1651 if (!marker_str.empty()) {
1652 string err;
1653 marker = strict_strtol(marker_str.c_str(), 10, &err);
1654 if (!err.empty()) {
1655 ldout(s->cct, 20) << "bad marker: " << marker << dendl;
1656 op_ret = -EINVAL;
1657 return op_ret;
1658 }
1659 }
1660
1661 string str = s->info.args.get("max-parts");
f64942e4
AA
1662 op_ret = parse_value_and_bound(str, max_parts, 0,
1663 g_conf->get_val<uint64_t>("rgw_max_listing_results"),
1664 max_parts);
7c673cae
FG
1665
1666 return op_ret;
1667}
1668
1669int RGWListBucketMultiparts_ObjStore::get_params()
1670{
1671 delimiter = s->info.args.get("delimiter");
1672 prefix = s->info.args.get("prefix");
94b18763 1673 string str = s->info.args.get("max-uploads");
f64942e4
AA
1674 op_ret = parse_value_and_bound(str, max_uploads, 0,
1675 g_conf->get_val<uint64_t>("rgw_max_listing_results"),
1676 default_max);
1677 if (op_ret < 0) {
1678 return op_ret;
1679 }
7c673cae
FG
1680
1681 string key_marker = s->info.args.get("key-marker");
1682 string upload_id_marker = s->info.args.get("upload-id-marker");
1683 if (!key_marker.empty())
1684 marker.init(key_marker, upload_id_marker);
1685
1686 return 0;
1687}
1688
1689int RGWDeleteMultiObj_ObjStore::get_params()
1690{
1691
1692 if (s->bucket_name.empty()) {
1693 op_ret = -EINVAL;
1694 return op_ret;
1695 }
1696
1697 // everything is probably fine, set the bucket
1698 bucket = s->bucket;
1699
1700 const auto max_size = s->cct->_conf->rgw_max_put_param_size;
1701 op_ret = rgw_rest_read_all_input(s, &data, &len, max_size, false);
1702 return op_ret;
1703}
1704
1705
1706void RGWRESTOp::send_response()
1707{
1708 if (!flusher.did_start()) {
1709 set_req_state_err(s, http_ret);
1710 dump_errno(s);
1711 end_header(s, this);
1712 }
1713 flusher.flush();
1714}
1715
1716int RGWRESTOp::verify_permission()
1717{
1718 return check_caps(s->user->caps);
1719}
1720
1721RGWOp* RGWHandler_REST::get_op(RGWRados* store)
1722{
1723 RGWOp *op;
1724 switch (s->op) {
1725 case OP_GET:
1726 op = op_get();
1727 break;
1728 case OP_PUT:
1729 op = op_put();
1730 break;
1731 case OP_DELETE:
1732 op = op_delete();
1733 break;
1734 case OP_HEAD:
1735 op = op_head();
1736 break;
1737 case OP_POST:
1738 op = op_post();
1739 break;
1740 case OP_COPY:
1741 op = op_copy();
1742 break;
1743 case OP_OPTIONS:
1744 op = op_options();
1745 break;
1746 default:
1747 return NULL;
1748 }
1749
1750 if (op) {
1751 op->init(store, s, this);
1752 }
1753 return op;
1754} /* get_op */
1755
1756void RGWHandler_REST::put_op(RGWOp* op)
1757{
1758 delete op;
1759} /* put_op */
1760
1761int RGWHandler_REST::allocate_formatter(struct req_state *s,
1762 int default_type,
1763 bool configurable)
1764{
1765 s->format = default_type;
1766 if (configurable) {
1767 string format_str = s->info.args.get("format");
1768 if (format_str.compare("xml") == 0) {
1769 s->format = RGW_FORMAT_XML;
1770 } else if (format_str.compare("json") == 0) {
1771 s->format = RGW_FORMAT_JSON;
1772 } else if (format_str.compare("html") == 0) {
1773 s->format = RGW_FORMAT_HTML;
1774 } else {
1775 const char *accept = s->info.env->get("HTTP_ACCEPT");
1776 if (accept) {
1777 char format_buf[64];
1778 unsigned int i = 0;
1779 for (; i < sizeof(format_buf) - 1 && accept[i] && accept[i] != ';'; ++i) {
1780 format_buf[i] = accept[i];
1781 }
1782 format_buf[i] = 0;
1783 if ((strcmp(format_buf, "text/xml") == 0) || (strcmp(format_buf, "application/xml") == 0)) {
1784 s->format = RGW_FORMAT_XML;
1785 } else if (strcmp(format_buf, "application/json") == 0) {
1786 s->format = RGW_FORMAT_JSON;
1787 } else if (strcmp(format_buf, "text/html") == 0) {
1788 s->format = RGW_FORMAT_HTML;
1789 }
1790 }
1791 }
1792 }
1793
1794 const string& mm = s->info.args.get("multipart-manifest");
1795 const bool multipart_delete = (mm.compare("delete") == 0);
1796 const bool swift_bulkupload = s->prot_flags & RGW_REST_SWIFT &&
1797 s->info.args.exists("extract-archive");
1798 switch (s->format) {
1799 case RGW_FORMAT_PLAIN:
1800 {
1801 const bool use_kv_syntax = s->info.args.exists("bulk-delete") ||
1802 multipart_delete || swift_bulkupload;
1803 s->formatter = new RGWFormatter_Plain(use_kv_syntax);
1804 break;
1805 }
1806 case RGW_FORMAT_XML:
1807 {
1808 const bool lowercase_underscore = s->info.args.exists("bulk-delete") ||
1809 multipart_delete || swift_bulkupload;
1810
1811 s->formatter = new XMLFormatter(false, lowercase_underscore);
1812 break;
1813 }
1814 case RGW_FORMAT_JSON:
1815 s->formatter = new JSONFormatter(false);
1816 break;
1817 case RGW_FORMAT_HTML:
1818 s->formatter = new HTMLFormatter(s->prot_flags & RGW_REST_WEBSITE);
1819 break;
1820 default:
1821 return -EINVAL;
1822
1823 };
1824 //s->formatter->reset(); // All formatters should reset on create already
1825
1826 return 0;
1827}
1828
7c673cae
FG
1829// This function enforces Amazon's spec for bucket names.
1830// (The requirements, not the recommendations.)
1831int RGWHandler_REST::validate_bucket_name(const string& bucket)
1832{
1833 int len = bucket.size();
1834 if (len < 3) {
1835 if (len == 0) {
1836 // This request doesn't specify a bucket at all
1837 return 0;
1838 }
1839 // Name too short
1840 return -ERR_INVALID_BUCKET_NAME;
1841 }
1842 else if (len > MAX_BUCKET_NAME_LEN) {
1843 // Name too long
1844 return -ERR_INVALID_BUCKET_NAME;
1845 }
1846
1847 return 0;
1848}
1849
1850// "The name for a key is a sequence of Unicode characters whose UTF-8 encoding
1851// is at most 1024 bytes long."
1852// However, we can still have control characters and other nasties in there.
1853// Just as long as they're utf-8 nasties.
1854int RGWHandler_REST::validate_object_name(const string& object)
1855{
1856 int len = object.size();
1857 if (len > MAX_OBJ_NAME_LEN) {
1858 // Name too long
1859 return -ERR_INVALID_OBJECT_NAME;
1860 }
1861
1862 if (check_utf8(object.c_str(), len)) {
1863 // Object names must be valid UTF-8.
1864 return -ERR_INVALID_OBJECT_NAME;
1865 }
1866 return 0;
1867}
1868
1869static http_op op_from_method(const char *method)
1870{
1871 if (!method)
1872 return OP_UNKNOWN;
1873 if (strcmp(method, "GET") == 0)
1874 return OP_GET;
1875 if (strcmp(method, "PUT") == 0)
1876 return OP_PUT;
1877 if (strcmp(method, "DELETE") == 0)
1878 return OP_DELETE;
1879 if (strcmp(method, "HEAD") == 0)
1880 return OP_HEAD;
1881 if (strcmp(method, "POST") == 0)
1882 return OP_POST;
1883 if (strcmp(method, "COPY") == 0)
1884 return OP_COPY;
1885 if (strcmp(method, "OPTIONS") == 0)
1886 return OP_OPTIONS;
1887
1888 return OP_UNKNOWN;
1889}
1890
1891int RGWHandler_REST::init_permissions(RGWOp* op)
1892{
1893 if (op->get_type() == RGW_OP_CREATE_BUCKET)
1894 return 0;
1895
1896 return do_init_permissions();
1897}
1898
1899int RGWHandler_REST::read_permissions(RGWOp* op_obj)
1900{
224ce89b 1901 bool only_bucket = false;
7c673cae
FG
1902
1903 switch (s->op) {
1904 case OP_HEAD:
1905 case OP_GET:
1906 only_bucket = false;
1907 break;
1908 case OP_PUT:
1909 case OP_POST:
1910 case OP_COPY:
1911 /* is it a 'multi-object delete' request? */
1912 if (s->info.args.exists("delete")) {
1913 only_bucket = true;
1914 break;
1915 }
1916 if (is_obj_update_op()) {
1917 only_bucket = false;
1918 break;
1919 }
1920 /* is it a 'create bucket' request? */
1921 if (op_obj->get_type() == RGW_OP_CREATE_BUCKET)
1922 return 0;
1923 only_bucket = true;
1924 break;
1925 case OP_DELETE:
224ce89b
WB
1926 if (!s->info.args.exists("tagging")){
1927 only_bucket = true;
1928 }
7c673cae
FG
1929 break;
1930 case OP_OPTIONS:
1931 only_bucket = true;
1932 break;
1933 default:
1934 return -EINVAL;
1935 }
1936
1937 return do_read_permissions(op_obj, only_bucket);
1938}
1939
1940void RGWRESTMgr::register_resource(string resource, RGWRESTMgr *mgr)
1941{
1942 string r = "/";
1943 r.append(resource);
1944
1945 /* do we have a resource manager registered for this entry point? */
1946 map<string, RGWRESTMgr *>::iterator iter = resource_mgrs.find(r);
1947 if (iter != resource_mgrs.end()) {
1948 delete iter->second;
1949 }
1950 resource_mgrs[r] = mgr;
1951 resources_by_size.insert(pair<size_t, string>(r.size(), r));
1952
1953 /* now build default resource managers for the path (instead of nested entry points)
1954 * e.g., if the entry point is /auth/v1.0/ then we'd want to create a default
1955 * manager for /auth/
1956 */
1957
1958 size_t pos = r.find('/', 1);
1959
1960 while (pos != r.size() - 1 && pos != string::npos) {
1961 string s = r.substr(0, pos);
1962
1963 iter = resource_mgrs.find(s);
1964 if (iter == resource_mgrs.end()) { /* only register it if one does not exist */
1965 resource_mgrs[s] = new RGWRESTMgr; /* a default do-nothing manager */
1966 resources_by_size.insert(pair<size_t, string>(s.size(), s));
1967 }
1968
1969 pos = r.find('/', pos + 1);
1970 }
1971}
1972
1973void RGWRESTMgr::register_default_mgr(RGWRESTMgr *mgr)
1974{
1975 delete default_mgr;
1976 default_mgr = mgr;
1977}
1978
1979RGWRESTMgr* RGWRESTMgr::get_resource_mgr(struct req_state* const s,
1980 const std::string& uri,
1981 std::string* const out_uri)
1982{
1983 *out_uri = uri;
1984
1985 multimap<size_t, string>::reverse_iterator iter;
1986
1987 for (iter = resources_by_size.rbegin(); iter != resources_by_size.rend(); ++iter) {
1988 string& resource = iter->second;
1989 if (uri.compare(0, iter->first, resource) == 0 &&
1990 (uri.size() == iter->first ||
1991 uri[iter->first] == '/')) {
1992 std::string suffix = uri.substr(iter->first);
1993 return resource_mgrs[resource]->get_resource_mgr(s, suffix, out_uri);
1994 }
1995 }
1996
1997 if (default_mgr) {
1998 return default_mgr->get_resource_mgr_as_default(s, uri, out_uri);
1999 }
2000
2001 return this;
2002}
2003
2004void RGWREST::register_x_headers(const string& s_headers)
2005{
2006 std::vector<std::string> hdrs = get_str_vec(s_headers);
2007 for (auto& hdr : hdrs) {
2008 boost::algorithm::to_upper(hdr); // XXX
2009 (void) x_headers.insert(hdr);
2010 }
2011}
2012
2013RGWRESTMgr::~RGWRESTMgr()
2014{
2015 map<string, RGWRESTMgr *>::iterator iter;
2016 for (iter = resource_mgrs.begin(); iter != resource_mgrs.end(); ++iter) {
2017 delete iter->second;
2018 }
2019 delete default_mgr;
2020}
2021
31f18b77 2022int64_t parse_content_length(const char *content_length)
7c673cae
FG
2023{
2024 int64_t len = -1;
2025
2026 if (*content_length == '\0') {
2027 len = 0;
2028 } else {
2029 string err;
2030 len = strict_strtoll(content_length, 10, &err);
2031 if (!err.empty()) {
2032 len = -1;
2033 }
2034 }
2035
2036 return len;
2037}
2038
2039int RGWREST::preprocess(struct req_state *s, rgw::io::BasicClient* cio)
2040{
2041 req_info& info = s->info;
2042
2043 /* save the request uri used to hash on the client side. request_uri may suffer
2044 modifications as part of the bucket encoding in the subdomain calling format.
2045 request_uri_aws4 will be used under aws4 auth */
2046 s->info.request_uri_aws4 = s->info.request_uri;
2047
2048 s->cio = cio;
2049
2050 // We need to know if this RGW instance is running the s3website API with a
2051 // higher priority than regular S3 API, or possibly in place of the regular
2052 // S3 API.
2053 // Map the listing of rgw_enable_apis in REVERSE order, so that items near
2054 // the front of the list have a higher number assigned (and -1 for items not in the list).
2055 list<string> apis;
2056 get_str_list(g_conf->rgw_enable_apis, apis);
2057 int api_priority_s3 = -1;
2058 int api_priority_s3website = -1;
2059 auto api_s3website_priority_rawpos = std::find(apis.begin(), apis.end(), "s3website");
2060 auto api_s3_priority_rawpos = std::find(apis.begin(), apis.end(), "s3");
2061 if (api_s3_priority_rawpos != apis.end()) {
2062 api_priority_s3 = apis.size() - std::distance(apis.begin(), api_s3_priority_rawpos);
2063 }
2064 if (api_s3website_priority_rawpos != apis.end()) {
2065 api_priority_s3website = apis.size() - std::distance(apis.begin(), api_s3website_priority_rawpos);
2066 }
2067 ldout(s->cct, 10) << "rgw api priority: s3=" << api_priority_s3 << " s3website=" << api_priority_s3website << dendl;
2068 bool s3website_enabled = api_priority_s3website >= 0;
2069
2070 if (info.host.size()) {
2071 ssize_t pos = info.host.find(':');
2072 if (pos >= 0) {
2073 info.host = info.host.substr(0, pos);
2074 }
2075 ldout(s->cct, 10) << "host=" << info.host << dendl;
2076 string domain;
2077 string subdomain;
2078 bool in_hosted_domain_s3website = false;
2079 bool in_hosted_domain = rgw_find_host_in_domains(info.host, &domain, &subdomain, hostnames_set);
2080
2081 string s3website_domain;
2082 string s3website_subdomain;
2083
2084 if (s3website_enabled) {
2085 in_hosted_domain_s3website = rgw_find_host_in_domains(info.host, &s3website_domain, &s3website_subdomain, hostnames_s3website_set);
2086 if (in_hosted_domain_s3website) {
2087 in_hosted_domain = true; // TODO: should hostnames be a strict superset of hostnames_s3website?
2088 domain = s3website_domain;
2089 subdomain = s3website_subdomain;
2090 }
2091 }
2092
2093 ldout(s->cct, 20)
2094 << "subdomain=" << subdomain
2095 << " domain=" << domain
2096 << " in_hosted_domain=" << in_hosted_domain
2097 << " in_hosted_domain_s3website=" << in_hosted_domain_s3website
2098 << dendl;
2099
2100 if (g_conf->rgw_resolve_cname
2101 && !in_hosted_domain
2102 && !in_hosted_domain_s3website) {
2103 string cname;
2104 bool found;
2105 int r = rgw_resolver->resolve_cname(info.host, cname, &found);
2106 if (r < 0) {
2107 ldout(s->cct, 0)
2108 << "WARNING: rgw_resolver->resolve_cname() returned r=" << r
2109 << dendl;
2110 }
2111
2112 if (found) {
2113 ldout(s->cct, 5) << "resolved host cname " << info.host << " -> "
2114 << cname << dendl;
2115 in_hosted_domain =
2116 rgw_find_host_in_domains(cname, &domain, &subdomain, hostnames_set);
2117
2118 if (s3website_enabled
2119 && !in_hosted_domain_s3website) {
2120 in_hosted_domain_s3website =
2121 rgw_find_host_in_domains(cname, &s3website_domain,
2122 &s3website_subdomain,
2123 hostnames_s3website_set);
2124 if (in_hosted_domain_s3website) {
2125 in_hosted_domain = true; // TODO: should hostnames be a
2126 // strict superset of hostnames_s3website?
2127 domain = s3website_domain;
2128 subdomain = s3website_subdomain;
2129 }
2130 }
2131
2132 ldout(s->cct, 20)
2133 << "subdomain=" << subdomain
2134 << " domain=" << domain
2135 << " in_hosted_domain=" << in_hosted_domain
2136 << " in_hosted_domain_s3website=" << in_hosted_domain_s3website
2137 << dendl;
2138 }
2139 }
2140
2141 // Handle A/CNAME records that point to the RGW storage, but do match the
2142 // CNAME test above, per issue http://tracker.ceph.com/issues/15975
2143 // If BOTH domain & subdomain variables are empty, then none of the above
2144 // cases matched anything, and we should fall back to using the Host header
2145 // directly as the bucket name.
2146 // As additional checks:
2147 // - if the Host header is an IP, we're using path-style access without DNS
2148 // - Also check that the Host header is a valid bucket name before using it.
2149 // - Don't enable virtual hosting if no hostnames are configured
2150 if (subdomain.empty()
2151 && (domain.empty() || domain != info.host)
2152 && !looks_like_ip_address(info.host.c_str())
2153 && RGWHandler_REST::validate_bucket_name(info.host) == 0
2154 && !(hostnames_set.empty() && hostnames_s3website_set.empty())) {
2155 subdomain.append(info.host);
2156 in_hosted_domain = 1;
2157 }
2158
2159 if (s3website_enabled && api_priority_s3website > api_priority_s3) {
2160 in_hosted_domain_s3website = 1;
2161 }
2162
2163 if (in_hosted_domain_s3website) {
2164 s->prot_flags |= RGW_REST_WEBSITE;
2165 }
2166
2167
2168 if (in_hosted_domain && !subdomain.empty()) {
2169 string encoded_bucket = "/";
2170 encoded_bucket.append(subdomain);
2171 if (s->info.request_uri[0] != '/')
2172 encoded_bucket.append("/");
2173 encoded_bucket.append(s->info.request_uri);
2174 s->info.request_uri = encoded_bucket;
2175 }
2176
2177 if (!domain.empty()) {
2178 s->info.domain = domain;
2179 }
2180
2181 ldout(s->cct, 20)
2182 << "final domain/bucket"
2183 << " subdomain=" << subdomain
2184 << " domain=" << domain
2185 << " in_hosted_domain=" << in_hosted_domain
2186 << " in_hosted_domain_s3website=" << in_hosted_domain_s3website
2187 << " s->info.domain=" << s->info.domain
2188 << " s->info.request_uri=" << s->info.request_uri
2189 << dendl;
2190 }
2191
2192 if (s->info.domain.empty()) {
2193 s->info.domain = s->cct->_conf->rgw_dns_name;
2194 }
2195
31f18b77 2196 s->decoded_uri = url_decode(s->info.request_uri);
224ce89b
WB
2197 /* Validate for being free of the '\0' buried in the middle of the string. */
2198 if (std::strlen(s->decoded_uri.c_str()) != s->decoded_uri.length()) {
2199 return -ERR_ZERO_IN_URL;
2200 }
7c673cae
FG
2201
2202 /* FastCGI specification, section 6.3
2203 * http://www.fastcgi.com/devkit/doc/fcgi-spec.html#S6.3
2204 * ===
2205 * The Authorizer application receives HTTP request information from the Web
2206 * server on the FCGI_PARAMS stream, in the same format as a Responder. The
2207 * Web server does not send CONTENT_LENGTH, PATH_INFO, PATH_TRANSLATED, and
2208 * SCRIPT_NAME headers.
2209 * ===
2210 * Ergo if we are in Authorizer role, we MUST look at HTTP_CONTENT_LENGTH
2211 * instead of CONTENT_LENGTH for the Content-Length.
2212 *
2213 * There is one slight wrinkle in this, and that's older versions of
2214 * nginx/lighttpd/apache setting BOTH headers. As a result, we have to check
2215 * both headers and can't always simply pick A or B.
2216 */
2217 const char* content_length = info.env->get("CONTENT_LENGTH");
2218 const char* http_content_length = info.env->get("HTTP_CONTENT_LENGTH");
2219 if (!http_content_length != !content_length) {
2220 /* Easy case: one or the other is missing */
2221 s->length = (content_length ? content_length : http_content_length);
2222 } else if (s->cct->_conf->rgw_content_length_compat &&
2223 content_length && http_content_length) {
2224 /* Hard case: Both are set, we have to disambiguate */
2225 int64_t content_length_i, http_content_length_i;
2226
2227 content_length_i = parse_content_length(content_length);
2228 http_content_length_i = parse_content_length(http_content_length);
2229
2230 // Now check them:
2231 if (http_content_length_i < 0) {
2232 // HTTP_CONTENT_LENGTH is invalid, ignore it
2233 } else if (content_length_i < 0) {
2234 // CONTENT_LENGTH is invalid, and HTTP_CONTENT_LENGTH is valid
2235 // Swap entries
2236 content_length = http_content_length;
2237 } else {
2238 // both CONTENT_LENGTH and HTTP_CONTENT_LENGTH are valid
2239 // Let's pick the larger size
2240 if (content_length_i < http_content_length_i) {
2241 // prefer the larger value
2242 content_length = http_content_length;
2243 }
2244 }
2245 s->length = content_length;
2246 // End of: else if (s->cct->_conf->rgw_content_length_compat &&
2247 // content_length &&
2248 // http_content_length)
2249 } else {
2250 /* no content length was defined */
2251 s->length = NULL;
2252 }
2253
2254 if (s->length) {
2255 if (*s->length == '\0') {
2256 s->content_length = 0;
2257 } else {
2258 string err;
2259 s->content_length = strict_strtoll(s->length, 10, &err);
2260 if (!err.empty()) {
2261 ldout(s->cct, 10) << "bad content length, aborting" << dendl;
2262 return -EINVAL;
2263 }
2264 }
2265 }
2266
2267 if (s->content_length < 0) {
2268 ldout(s->cct, 10) << "negative content length, aborting" << dendl;
2269 return -EINVAL;
2270 }
2271
2272 map<string, string>::iterator giter;
2273 for (giter = generic_attrs_map.begin(); giter != generic_attrs_map.end();
2274 ++giter) {
2275 const char *env = info.env->get(giter->first.c_str());
2276 if (env) {
2277 s->generic_attrs[giter->second] = env;
2278 }
2279 }
2280
7c673cae
FG
2281 if (g_conf->rgw_print_continue) {
2282 const char *expect = info.env->get("HTTP_EXPECT");
2283 s->expect_cont = (expect && !strcasecmp(expect, "100-continue"));
2284 }
2285 s->op = op_from_method(info.method);
2286
2287 info.init_meta_info(&s->has_bad_meta);
2288
2289 return 0;
2290}
2291
2292RGWHandler_REST* RGWREST::get_handler(
2293 RGWRados * const store,
2294 struct req_state* const s,
2295 const rgw::auth::StrategyRegistry& auth_registry,
2296 const std::string& frontend_prefix,
2297 RGWRestfulIO* const rio,
2298 RGWRESTMgr** const pmgr,
2299 int* const init_error
2300) {
2301 *init_error = preprocess(s, rio);
2302 if (*init_error < 0) {
2303 return nullptr;
2304 }
2305
2306 RGWRESTMgr *m = mgr.get_manager(s, frontend_prefix, s->decoded_uri,
2307 &s->relative_uri);
2308 if (! m) {
2309 *init_error = -ERR_METHOD_NOT_ALLOWED;
2310 return nullptr;
2311 }
2312
2313 if (pmgr) {
2314 *pmgr = m;
2315 }
2316
2317 RGWHandler_REST* handler = m->get_handler(s, auth_registry, frontend_prefix);
2318 if (! handler) {
2319 *init_error = -ERR_METHOD_NOT_ALLOWED;
2320 return NULL;
2321 }
2322 *init_error = handler->init(store, s, rio);
2323 if (*init_error < 0) {
2324 m->put_handler(handler);
2325 return nullptr;
2326 }
2327
2328 return handler;
2329} /* get stream handler */