summaryrefslogtreecommitdiffstats
path: root/src/auth/AuthClientHandler.h
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 18:45:59 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 18:45:59 +0000
commit19fcec84d8d7d21e796c7624e521b60d28ee21ed (patch)
tree42d26aa27d1e3f7c0b8bd3fd14e7d7082f5008dc /src/auth/AuthClientHandler.h
parentInitial commit. (diff)
downloadceph-upstream/16.2.11+ds.tar.xz
ceph-upstream/16.2.11+ds.zip
Adding upstream version 16.2.11+ds.upstream/16.2.11+dsupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/auth/AuthClientHandler.h')
-rw-r--r--src/auth/AuthClientHandler.h74
1 files changed, 74 insertions, 0 deletions
diff --git a/src/auth/AuthClientHandler.h b/src/auth/AuthClientHandler.h
new file mode 100644
index 000000000..c8989b1a0
--- /dev/null
+++ b/src/auth/AuthClientHandler.h
@@ -0,0 +1,74 @@
+// -*- 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-2009 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_AUTHCLIENTHANDLER_H
+#define CEPH_AUTHCLIENTHANDLER_H
+
+
+#include "auth/Auth.h"
+#include "include/common_fwd.h"
+
+struct MAuthReply;
+class RotatingKeyRing;
+
+class AuthClientHandler {
+protected:
+ CephContext *cct;
+ EntityName name;
+ uint64_t global_id;
+ uint32_t want;
+ uint32_t have;
+ uint32_t need;
+
+public:
+ explicit AuthClientHandler(CephContext *cct_)
+ : cct(cct_), global_id(0), want(CEPH_ENTITY_TYPE_AUTH), have(0), need(0)
+ {}
+ virtual ~AuthClientHandler() {}
+
+ virtual AuthClientHandler* clone() const = 0;
+
+ void init(const EntityName& n) { name = n; }
+
+ void set_want_keys(__u32 keys) {
+ want = keys | CEPH_ENTITY_TYPE_AUTH;
+ validate_tickets();
+ }
+
+ virtual int get_protocol() const = 0;
+
+ virtual void reset() = 0;
+ virtual void prepare_build_request() = 0;
+ virtual void build_initial_request(ceph::buffer::list *bl) const {
+ // this is empty for methods cephx and none.
+ }
+ virtual int build_request(ceph::buffer::list& bl) const = 0;
+ virtual int handle_response(int ret, ceph::buffer::list::const_iterator& iter,
+ CryptoKey *session_key,
+ std::string *connection_secret) = 0;
+ virtual bool build_rotating_request(ceph::buffer::list& bl) const = 0;
+
+ virtual AuthAuthorizer *build_authorizer(uint32_t service_id) const = 0;
+
+ virtual bool need_tickets() = 0;
+
+ virtual void set_global_id(uint64_t id) = 0;
+
+ static AuthClientHandler* create(CephContext* cct, int proto, RotatingKeyRing* rkeys);
+protected:
+ virtual void validate_tickets() = 0;
+};
+
+#endif
+