forked from Minki/linux
ec0994e48e
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>
40 lines
848 B
Makefile
40 lines
848 B
Makefile
#
|
|
# Makefile for CEPH filesystem.
|
|
#
|
|
|
|
ifneq ($(KERNELRELEASE),)
|
|
|
|
obj-$(CONFIG_CEPH_FS) += ceph.o
|
|
|
|
ceph-objs := super.o inode.o dir.o file.o addr.o ioctl.o \
|
|
export.o caps.o snap.o xattr.o \
|
|
messenger.o msgpool.o buffer.o pagelist.o \
|
|
mds_client.o mdsmap.o \
|
|
mon_client.o \
|
|
osd_client.o osdmap.o crush/crush.o crush/mapper.o crush/hash.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
|
|
#Otherwise we were called directly from the command
|
|
# line; invoke the kernel build system.
|
|
|
|
KERNELDIR ?= /lib/modules/$(shell uname -r)/build
|
|
PWD := $(shell pwd)
|
|
|
|
default: all
|
|
|
|
all:
|
|
$(MAKE) -C $(KERNELDIR) M=$(PWD) CONFIG_CEPH_FS=m modules
|
|
|
|
modules_install:
|
|
$(MAKE) -C $(KERNELDIR) M=$(PWD) CONFIG_CEPH_FS=m modules_install
|
|
|
|
clean:
|
|
$(MAKE) -C $(KERNELDIR) M=$(PWD) clean
|
|
|
|
endif
|