d2787b
From c963653a89c3f6466af9a3e8f19246a7907f7f8c Mon Sep 17 00:00:00 2001
d2787b
From: nik-redhat <nladha@redhat.com>
d2787b
Date: Thu, 30 Jul 2020 13:04:52 +0530
d2787b
Subject: [PATCH 512/517] glusterd: shared storage mount fails in ipv6
d2787b
 environment
d2787b
d2787b
Issue:
d2787b
In case of ipv6 environment, the mounting of glusterd_shared_storage
d2787b
volume fails as it doesn't recognises the ipv6 enviornment.
d2787b
d2787b
Fix:
d2787b
In case of ipv6 environment, the address-family is passed
d2787b
to the hooks script on creating shared-storage, then depending
d2787b
upon the address-family --xlator-option=transport.address-family=inet6
d2787b
option is added to the mount command, and the mounting succeeds.
d2787b
d2787b
>Fixes: #1406
d2787b
>
d2787b
>Change-Id: Ib1888c34d85e6c01618b0ba214cbe1f57576908d
d2787b
>Signed-off-by: nik-redhat <nladha@redhat.com>
d2787b
d2787b
Upstream patch: https://review.gluster.org/c/glusterfs/+/24797
d2787b
BUG: 1856574
d2787b
d2787b
Change-Id: Ib1888c34d85e6c01618b0ba214cbe1f57576908d
d2787b
Signed-off-by: nik-redhat <nladha@redhat.com>
d2787b
Reviewed-on: https://code.engineering.redhat.com/gerrit/221844
d2787b
Tested-by: RHGS Build Bot <nigelb@redhat.com>
d2787b
Reviewed-by: Srijan Sivakumar <ssivakum@redhat.com>
d2787b
Reviewed-by: Sunil Kumar Heggodu Gopala Acharya <sheggodu@redhat.com>
d2787b
---
d2787b
 .../set/post/S32gluster_enable_shared_storage.sh      | 11 +++++++++--
d2787b
 xlators/mgmt/glusterd/src/glusterd-hooks.c            | 19 +++++++++++++++++++
d2787b
 2 files changed, 28 insertions(+), 2 deletions(-)
d2787b
d2787b
diff --git a/extras/hook-scripts/set/post/S32gluster_enable_shared_storage.sh b/extras/hook-scripts/set/post/S32gluster_enable_shared_storage.sh
d2787b
index 3bae37c..9597503 100755
d2787b
--- a/extras/hook-scripts/set/post/S32gluster_enable_shared_storage.sh
d2787b
+++ b/extras/hook-scripts/set/post/S32gluster_enable_shared_storage.sh
d2787b
@@ -104,8 +104,15 @@ function check_volume_status()
d2787b
     echo $status
d2787b
 }
d2787b
 
d2787b
-mount_cmd="mount -t glusterfs $local_node_hostname:/gluster_shared_storage \
d2787b
-           /run/gluster/shared_storage"
d2787b
+key=`echo $5 | cut -d '=' -f 1`
d2787b
+val=`echo $5 | cut -d '=' -f 2`
d2787b
+if [ "$key" == "transport.address-family" ]; then
d2787b
+    mount_cmd="mount -t glusterfs -o xlator-option=transport.address-family=inet6 \
d2787b
+               $local_node_hostname:/gluster_shared_storage /var/run/gluster/shared_storage"
d2787b
+else
d2787b
+    mount_cmd="mount -t glusterfs $local_node_hostname:/gluster_shared_storage \
d2787b
+           /var/run/gluster/shared_storage"
d2787b
+fi
d2787b
 
d2787b
 if [ "$option" == "enable" ]; then
d2787b
     retry=0;
d2787b
diff --git a/xlators/mgmt/glusterd/src/glusterd-hooks.c b/xlators/mgmt/glusterd/src/glusterd-hooks.c
d2787b
index 216cdf7..4f0d775 100644
d2787b
--- a/xlators/mgmt/glusterd/src/glusterd-hooks.c
d2787b
+++ b/xlators/mgmt/glusterd/src/glusterd-hooks.c
d2787b
@@ -200,11 +200,16 @@ glusterd_hooks_set_volume_args(dict_t *dict, runner_t *runner)
d2787b
     int i = 0;
d2787b
     int count = 0;
d2787b
     int ret = -1;
d2787b
+    int flag = 0;
d2787b
     char query[1024] = {
d2787b
         0,
d2787b
     };
d2787b
     char *key = NULL;
d2787b
     char *value = NULL;
d2787b
+    char *inet_family = NULL;
d2787b
+    xlator_t *this = NULL;
d2787b
+    this = THIS;
d2787b
+    GF_ASSERT(this);
d2787b
 
d2787b
     ret = dict_get_int32(dict, "count", &count);
d2787b
     if (ret)
d2787b
@@ -228,9 +233,23 @@ glusterd_hooks_set_volume_args(dict_t *dict, runner_t *runner)
d2787b
             continue;
d2787b
 
d2787b
         runner_argprintf(runner, "%s=%s", key, value);
d2787b
+        if ((strncmp(key, "cluster.enable-shared-storage",
d2787b
+                     SLEN("cluster.enable-shared-storage")) == 0 ||
d2787b
+             strncmp(key, "enable-shared-storage",
d2787b
+                     SLEN("enable-shared-storage")) == 0) &&
d2787b
+            strncmp(value, "enable", SLEN("enable")) == 0)
d2787b
+            flag = 1;
d2787b
     }
d2787b
 
d2787b
     glusterd_hooks_add_custom_args(dict, runner);
d2787b
+    if (flag == 1) {
d2787b
+        ret = dict_get_str_sizen(this->options, "transport.address-family",
d2787b
+                                 &inet_family);
d2787b
+        if (!ret) {
d2787b
+            runner_argprintf(runner, "transport.address-family=%s",
d2787b
+                             inet_family);
d2787b
+        }
d2787b
+    }
d2787b
 
d2787b
     ret = 0;
d2787b
 out:
d2787b
-- 
d2787b
1.8.3.1
d2787b