X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fceph%2Fsrc%2Fauth%2FAuthClientHandler.h;fp=src%2Fceph%2Fsrc%2Fauth%2FAuthClientHandler.h;h=b397f883c92301663305d3d510cc8523eb37ffa8;hb=812ff6ca9fcd3e629e49d4328905f33eee8ca3f5;hp=0000000000000000000000000000000000000000;hpb=15280273faafb77777eab341909a3f495cf248d9;p=stor4nfv.git diff --git a/src/ceph/src/auth/AuthClientHandler.h b/src/ceph/src/auth/AuthClientHandler.h new file mode 100644 index 0000000..b397f88 --- /dev/null +++ b/src/ceph/src/auth/AuthClientHandler.h @@ -0,0 +1,72 @@ +// -*- 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 + * + * 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 "common/RWLock.h" + +class CephContext; +struct MAuthReply; +class RotatingKeyRing; + +class AuthClientHandler { +protected: + CephContext *cct; + EntityName name; + uint64_t global_id; + uint32_t want; + uint32_t have; + uint32_t need; + RWLock lock; + +public: + explicit AuthClientHandler(CephContext *cct_) + : cct(cct_), global_id(0), want(CEPH_ENTITY_TYPE_AUTH), have(0), need(0), + lock("AuthClientHandler::lock") {} + virtual ~AuthClientHandler() {} + + void init(const EntityName& n) { name = n; } + + void set_want_keys(__u32 keys) { + RWLock::WLocker l(lock); + 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 int build_request(bufferlist& bl) const = 0; + virtual int handle_response(int ret, bufferlist::iterator& iter) = 0; + virtual bool build_rotating_request(bufferlist& 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; +protected: + virtual void validate_tickets() = 0; +}; + + +extern AuthClientHandler *get_auth_client_handler(CephContext *cct, + int proto, RotatingKeyRing *rkeys); + +#endif +