// -*- 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 "Paxos.h" #include "Monitor.h" #include "MonitorStore.h" #include "messages/MMonPaxos.h" #include "config.h" #define dout(l) if (l<=g_conf.debug || l<=g_conf.debug_paxos) *_dout << dbeginl << g_clock.now() << " mon" << whoami << (mon->is_starting() ? (const char*)"(starting)":(mon->is_leader() ? (const char*)"(leader)":(mon->is_peon() ? (const char*)"(peon)":(const char*)"(?\?)"))) << ".paxos(" << machine_name << " " << get_statename(state) << " lc " << last_committed << ") " #define derr(l) if (l<=g_conf.debug || l<=g_conf.debug_paxos) *_derr << dbeginl << g_clock.now() << " mon" << whoami << (mon->is_starting() ? (const char*)"(starting)":(mon->is_leader() ? (const char*)"(leader)":(mon->is_peon() ? (const char*)"(peon)":(const char*)"(?\?)"))) << ".paxos(" << machine_name << " " << get_statename(state) << " lc " << last_committed << ") " void Paxos::init() { // load paxos variables from stable storage last_pn = mon->store->get_int(machine_name, "last_pn"); accepted_pn = mon->store->get_int(machine_name, "accepted_pn"); last_committed = mon->store->get_int(machine_name, "last_committed"); dout(10) << "init" << dendl; } // --------------------------------- // PHASE 1 // leader void Paxos::collect(version_t oldpn) { // we're recoverying, it seems! state = STATE_RECOVERING; assert(mon->is_leader()); // reset the number of lasts received uncommitted_v = 0; uncommitted_pn = 0; uncommitted_value.clear(); // look for uncommitted value if (mon->store->exists_bl_sn(machine_name, last_committed+1)) { uncommitted_v = last_committed+1; uncommitted_pn = accepted_pn; mon->store->get_bl_sn(uncommitted_value, machine_name, last_committed+1); dout(10) << "learned uncommitted " << (last_committed+1) << " (" << uncommitted_value.length() << " bytes) from myself" << dendl; } // pick new pn accepted_pn = get_new_proposal_number(MAX(accepted_pn, oldpn)); accepted_pn_from = last_committed; num_last = 1; dout(10) << "collect with pn " << accepted_pn << dendl; // send collect for (set::const_iterator p = mon->get_quorum().begin(); p != mon->get_quorum().end(); ++p) { if (*p == whoami) continue; MMonPaxos *collect = new MMonPaxos(mon->get_epoch(), MMonPaxos::OP_COLLECT, machine_id); collect->last_committed = last_committed; collect->pn = accepted_pn; mon->messenger->send_message(collect, mon->monmap->get_inst(*p)); } } // peon void Paxos::handle_collect(MMonPaxos *collect) { dout(10) << "handle_collect " << *collect << dendl; assert(mon->is_peon()); // mon epoch filter should catch strays // we're recoverying, it seems! state = STATE_RECOVERING; // reply MMonPaxos *last = new MMonPaxos(mon->get_epoch(), MMonPaxos::OP_LAST, machine_id); last->last_committed = last_committed; // do we have an accepted but uncommitted value? // (it'll be at last_committed+1) bufferlist bl; if (mon->store->exists_bl_sn(machine_name, last_committed+1)) { mon->store->get_bl_sn(bl, machine_name, last_committed+1); assert(bl.length() > 0); dout(10) << " sharing our accepted but uncommitted value for " << last_committed+1 << " (" << bl.length() << " bytes)" << dendl; last->values[last_committed+1] = bl; last->uncommitted_pn = accepted_pn; } // can we accept this pn? if (collect->pn > accepted_pn) { // ok, accept it accepted_pn = collect->pn; accepted_pn_from = collect->pn_from; dout(10) << "accepting pn " << accepted_pn << " from " << accepted_pn_from << dendl; mon->store->put_int(accepted_pn, machine_name, "accepted_pn"); } else { // don't accept! dout(10) << "NOT accepting pn " << collect->pn << " from " << collect->pn_from << ", we already accepted " << accepted_pn << " from " << accepted_pn_from << dendl; } last->pn = accepted_pn; last->pn_from = accepted_pn_from; // and share whatever data we have for (version_t v = collect->last_committed+1; v <= last_committed; v++) { if (mon->store->exists_bl_sn(machine_name, v)) { mon->store->get_bl_sn(last->values[v], machine_name, v); dout(10) << " sharing " << v << " (" << last->values[v].length() << " bytes)" << dendl; } } // send reply mon->messenger->send_message(last, collect->get_source_inst()); delete collect; } // leader void Paxos::handle_last(MMonPaxos *last) { dout(10) << "handle_last " << *last << dendl; if (!mon->is_leader()) { dout(10) << "not leader, dropping" << dendl; delete last; return; } // share committed values? if (last->last_committed < last_committed) { // share committed values dout(10) << "sending commit to " << last->get_source() << dendl; MMonPaxos *commit = new MMonPaxos(mon->get_epoch(), MMonPaxos::OP_COMMIT, machine_id); for (version_t v = last->last_committed+1; v <= last_committed; v++) { mon->store->get_bl_sn(commit->values[v], machine_name, v); dout(10) << " sharing " << v << " (" << commit->values[v].length() << " bytes)" << dendl; } commit->last_committed = last_committed; mon->messenger->send_message(commit, last->get_source_inst()); } // did we receive a committed value? if (last->last_committed > last_committed) { for (version_t v = last_committed+1; v <= last->last_committed; v++) { mon->store->put_bl_sn(last->values[v], machine_name, v); dout(10) << "committing " << v << " " << last->values[v].length() << " bytes" << dendl; } last_committed = last->last_committed; mon->store->put_int(last_committed, machine_name, "last_committed"); dout(10) << "last_committed now " << last_committed << dendl; } // do they accept your pn? if (last->pn > accepted_pn) { // no, try again. dout(10) << " they had a higher pn than us, picking a new one." << dendl; collect(last->pn); } else { // yes, they accepted our pn. great. num_last++; dout(10) << " they accepted our pn, we now have " << num_last << " peons" << dendl; // did this person send back an accepted but uncommitted value? if (last->uncommitted_pn && last->uncommitted_pn > uncommitted_pn) { uncommitted_v = last->last_committed+1; uncommitted_pn = last->uncommitted_pn; uncommitted_value = last->values[uncommitted_v]; dout(10) << "we learned an uncommitted value for " << uncommitted_v << " pn " << uncommitted_pn << " " << uncommitted_value.length() << " bytes" << dendl; } // is that everyone? if (num_last == mon->get_quorum().size()) { // almost... state = STATE_ACTIVE; // did we learn an old value? if (uncommitted_v == last_committed+1 && uncommitted_value.length()) { dout(10) << "that's everyone. begin on old learned value" << dendl; begin(uncommitted_value); } else { // active! dout(10) << "that's everyone. active!" << dendl; extend_lease(); // wake people up finish_contexts(waiting_for_active); finish_contexts(waiting_for_readable); finish_contexts(waiting_for_writeable); } } } delete last; } // leader void Paxos::begin(bufferlist& v) { dout(10) << "begin for " << last_committed+1 << " " << v.length() << " bytes" << dendl; assert(mon->is_leader()); assert(is_active()); state = STATE_UPDATING; // we must already have a majority for this to work. assert(mon->get_quorum().size() == 1 || num_last > (unsigned)mon->monmap->size()/2); // and no value, yet. assert(new_value.length() == 0); // accept it ourselves accepted.clear(); accepted.insert(whoami); new_value = v; mon->store->put_bl_sn(new_value, machine_name, last_committed+1); if (mon->get_quorum().size() == 1) { // we're alone, take it easy commit(); state = STATE_ACTIVE; finish_contexts(waiting_for_active); finish_contexts(waiting_for_commit); finish_contexts(waiting_for_readable); finish_contexts(waiting_for_writeable); return; } // ask others to accept it to! for (set::const_iterator p = mon->get_quorum().begin(); p != mon->get_quorum().end(); ++p) { if (*p == whoami) continue; dout(10) << " sending begin to mon" << *p << dendl; MMonPaxos *begin = new MMonPaxos(mon->get_epoch(), MMonPaxos::OP_BEGIN, machine_id); begin->values[last_committed+1] = new_value; begin->last_committed = last_committed; begin->pn = accepted_pn; mon->messenger->send_message(begin, mon->monmap->get_inst(*p)); } // set timeout event accept_timeout_event = new C_AcceptTimeout(this); mon->timer.add_event_after(g_conf.mon_accept_timeout, accept_timeout_event); } // peon void Paxos::handle_begin(MMonPaxos *begin) { dout(10) << "handle_begin " << *begin << dendl; // can we accept this? if (begin->pn < accepted_pn) { dout(10) << " we accepted a higher pn " << accepted_pn << ", ignoring" << dendl; delete begin; return; } assert(begin->pn == accepted_pn); assert(begin->last_committed == last_committed); // set state. state = STATE_UPDATING; lease_expire = utime_t(); // cancel lease // yes. version_t v = last_committed+1; dout(10) << "accepting value for " << v << " pn " << accepted_pn << dendl; mon->store->put_bl_sn(begin->values[v], machine_name, v); // reply MMonPaxos *accept = new MMonPaxos(mon->get_epoch(), MMonPaxos::OP_ACCEPT, machine_id); accept->pn = accepted_pn; accept->last_committed = last_committed; mon->messenger->send_message(accept, begin->get_source_inst()); delete begin; } // leader void Paxos::handle_accept(MMonPaxos *accept) { dout(10) << "handle_accept " << *accept << dendl; int from = accept->get_source().num(); if (accept->pn != accepted_pn) { // we accepted a higher pn, from some other leader dout(10) << " we accepted a higher pn " << accepted_pn << ", ignoring" << dendl; delete accept; return; } if (last_committed > 0 && accept->last_committed < last_committed-1) { dout(10) << " this is from an old round, ignoring" << dendl; delete accept; return; } assert(accept->last_committed == last_committed || // not committed accept->last_committed == last_committed-1); // committed assert(state == STATE_UPDATING); assert(accepted.count(from) == 0); accepted.insert(from); dout(10) << " now " << accepted << " have accepted" << dendl; // new majority? if (accepted.size() == (unsigned)mon->monmap->size()/2+1) { // yay, commit! // note: this may happen before the lease is reextended (below) dout(10) << " got majority, committing" << dendl; commit(); } // done? if (accepted == mon->get_quorum()) { dout(10) << " got quorum, done with update" << dendl; // cancel timeout event mon->timer.cancel_event(accept_timeout_event); accept_timeout_event = 0; // yay! state = STATE_ACTIVE; extend_lease(); // wake people up finish_contexts(waiting_for_active); finish_contexts(waiting_for_commit); finish_contexts(waiting_for_readable); finish_contexts(waiting_for_writeable); } } void Paxos::accept_timeout() { dout(5) << "accept timeout, calling fresh election" << dendl; accept_timeout_event = 0; assert(mon->is_leader()); assert(is_updating()); cancel_events(); mon->call_election(); } void Paxos::commit() { dout(10) << "commit " << last_committed+1 << dendl; // commit locally last_committed++; mon->store->put_int(last_committed, machine_name, "last_committed"); // tell everyone for (set::const_iterator p = mon->get_quorum().begin(); p != mon->get_quorum().end(); ++p) { if (*p == whoami) continue; dout(10) << " sending commit to mon" << *p << dendl; MMonPaxos *commit = new MMonPaxos(mon->get_epoch(), MMonPaxos::OP_COMMIT, machine_id); commit->values[last_committed] = new_value; commit->pn = accepted_pn; mon->messenger->send_message(commit, mon->monmap->get_inst(*p)); } // get ready for a new round. new_value.clear(); } void Paxos::handle_commit(MMonPaxos *commit) { dout(10) << "handle_commit on " << commit->last_committed << dendl; if (!mon->is_peon()) { dout(10) << "not a peon, dropping" << dendl; assert(0); delete commit; return; } // commit locally. for (map::iterator p = commit->values.begin(); p != commit->values.end(); ++p) { assert(p->first == last_committed+1); last_committed = p->first; dout(10) << " storing " << last_committed << " (" << p->second.length() << " bytes)" << dendl; mon->store->put_bl_sn(p->second, machine_name, last_committed); } mon->store->put_int(last_committed, machine_name, "last_committed"); delete commit; } void Paxos::extend_lease() { assert(mon->is_leader()); assert(is_active()); lease_expire = g_clock.now(); lease_expire += g_conf.mon_lease; acked_lease.clear(); acked_lease.insert(whoami); dout(7) << "extend_lease now+" << g_conf.mon_lease << " (" << lease_expire << ")" << dendl; // bcast for (set::const_iterator p = mon->get_quorum().begin(); p != mon->get_quorum().end(); ++p) { if (*p == whoami) continue; MMonPaxos *lease = new MMonPaxos(mon->get_epoch(), MMonPaxos::OP_LEASE, machine_id); lease->last_committed = last_committed; lease->lease_expire = lease_expire; mon->messenger->send_message(lease, mon->monmap->get_inst(*p)); } // set timeout event. // if old timeout is still in place, leave it. if (!lease_ack_timeout_event) { lease_ack_timeout_event = new C_LeaseAckTimeout(this); mon->timer.add_event_after(g_conf.mon_lease_ack_timeout, lease_ack_timeout_event); } // set renew event lease_renew_event = new C_LeaseRenew(this); utime_t at = lease_expire; at -= g_conf.mon_lease; at += g_conf.mon_lease_renew_interval; mon->timer.add_event_at(at, lease_renew_event); } // peon void Paxos::handle_lease(MMonPaxos *lease) { // sanity if (!mon->is_peon() || last_committed != lease->last_committed) { dout(10) << "handle_lease i'm not a peon, or they're not the leader, or the last_committed doesn't match, dropping" << dendl; delete lease; return; } // extend lease if (lease_expire < lease->lease_expire) lease_expire = lease->lease_expire; state = STATE_ACTIVE; dout(10) << "handle_lease on " << lease->last_committed << " now " << lease_expire << dendl; // ack MMonPaxos *ack = new MMonPaxos(mon->get_epoch(), MMonPaxos::OP_LEASE_ACK, machine_id); ack->last_committed = last_committed; ack->lease_expire = lease_expire; mon->messenger->send_message(ack, lease->get_source_inst()); // (re)set timeout event. if (lease_timeout_event) mon->timer.cancel_event(lease_timeout_event); lease_timeout_event = new C_LeaseTimeout(this); mon->timer.add_event_after(g_conf.mon_lease_ack_timeout, lease_timeout_event); // kick waiters finish_contexts(waiting_for_active); if (is_readable()) finish_contexts(waiting_for_readable); delete lease; } void Paxos::handle_lease_ack(MMonPaxos *ack) { int from = ack->get_source().num(); if (!lease_ack_timeout_event) { dout(10) << "handle_lease_ack from " << ack->get_source() << " -- stray (probably since revoked)" << dendl; } else if (acked_lease.count(from) == 0) { acked_lease.insert(from); if (acked_lease == mon->get_quorum()) { // yay! dout(10) << "handle_lease_ack from " << ack->get_source() << " -- got everyone" << dendl; mon->timer.cancel_event(lease_ack_timeout_event); lease_ack_timeout_event = 0; } else { dout(10) << "handle_lease_ack from " << ack->get_source() << " -- still need " << mon->get_quorum().size() - acked_lease.size() << " more" << dendl; } } else { dout(10) << "handle_lease_ack from " << ack->get_source() << " dup (lagging!), ignoring" << dendl; } delete ack; } void Paxos::lease_ack_timeout() { dout(5) << "lease_ack_timeout -- calling new election" << dendl; assert(mon->is_leader()); assert(is_active()); lease_ack_timeout_event = 0; cancel_events(); mon->call_election(); } void Paxos::lease_timeout() { dout(5) << "lease_timeout -- calling new election" << dendl; assert(mon->is_peon()); lease_timeout_event = 0; cancel_events(); mon->call_election(); } void Paxos::lease_renew_timeout() { lease_renew_event = 0; extend_lease(); } /* * return a globally unique, monotonically increasing proposal number */ version_t Paxos::get_new_proposal_number(version_t gt) { if (last_pn < gt) last_pn = gt; // update. make it unique among all monitors. last_pn /= 100; last_pn++; last_pn *= 100; last_pn += (version_t)whoami; // write mon->store->put_int(last_pn, machine_name, "last_pn"); dout(10) << "get_new_proposal_number = " << last_pn << dendl; return last_pn; } void Paxos::cancel_events() { if (accept_timeout_event) { mon->timer.cancel_event(accept_timeout_event); accept_timeout_event = 0; } if (lease_renew_event) { mon->timer.cancel_event(lease_renew_event); lease_renew_event = 0; } if (lease_ack_timeout_event) { mon->timer.cancel_event(lease_ack_timeout_event); lease_ack_timeout_event = 0; } if (lease_timeout_event) { mon->timer.cancel_event(lease_timeout_event); lease_timeout_event = 0; } } void Paxos::leader_init() { if (mon->get_quorum().size() == 1) { state = STATE_ACTIVE; return; } cancel_events(); state = STATE_RECOVERING; lease_expire = utime_t(); dout(10) << "leader_init -- starting paxos recovery" << dendl; collect(0); } void Paxos::peon_init() { cancel_events(); state = STATE_RECOVERING; lease_expire = utime_t(); dout(10) << "peon_init -- i am a peon" << dendl; // no chance to write now! finish_contexts(waiting_for_writeable, -1); finish_contexts(waiting_for_commit, -1); } void Paxos::election_starting() { dout(10) << "election_starting -- canceling timeouts" << dendl; cancel_events(); new_value.clear(); finish_contexts(waiting_for_commit, -1); } void Paxos::dispatch(Message *m) { // election in progress? if (mon->is_starting()) { dout(5) << "election in progress, dropping " << *m << dendl; delete m; return; } // check sanity assert(mon->is_leader() || (mon->is_peon() && m->get_source().num() == mon->get_leader())); switch (m->get_type()) { case MSG_MON_PAXOS: { MMonPaxos *pm = (MMonPaxos*)m; // NOTE: these ops are defined in messages/MMonPaxos.h switch (pm->op) { // learner case MMonPaxos::OP_COLLECT: handle_collect(pm); break; case MMonPaxos::OP_LAST: handle_last(pm); break; case MMonPaxos::OP_BEGIN: handle_begin(pm); break; case MMonPaxos::OP_ACCEPT: handle_accept(pm); break; case MMonPaxos::OP_COMMIT: handle_commit(pm); break; case MMonPaxos::OP_LEASE: handle_lease(pm); break; case MMonPaxos::OP_LEASE_ACK: handle_lease_ack(pm); break; default: assert(0); } } break; default: assert(0); } } // ----------------- // service interface // -- READ -- bool Paxos::is_readable() { //dout(15) << "is_readable now=" << g_clock.now() << " lease_expire=" << lease_expire << dendl; return (mon->is_peon() || mon->is_leader()) && is_active() && last_committed > 0 && // must have a value (mon->get_quorum().size() == 1 || // alone, or g_clock.now() < lease_expire); // have lease } bool Paxos::read(version_t v, bufferlist &bl) { if (!is_readable()) return false; if (!mon->store->get_bl_sn(bl, machine_name, v)) return false; return true; } version_t Paxos::read_current(bufferlist &bl) { if (!is_readable()) return 0; if (read(last_committed, bl)) return last_committed; return 0; } // -- WRITE -- bool Paxos::is_writeable() { if (mon->get_quorum().size() == 1) return true; return mon->is_leader() && is_active() && g_clock.now() < lease_expire; } bool Paxos::propose_new_value(bufferlist& bl, Context *oncommit) { /* // writeable? if (!is_writeable()) { dout(5) << "propose_new_value " << last_committed+1 << " " << bl.length() << " bytes" << " -- not writeable" << dendl; if (oncommit) { oncommit->finish(-1); delete oncommit; } return false; } */ assert(mon->is_leader() && is_active()); // cancel lease renewal and timeout events. cancel_events(); // ok! dout(5) << "propose_new_value " << last_committed+1 << " " << bl.length() << " bytes" << dendl; if (oncommit) waiting_for_commit.push_back(oncommit); begin(bl); return true; }