summaryrefslogtreecommitdiffstats
path: root/src/messages/MOSDBoot.h
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-21 11:54:28 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-21 11:54:28 +0000
commite6918187568dbd01842d8d1d2c808ce16a894239 (patch)
tree64f88b554b444a49f656b6c656111a145cbbaa28 /src/messages/MOSDBoot.h
parentInitial commit. (diff)
downloadceph-e6918187568dbd01842d8d1d2c808ce16a894239.tar.xz
ceph-e6918187568dbd01842d8d1d2c808ce16a894239.zip
Adding upstream version 18.2.2.upstream/18.2.2
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/messages/MOSDBoot.h')
-rw-r--r--src/messages/MOSDBoot.h98
1 files changed, 98 insertions, 0 deletions
diff --git a/src/messages/MOSDBoot.h b/src/messages/MOSDBoot.h
new file mode 100644
index 000000000..f28a11c38
--- /dev/null
+++ b/src/messages/MOSDBoot.h
@@ -0,0 +1,98 @@
+// -*- 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.
+ *
+ */
+
+#ifndef CEPH_MOSDBOOT_H
+#define CEPH_MOSDBOOT_H
+
+#include "messages/PaxosServiceMessage.h"
+
+#include "include/ceph_features.h"
+#include "include/types.h"
+#include "osd/osd_types.h"
+
+class MOSDBoot final : public PaxosServiceMessage {
+private:
+ static constexpr int HEAD_VERSION = 7;
+ static constexpr int COMPAT_VERSION = 7;
+
+ public:
+ OSDSuperblock sb;
+ entity_addrvec_t hb_back_addrs, hb_front_addrs;
+ entity_addrvec_t cluster_addrs;
+ epoch_t boot_epoch; // last epoch this daemon was added to the map (if any)
+ std::map<std::string,std::string> metadata; ///< misc metadata about this osd
+ uint64_t osd_features;
+
+ MOSDBoot()
+ : PaxosServiceMessage{MSG_OSD_BOOT, 0, HEAD_VERSION, COMPAT_VERSION},
+ boot_epoch(0), osd_features(0)
+ { }
+ MOSDBoot(const OSDSuperblock& s, epoch_t e, epoch_t be,
+ const entity_addrvec_t& hb_back_addr_ref,
+ const entity_addrvec_t& hb_front_addr_ref,
+ const entity_addrvec_t& cluster_addr_ref,
+ uint64_t feat)
+ : PaxosServiceMessage{MSG_OSD_BOOT, e, HEAD_VERSION, COMPAT_VERSION},
+ sb(s),
+ hb_back_addrs(hb_back_addr_ref),
+ hb_front_addrs(hb_front_addr_ref),
+ cluster_addrs(cluster_addr_ref),
+ boot_epoch(be),
+ osd_features(feat)
+ { }
+
+private:
+ ~MOSDBoot() final { }
+
+public:
+ std::string_view get_type_name() const override { return "osd_boot"; }
+ void print(std::ostream& out) const override {
+ out << "osd_boot(osd." << sb.whoami << " booted " << boot_epoch
+ << " features " << osd_features
+ << " v" << version << ")";
+ }
+
+ void encode_payload(uint64_t features) override {
+ header.version = HEAD_VERSION;
+ header.compat_version = COMPAT_VERSION;
+ using ceph::encode;
+ paxos_encode();
+ assert(HAVE_FEATURE(features, SERVER_NAUTILUS));
+ encode(sb, payload);
+ encode(hb_back_addrs, payload, features);
+ encode(cluster_addrs, payload, features);
+ encode(boot_epoch, payload);
+ encode(hb_front_addrs, payload, features);
+ encode(metadata, payload);
+ encode(osd_features, payload);
+ }
+ void decode_payload() override {
+ auto p = payload.cbegin();
+ using ceph::decode;
+ paxos_decode(p);
+ assert(header.version >= 7);
+ decode(sb, p);
+ decode(hb_back_addrs, p);
+ decode(cluster_addrs, p);
+ decode(boot_epoch, p);
+ decode(hb_front_addrs, p);
+ decode(metadata, p);
+ decode(osd_features, p);
+ }
+private:
+ template<class T, typename... Args>
+ friend boost::intrusive_ptr<T> ceph::make_message(Args&&... args);
+};
+
+#endif