From caa8a4ea50734378e7e19f70b39a837c58e9d229 Mon Sep 17 00:00:00 2001 From: Jeff Darcy Date: Thu, 17 Apr 2014 23:21:05 +0000 Subject: rpc/auth: allow SSL identity to be used for authorization Access to a volume is now controlled by the following options, based on whether SSL is enabled or not. * server.ssl-allow: get identity from certificate, no password needed * auth.allow: get identity and matching password from command line It is not possible to allow both simultaneously, since the connection itself is either using SSL or it isn't. Change-Id: I5a5be66520f56778563d62f4b3ab35c66cc41ac0 BUG: 1114604 Signed-off-by: Jeff Darcy Reviewed-on: http://review.gluster.org/3695 Tested-by: Gluster Build System Reviewed-by: Vijay Bellur --- tests/bugs/bug-873367.t | 1 + tests/features/ssl-authz.t | 53 ++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 54 insertions(+) create mode 100755 tests/features/ssl-authz.t (limited to 'tests') diff --git a/tests/bugs/bug-873367.t b/tests/bugs/bug-873367.t index 56c2d30542f..17be3572b2f 100755 --- a/tests/bugs/bug-873367.t +++ b/tests/bugs/bug-873367.t @@ -24,6 +24,7 @@ ln $SSL_CERT $SSL_CA TEST $CLI volume create $V0 $H0:$B0/1 TEST $CLI volume set $V0 server.ssl on TEST $CLI volume set $V0 client.ssl on +TEST $CLI volume set $V0 auth.ssl-allow Anyone TEST $CLI volume start $V0 TEST glusterfs --volfile-server=$H0 --volfile-id=$V0 $M0 diff --git a/tests/features/ssl-authz.t b/tests/features/ssl-authz.t new file mode 100755 index 00000000000..f6c56bcaa53 --- /dev/null +++ b/tests/features/ssl-authz.t @@ -0,0 +1,53 @@ +#!/bin/bash + +. $(dirname $0)/../include.rc + +ping_file () { + echo hello > $1 2> /dev/null +} + +SSL_BASE=/etc/ssl +SSL_KEY=$SSL_BASE/glusterfs.key +SSL_CERT=$SSL_BASE/glusterfs.pem +SSL_CA=$SSL_BASE/glusterfs.ca + +cleanup; +rm -f $SSL_BASE/glusterfs.* +mkdir -p $B0/1 +mkdir -p $M0 + +TEST glusterd +TEST pidof glusterd +TEST $CLI volume info; + +TEST openssl genrsa -out $SSL_KEY 1024 +TEST openssl req -new -x509 -key $SSL_KEY -subj /CN=Anyone -out $SSL_CERT +ln $SSL_CERT $SSL_CA + +TEST $CLI volume create $V0 $H0:$B0/1 +TEST $CLI volume set $V0 server.ssl on +TEST $CLI volume set $V0 client.ssl on +TEST $CLI volume set $V0 auth.ssl-allow Anyone +TEST $CLI volume start $V0 + +# This mount should WORK. +TEST glusterfs --volfile-server=$H0 --volfile-id=$V0 $M0 +TEST ping_file $M0/before +TEST umount $M0 + +# Change the authorized user name. Note that servers don't pick up changes +# automagically like clients do, so we have to stop/start ourselves. +TEST $CLI volume stop $V0 +TEST $CLI volume set $V0 auth.ssl-allow NotYou +TEST $CLI volume start $V0 + +# This mount should FAIL because the identity given by our certificate does not +# match the allowed user. In other words, authentication works (they know who +# we are) but authorization doesn't (we're not the right person). +TEST glusterfs --volfile-server=$H0 --volfile-id=$V0 $M0 + +# Looks like /*/bin/glusterfs isn't returning error status correctly (again). +# Actually try doing something to get a real error. +TEST ! ping_file $M0/after + +cleanup; -- cgit