]> git.proxmox.com Git - ceph.git/blame - ceph/src/auth/AuthServiceHandler.h
update sources to v12.1.0
[ceph.git] / ceph / src / auth / AuthServiceHandler.h
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) 2004-2009 Sage Weil <sage@newdream.net>
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#ifndef CEPH_AUTHSERVICEHANDLER_H
16#define CEPH_AUTHSERVICEHANDLER_H
17
31f18b77
FG
18#include <stddef.h> // for NULL
19#include <stdint.h> // for uint64_t
20#include "common/entity_name.h" // for EntityName
21#include "include/buffer_fwd.h" // for bufferlist
7c673cae
FG
22
23class CephContext;
24class KeyServer;
31f18b77 25struct AuthCapsInfo;
7c673cae
FG
26
27struct AuthServiceHandler {
28protected:
29 CephContext *cct;
30public:
31 EntityName entity_name;
32 uint64_t global_id;
33
34 explicit AuthServiceHandler(CephContext *cct_) : cct(cct_), global_id(0) {}
35
36 virtual ~AuthServiceHandler() { }
37
38 virtual int start_session(EntityName& name, bufferlist::iterator& indata, bufferlist& result, AuthCapsInfo& caps) = 0;
39 virtual int handle_request(bufferlist::iterator& indata, bufferlist& result, uint64_t& global_id, AuthCapsInfo& caps, uint64_t *auid = NULL) = 0;
40
41 EntityName& get_entity_name() { return entity_name; }
42};
43
44extern AuthServiceHandler *get_auth_service_handler(int type, CephContext *cct, KeyServer *ks);
45
46#endif