-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcosd.cc
191 lines (157 loc) · 5.27 KB
/
cosd.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
// -*- 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) 2004-2006 Sage Weil <[email protected]>
*
* 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 <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <sys/stat.h>
#include <iostream>
#include <string>
using namespace std;
#include "config.h"
#include "mon/MonMap.h"
#include "mon/MonClient.h"
#include "osd/OSD.h"
#include "msg/SimpleMessenger.h"
#include "common/Timer.h"
#include "common/common_init.h"
#include "include/color.h"
void usage()
{
cerr << "usage: cosd -i osdid [--osd-data=path] [--osd-journal=path] [--mkfs] [--mkjournal]" << std::endl;
cerr << " --debug_osd N set debug level (e.g. 10)" << std::endl;
generic_server_usage();
}
int main(int argc, const char **argv)
{
DEFINE_CONF_VARS(usage);
vector<const char*> args;
argv_to_vec(argc, argv, args);
env_to_vec(args);
bool should_authenticate = true;
vector<const char *>::iterator args_iter;
for (args_iter = args.begin(); args_iter != args.end(); ++args_iter) {
if (strcmp(*args_iter, "--mkfs") == 0) {
should_authenticate = false;
break;
}
}
common_init(args, "osd", true, should_authenticate);
if (g_conf.clock_tare) g_clock.tare();
// osd specific args
bool mkfs = false;
bool mkjournal = false;
FOR_EACH_ARG(args) {
if (CONF_ARG_EQ("mkfs", '\0')) {
mkfs = true;
} else if (CONF_ARG_EQ("mkjournal", '\0')) {
mkjournal = true;
} else {
cerr << "unrecognized arg " << args[i] << std::endl;
ARGS_USAGE();
}
}
// whoami
char *end;
int whoami = strtol(g_conf.id, &end, 10);
if (*end || end == g_conf.id || whoami < 0) {
cerr << "must specify '-i #' where # is the osd number" << std::endl;
usage();
}
if (!g_conf.osd_data) {
cerr << "must specify '--osd-data=foo' data path" << std::endl;
usage();
}
_dout_create_courtesy_output_symlink("osd", whoami);
// get monmap
RotatingKeyRing rkeys(CEPH_ENTITY_TYPE_OSD, &g_keyring);
MonClient mc(&rkeys);
if (mc.build_initial_monmap() < 0)
return -1;
char buf[80];
if (mkfs) {
if (mc.get_monmap_privately() < 0)
return -1;
int err = OSD::mkfs(g_conf.osd_data, g_conf.osd_journal, mc.monmap.fsid, whoami);
if (err < 0) {
cerr << "error creating empty object store in " << g_conf.osd_data << ": " << strerror_r(-err, buf, sizeof(buf)) << std::endl;
exit(1);
}
cout << "created object store for osd" << whoami << " fsid " << mc.monmap.fsid << " on " << g_conf.osd_data << std::endl;
exit(0);
}
nstring magic;
ceph_fsid_t fsid;
int w;
int r = OSD::peek_meta(g_conf.osd_data, magic, fsid, w);
if (r < 0) {
cerr << TEXT_RED << " ** " << TEXT_HAZARD << "ERROR: " << TEXT_RED
<< "unable to open OSD superblock on " << g_conf.osd_data << ": " << strerror_r(-r, buf, sizeof(buf)) << TEXT_NORMAL << std::endl;
if (r == -ENOTSUP)
cerr << TEXT_RED << " ** please verify that underlying storage supports xattrs" << TEXT_NORMAL << std::endl;
derr(0) << "unable to open OSD superblock on " << g_conf.osd_data << ": " << strerror_r(-r, buf, sizeof(buf)) << dendl;
exit(1);
}
if (w != whoami) {
cerr << "OSD id " << w << " != my id " << whoami << std::endl;
exit(1);
}
if (strcmp(magic.c_str(), CEPH_OSD_ONDISK_MAGIC)) {
cerr << "OSD magic " << magic << " != my " << CEPH_OSD_ONDISK_MAGIC << std::endl;
exit(1);
}
SimpleMessenger *messenger = new SimpleMessenger();
SimpleMessenger *messenger_hb = new SimpleMessenger();
messenger->bind();
messenger_hb->bind();
cout << "starting osd" << whoami
<< " at " << messenger->get_ms_addr()
<< " osd_data " << g_conf.osd_data
<< " " << ((g_conf.osd_journal && g_conf.osd_journal[0]) ? g_conf.osd_journal:"(no journal)")
<< std::endl;
messenger->register_entity(entity_name_t::OSD(whoami));
if (!messenger)
return 1;
messenger_hb->register_entity(entity_name_t::OSD(whoami));
if (!messenger_hb)
return 1;
messenger->set_default_policy(SimpleMessenger::Policy::stateless_server());
messenger->set_policy(entity_name_t::TYPE_MON, SimpleMessenger::Policy::client());
messenger->set_policy(entity_name_t::TYPE_OSD, SimpleMessenger::Policy::lossless_peer());
OSD *osd = new OSD(whoami, messenger, messenger_hb, &mc, g_conf.osd_data, g_conf.osd_journal, mkjournal);
int err = osd->pre_init();
if (err < 0) {
char buf[80];
cerr << "error initializing osd: " << strerror_r(-err, buf, sizeof(buf)) << std::endl;
return 1;
}
messenger->start();
messenger_hb->start(true); // only need to daemon() once
// start osd
if (osd->init() < 0) {
cout << "error starting osd" << std::endl;
return 1;
}
messenger->wait();
messenger_hb->wait();
// done
delete osd;
messenger->destroy();
messenger_hb->destroy();
// cd on exit, so that gmon.out (if any) goes into a separate directory for each node.
char s[20];
snprintf(s, sizeof(s), "gmon/%d", getpid());
if (mkdir(s, 0755) == 0)
chdir(s);
return 0;
}