summaryrefslogtreecommitdiffstats
path: root/src/crimson/auth/DummyAuth.h
blob: 7c26140a227140f6f1b6e92bd6f59c8969f26d1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
// vim: ts=8 sw=2 smarttab

#include "AuthClient.h"
#include "AuthServer.h"

namespace crimson::auth {

class DummyAuthClientServer : public AuthClient,
                              public AuthServer {
public:
  DummyAuthClientServer() {}

  // client
  std::pair<std::vector<uint32_t>, std::vector<uint32_t>>
  get_supported_auth_methods(int peer_type) final {
    return {{CEPH_AUTH_NONE}, {CEPH_AUTH_NONE}};
  }

  uint32_t pick_con_mode(int peer_type,
			 uint32_t auth_method,
			 const std::vector<uint32_t>& preferred_modes) final {
    ceph_assert(auth_method == CEPH_AUTH_NONE);
    ceph_assert(preferred_modes.size() &&
                preferred_modes[0] == CEPH_CON_MODE_CRC);
    return CEPH_CON_MODE_CRC;
  }

  AuthAuthorizeHandler* get_auth_authorize_handler(int peer_type,
						   int auth_method) final {
    return nullptr;
  }

  AuthClient::auth_request_t get_auth_request(
    crimson::net::ConnectionRef conn,
    AuthConnectionMetaRef auth_meta) override {
    return {CEPH_AUTH_NONE, {CEPH_CON_MODE_CRC}, {}};
  }

  ceph::bufferlist handle_auth_reply_more(
    crimson::net::ConnectionRef conn,
    AuthConnectionMetaRef auth_meta,
    const bufferlist& bl) override {
    ceph_abort();
  }

  int handle_auth_done(
    crimson::net::ConnectionRef conn,
    AuthConnectionMetaRef auth_meta,
    uint64_t global_id,
    uint32_t con_mode,
    const bufferlist& bl) override {
    return 0;
  }

  int handle_auth_bad_method(
    crimson::net::ConnectionRef conn,
    AuthConnectionMetaRef auth_meta,
    uint32_t old_auth_method,
    int result,
    const std::vector<uint32_t>& allowed_methods,
    const std::vector<uint32_t>& allowed_modes) override {
    ceph_abort();
  }

  // server
  int handle_auth_request(
    crimson::net::ConnectionRef conn,
    AuthConnectionMetaRef auth_meta,
    bool more,
    uint32_t auth_method,
    const bufferlist& bl,
    bufferlist *reply) override {
    return 1;
  }
};

} // namespace crimson::auth