diff options
author | Pranith Kumar K <pkarampu@redhat.com> | 2014-12-04 07:20:35 +0530 |
---|---|---|
committer | Vijay Bellur <vbellur@redhat.com> | 2014-12-04 11:34:09 -0800 |
commit | 7319b01ffa3d4ff7b1405873c8caeaf8a1f7b5d6 (patch) | |
tree | 020dea6c56568639276d9752949f27e3ff653dea /tests/basic/afr | |
parent | 469f25a9efa89c89231cddaf983cb7d449df0487 (diff) |
protocol/server: No root-squash checks for self-heal pid
Problem:
Self-heal pid used to be -1 which was colliding with gsyncd. Gsyncd
was not checked for root-squash authentication. Recently self-heal
pid changed to -6, but root-squash authentication is not disabled
for this.
Fix:
disable root-squash authentication for self-heal
Change-Id: I93233d4ae681cb936d166b22992eb47c658ea977
BUG: 1170407
Signed-off-by: Pranith Kumar K <pkarampu@redhat.com>
Reviewed-on: http://review.gluster.org/9231
Reviewed-by: Vijay Bellur <vbellur@redhat.com>
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Diffstat (limited to 'tests/basic/afr')
-rw-r--r-- | tests/basic/afr/root-squash-self-heal.t | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/basic/afr/root-squash-self-heal.t b/tests/basic/afr/root-squash-self-heal.t new file mode 100644 index 00000000000..fa9a163e623 --- /dev/null +++ b/tests/basic/afr/root-squash-self-heal.t @@ -0,0 +1,25 @@ +#!/bin/bash + +. $(dirname $0)/../../include.rc +. $(dirname $0)/../../volume.rc + +cleanup; + +TEST glusterd +TEST pidof glusterd +TEST $CLI volume create $V0 replica 2 $H0:$B0/${V0}{0,1} +TEST $CLI volume set $V0 performance.stat-prefetch off +TEST $CLI volume set $V0 self-heal-daemon off +TEST $CLI volume set $V0 server.root-squash on +TEST $CLI volume start $V0 +TEST glusterfs --volfile-id=/$V0 --volfile-server=$H0 $M0 --attribute-timeout=0 --entry-timeout=0 --no-root-squash=yes --use-readdirp=no +TEST kill_brick $V0 $H0 $B0/${V0}0 +HEAL_FILES=0 +echo abc > $M0/a + +TEST $CLI volume start $V0 force +EXPECT_WITHIN $PROCESS_UP_TIMEOUT "1" afr_child_up_status $V0 0 +find $M0 | xargs stat > /dev/null +EXPECT_WITHIN $HEAL_TIMEOUT "0" afr_get_pending_heal_count $V0 + +cleanup |