// -*- 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 * * 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 #include #include #include #include #include using namespace std; #include "config.h" #include "mon/MonMap.h" #include "mon/MonClient.h" #include "osd/OSD.h" #include "ebofs/Ebofs.h" #include "msg/SimpleMessenger.h" #include "common/Timer.h" #include "common/common_init.h" void usage() { cerr << "usage: cosd -i osdid [--osd-data=path] [--osd-journal=path] [--mkfs]" << 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 args; argv_to_vec(argc, argv, args); env_to_vec(args); common_init(args, "osd", true); if (g_conf.clock_tare) g_clock.tare(); // osd specific args bool mkfs = 0; FOR_EACH_ARG(args) { if (CONF_ARG_EQ("mkfs", '\0')) { mkfs = 1; } 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 MonMap monmap; MonClient mc; if (mc.get_monmap(&monmap) < 0) return -1; if (mkfs) { int err = OSD::mkfs(g_conf.osd_data, g_conf.osd_journal, monmap.fsid, whoami); if (err < 0) { cerr << "error creating empty object store in " << g_conf.osd_data << ": " << strerror(-err) << std::endl; exit(1); } cout << "created object store for osd" << whoami << " fsid " << monmap.fsid << " on " << g_conf.osd_data << std::endl; exit(0); } nstring magic; ceph_fsid_t fsid; int w; int r = OSD::peek_super(g_conf.osd_data, magic, fsid, w); if (r < 0) { cerr << " ** ERROR: unable to open OSD superblock on " << g_conf.osd_data << ": " << strerror(-r) << std::endl; if (r == -ENOTSUP) cerr << " ** please verify that underlying storage supports xattrs" << std::endl; derr(0) << "unable to open OSD superblock on " << g_conf.osd_data << ": " << strerror(-r) << 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); } if (ceph_fsid_compare(&fsid, &monmap.fsid)) { cerr << "OSD fsid " << fsid << " != monmap fsid " << monmap.fsid << std::endl; exit(1); } // start up network rank.bind(); cout << "starting osd" << whoami << " at " << rank.get_rank_addr() << " osd_data " << g_conf.osd_data << " " << ((g_conf.osd_journal && g_conf.osd_journal[0]) ? g_conf.osd_journal:"(no journal)") << " fsid " << monmap.fsid << std::endl; g_timer.shutdown(); Messenger *m = rank.register_entity(entity_name_t::OSD(whoami)); assert_warn(m); if (!m) return 1; Messenger *hbm = rank.register_entity(entity_name_t::OSD(whoami)); assert_warn(hbm); if (!hbm) return 1; rank.set_policy(entity_name_t::TYPE_MON, Rank::Policy::lossy_fast_fail()); rank.set_policy(entity_name_t::TYPE_OSD, Rank::Policy::lossless()); // make a _reasonable_ effort to send acks/replies to requests, but // don't get carried away, as the sender may go away and we won't // ever hear about it. rank.set_policy(entity_name_t::TYPE_MDS, Rank::Policy::lossy_fast_fail()); rank.set_policy(entity_name_t::TYPE_CLIENT, Rank::Policy::lossy_fast_fail()); rank.start(); // start osd OSD *osd = new OSD(whoami, m, hbm, &monmap, g_conf.osd_data, g_conf.osd_journal); if (osd->init() < 0) { cout << "error initializing osd" << std::endl; return 1; } rank.wait(); // done delete osd; // cd on exit, so that gmon.out (if any) goes into a separate directory for each node. char s[20]; sprintf(s, "gmon/%d", getpid()); if (mkdir(s, 0755) == 0) chdir(s); return 0; }