]> git.proxmox.com Git - ceph.git/blame - ceph/src/auth/unknown/AuthUnknownAuthorizeHandler.cc
update sources to 12.2.7
[ceph.git] / ceph / src / auth / unknown / AuthUnknownAuthorizeHandler.cc
CommitLineData
7c673cae
FG
1// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
2// vim: ts=8 sw=2 smarttab
3/*
4 * Ceph - scalable distributed file system
5 *
6 * Copyright (C) 2009-2011 New Dream Network
7 *
8 * This is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License version 2.1, as published by the Free Software
11 * Foundation. See file COPYING.
12 *
13 */
14
15#include "AuthUnknownAuthorizeHandler.h"
16
28e407b8
AA
17bool AuthUnknownAuthorizeHandler::verify_authorizer(
18 CephContext *cct, KeyStore *keys,
19 bufferlist& authorizer_data, bufferlist& authorizer_reply,
20 EntityName& entity_name, uint64_t& global_id, AuthCapsInfo& caps_info,
21 CryptoKey& session_key,
22 uint64_t *auid,
23 std::unique_ptr<AuthAuthorizerChallenge> *challenge)
7c673cae
FG
24{
25 // For unknown authorizers, there's nothing to verify. They're "OK" by definition. PLR
26
27 return true;
28}
29
30// Return type of crypto used for this session's data; for unknown, no crypt used
31
32int AuthUnknownAuthorizeHandler::authorizer_session_crypto()
33{
34 return SESSION_CRYPTO_NONE;
35}