2007-10-29 19:05:24 +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-29 19:05:24 +00:00
|
|
|
|
|
|
|
#include "mon/MonMap.h"
|
|
|
|
#include "mon/Monitor.h"
|
2008-03-10 23:23:41 +00:00
|
|
|
#include "mon/MonitorStore.h"
|
2007-10-29 19:05:24 +00:00
|
|
|
|
|
|
|
#include "msg/SimpleMessenger.h"
|
|
|
|
|
2010-01-14 19:12:23 +00:00
|
|
|
#include "include/CompatSet.h"
|
2008-11-21 00:59:08 +00:00
|
|
|
|
2011-02-20 17:18:03 +00:00
|
|
|
#include "common/ceph_argparse.h"
|
2007-10-29 19:05:24 +00:00
|
|
|
#include "common/Timer.h"
|
2009-02-09 23:46:02 +00:00
|
|
|
#include "common/common_init.h"
|
2007-10-29 19:05:24 +00:00
|
|
|
|
2010-01-19 20:24:31 +00:00
|
|
|
extern const CompatSet::Feature ceph_mon_feature_compat[];
|
|
|
|
extern const CompatSet::Feature ceph_mon_feature_ro_compat[];
|
|
|
|
extern const CompatSet::Feature ceph_mon_feature_incompat[];
|
2010-01-14 19:12:23 +00:00
|
|
|
|
2008-03-10 23:23:41 +00:00
|
|
|
void usage()
|
|
|
|
{
|
2009-03-11 21:58:58 +00:00
|
|
|
cerr << "usage: cmon -i monid [--mon-data=pathtodata] [flags]" << std::endl;
|
2009-03-10 22:22:52 +00:00
|
|
|
cerr << " --debug_mon n\n";
|
|
|
|
cerr << " debug monitor level (e.g. 10)\n";
|
2010-05-24 22:28:59 +00:00
|
|
|
cerr << " --mkfs\n";
|
|
|
|
cerr << " build fresh monitor fs\n";
|
2009-03-10 22:22:52 +00:00
|
|
|
generic_server_usage();
|
2008-03-10 23:23:41 +00:00
|
|
|
}
|
2007-10-29 19:05:24 +00:00
|
|
|
|
2008-01-01 22:04:31 +00:00
|
|
|
int main(int argc, const char **argv)
|
2007-10-29 19:05:24 +00:00
|
|
|
{
|
2008-03-10 23:23:41 +00:00
|
|
|
int err;
|
2010-05-24 22:28:59 +00:00
|
|
|
DEFINE_CONF_VARS(usage);
|
|
|
|
|
|
|
|
bool mkfs = false;
|
|
|
|
const char *osdmapfn = 0;
|
2011-03-29 18:58:13 +00:00
|
|
|
const char *inject_monmap = 0;
|
2008-03-10 23:23:41 +00:00
|
|
|
|
2008-01-01 22:04:31 +00:00
|
|
|
vector<const char*> args;
|
2007-10-29 19:05:24 +00:00
|
|
|
argv_to_vec(argc, argv, args);
|
2008-11-05 22:54:13 +00:00
|
|
|
env_to_vec(args);
|
2010-07-01 15:55:52 +00:00
|
|
|
|
2011-03-14 14:24:32 +00:00
|
|
|
common_init(args, CEPH_ENTITY_TYPE_MON, CODE_ENVIRONMENT_DAEMON, 0);
|
2007-10-29 19:05:24 +00:00
|
|
|
|
2010-05-24 22:28:59 +00:00
|
|
|
FOR_EACH_ARG(args) {
|
2011-03-28 23:10:33 +00:00
|
|
|
if (CEPH_ARGPARSE_EQ("mkfs", '\0')) {
|
2010-05-24 22:28:59 +00:00
|
|
|
mkfs = true;
|
2011-03-28 23:10:33 +00:00
|
|
|
} else if (CEPH_ARGPARSE_EQ("osdmap", '\0')) {
|
|
|
|
CEPH_ARGPARSE_SET_ARG_VAL(&osdmapfn, OPT_STR);
|
2011-03-30 23:55:38 +00:00
|
|
|
} else if (CEPH_ARGPARSE_EQ("inject_monmap", '\0')) {
|
|
|
|
CEPH_ARGPARSE_SET_ARG_VAL(&inject_monmap, OPT_STR);
|
2010-05-24 22:28:59 +00:00
|
|
|
} else
|
|
|
|
usage();
|
|
|
|
}
|
|
|
|
|
2011-03-30 17:29:45 +00:00
|
|
|
if (g_conf.mon_data.empty()) {
|
2009-03-11 21:58:58 +00:00
|
|
|
cerr << "must specify '--mon-data=foo' data path" << std::endl;
|
2008-03-10 23:23:41 +00:00
|
|
|
usage();
|
2009-03-11 21:58:58 +00:00
|
|
|
}
|
2007-10-29 19:05:24 +00:00
|
|
|
|
2010-05-24 22:28:59 +00:00
|
|
|
// -- mkfs --
|
|
|
|
if (mkfs) {
|
2011-05-23 17:11:15 +00:00
|
|
|
common_init_finish(&g_ceph_context);
|
2011-03-30 17:29:45 +00:00
|
|
|
if (g_conf.monmap.empty() || !osdmapfn)
|
2010-05-24 22:28:59 +00:00
|
|
|
usage();
|
|
|
|
|
|
|
|
// make sure it doesn't already exist
|
|
|
|
/*
|
|
|
|
struct stat st;
|
2011-03-30 17:29:45 +00:00
|
|
|
if (::lstat(g_conf.mon_data.c_str(), &st) == 0) {
|
2010-05-24 22:28:59 +00:00
|
|
|
cerr << "monfs dir " << g_conf.mon_data << " already exists; remove it first" << std::endl;
|
|
|
|
usage();
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
|
|
|
// load monmap
|
|
|
|
bufferlist monmapbl, osdmapbl;
|
2011-03-30 17:29:45 +00:00
|
|
|
int err = monmapbl.read_file(g_conf.monmap.c_str());
|
2010-05-24 22:28:59 +00:00
|
|
|
if (err < 0)
|
|
|
|
exit(1);
|
|
|
|
MonMap monmap;
|
|
|
|
monmap.decode(monmapbl);
|
|
|
|
|
|
|
|
err = osdmapbl.read_file(osdmapfn);
|
|
|
|
if (err < 0)
|
|
|
|
exit(1);
|
|
|
|
|
|
|
|
// go
|
|
|
|
MonitorStore store(g_conf.mon_data);
|
2011-04-14 22:10:08 +00:00
|
|
|
Monitor mon(g_conf.name.get_id(), &store, 0, &monmap);
|
2010-05-24 22:28:59 +00:00
|
|
|
mon.mkfs(osdmapbl);
|
|
|
|
cout << argv[0] << ": created monfs at " << g_conf.mon_data
|
2011-04-14 22:10:08 +00:00
|
|
|
<< " for " << g_conf.name << std::endl;
|
2010-05-24 22:28:59 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-01-19 20:24:31 +00:00
|
|
|
CompatSet mon_features(ceph_mon_feature_compat,
|
2010-01-14 19:12:23 +00:00
|
|
|
ceph_mon_feature_ro_compat,
|
2010-01-19 20:24:31 +00:00
|
|
|
ceph_mon_feature_incompat);
|
2010-01-14 19:12:23 +00:00
|
|
|
CompatSet ondisk_features;
|
|
|
|
|
2009-03-11 21:58:58 +00:00
|
|
|
MonitorStore store(g_conf.mon_data);
|
2008-03-10 23:23:41 +00:00
|
|
|
err = store.mount();
|
|
|
|
if (err < 0) {
|
2009-09-18 23:17:04 +00:00
|
|
|
char buf[80];
|
|
|
|
cerr << "problem opening monitor store in " << g_conf.mon_data << ": " << strerror_r(-err, buf, sizeof(buf)) << std::endl;
|
2008-03-10 23:23:41 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2008-11-21 00:59:08 +00:00
|
|
|
bufferlist magicbl;
|
2010-08-25 21:41:29 +00:00
|
|
|
err = store.get_bl_ss(magicbl, "magic", 0);
|
|
|
|
if (err < 0) {
|
|
|
|
cerr << "unable to read magic from mon data.. did you run mkcephfs?" << std::endl;
|
|
|
|
exit(1);
|
|
|
|
}
|
2010-04-28 20:45:55 +00:00
|
|
|
string magic(magicbl.c_str(), magicbl.length()-1); // ignore trailing \n
|
2008-11-21 00:59:08 +00:00
|
|
|
if (strcmp(magic.c_str(), CEPH_MON_ONDISK_MAGIC)) {
|
|
|
|
cerr << "mon fs magic '" << magic << "' != current '" << CEPH_MON_ONDISK_MAGIC << "'" << std::endl;
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2010-01-14 19:12:23 +00:00
|
|
|
bufferlist features;
|
|
|
|
store.get_bl_ss(features, COMPAT_SET_LOC, 0);
|
|
|
|
if (features.length() == 0) {
|
2010-01-15 00:27:14 +00:00
|
|
|
cerr << "WARNING: mon fs missing feature list.\n"
|
|
|
|
<< "Assuming it is old-style and introducing one." << std::endl;
|
|
|
|
//we only want the baseline ~v.18 features assumed to be on disk.
|
2010-01-19 20:24:31 +00:00
|
|
|
//If new features are introduced this code needs to disappear or
|
|
|
|
//be made smarter.
|
|
|
|
ondisk_features = CompatSet(ceph_mon_feature_compat,
|
|
|
|
ceph_mon_feature_ro_compat,
|
|
|
|
ceph_mon_feature_incompat);
|
2010-01-15 00:27:14 +00:00
|
|
|
} else {
|
|
|
|
bufferlist::iterator it = features.begin();
|
|
|
|
ondisk_features.decode(it);
|
2010-01-14 19:12:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!mon_features.writeable(ondisk_features)) {
|
|
|
|
cerr << "monitor executable cannot read disk! Missing features: "
|
|
|
|
<< std::endl;
|
|
|
|
CompatSet diff = mon_features.unsupported(ondisk_features);
|
2010-01-19 20:24:31 +00:00
|
|
|
//NEEDS_COMPATSET_ITER
|
2010-01-14 19:12:23 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-03-29 18:58:13 +00:00
|
|
|
// inject new monmap?
|
|
|
|
if (inject_monmap) {
|
|
|
|
bufferlist bl;
|
|
|
|
int r = bl.read_file(inject_monmap);
|
|
|
|
if (r) {
|
|
|
|
cerr << "unable to read monmap from " << inject_monmap << std::endl;
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
// get next version
|
|
|
|
version_t v = store.get_int("monmap", "last_committed");
|
|
|
|
cout << "last committed monmap epoch is " << v << ", injected map will be " << (v+1) << std::endl;
|
|
|
|
v++;
|
|
|
|
|
|
|
|
// set the version
|
|
|
|
MonMap tmp;
|
|
|
|
tmp.decode(bl);
|
|
|
|
if (tmp.get_epoch() != v) {
|
|
|
|
cout << "changing monmap epoch from " << tmp.get_epoch() << " to " << v << std::endl;
|
|
|
|
tmp.set_epoch(v);
|
|
|
|
}
|
|
|
|
bufferlist mapbl;
|
2011-03-29 21:49:09 +00:00
|
|
|
tmp.encode(mapbl);
|
2011-03-29 18:58:13 +00:00
|
|
|
bufferlist final;
|
|
|
|
::encode(v, final);
|
|
|
|
::encode(mapbl, final);
|
|
|
|
|
|
|
|
// save it
|
|
|
|
store.put_bl_sn(mapbl, "monmap", v);
|
|
|
|
store.put_bl_ss(final, "monmap", "latest");
|
|
|
|
store.put_int(v, "monmap", "last_committed");
|
|
|
|
|
|
|
|
cout << "done." << std::endl;
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-03-10 23:23:41 +00:00
|
|
|
// monmap?
|
2007-10-29 19:05:24 +00:00
|
|
|
MonMap monmap;
|
2009-10-11 04:26:53 +00:00
|
|
|
{
|
|
|
|
bufferlist latest;
|
|
|
|
store.get_bl_ss(latest, "monmap/latest", 0);
|
|
|
|
if (latest.length() == 0) {
|
|
|
|
cerr << "mon fs missing 'monmap'" << std::endl;
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
bufferlist::iterator p = latest.begin();
|
|
|
|
version_t v;
|
|
|
|
::decode(v, p);
|
|
|
|
bufferlist mapbl;
|
|
|
|
::decode(mapbl, p);
|
|
|
|
monmap.decode(mapbl);
|
|
|
|
assert(v == monmap.get_epoch());
|
|
|
|
}
|
2007-10-29 19:05:24 +00:00
|
|
|
|
2011-04-14 22:10:08 +00:00
|
|
|
if (!monmap.contains(g_conf.name.get_id())) {
|
|
|
|
cerr << g_conf.name << " does not exist in monmap" << std::endl;
|
2008-03-10 23:23:41 +00:00
|
|
|
exit(1);
|
2007-10-29 19:05:24 +00:00
|
|
|
}
|
|
|
|
|
2011-04-14 22:10:08 +00:00
|
|
|
entity_addr_t ipaddr = monmap.get_addr(g_conf.name.get_id());
|
2009-03-24 23:44:07 +00:00
|
|
|
entity_addr_t conf_addr;
|
2011-03-30 04:52:35 +00:00
|
|
|
std::vector <std::string> my_sections;
|
|
|
|
g_conf.get_my_sections(my_sections);
|
|
|
|
std::string mon_addr_str;
|
2011-04-04 20:35:11 +00:00
|
|
|
if (g_conf.get_val_from_conf_file(my_sections, "mon addr",
|
|
|
|
mon_addr_str, true) == 0)
|
|
|
|
{
|
2011-03-30 04:52:35 +00:00
|
|
|
if (conf_addr.parse(mon_addr_str.c_str()) && (ipaddr != conf_addr)) {
|
|
|
|
cerr << "WARNING: 'mon addr' config option " << conf_addr
|
|
|
|
<< " does not match monmap file" << std::endl
|
2011-03-29 23:05:12 +00:00
|
|
|
<< " continuing with monmap configuration" << std::endl;
|
|
|
|
}
|
2011-03-29 20:42:26 +00:00
|
|
|
}
|
2009-03-24 23:44:07 +00:00
|
|
|
|
2008-03-10 23:23:41 +00:00
|
|
|
// bind
|
2010-01-08 00:53:51 +00:00
|
|
|
SimpleMessenger *messenger = new SimpleMessenger();
|
2011-04-14 22:10:08 +00:00
|
|
|
int rank = monmap.get_rank(g_conf.name.get_id());
|
2010-06-08 22:17:08 +00:00
|
|
|
|
2011-04-14 22:10:08 +00:00
|
|
|
cout << "starting " << g_conf.name << " rank " << rank
|
|
|
|
<< " at " << monmap.get_addr(g_conf.name.get_id())
|
2009-03-12 17:56:37 +00:00
|
|
|
<< " mon_data " << g_conf.mon_data
|
|
|
|
<< " fsid " << monmap.get_fsid()
|
|
|
|
<< std::endl;
|
2011-04-14 22:10:08 +00:00
|
|
|
err = messenger->bind(monmap.get_addr(g_conf.name.get_id()), 0);
|
2008-03-10 23:23:41 +00:00
|
|
|
if (err < 0)
|
|
|
|
return 1;
|
|
|
|
|
2007-10-29 19:05:24 +00:00
|
|
|
// start monitor
|
2010-06-08 22:17:08 +00:00
|
|
|
messenger->register_entity(entity_name_t::MON(rank));
|
2010-01-08 00:53:51 +00:00
|
|
|
messenger->set_default_send_priority(CEPH_MSG_PRIO_HIGH);
|
2011-04-14 22:10:08 +00:00
|
|
|
Monitor *mon = new Monitor(g_conf.name.get_id(), &store, messenger, &monmap);
|
2007-10-29 19:05:24 +00:00
|
|
|
|
2011-05-23 17:11:15 +00:00
|
|
|
common_init_daemonize(&g_ceph_context, 0);
|
|
|
|
common_init_finish(&g_ceph_context);
|
2011-06-02 22:50:22 +00:00
|
|
|
common_init_chdir(&g_ceph_context);
|
2011-04-29 18:29:42 +00:00
|
|
|
messenger->start();
|
2008-04-09 17:42:46 +00:00
|
|
|
|
2010-07-02 16:19:11 +00:00
|
|
|
uint64_t supported =
|
|
|
|
CEPH_FEATURE_UID |
|
|
|
|
CEPH_FEATURE_NOSRCADDR |
|
|
|
|
CEPH_FEATURE_MONCLOCKCHECK;
|
|
|
|
messenger->set_default_policy(SimpleMessenger::Policy::stateless_server(supported, 0));
|
|
|
|
messenger->set_policy(entity_name_t::TYPE_MON,
|
|
|
|
SimpleMessenger::Policy::lossless_peer(supported,
|
|
|
|
CEPH_FEATURE_UID));
|
2008-03-10 23:23:41 +00:00
|
|
|
mon->init();
|
2010-01-08 00:53:51 +00:00
|
|
|
messenger->wait();
|
2007-10-29 19:05:24 +00:00
|
|
|
|
2008-03-10 23:23:41 +00:00
|
|
|
store.umount();
|
2007-10-29 19:05:24 +00:00
|
|
|
delete mon;
|
2010-01-08 00:53:51 +00:00
|
|
|
messenger->destroy();
|
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-04 14:08:41 +00:00
|
|
|
if ((mkdir(s, 0755) == 0) && (chdir(s) == 0)) {
|
|
|
|
dout(0) << "cmon: gmon.out should be in " << s << dendl;
|
|
|
|
}
|
2008-11-04 22:50:21 +00:00
|
|
|
|
2007-10-29 19:05:24 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|