2007-10-17 23:34:54 +00:00
|
|
|
// -*- 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 <sage@newdream.net>
|
|
|
|
*
|
|
|
|
* 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;
|
|
|
|
|
2011-02-22 16:38:45 +00:00
|
|
|
#include "common/config.h"
|
2007-10-17 23:34:54 +00:00
|
|
|
|
|
|
|
#include "mon/MonMap.h"
|
2008-03-10 05:32:16 +00:00
|
|
|
#include "mon/MonClient.h"
|
2007-10-17 23:34:54 +00:00
|
|
|
|
|
|
|
#include "osd/OSD.h"
|
|
|
|
|
|
|
|
#include "msg/SimpleMessenger.h"
|
|
|
|
|
|
|
|
#include "common/Timer.h"
|
2009-02-09 23:46:02 +00:00
|
|
|
#include "common/common_init.h"
|
2011-02-20 17:18:03 +00:00
|
|
|
#include "common/ceph_argparse.h"
|
2007-10-17 23:34:54 +00:00
|
|
|
|
2009-04-28 18:02:55 +00:00
|
|
|
#include "include/color.h"
|
2010-12-16 18:53:58 +00:00
|
|
|
#include "common/errno.h"
|
2009-04-28 18:02:55 +00:00
|
|
|
|
2008-03-11 01:36:50 +00:00
|
|
|
void usage()
|
|
|
|
{
|
2010-12-16 18:53:58 +00:00
|
|
|
derr << "usage: cosd -i osdid [--osd-data=path] [--osd-journal=path] "
|
|
|
|
<< "[--mkfs] [--mkjournal]" << dendl;
|
|
|
|
derr << " --debug_osd N set debug level (e.g. 10)" << dendl;
|
2009-03-10 22:22:52 +00:00
|
|
|
generic_server_usage();
|
2008-03-11 01:36:50 +00:00
|
|
|
}
|
|
|
|
|
2007-10-17 23:34:54 +00:00
|
|
|
|
2008-01-01 22:04:31 +00:00
|
|
|
int main(int argc, const char **argv)
|
2007-10-17 23:34:54 +00:00
|
|
|
{
|
2009-03-12 23:08:13 +00:00
|
|
|
DEFINE_CONF_VARS(usage);
|
2008-01-01 22:04:31 +00:00
|
|
|
vector<const char*> args;
|
2007-10-17 23:34:54 +00:00
|
|
|
argv_to_vec(argc, argv, args);
|
2008-11-05 22:54:13 +00:00
|
|
|
env_to_vec(args);
|
2011-02-23 13:50:10 +00:00
|
|
|
int startup_flags = STARTUP_FLAG_INIT_KEYS | STARTUP_FLAG_DAEMON;
|
2009-10-01 20:54:21 +00:00
|
|
|
vector<const char *>::iterator args_iter;
|
|
|
|
|
|
|
|
for (args_iter = args.begin(); args_iter != args.end(); ++args_iter) {
|
|
|
|
if (strcmp(*args_iter, "--mkfs") == 0) {
|
2011-02-08 11:22:21 +00:00
|
|
|
startup_flags &= ~STARTUP_FLAG_INIT_KEYS;
|
2009-10-01 20:54:21 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2010-07-01 15:55:52 +00:00
|
|
|
|
2010-09-18 00:17:33 +00:00
|
|
|
#ifdef HAVE_LIBTCMALLOC
|
|
|
|
g_conf.profiler_start = HeapProfilerStart;
|
|
|
|
g_conf.profiler_running = IsHeapProfilerRunning;
|
|
|
|
g_conf.profiler_stop = HeapProfilerStop;
|
|
|
|
g_conf.profiler_dump = HeapProfilerDump;
|
|
|
|
g_conf.tcmalloc_have = true;
|
|
|
|
#endif //HAVE_LIBTCMALLOC
|
2011-02-08 11:22:21 +00:00
|
|
|
common_init(args, "osd", startup_flags);
|
2007-10-17 23:34:54 +00:00
|
|
|
|
|
|
|
// osd specific args
|
2009-11-18 18:49:38 +00:00
|
|
|
bool mkfs = false;
|
|
|
|
bool mkjournal = false;
|
2010-05-20 17:58:56 +00:00
|
|
|
bool flushjournal = false;
|
2010-06-09 05:34:57 +00:00
|
|
|
char *dump_pg_log = 0;
|
2009-03-12 23:08:13 +00:00
|
|
|
FOR_EACH_ARG(args) {
|
|
|
|
if (CONF_ARG_EQ("mkfs", '\0')) {
|
2009-11-18 18:49:38 +00:00
|
|
|
mkfs = true;
|
|
|
|
} else if (CONF_ARG_EQ("mkjournal", '\0')) {
|
|
|
|
mkjournal = true;
|
2010-05-20 17:58:56 +00:00
|
|
|
} else if (CONF_ARG_EQ("flush-journal", '\0')) {
|
|
|
|
flushjournal = true;
|
2010-06-09 05:34:57 +00:00
|
|
|
} else if (CONF_ARG_EQ("dump-pg-log", '\0')) {
|
|
|
|
CONF_SAFE_SET_ARG_VAL(&dump_pg_log, OPT_STR);
|
2009-03-12 23:08:13 +00:00
|
|
|
} else {
|
2010-12-16 18:53:58 +00:00
|
|
|
derr << "unrecognized arg " << args[i] << dendl;
|
2009-03-12 23:08:13 +00:00
|
|
|
ARGS_USAGE();
|
2007-10-17 23:34:54 +00:00
|
|
|
}
|
|
|
|
}
|
2009-03-11 21:58:58 +00:00
|
|
|
|
2010-06-09 05:34:57 +00:00
|
|
|
if (dump_pg_log) {
|
|
|
|
bufferlist bl;
|
|
|
|
int r = bl.read_file(dump_pg_log);
|
|
|
|
if (r >= 0) {
|
|
|
|
PG::Log::Entry e;
|
|
|
|
bufferlist::iterator p = bl.begin();
|
|
|
|
while (!p.end()) {
|
|
|
|
uint64_t pos = p.get_off();
|
|
|
|
try {
|
|
|
|
::decode(e, p);
|
|
|
|
}
|
2010-10-04 17:47:30 +00:00
|
|
|
catch (const buffer::error &e) {
|
2010-12-16 18:53:58 +00:00
|
|
|
derr << "failed to decode LogEntry at offset " << pos << dendl;
|
2010-06-09 05:34:57 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2010-12-16 18:53:58 +00:00
|
|
|
derr << pos << ":\t" << e << dendl;
|
2010-06-09 05:34:57 +00:00
|
|
|
}
|
2010-12-16 18:53:58 +00:00
|
|
|
} else {
|
|
|
|
derr << "unable to open " << dump_pg_log << ": " << cpp_strerror(r) << dendl;
|
|
|
|
}
|
2010-06-09 05:34:57 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-03-11 21:58:58 +00:00
|
|
|
// whoami
|
|
|
|
char *end;
|
|
|
|
int whoami = strtol(g_conf.id, &end, 10);
|
|
|
|
if (*end || end == g_conf.id || whoami < 0) {
|
2010-12-16 18:53:58 +00:00
|
|
|
derr << "must specify '-i #' where # is the osd number" << dendl;
|
2008-03-11 01:36:50 +00:00
|
|
|
usage();
|
2007-10-17 23:34:54 +00:00
|
|
|
}
|
|
|
|
|
2009-03-11 21:58:58 +00:00
|
|
|
if (!g_conf.osd_data) {
|
2010-12-16 18:53:58 +00:00
|
|
|
derr << "must specify '--osd-data=foo' data path" << dendl;
|
2008-03-11 01:36:50 +00:00
|
|
|
usage();
|
|
|
|
}
|
2008-01-25 20:04:31 +00:00
|
|
|
|
2008-03-10 05:32:16 +00:00
|
|
|
// get monmap
|
2010-02-04 21:48:23 +00:00
|
|
|
RotatingKeyRing rkeys(CEPH_ENTITY_TYPE_OSD, &g_keyring);
|
2010-02-04 18:45:42 +00:00
|
|
|
MonClient mc(&rkeys);
|
2009-06-26 20:49:12 +00:00
|
|
|
if (mc.build_initial_monmap() < 0)
|
|
|
|
return -1;
|
2007-10-17 23:34:54 +00:00
|
|
|
|
2008-03-11 01:36:50 +00:00
|
|
|
if (mkfs) {
|
2010-02-12 00:18:54 +00:00
|
|
|
if (mc.get_monmap_privately() < 0)
|
|
|
|
return -1;
|
|
|
|
|
2009-06-26 20:49:12 +00:00
|
|
|
int err = OSD::mkfs(g_conf.osd_data, g_conf.osd_journal, mc.monmap.fsid, whoami);
|
2008-03-11 01:36:50 +00:00
|
|
|
if (err < 0) {
|
2010-12-16 18:53:58 +00:00
|
|
|
derr << TEXT_RED << " ** ERROR: error creating empty object store in "
|
|
|
|
<< g_conf.osd_data << ": " << cpp_strerror(-err) << TEXT_NORMAL << dendl;
|
2008-03-11 01:36:50 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
2010-12-16 18:53:58 +00:00
|
|
|
derr << "created object store " << g_conf.osd_data;
|
2010-05-20 17:58:56 +00:00
|
|
|
if (g_conf.osd_journal)
|
2010-12-16 18:53:58 +00:00
|
|
|
*_dout << " journal " << g_conf.osd_journal;
|
|
|
|
*_dout << " for osd" << whoami << " fsid " << mc.monmap.fsid << dendl;
|
2008-03-11 01:36:50 +00:00
|
|
|
exit(0);
|
|
|
|
}
|
2010-05-20 17:58:56 +00:00
|
|
|
if (mkjournal) {
|
|
|
|
int err = OSD::mkjournal(g_conf.osd_data, g_conf.osd_journal);
|
|
|
|
if (err < 0) {
|
2010-12-16 18:53:58 +00:00
|
|
|
derr << TEXT_RED << " ** ERROR: error creating fresh journal " << g_conf.osd_journal
|
2010-05-20 17:58:56 +00:00
|
|
|
<< " for object store " << g_conf.osd_data
|
2010-12-16 18:53:58 +00:00
|
|
|
<< ": " << cpp_strerror(-err) << dendl;
|
2010-05-20 17:58:56 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
2010-12-16 18:53:58 +00:00
|
|
|
derr << "created new journal " << g_conf.osd_journal
|
|
|
|
<< " for object store " << g_conf.osd_data << dendl;
|
2010-05-20 17:58:56 +00:00
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
if (flushjournal) {
|
|
|
|
int err = OSD::flushjournal(g_conf.osd_data, g_conf.osd_journal);
|
|
|
|
if (err < 0) {
|
2010-12-16 18:53:58 +00:00
|
|
|
derr << TEXT_RED << " ** ERROR: error flushing journal " << g_conf.osd_journal
|
2010-05-20 17:58:56 +00:00
|
|
|
<< " for object store " << g_conf.osd_data
|
2010-12-16 18:53:58 +00:00
|
|
|
<< ": " << cpp_strerror(-err) << dendl;
|
2010-05-20 17:58:56 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
2010-12-16 18:53:58 +00:00
|
|
|
derr << "flushed journal " << g_conf.osd_journal
|
2010-05-20 17:58:56 +00:00
|
|
|
<< " for object store " << g_conf.osd_data
|
2010-12-16 18:53:58 +00:00
|
|
|
<< dendl;
|
2010-05-20 17:58:56 +00:00
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
2010-04-28 20:45:55 +00:00
|
|
|
string magic;
|
2009-03-11 21:58:58 +00:00
|
|
|
ceph_fsid_t fsid;
|
|
|
|
int w;
|
2010-02-09 04:29:09 +00:00
|
|
|
int r = OSD::peek_meta(g_conf.osd_data, magic, fsid, w);
|
2009-03-11 21:58:58 +00:00
|
|
|
if (r < 0) {
|
2010-12-16 18:53:58 +00:00
|
|
|
derr << TEXT_RED << " ** ERROR: unable to open OSD superblock on "
|
|
|
|
<< g_conf.osd_data << ": " << cpp_strerror(-r)
|
|
|
|
<< TEXT_NORMAL << dendl;
|
|
|
|
if (r == -ENOTSUP) {
|
|
|
|
derr << TEXT_RED << " ** please verify that underlying storage "
|
|
|
|
<< "supports xattrs" << TEXT_NORMAL << dendl;
|
|
|
|
}
|
2009-03-11 21:58:58 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
if (w != whoami) {
|
2010-12-16 18:53:58 +00:00
|
|
|
derr << "OSD id " << w << " != my id " << whoami << dendl;
|
2009-03-11 21:58:58 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
if (strcmp(magic.c_str(), CEPH_OSD_ONDISK_MAGIC)) {
|
2010-12-16 18:53:58 +00:00
|
|
|
derr << "OSD magic " << magic << " != my " << CEPH_OSD_ONDISK_MAGIC
|
|
|
|
<< dendl;
|
2009-03-11 21:58:58 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
2009-12-04 22:37:28 +00:00
|
|
|
|
2010-07-09 18:58:48 +00:00
|
|
|
bool client_addr_set = !g_conf.public_addr.is_blank_addr();
|
|
|
|
bool cluster_addr_set = !g_conf.cluster_addr.is_blank_addr();
|
2010-07-08 22:12:14 +00:00
|
|
|
|
|
|
|
if (cluster_addr_set && !client_addr_set) {
|
2010-12-16 18:53:58 +00:00
|
|
|
derr << TEXT_RED << " ** "
|
2010-07-08 22:12:14 +00:00
|
|
|
<< "WARNING: set cluster address but not client address!" << " **\n"
|
2010-12-16 18:53:58 +00:00
|
|
|
<< "using cluster address for clients" << TEXT_NORMAL << dendl;
|
2010-07-09 18:58:48 +00:00
|
|
|
g_conf.public_addr = g_conf.cluster_addr;
|
2010-07-08 22:12:14 +00:00
|
|
|
client_addr_set = true;
|
|
|
|
cluster_addr_set = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
SimpleMessenger *client_messenger = new SimpleMessenger();
|
2010-11-22 03:59:43 +00:00
|
|
|
SimpleMessenger *cluster_messenger = new SimpleMessenger();
|
2010-01-08 00:53:51 +00:00
|
|
|
SimpleMessenger *messenger_hb = new SimpleMessenger();
|
2010-07-08 22:12:14 +00:00
|
|
|
|
2010-11-22 04:48:49 +00:00
|
|
|
if (client_addr_set)
|
2010-07-09 18:58:48 +00:00
|
|
|
client_messenger->bind(g_conf.public_addr);
|
2010-11-22 04:48:49 +00:00
|
|
|
else
|
2010-11-22 03:59:43 +00:00
|
|
|
client_messenger->bind();
|
2010-11-22 04:48:49 +00:00
|
|
|
|
|
|
|
entity_addr_t hb_addr; // hb should bind to same ip ad cluster_addr (if specified)
|
2010-07-08 22:12:14 +00:00
|
|
|
|
|
|
|
if (cluster_addr_set) {
|
2010-07-09 18:58:48 +00:00
|
|
|
cluster_messenger->bind(g_conf.cluster_addr);
|
|
|
|
hb_addr = g_conf.cluster_addr;
|
2010-07-08 22:12:14 +00:00
|
|
|
hb_addr.set_port(0);
|
2010-11-22 03:59:43 +00:00
|
|
|
} else {
|
|
|
|
cluster_messenger->bind();
|
2010-07-08 22:12:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
messenger_hb->bind(hb_addr);
|
2008-01-26 17:33:13 +00:00
|
|
|
|
2011-02-24 08:20:06 +00:00
|
|
|
cout << "starting osd" << whoami
|
2010-07-08 22:12:14 +00:00
|
|
|
<< " at " << client_messenger->get_ms_addr()
|
2009-03-12 17:56:37 +00:00
|
|
|
<< " osd_data " << g_conf.osd_data
|
|
|
|
<< " " << ((g_conf.osd_journal && g_conf.osd_journal[0]) ? g_conf.osd_journal:"(no journal)")
|
2011-02-24 08:20:06 +00:00
|
|
|
<< std::endl;
|
2008-01-26 17:33:13 +00:00
|
|
|
|
2010-07-08 22:12:14 +00:00
|
|
|
client_messenger->register_entity(entity_name_t::OSD(whoami));
|
2010-11-22 03:59:43 +00:00
|
|
|
cluster_messenger->register_entity(entity_name_t::OSD(whoami));
|
2010-01-08 00:53:51 +00:00
|
|
|
messenger_hb->register_entity(entity_name_t::OSD(whoami));
|
2007-10-17 23:34:54 +00:00
|
|
|
|
2010-07-02 15:44:58 +00:00
|
|
|
Throttle client_throttler(g_conf.osd_client_message_size_cap);
|
2010-06-04 19:04:08 +00:00
|
|
|
|
2010-07-02 16:19:11 +00:00
|
|
|
uint64_t supported =
|
|
|
|
CEPH_FEATURE_UID |
|
|
|
|
CEPH_FEATURE_NOSRCADDR;
|
2010-11-22 03:59:43 +00:00
|
|
|
|
2010-07-08 22:12:14 +00:00
|
|
|
client_messenger->set_default_policy(SimpleMessenger::Policy::stateless_server(supported, 0));
|
|
|
|
client_messenger->set_policy(entity_name_t::TYPE_CLIENT,
|
2010-11-22 03:59:43 +00:00
|
|
|
SimpleMessenger::Policy::stateless_server(supported, 0));
|
2010-07-08 22:12:14 +00:00
|
|
|
client_messenger->set_policy_throttler(entity_name_t::TYPE_CLIENT, &client_throttler);
|
2010-07-30 16:23:46 +00:00
|
|
|
client_messenger->set_policy(entity_name_t::TYPE_MON,
|
|
|
|
SimpleMessenger::Policy::client(supported,
|
|
|
|
CEPH_FEATURE_UID));
|
2010-11-22 03:59:43 +00:00
|
|
|
//try to poison pill any OSD connections on the wrong address
|
|
|
|
client_messenger->set_policy(entity_name_t::TYPE_OSD,
|
|
|
|
SimpleMessenger::Policy::stateless_server(0,0));
|
|
|
|
|
|
|
|
cluster_messenger->set_default_policy(SimpleMessenger::Policy::stateless_server(0, 0));
|
|
|
|
cluster_messenger->set_policy(entity_name_t::TYPE_MON, SimpleMessenger::Policy::client(0,0));
|
|
|
|
cluster_messenger->set_policy(entity_name_t::TYPE_OSD,
|
|
|
|
SimpleMessenger::Policy::lossless_peer(supported, CEPH_FEATURE_UID));
|
|
|
|
cluster_messenger->set_policy(entity_name_t::TYPE_CLIENT,
|
|
|
|
SimpleMessenger::Policy::stateless_server(0, 0));
|
|
|
|
|
2008-10-13 18:56:31 +00:00
|
|
|
|
2010-02-12 19:20:30 +00:00
|
|
|
|
2010-07-08 22:12:14 +00:00
|
|
|
OSD *osd = new OSD(whoami, cluster_messenger, client_messenger, messenger_hb, &mc, g_conf.osd_data, g_conf.osd_journal);
|
2010-02-12 19:20:30 +00:00
|
|
|
|
|
|
|
int err = osd->pre_init();
|
|
|
|
if (err < 0) {
|
2010-12-16 18:53:58 +00:00
|
|
|
derr << TEXT_RED << " ** ERROR: initializing osd failed: " << cpp_strerror(-err)
|
|
|
|
<< TEXT_NORMAL << dendl;
|
2010-02-12 19:20:30 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2010-07-08 22:12:14 +00:00
|
|
|
client_messenger->start();
|
2010-01-08 00:53:51 +00:00
|
|
|
messenger_hb->start(true); // only need to daemon() once
|
2010-11-22 03:59:43 +00:00
|
|
|
cluster_messenger->start(true);
|
2008-11-13 18:40:11 +00:00
|
|
|
|
2007-10-17 23:34:54 +00:00
|
|
|
// start osd
|
2011-02-03 14:07:26 +00:00
|
|
|
err = osd->init();
|
|
|
|
if (err < 0) {
|
2010-12-16 18:53:58 +00:00
|
|
|
derr << TEXT_RED << " ** ERROR: initializing osd failed: " << cpp_strerror(-err)
|
|
|
|
<< TEXT_NORMAL << dendl;
|
2009-02-12 23:05:12 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2007-10-17 23:34:54 +00:00
|
|
|
|
2010-07-08 22:12:14 +00:00
|
|
|
client_messenger->wait();
|
2010-01-08 00:53:51 +00:00
|
|
|
messenger_hb->wait();
|
2010-11-22 03:59:43 +00:00
|
|
|
cluster_messenger->wait();
|
|
|
|
|
2007-10-17 23:34:54 +00:00
|
|
|
// done
|
|
|
|
delete osd;
|
2010-07-08 22:12:14 +00:00
|
|
|
client_messenger->destroy();
|
2010-01-08 00:53:51 +00:00
|
|
|
messenger_hb->destroy();
|
2010-11-22 03:59:43 +00:00
|
|
|
cluster_messenger->destroy();
|
2010-07-02 15:44:58 +00:00
|
|
|
|
2008-11-04 22:50:21 +00:00
|
|
|
// cd on exit, so that gmon.out (if any) goes into a separate directory for each node.
|
|
|
|
char s[20];
|
2010-01-15 00:07:39 +00:00
|
|
|
snprintf(s, sizeof(s), "gmon/%d", getpid());
|
2011-02-03 18:15:34 +00:00
|
|
|
if ((mkdir(s, 0755) == 0) && (chdir(s) == 0)) {
|
|
|
|
dout(0) << "cosd: gmon.out should be in " << s << dendl;
|
|
|
|
}
|
2008-11-04 22:50:21 +00:00
|
|
|
|
2007-10-17 23:34:54 +00:00
|
|
|
return 0;
|
|
|
|
}
|