]> git.proxmox.com Git - ceph.git/blob - ceph/src/rgw/rgw_civetweb_frontend.cc
update sources to v12.2.5
[ceph.git] / ceph / src / rgw / rgw_civetweb_frontend.cc
1 // -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
2 // vim: ts=8 sw=2 smarttab
3
4 #include <set>
5 #include <string>
6
7 #include <boost/utility/string_ref.hpp>
8
9 #include "rgw_frontend.h"
10 #include "rgw_client_io_filters.h"
11
12 #define dout_subsys ceph_subsys_rgw
13
14 static int civetweb_callback(struct mg_connection* conn)
15 {
16 const struct mg_request_info* const req_info = mg_get_request_info(conn);
17 return static_cast<RGWCivetWebFrontend *>(req_info->user_data)->process(conn);
18 }
19
20 int RGWCivetWebFrontend::process(struct mg_connection* const conn)
21 {
22 /* Hold a read lock over access to env.store for reconfiguration. */
23 RWLock::RLocker lock(env.mutex);
24
25 RGWCivetWeb cw_client(conn);
26 auto real_client_io = rgw::io::add_reordering(
27 rgw::io::add_buffering(dout_context,
28 rgw::io::add_chunking(
29 rgw::io::add_conlen_controlling(
30 &cw_client))));
31 RGWRestfulIO client_io(dout_context, &real_client_io);
32
33 RGWRequest req(env.store->get_new_req_id());
34 int http_ret = 0;
35 int ret = process_request(env.store, env.rest, &req, env.uri_prefix,
36 *env.auth_registry, &client_io, env.olog, &http_ret);
37 if (ret < 0) {
38 /* We don't really care about return code. */
39 dout(20) << "process_request() returned " << ret << dendl;
40 }
41
42 if (http_ret <= 0) {
43 /* Mark as processed. */
44 return 1;
45 }
46
47 return http_ret;
48 }
49
50 int RGWCivetWebFrontend::run()
51 {
52 auto& conf_map = conf->get_config_map();
53 string port_str;
54
55 set_conf_default(conf_map, "num_threads",
56 std::to_string(g_conf->rgw_thread_pool_size));
57 set_conf_default(conf_map, "decode_url", "no");
58 set_conf_default(conf_map, "enable_keep_alive", "yes");
59 set_conf_default(conf_map, "validate_http_method", "no");
60 set_conf_default(conf_map, "canonicalize_url_path", "no");
61 set_conf_default(conf_map, "enable_auth_domain_check", "no");
62 conf->get_val("port", "80", &port_str);
63 std::replace(port_str.begin(), port_str.end(), '+', ',');
64 conf_map["listening_ports"] = port_str;
65
66 /* Set run_as_user. This will cause civetweb to invoke setuid() and setgid()
67 * based on pw_uid and pw_gid obtained from pw_name. */
68 std::string uid_string = g_ceph_context->get_set_uid_string();
69 if (! uid_string.empty()) {
70 conf_map["run_as_user"] = std::move(uid_string);
71 }
72
73 /* Prepare options for CivetWeb. */
74 const std::set<boost::string_ref> rgw_opts = { "port", "prefix" };
75
76 std::vector<const char*> options;
77
78 for (const auto& pair : conf_map) {
79 if (! rgw_opts.count(pair.first)) {
80 /* CivetWeb doesn't understand configurables of the glue layer between
81 * it and RadosGW. We need to strip them out. Otherwise CivetWeb would
82 * signalise an error. */
83 options.push_back(pair.first.c_str());
84 options.push_back(pair.second.c_str());
85
86 dout(20) << "civetweb config: " << pair.first
87 << ": " << pair.second << dendl;
88 }
89 }
90
91 options.push_back(nullptr);
92 /* Initialize the CivetWeb right now. */
93 struct mg_callbacks cb;
94 memset((void *)&cb, 0, sizeof(cb));
95 cb.begin_request = civetweb_callback;
96 cb.log_message = rgw_civetweb_log_callback;
97 cb.log_access = rgw_civetweb_log_access_callback;
98 ctx = mg_start(&cb, this, options.data());
99
100 return ! ctx ? -EIO : 0;
101 } /* RGWCivetWebFrontend::run */