]> git.proxmox.com Git - ceph.git/blob - ceph/src/auth/AuthServiceHandler.cc
51c5c75da7bf775466d2ffe9ab98b12aabedc023
[ceph.git] / ceph / src / auth / AuthServiceHandler.cc
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 #include "AuthServiceHandler.h"
16 #include "cephx/CephxServiceHandler.h"
17 #ifdef HAVE_GSSAPI
18 #include "krb/KrbServiceHandler.hpp"
19 #endif
20 #include "none/AuthNoneServiceHandler.h"
21
22 #define dout_subsys ceph_subsys_auth
23
24
25 AuthServiceHandler *get_auth_service_handler(int type, CephContext *cct, KeyServer *ks)
26 {
27 switch (type) {
28 case CEPH_AUTH_CEPHX:
29 return new CephxServiceHandler(cct, ks);
30 case CEPH_AUTH_NONE:
31 return new AuthNoneServiceHandler(cct);
32 #ifdef HAVE_GSSAPI
33 case CEPH_AUTH_GSS:
34 return new KrbServiceHandler(cct, ks);
35 #endif
36 default:
37 return nullptr;
38 }
39 }