-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglobal_init.cc
393 lines (348 loc) · 10.5 KB
/
global_init.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
// vim: ts=8 sw=2 smarttab
/*
* Ceph - scalable distributed file system
*
* Copyright (C) 2011 New Dream Network
*
* This is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1, as published by the Free Software
* Foundation. See file COPYING.
*
*/
#include "common/Thread.h"
#include "common/ceph_argparse.h"
#include "common/code_environment.h"
#include "common/common_init.h"
#include "common/config.h"
#include "common/debug.h"
#include "common/errno.h"
#include "common/safe_io.h"
#include "common/signal.h"
#include "common/version.h"
#include "global/global_context.h"
#include "global/global_init.h"
#include "global/pidfile.h"
#include "global/signal_handler.h"
#include "include/compat.h"
#include "include/color.h"
#include <pwd.h>
#include <grp.h>
#include <errno.h>
#include <deque>
#ifdef WITH_LTTNG
#include <lttng/ust.h>
#endif
#define dout_subsys ceph_subsys_
static void global_init_set_globals(CephContext *cct)
{
g_ceph_context = cct;
g_conf = cct->_conf;
}
static void output_ceph_version()
{
char buf[1024];
snprintf(buf, sizeof(buf), "%s, process %s, pid %d",
pretty_version_to_str().c_str(),
get_process_name_cpp().c_str(), getpid());
generic_dout(0) << buf << dendl;
}
static const char* c_str_or_null(const std::string &str)
{
if (str.empty())
return NULL;
return str.c_str();
}
void global_pre_init(std::vector < const char * > *alt_def_args,
std::vector < const char* >& args,
uint32_t module_type, code_environment_t code_env,
int flags)
{
// You can only call global_init once.
assert(!g_ceph_context);
std::string conf_file_list;
std::string cluster = "ceph";
CephInitParameters iparams = ceph_argparse_early_args(args, module_type, flags,
&cluster, &conf_file_list);
CephContext *cct = common_preinit(iparams, code_env, flags);
cct->_conf->cluster = cluster;
global_init_set_globals(cct);
md_config_t *conf = cct->_conf;
if (alt_def_args)
conf->parse_argv(*alt_def_args); // alternative default args
std::deque<std::string> parse_errors;
int ret = conf->parse_config_files(c_str_or_null(conf_file_list), &parse_errors, &cerr, flags);
if (ret == -EDOM) {
dout_emergency("global_init: error parsing config file.\n");
_exit(1);
}
else if (ret == -EINVAL) {
if (!(flags & CINIT_FLAG_NO_DEFAULT_CONFIG_FILE)) {
if (conf_file_list.length()) {
ostringstream oss;
oss << "global_init: unable to open config file from search list "
<< conf_file_list << "\n";
dout_emergency(oss.str());
_exit(1);
} else {
derr <<"did not load config file, using default settings." << dendl;
}
}
}
else if (ret) {
dout_emergency("global_init: error reading config file.\n");
_exit(1);
}
conf->parse_env(); // environment variables override
conf->parse_argv(args); // argv override
// Expand metavariables. Invoke configuration observers.
conf->apply_changes(NULL);
// Now we're ready to complain about config file parse errors
complain_about_parse_errors(cct, &parse_errors);
}
void global_init(std::vector < const char * > *alt_def_args,
std::vector < const char* >& args,
uint32_t module_type, code_environment_t code_env, int flags)
{
global_pre_init(alt_def_args, args, module_type, code_env, flags);
// signal stuff
int siglist[] = { SIGPIPE, 0 };
block_signals(siglist, NULL);
if (g_conf->fatal_signal_handlers)
install_standard_sighandlers();
if (g_conf->log_flush_on_exit)
g_ceph_context->_log->set_flush_on_exit();
// consider --setuser root a no-op, even if we're not root
if (getuid() != 0) {
if (g_conf->setuser.length()) {
cerr << "ignoring --setuser " << g_conf->setuser << " since I am not root"
<< std::endl;
g_conf->set_val("setuser", "", false, false);
}
if (g_conf->setgroup.length()) {
cerr << "ignoring --setgroup " << g_conf->setgroup
<< " since I am not root" << std::endl;
g_conf->set_val("setgroup", "", false, false);
}
}
// drop privileges?
if (g_conf->setgroup.length() ||
g_conf->setuser.length()) {
uid_t uid = 0; // zero means no change; we can only drop privs here.
gid_t gid = 0;
if (g_conf->setuser.length()) {
uid = atoi(g_conf->setuser.c_str());
if (!uid) {
char buf[4096];
struct passwd pa;
struct passwd *p = 0;
getpwnam_r(g_conf->setuser.c_str(), &pa, buf, sizeof(buf), &p);
if (!p) {
cerr << "unable to look up user '" << g_conf->setuser << "'"
<< std::endl;
exit(1);
}
uid = p->pw_uid;
gid = p->pw_gid;
}
}
if (g_conf->setgroup.length() > 0) {
gid = atoi(g_conf->setgroup.c_str());
if (!gid) {
char buf[4096];
struct group gr;
struct group *g = 0;
getgrnam_r(g_conf->setgroup.c_str(), &gr, buf, sizeof(buf), &g);
if (!g) {
cerr << "unable to look up group '" << g_conf->setgroup << "'"
<< std::endl;
exit(1);
}
gid = g->gr_gid;
}
}
if ((uid || gid) &&
g_conf->setuser_match_path.length()) {
struct stat st;
int r = ::stat(g_conf->setuser_match_path.c_str(), &st);
if (r < 0) {
r = -errno;
cerr << "unable to stat setuser_match_path "
<< g_conf->setuser_match_path
<< ": " << cpp_strerror(r) << std::endl;
exit(1);
}
if ((uid && uid != st.st_uid) ||
(gid && gid != st.st_gid)) {
cerr << "WARNING: will not setuid/gid: " << g_conf->setuser_match_path
<< " owned by " << st.st_uid << ":" << st.st_gid
<< " and not requested " << uid << ":" << gid
<< std::endl;
uid = 0;
gid = 0;
} else {
dout(10) << "setuser_match_path "
<< g_conf->setuser_match_path << " owned by "
<< st.st_uid << ":" << st.st_gid << ", doing setuid/gid"
<< dendl;
}
}
if (setgid(gid) != 0) {
int r = errno;
cerr << "unable to setgid " << gid << ": " << cpp_strerror(r)
<< std::endl;
exit(1);
}
if (setuid(uid) != 0) {
int r = errno;
cerr << "unable to setuid " << uid << ": " << cpp_strerror(r)
<< std::endl;
exit(1);
}
dout(0) << "set uid:gid to " << uid << ":" << gid << dendl;
}
if (g_conf->run_dir.length() &&
code_env == CODE_ENVIRONMENT_DAEMON &&
!(flags & CINIT_FLAG_NO_DAEMON_ACTIONS)) {
int r = ::mkdir(g_conf->run_dir.c_str(), 0755);
if (r < 0 && errno != EEXIST) {
r = -errno;
cerr << "warning: unable to create " << g_conf->run_dir << ": " << cpp_strerror(r) << std::endl;
}
}
register_assert_context(g_ceph_context);
// call all observers now. this has the side-effect of configuring
// and opening the log file immediately.
g_conf->call_all_observers();
// test leak checking
if (g_conf->debug_deliberately_leak_memory) {
derr << "deliberately leaking some memory" << dendl;
char *s = new char[1234567];
(void)s;
}
if (code_env == CODE_ENVIRONMENT_DAEMON && !(flags & CINIT_FLAG_NO_DAEMON_ACTIONS))
output_ceph_version();
}
void global_print_banner(void)
{
output_ceph_version();
}
static void pidfile_remove_void(void)
{
pidfile_remove();
}
int global_init_prefork(CephContext *cct, int flags)
{
if (g_code_env != CODE_ENVIRONMENT_DAEMON)
return -1;
const md_config_t *conf = cct->_conf;
if (!conf->daemonize) {
if (atexit(pidfile_remove_void)) {
derr << "global_init_daemonize: failed to set pidfile_remove function "
<< "to run at exit." << dendl;
}
pidfile_write(g_conf);
return -1;
}
// stop log thread
g_ceph_context->_log->flush();
g_ceph_context->_log->stop();
return 0;
}
void global_init_daemonize(CephContext *cct, int flags)
{
if (global_init_prefork(cct, flags) < 0)
return;
#ifdef WITH_LTTNG
sigset_t sigset;
ust_before_fork(&sigset);
#endif
int ret = daemon(1, 1);
if (ret) {
ret = errno;
derr << "global_init_daemonize: BUG: daemon error: "
<< cpp_strerror(ret) << dendl;
exit(1);
}
#ifdef WITH_LTTNG
ust_after_fork_child(&sigset);
#endif
global_init_postfork_start(cct);
global_init_postfork_finish(cct, flags);
}
void global_init_postfork_start(CephContext *cct)
{
// restart log thread
g_ceph_context->_log->start();
if (atexit(pidfile_remove_void)) {
derr << "global_init_daemonize: failed to set pidfile_remove function "
<< "to run at exit." << dendl;
}
/* This is the old trick where we make file descriptors 0, 1, and possibly 2
* point to /dev/null.
*
* We have to do this because otherwise some arbitrary call to open() later
* in the program might get back one of these file descriptors. It's hard to
* guarantee that nobody ever writes to stdout, even though they're not
* supposed to.
*/
VOID_TEMP_FAILURE_RETRY(close(STDIN_FILENO));
if (open("/dev/null", O_RDONLY) < 0) {
int err = errno;
derr << "global_init_daemonize: open(/dev/null) failed: error "
<< err << dendl;
exit(1);
}
VOID_TEMP_FAILURE_RETRY(close(STDOUT_FILENO));
if (open("/dev/null", O_RDONLY) < 0) {
int err = errno;
derr << "global_init_daemonize: open(/dev/null) failed: error "
<< err << dendl;
exit(1);
}
pidfile_write(g_conf);
}
void global_init_postfork_finish(CephContext *cct, int flags)
{
/* We only close stderr once the caller decides the daemonization
* process is finished. This way we can allow error messages to be
* propagated in a manner that the user is able to see.
*/
if (!(flags & CINIT_FLAG_NO_CLOSE_STDERR)) {
int ret = global_init_shutdown_stderr(cct);
if (ret) {
derr << "global_init_daemonize: global_init_shutdown_stderr failed with "
<< "error code " << ret << dendl;
exit(1);
}
}
ldout(cct, 1) << "finished global_init_daemonize" << dendl;
}
void global_init_chdir(const CephContext *cct)
{
const md_config_t *conf = cct->_conf;
if (conf->chdir.empty())
return;
if (::chdir(conf->chdir.c_str())) {
int err = errno;
derr << "global_init_chdir: failed to chdir to directory: '"
<< conf->chdir << "': " << cpp_strerror(err) << dendl;
}
}
/* Map stderr to /dev/null. This isn't really re-entrant; we rely on the old unix
* behavior that the file descriptor that gets assigned is the lowest
* available one.
*/
int global_init_shutdown_stderr(CephContext *cct)
{
VOID_TEMP_FAILURE_RETRY(close(STDERR_FILENO));
if (open("/dev/null", O_RDONLY) < 0) {
int err = errno;
derr << "global_init_shutdown_stderr: open(/dev/null) failed: error "
<< err << dendl;
return 1;
}
cct->_log->set_stderr_level(-1, -1);
return 0;
}