]> git.proxmox.com Git - ceph.git/blame - ceph/src/rgw/rgw_main.cc
update sources to 12.2.7
[ceph.git] / ceph / src / rgw / rgw_main.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
4#include <stdlib.h>
5#include <stdio.h>
6#include <string.h>
7#include <stdarg.h>
8#include <sys/types.h>
9#include <sys/stat.h>
10#include <fcntl.h>
11#include <errno.h>
12#include <signal.h>
13
7c673cae
FG
14#include <boost/intrusive_ptr.hpp>
15
16#include "acconfig.h"
17
18#include "common/ceph_argparse.h"
19#include "global/global_init.h"
20#include "global/signal_handler.h"
21#include "common/config.h"
22#include "common/errno.h"
23#include "common/Timer.h"
24#include "common/safe_io.h"
25#include "include/compat.h"
26#include "include/str_list.h"
224ce89b 27#include "include/stringify.h"
7c673cae
FG
28#include "rgw_common.h"
29#include "rgw_rados.h"
30#include "rgw_user.h"
31#include "rgw_period_pusher.h"
32#include "rgw_realm_reloader.h"
33#include "rgw_rest.h"
34#include "rgw_rest_s3.h"
35#include "rgw_rest_swift.h"
36#include "rgw_rest_admin.h"
37#include "rgw_rest_usage.h"
38#include "rgw_rest_user.h"
39#include "rgw_rest_bucket.h"
40#include "rgw_rest_metadata.h"
41#include "rgw_rest_log.h"
42#include "rgw_rest_opstate.h"
43#include "rgw_replica_log.h"
44#include "rgw_rest_replica_log.h"
45#include "rgw_rest_config.h"
46#include "rgw_rest_realm.h"
47#include "rgw_swift_auth.h"
48#include "rgw_log.h"
49#include "rgw_tools.h"
50#include "rgw_resolve.h"
51
52#include "rgw_request.h"
53#include "rgw_process.h"
54#include "rgw_frontend.h"
94b18763 55#include "rgw_http_client_curl.h"
7c673cae
FG
56#if defined(WITH_RADOSGW_BEAST_FRONTEND)
57#include "rgw_asio_frontend.h"
58#endif /* WITH_RADOSGW_BEAST_FRONTEND */
59
60#include <map>
61#include <string>
62#include <vector>
63#include <atomic>
64
65#include "include/types.h"
66#include "common/BackTrace.h"
67
68#ifdef HAVE_SYS_PRCTL_H
69#include <sys/prctl.h>
70#endif
71
72#define dout_subsys ceph_subsys_rgw
73
74using namespace std;
75
76static sig_t sighandler_alrm;
77
78class RGWProcess;
79
80static int signal_fd[2] = {0, 0};
81static std::atomic<int64_t> disable_signal_fd = { 0 };
82
83void signal_shutdown()
84{
85 if (!disable_signal_fd) {
86 int val = 0;
87 int ret = write(signal_fd[0], (char *)&val, sizeof(val));
88 if (ret < 0) {
89 derr << "ERROR: " << __func__ << ": write() returned "
90 << cpp_strerror(errno) << dendl;
91 }
92 }
93}
94
95static void wait_shutdown()
96{
97 int val;
98 int r = safe_read_exact(signal_fd[1], &val, sizeof(val));
99 if (r < 0) {
100 derr << "safe_read_exact returned with error" << dendl;
101 }
102}
103
104static int signal_fd_init()
105{
106 return socketpair(AF_UNIX, SOCK_STREAM, 0, signal_fd);
107}
108
109static void signal_fd_finalize()
110{
111 close(signal_fd[0]);
112 close(signal_fd[1]);
113}
114
115static void handle_sigterm(int signum)
116{
117 dout(1) << __func__ << dendl;
118#if defined(WITH_RADOSGW_FCGI_FRONTEND)
119 FCGX_ShutdownPending();
120#endif
121
122 // send a signal to make fcgi's accept(2) wake up. unfortunately the
123 // initial signal often isn't sufficient because we race with accept's
124 // check of the flag wet by ShutdownPending() above.
125 if (signum != SIGUSR1) {
126 signal_shutdown();
127
128 // safety net in case we get stuck doing an orderly shutdown.
129 uint64_t secs = g_ceph_context->_conf->rgw_exit_timeout_secs;
130 if (secs)
131 alarm(secs);
132 dout(1) << __func__ << " set alarm for " << secs << dendl;
133 }
134
135}
136
137static void godown_alarm(int signum)
138{
139 _exit(0);
140}
141
7c673cae
FG
142
143class C_InitTimeout : public Context {
144public:
145 C_InitTimeout() {}
146 void finish(int r) override {
147 derr << "Initialization timeout, failed to initialize" << dendl;
148 exit(1);
149 }
150};
151
152static int usage()
153{
154 cerr << "usage: radosgw [options...]" << std::endl;
155 cerr << "options:\n";
156 cerr << " --rgw-region=<region> region in which radosgw runs\n";
157 cerr << " --rgw-zone=<zone> zone in which radosgw runs\n";
158 cerr << " --rgw-socket-path=<path> specify a unix domain socket path\n";
159 cerr << " -m monaddress[:port] connect to specified monitor\n";
160 cerr << " --keyring=<path> path to radosgw keyring\n";
161 cerr << " --logfile=<logfile> file to log debug output\n";
162 cerr << " --debug-rgw=<log-level>/<memory-level> set radosgw debug level\n";
163 generic_server_usage();
164
165 return 0;
166}
167
168static RGWRESTMgr *set_logging(RGWRESTMgr *mgr)
169{
170 mgr->set_logging(true);
171 return mgr;
172}
173
31f18b77
FG
174static RGWRESTMgr *rest_filter(RGWRados *store, int dialect, RGWRESTMgr *orig)
175{
176 RGWSyncModuleInstanceRef sync_module = store->get_sync_module();
94b18763
FG
177 if (sync_module) {
178 return sync_module->get_rest_filter(dialect, orig);
179 } else {
180 return orig;
181 }
31f18b77
FG
182}
183
7c673cae
FG
184/*
185 * start up the RADOS connection and then handle HTTP messages as they come in
186 */
187#ifdef BUILDING_FOR_EMBEDDED
188extern "C" int cephd_rgw(int argc, const char **argv)
189#else
190int main(int argc, const char **argv)
191#endif
192{
193 // dout() messages will be sent to stderr, but FCGX wants messages on stdout
194 // Redirect stderr to stdout.
195 TEMP_FAILURE_RETRY(close(STDERR_FILENO));
196 if (TEMP_FAILURE_RETRY(dup2(STDOUT_FILENO, STDERR_FILENO)) < 0) {
197 int err = errno;
198 cout << "failed to redirect stderr to stdout: " << cpp_strerror(err)
199 << std::endl;
200 return ENOSYS;
201 }
202
203 /* alternative default for module */
204 vector<const char *> def_args;
205 def_args.push_back("--debug-rgw=1/5");
206 def_args.push_back("--keyring=$rgw_data/keyring");
207
208 vector<const char*> args;
209 argv_to_vec(argc, argv, args);
210 env_to_vec(args);
211
212 // First, let's determine which frontends are configured.
213 int flags = CINIT_FLAG_UNPRIVILEGED_DAEMON_DEFAULTS;
214 global_pre_init(&def_args, args, CEPH_ENTITY_TYPE_CLIENT, CODE_ENVIRONMENT_DAEMON,
215 flags);
216
217 list<string> frontends;
218 get_str_list(g_conf->rgw_frontends, ",", frontends);
219 multimap<string, RGWFrontendConfig *> fe_map;
220 list<RGWFrontendConfig *> configs;
221 if (frontends.empty()) {
31f18b77 222 frontends.push_back("civetweb");
7c673cae
FG
223 }
224 for (list<string>::iterator iter = frontends.begin(); iter != frontends.end(); ++iter) {
225 string& f = *iter;
226
227 if (f.find("civetweb") != string::npos) {
228 // If civetweb is configured as a frontend, prevent global_init() from
229 // dropping permissions by setting the appropriate flag.
230 flags |= CINIT_FLAG_DEFER_DROP_PRIVILEGES;
231 if (f.find("port") != string::npos) {
232 // check for the most common ws problems
233 if ((f.find("port=") == string::npos) ||
234 (f.find("port= ") != string::npos)) {
235 derr << "WARNING: civetweb frontend config found unexpected spacing around 'port' "
236 << "(ensure civetweb port parameter has the form 'port=80' with no spaces "
237 << "before or after '=')" << dendl;
238 }
239 }
240 }
241
242 RGWFrontendConfig *config = new RGWFrontendConfig(f);
243 int r = config->init();
244 if (r < 0) {
245 delete config;
246 cerr << "ERROR: failed to init config: " << f << std::endl;
247 return EINVAL;
248 }
249
250 configs.push_back(config);
251
252 string framework = config->get_framework();
253 fe_map.insert(pair<string, RGWFrontendConfig*>(framework, config));
254 }
255
256 // Now that we've determined which frontend(s) to use, continue with global
257 // initialization. Passing false as the final argument ensures that
258 // global_pre_init() is not invoked twice.
259 // claim the reference and release it after subsequent destructors have fired
260 auto cct = global_init(&def_args, args, CEPH_ENTITY_TYPE_CLIENT,
261 CODE_ENVIRONMENT_DAEMON,
262 flags, "rgw_data", false);
263
264 for (std::vector<const char*>::iterator i = args.begin(); i != args.end(); ++i) {
265 if (ceph_argparse_flag(args, i, "-h", "--help", (char*)NULL)) {
266 usage();
267 return 0;
268 }
269 }
270
271 // maintain existing region root pool for new multisite objects
272 if (!g_conf->rgw_region_root_pool.empty()) {
273 const char *root_pool = g_conf->rgw_region_root_pool.c_str();
274 if (g_conf->rgw_zonegroup_root_pool.empty()) {
275 g_conf->set_val_or_die("rgw_zonegroup_root_pool", root_pool);
276 }
277 if (g_conf->rgw_period_root_pool.empty()) {
278 g_conf->set_val_or_die("rgw_period_root_pool", root_pool);
279 }
280 if (g_conf->rgw_realm_root_pool.empty()) {
281 g_conf->set_val_or_die("rgw_realm_root_pool", root_pool);
282 }
283 }
284
285 // for region -> zonegroup conversion (must happen before common_init_finish())
286 if (!g_conf->rgw_region.empty() && g_conf->rgw_zonegroup.empty()) {
287 g_conf->set_val_or_die("rgw_zonegroup", g_conf->rgw_region.c_str());
288 }
289
7c673cae
FG
290 if (g_conf->daemonize) {
291 global_init_daemonize(g_ceph_context);
292 }
293 Mutex mutex("main");
294 SafeTimer init_timer(g_ceph_context, mutex);
295 init_timer.init();
296 mutex.Lock();
297 init_timer.add_event_after(g_conf->rgw_init_timeout, new C_InitTimeout);
298 mutex.Unlock();
299
300 // Enable the perf counter before starting the service thread
301 g_ceph_context->enable_perf_counter();
302
303 common_init_finish(g_ceph_context);
304
305 int r = rgw_tools_init(g_ceph_context);
306 if (r < 0) {
307 derr << "ERROR: unable to initialize rgw tools" << dendl;
308 return -r;
309 }
310
311 rgw_init_resolver();
94b18763
FG
312 rgw::curl::setup_curl(fe_map);
313
7c673cae
FG
314#if defined(WITH_RADOSGW_FCGI_FRONTEND)
315 FCGX_Init();
316#endif
317
318 RGWRados *store = RGWStoreManager::get_storage(g_ceph_context,
319 g_conf->rgw_enable_gc_threads, g_conf->rgw_enable_lc_threads, g_conf->rgw_enable_quota_threads,
28e407b8 320 g_conf->rgw_run_sync_thread, g_conf->rgw_dynamic_resharding, g_conf->rgw_cache_enabled);
7c673cae
FG
321 if (!store) {
322 mutex.Lock();
323 init_timer.cancel_all_events();
324 init_timer.shutdown();
325 mutex.Unlock();
326
327 derr << "Couldn't init storage provider (RADOS)" << dendl;
328 return EIO;
329 }
330 r = rgw_perf_start(g_ceph_context);
331 if (r < 0) {
332 derr << "ERROR: failed starting rgw perf" << dendl;
333 return -r;
334 }
335
336 rgw_rest_init(g_ceph_context, store, store->get_zonegroup());
337
338 mutex.Lock();
339 init_timer.cancel_all_events();
340 init_timer.shutdown();
341 mutex.Unlock();
342
343 rgw_user_init(store);
344 rgw_bucket_init(store->meta_mgr);
345 rgw_log_usage_init(g_ceph_context, store);
346
347 RGWREST rest;
348
349 list<string> apis;
350
351 get_str_list(g_conf->rgw_enable_apis, apis);
352
353 map<string, bool> apis_map;
354 for (list<string>::iterator li = apis.begin(); li != apis.end(); ++li) {
355 apis_map[*li] = true;
356 }
357
358 // S3 website mode is a specialization of S3
359 const bool s3website_enabled = apis_map.count("s3website") > 0;
360 // Swift API entrypoint could placed in the root instead of S3
361 const bool swift_at_root = g_conf->rgw_swift_url_prefix == "/";
362 if (apis_map.count("s3") > 0 || s3website_enabled) {
363 if (! swift_at_root) {
31f18b77
FG
364 rest.register_default_mgr(set_logging(rest_filter(store, RGW_REST_S3,
365 new RGWRESTMgr_S3(s3website_enabled))));
7c673cae
FG
366 } else {
367 derr << "Cannot have the S3 or S3 Website enabled together with "
368 << "Swift API placed in the root of hierarchy" << dendl;
369 return EINVAL;
370 }
371 }
372
373 if (apis_map.count("swift") > 0) {
374 RGWRESTMgr_SWIFT* const swift_resource = new RGWRESTMgr_SWIFT;
375
376 if (! g_conf->rgw_cross_domain_policy.empty()) {
377 swift_resource->register_resource("crossdomain.xml",
378 set_logging(new RGWRESTMgr_SWIFT_CrossDomain));
379 }
380
381 swift_resource->register_resource("healthcheck",
382 set_logging(new RGWRESTMgr_SWIFT_HealthCheck));
383
384 swift_resource->register_resource("info",
385 set_logging(new RGWRESTMgr_SWIFT_Info));
386
387 if (! swift_at_root) {
388 rest.register_resource(g_conf->rgw_swift_url_prefix,
31f18b77
FG
389 set_logging(rest_filter(store, RGW_REST_SWIFT,
390 swift_resource)));
7c673cae
FG
391 } else {
392 if (store->get_zonegroup().zones.size() > 1) {
393 derr << "Placing Swift API in the root of URL hierarchy while running"
394 << " multi-site configuration requires another instance of RadosGW"
395 << " with S3 API enabled!" << dendl;
396 }
397
398 rest.register_default_mgr(set_logging(swift_resource));
399 }
400 }
401
402 if (apis_map.count("swift_auth") > 0) {
403 rest.register_resource(g_conf->rgw_swift_auth_entry,
404 set_logging(new RGWRESTMgr_SWIFT_Auth));
405 }
406
407 if (apis_map.count("admin") > 0) {
408 RGWRESTMgr_Admin *admin_resource = new RGWRESTMgr_Admin;
409 admin_resource->register_resource("usage", new RGWRESTMgr_Usage);
410 admin_resource->register_resource("user", new RGWRESTMgr_User);
411 admin_resource->register_resource("bucket", new RGWRESTMgr_Bucket);
412
413 /*Registering resource for /admin/metadata */
414 admin_resource->register_resource("metadata", new RGWRESTMgr_Metadata);
415 admin_resource->register_resource("log", new RGWRESTMgr_Log);
416 admin_resource->register_resource("opstate", new RGWRESTMgr_Opstate);
417 admin_resource->register_resource("replica_log", new RGWRESTMgr_ReplicaLog);
418 admin_resource->register_resource("config", new RGWRESTMgr_Config);
419 admin_resource->register_resource("realm", new RGWRESTMgr_Realm);
420 rest.register_resource(g_conf->rgw_admin_entry, admin_resource);
421 }
422
423 /* Initialize the registry of auth strategies which will coordinate
424 * the dynamic reconfiguration. */
28e407b8
AA
425 rgw::auth::ImplicitTenants implicit_tenant_context{*g_conf};
426 g_conf->add_observer(&implicit_tenant_context);
7c673cae 427 auto auth_registry = \
28e407b8 428 rgw::auth::StrategyRegistry::create(g_ceph_context, implicit_tenant_context, store);
7c673cae
FG
429
430 /* Header custom behavior */
431 rest.register_x_headers(g_conf->rgw_log_http_headers);
432
433 OpsLogSocket *olog = NULL;
434
435 if (!g_conf->rgw_ops_log_socket_path.empty()) {
436 olog = new OpsLogSocket(g_ceph_context, g_conf->rgw_ops_log_data_backlog);
437 olog->init(g_conf->rgw_ops_log_socket_path);
438 }
439
440 r = signal_fd_init();
441 if (r < 0) {
442 derr << "ERROR: unable to initialize signal fds" << dendl;
443 exit(1);
444 }
445
446 init_async_signal_handler();
b32b8144 447 register_async_signal_handler(SIGHUP, sighup_handler);
7c673cae
FG
448 register_async_signal_handler(SIGTERM, handle_sigterm);
449 register_async_signal_handler(SIGINT, handle_sigterm);
450 register_async_signal_handler(SIGUSR1, handle_sigterm);
451 sighandler_alrm = signal(SIGALRM, godown_alarm);
452
224ce89b
WB
453 map<string, string> service_map_meta;
454 service_map_meta["pid"] = stringify(getpid());
455
7c673cae
FG
456 list<RGWFrontend *> fes;
457
224ce89b
WB
458 int fe_count = 0;
459
7c673cae 460 for (multimap<string, RGWFrontendConfig *>::iterator fiter = fe_map.begin();
224ce89b 461 fiter != fe_map.end(); ++fiter, ++fe_count) {
7c673cae
FG
462 RGWFrontendConfig *config = fiter->second;
463 string framework = config->get_framework();
464 RGWFrontend *fe = NULL;
465
466 if (framework == "civetweb" || framework == "mongoose") {
224ce89b 467 framework = "civetweb";
7c673cae
FG
468 std::string uri_prefix;
469 config->get_val("prefix", "", &uri_prefix);
470
471 RGWProcessEnv env = { store, &rest, olog, 0, uri_prefix, auth_registry };
472
473 fe = new RGWCivetWebFrontend(env, config);
474 }
475 else if (framework == "loadgen") {
476 int port;
477 config->get_val("port", 80, &port);
478 std::string uri_prefix;
479 config->get_val("prefix", "", &uri_prefix);
480
481 RGWProcessEnv env = { store, &rest, olog, port, uri_prefix, auth_registry };
482
483 fe = new RGWLoadGenFrontend(env, config);
484 }
485#if defined(WITH_RADOSGW_BEAST_FRONTEND)
486 else if ((framework == "beast") &&
487 cct->check_experimental_feature_enabled("rgw-beast-frontend")) {
488 int port;
489 config->get_val("port", 80, &port);
490 std::string uri_prefix;
491 config->get_val("prefix", "", &uri_prefix);
492 RGWProcessEnv env{ store, &rest, olog, port, uri_prefix, auth_registry };
94b18763 493 fe = new RGWAsioFrontend(env, config);
7c673cae
FG
494 }
495#endif /* WITH_RADOSGW_BEAST_FRONTEND */
496#if defined(WITH_RADOSGW_FCGI_FRONTEND)
497 else if (framework == "fastcgi" || framework == "fcgi") {
224ce89b 498 framework = "fastcgi";
7c673cae
FG
499 std::string uri_prefix;
500 config->get_val("prefix", "", &uri_prefix);
501 RGWProcessEnv fcgi_pe = { store, &rest, olog, 0, uri_prefix, auth_registry };
502
503 fe = new RGWFCGXFrontend(fcgi_pe, config);
504 }
505#endif /* WITH_RADOSGW_FCGI_FRONTEND */
506
224ce89b
WB
507 service_map_meta["frontend_type#" + stringify(fe_count)] = framework;
508 service_map_meta["frontend_config#" + stringify(fe_count)] = config->get_config();
509
7c673cae
FG
510 if (fe == NULL) {
511 dout(0) << "WARNING: skipping unknown framework: " << framework << dendl;
512 continue;
513 }
514
515 dout(0) << "starting handler: " << fiter->first << dendl;
516 int r = fe->init();
517 if (r < 0) {
518 derr << "ERROR: failed initializing frontend" << dendl;
519 return -r;
520 }
521 r = fe->run();
522 if (r < 0) {
523 derr << "ERROR: failed run" << dendl;
524 return -r;
525 }
526
527 fes.push_back(fe);
528 }
529
224ce89b
WB
530 r = store->register_to_service_map("rgw", service_map_meta);
531 if (r < 0) {
532 derr << "ERROR: failed to register to service map: " << cpp_strerror(-r) << dendl;
533
534 /* ignore error */
535 }
536
537
7c673cae
FG
538 // add a watcher to respond to realm configuration changes
539 RGWPeriodPusher pusher(store);
28e407b8 540 RGWFrontendPauser pauser(fes, implicit_tenant_context, &pusher);
224ce89b 541 RGWRealmReloader reloader(store, service_map_meta, &pauser);
7c673cae 542
7c673cae
FG
543 RGWRealmWatcher realm_watcher(g_ceph_context, store->realm);
544 realm_watcher.add_watcher(RGWRealmNotify::Reload, reloader);
545 realm_watcher.add_watcher(RGWRealmNotify::ZonesNeedPeriod, pusher);
546
547#if defined(HAVE_SYS_PRCTL_H)
548 if (prctl(PR_SET_DUMPABLE, 1) == -1) {
549 cerr << "warning: unable to set dumpable flag: " << cpp_strerror(errno) << std::endl;
550 }
551#endif
552
553 wait_shutdown();
554
555 derr << "shutting down" << dendl;
556
557 for (list<RGWFrontend *>::iterator liter = fes.begin(); liter != fes.end();
558 ++liter) {
559 RGWFrontend *fe = *liter;
560 fe->stop();
561 }
562
563 for (list<RGWFrontend *>::iterator liter = fes.begin(); liter != fes.end();
564 ++liter) {
565 RGWFrontend *fe = *liter;
566 fe->join();
567 delete fe;
568 }
569
570 for (list<RGWFrontendConfig *>::iterator liter = configs.begin();
571 liter != configs.end(); ++liter) {
572 RGWFrontendConfig *fec = *liter;
573 delete fec;
574 }
575
b32b8144 576 unregister_async_signal_handler(SIGHUP, sighup_handler);
7c673cae
FG
577 unregister_async_signal_handler(SIGTERM, handle_sigterm);
578 unregister_async_signal_handler(SIGINT, handle_sigterm);
579 unregister_async_signal_handler(SIGUSR1, handle_sigterm);
580 shutdown_async_signal_handler();
581
582 rgw_log_usage_finalize();
583
584 delete olog;
585
586 RGWStoreManager::close_storage(store);
587
588 rgw_tools_cleanup();
589 rgw_shutdown_resolver();
94b18763 590 rgw::curl::cleanup_curl();
28e407b8 591 g_conf->remove_observer(&implicit_tenant_context);
7c673cae
FG
592
593 rgw_perf_stop(g_ceph_context);
594
595 dout(1) << "final shutdown" << dendl;
596
597 signal_fd_finalize();
598
599 return 0;
600}