diff options
author | Sage Weil <sage@newdream.net> | 2010-02-02 16:25:35 -0800 |
---|---|---|
committer | Sage Weil <sage@newdream.net> | 2010-02-11 11:48:45 -0800 |
commit | ec0994e48ea2aebf62ff08376227f3a9ccf46262 (patch) | |
tree | fdfd595b36619507d25a6b06e14b86db0ee3849a /fs/ceph/Makefile | |
parent | 07c8739c521cb029d0f3549556aae2d304513978 (diff) | |
download | linux-ec0994e48ea2aebf62ff08376227f3a9ccf46262.tar.bz2 |
ceph: add support for auth_x authentication protocol
The auth_x protocol implements support for a kerberos-like mutual
authentication infrastructure used by Ceph. We do not simply use vanilla
kerberos because of scalability and performance issues when dealing with
a large cluster of nodes providing a single logical service.
Auth_x provides mutual authentication of client and server and protects
against replay and man in the middle attacks. It does not encrypt
the full session over the wire, however, so data payload may still be
snooped.
Signed-off-by: Yehuda Sadeh <yehuda@hq.newdream.net>
Signed-off-by: Sage Weil <sage@newdream.net>
Diffstat (limited to 'fs/ceph/Makefile')
-rw-r--r-- | fs/ceph/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/ceph/Makefile b/fs/ceph/Makefile index 85a588e43e7d..6a660e610be8 100644 --- a/fs/ceph/Makefile +++ b/fs/ceph/Makefile @@ -15,6 +15,7 @@ ceph-objs := super.o inode.o dir.o file.o addr.o ioctl.o \ debugfs.o \ auth.o auth_none.o \ crypto.o armor.o \ + auth_x.o \ ceph_fs.o ceph_strings.o ceph_hash.o ceph_frag.o else |