These are unreferenced by any other code.
Signed-off-by: Sage Weil <sage@redhat.com>
+++ /dev/null
-// -*- 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) 2009-2011 New Dream Network
- *
- * 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 "AuthUnknownAuthorizeHandler.h"
-
-bool AuthUnknownAuthorizeHandler::verify_authorizer(
- CephContext *cct,
- KeyStore *keys,
- const bufferlist& authorizer_data,
- size_t connection_secret_required_len,
- bufferlist * authorizer_reply,
- EntityName *entity_name,
- uint64_t *global_id,
- AuthCapsInfo *caps_info,
- CryptoKey *session_key,
- std::string *connection_secret,
- std::unique_ptr<AuthAuthorizerChallenge> *challenge)
-{
- // For unknown authorizers, there's nothing to verify. They're "OK" by definition. PLR
-
- return true;
-}
-
-// Return type of crypto used for this session's data; for unknown, no crypt used
-
-int AuthUnknownAuthorizeHandler::authorizer_session_crypto()
-{
- return SESSION_CRYPTO_NONE;
-}
+++ /dev/null
-// -*- 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_AUTHUNKNOWNAUTHORIZEHANDLER_H
-#define CEPH_AUTHUNKNOWNAUTHORIZEHANDLER_H
-
-#include "auth/AuthAuthorizeHandler.h"
-
-class CephContext;
-
-struct AuthUnknownAuthorizeHandler : public AuthAuthorizeHandler {
- bool verify_authorizer(
- CephContext *cct,
- KeyStore *keys,
- const bufferlist& authorizer_data,
- size_t connection_secret_required_len,
- bufferlist *authorizer_reply,
- EntityName *entity_name,
- uint64_t *global_id,
- AuthCapsInfo *caps_info,
- CryptoKey *session_key,
- std::string *connection_secret,
- std::unique_ptr<AuthAuthorizerChallenge> *challenge) override;
- int authorizer_session_crypto() override;
-};
-
-
-
-#endif
+++ /dev/null
-// -*- 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_AUTHUNKNOWNCLIENTHANDLER_H
-#define CEPH_AUTHUNKNOWNCLIENTHANDLER_H
-
-#include "auth/AuthClientHandler.h"
-#include "AuthUnknownProtocol.h"
-
-class CephContext;
-
-class AuthUnknownClientHandler : public AuthClientHandler {
-public:
- AuthUnknownClientHandler(CephContext *cct_, RotatingKeyRing *rkeys)
- : AuthClientHandler(cct_) {}
-
- void reset() { }
-
- void prepare_build_request() {}
- int build_request(bufferlist& bl) const { return 0; }
- int handle_response(int ret, bufferlist::iterator& iter,
- CryptoKey *session_key,
- std::string *connection_secret) { return 0; }
- bool build_rotating_request(bufferlist& bl) const { return false; }
-
- int get_protocol() const { return CEPH_AUTH_UNKNOWN; }
-
- AuthAuthorizer *build_authorizer(uint32_t service_id) const {
- RWLock::RLocker l(lock);
- AuthUnknownAuthorizer *auth = new AuthUnknownAuthorizer();
- if (auth) {
- auth->build_authorizer(cct->_conf->name, global_id);
- }
- return auth;
- }
-
- bool need_tickets() { return false; }
-
- void set_global_id(uint64_t id) {
- RWLock::WLocker l(lock);
- global_id = id;
- }
-private:
- void validate_tickets() { }
-};
-
-#endif
+++ /dev/null
-// -*- 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_AUTHUNKNOWNPROTOCOL_H
-#define CEPH_AUTHUNKNOWNPROTOCOL_H
-
-#include "auth/Auth.h"
-
-struct AuthUnknownAuthorizer : public AuthAuthorizer {
- AuthUnknownAuthorizer() : AuthAuthorizer(CEPH_AUTH_UNKNOWN) { }
- bool build_authorizer(const EntityName &ename, uint64_t global_id) {
- __u8 struct_v = 1; // see AUTH_MODE_* in Auth.h
- encode(struct_v, bl);
- encode(ename, bl);
- encode(global_id, bl);
- return 0;
- }
- bool verify_reply(bufferlist::iterator& reply) { return true; }
-};
-
-#endif
+++ /dev/null
-// -*- 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_AUTHUNKNOWNSERVICEHANDLER_H
-#define CEPH_AUTHUNKNOWNSERVICEHANDLER_H
-
-#include "auth/AuthServiceHandler.h"
-#include "auth/Auth.h"
-
-class CephContext;
-
-class AuthUnknownServiceHandler : public AuthServiceHandler {
-public:
- AuthUnknownServiceHandler(CephContext *cct_)
- : AuthServiceHandler(cct_) {}
- ~AuthUnknownServiceHandler() {}
-
- int start_session(const EntityName& name,
- size_t connection_secret_required_length,
- bufferlist *result_bl,
- AuthCapsInfo *caps,
- CryptoKey *session_key,
- std::string *connection_secret) {
- return 1;
- }
- int handle_request(bufferlist::iterator& indata,
- size_t connection_secret_required_length,
- bufferlist *result_bl,
- uint64_t *global_id,
- AuthCapsInfo *caps,
- CryptoKey *session_key,
- std::string *connection_secret) {
- ceph_abort(); // shouldn't get called
- return 0;
- }
-
- void build_cephx_response_header(int request_type, int status,
- bufferlist& bl) {
- }
-};
-
-#endif