630768
From babe3d8cfbf85c23a71cb167008065bc63cc2fb0 Mon Sep 17 00:00:00 2001
630768
Message-Id: <babe3d8cfbf85c23a71cb167008065bc63cc2fb0@dist-git>
630768
From: Michal Privoznik <mprivozn@redhat.com>
630768
Date: Mon, 4 Feb 2019 10:37:50 +0100
630768
Subject: [PATCH] virfile: Detect ceph as shared FS
630768
630768
RHEL-7.7: https://bugzilla.redhat.com/show_bug.cgi?id=1665553
630768
RHEL-7.6.z: https://bugzilla.redhat.com/show_bug.cgi?id=1672178
630768
630768
Ceph can be mounted just like any other filesystem and in fact is
630768
a shared and cluster filesystem. The filesystem magic constant
630768
was taken from kernel sources as it is not in magic.h yet.
630768
630768
Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
630768
Reviewed-by: Erik Skultety <eskultet@redhat.com>
630768
(cherry picked from commit 6dd2a2ae6386b1d51edcc9a434f56d7f9dc2cb35)
630768
Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
630768
Message-Id: <60cef73c5369ea9b37bf0663ee7f06e2605abd46.1549273057.git.mprivozn@redhat.com>
630768
Reviewed-by: Erik Skultety <eskultet@redhat.com>
630768
---
630768
 src/util/virfile.c            | 9 ++++++++-
630768
 src/util/virfile.h            | 1 +
630768
 src/util/virstoragefile.c     | 3 ++-
630768
 tests/virfiledata/mounts3.txt | 2 ++
630768
 tests/virfilemock.c           | 5 +++++
630768
 tests/virfiletest.c           | 2 ++
630768
 6 files changed, 20 insertions(+), 2 deletions(-)
630768
630768
diff --git a/src/util/virfile.c b/src/util/virfile.c
630768
index 716b55d770..471d309062 100644
630768
--- a/src/util/virfile.c
630768
+++ b/src/util/virfile.c
630768
@@ -3537,6 +3537,9 @@ int virFilePrintf(FILE *fp, const char *msg, ...)
630768
 # ifndef FUSE_SUPER_MAGIC
630768
 #  define FUSE_SUPER_MAGIC 0x65735546
630768
 # endif
630768
+# ifndef CEPH_SUPER_MAGIC
630768
+#  define CEPH_SUPER_MAGIC 0x00C36400
630768
+# endif
630768
 
630768
 # define PROC_MOUNTS "/proc/mounts"
630768
 
630768
@@ -3682,6 +3685,9 @@ virFileIsSharedFSType(const char *path,
630768
     if ((fstypes & VIR_FILE_SHFS_CIFS) &&
630768
         (f_type == CIFS_SUPER_MAGIC))
630768
         return 1;
630768
+    if ((fstypes & VIR_FILE_SHFS_CEPH) &&
630768
+        (f_type == CEPH_SUPER_MAGIC))
630768
+        return 1;
630768
 
630768
     return 0;
630768
 }
630768
@@ -3845,7 +3851,8 @@ int virFileIsSharedFS(const char *path)
630768
                                  VIR_FILE_SHFS_OCFS |
630768
                                  VIR_FILE_SHFS_AFS |
630768
                                  VIR_FILE_SHFS_SMB |
630768
-                                 VIR_FILE_SHFS_CIFS);
630768
+                                 VIR_FILE_SHFS_CIFS |
630768
+                                 VIR_FILE_SHFS_CEPH);
630768
 }
630768
 
630768
 
630768
diff --git a/src/util/virfile.h b/src/util/virfile.h
630768
index 6f1e802fde..1d16e96b59 100644
630768
--- a/src/util/virfile.h
630768
+++ b/src/util/virfile.h
630768
@@ -205,6 +205,7 @@ enum {
630768
     VIR_FILE_SHFS_AFS = (1 << 3),
630768
     VIR_FILE_SHFS_SMB = (1 << 4),
630768
     VIR_FILE_SHFS_CIFS = (1 << 5),
630768
+    VIR_FILE_SHFS_CEPH = (1 << 6),
630768
 };
630768
 
630768
 int virFileIsSharedFSType(const char *path, int fstypes) ATTRIBUTE_NONNULL(1);
630768
diff --git a/src/util/virstoragefile.c b/src/util/virstoragefile.c
630768
index 58f67278da..0b15219c3e 100644
630768
--- a/src/util/virstoragefile.c
630768
+++ b/src/util/virstoragefile.c
630768
@@ -1366,7 +1366,8 @@ int virStorageFileIsClusterFS(const char *path)
630768
      */
630768
     return virFileIsSharedFSType(path,
630768
                                  VIR_FILE_SHFS_GFS2 |
630768
-                                 VIR_FILE_SHFS_OCFS);
630768
+                                 VIR_FILE_SHFS_OCFS |
630768
+                                 VIR_FILE_SHFS_CEPH);
630768
 }
630768
 
630768
 #ifdef LVS
630768
diff --git a/tests/virfiledata/mounts3.txt b/tests/virfiledata/mounts3.txt
630768
index 134c6e8f81..68eded048c 100644
630768
--- a/tests/virfiledata/mounts3.txt
630768
+++ b/tests/virfiledata/mounts3.txt
630768
@@ -33,3 +33,5 @@ host:/nfs /nfs nfs4 rw,relatime,vers=4.1,rsize=1048576,wsize=1048576,namlen=255,
630768
 dev /nfs/blah devtmpfs rw,nosuid,relatime,size=10240k,nr_inodes=4093060,mode=755 0 0
630768
 host:/gv0 /gluster fuse.glusterfs rw 0 0
630768
 root@host:/tmp/mkdir /gluster/sshfs fuse.sshfs rw 0 0
630768
+192.168.0.1:/ceph/data /ceph ceph rw,noatime,name=cephfs,secret=<hidden>,acl,wsize=16777216 0 0
630768
+192.168.0.1,192.168.0.2,192.168.0.3:/ceph/data2 /ceph/multi ceph rw,noatime,name=cephfs,secret=<hidden>,acl,wsize=16777216 0 0
630768
diff --git a/tests/virfilemock.c b/tests/virfilemock.c
630768
index ae5c8d025a..eb5182df66 100644
630768
--- a/tests/virfilemock.c
630768
+++ b/tests/virfilemock.c
630768
@@ -88,6 +88,9 @@ setmntent(const char *filename, const char *type)
630768
 #ifndef FUSE_SUPER_MAGIC
630768
 # define FUSE_SUPER_MAGIC 0x65735546
630768
 #endif
630768
+#ifndef CEPH_SUPER_MAGIC
630768
+# define CEPH_SUPER_MAGIC 0x00c36400
630768
+#endif
630768
 
630768
 
630768
 static int
630768
@@ -134,6 +137,8 @@ statfs_mock(const char *mtab,
630768
             ftype = CIFS_SUPER_MAGIC;
630768
         } else if (STRPREFIX(mb.mnt_type, "fuse")) {
630768
             ftype = FUSE_SUPER_MAGIC;
630768
+        } else if (STRPREFIX(mb.mnt_type, "ceph")) {
630768
+            ftype = CEPH_SUPER_MAGIC;
630768
         } else {
630768
             /* Everything else is EXT4. We don't care really for other paths. */
630768
             ftype = EXT4_SUPER_MAGIC;
630768
diff --git a/tests/virfiletest.c b/tests/virfiletest.c
630768
index a246d601ba..972c07fdc5 100644
630768
--- a/tests/virfiletest.c
630768
+++ b/tests/virfiletest.c
630768
@@ -458,6 +458,8 @@ mymain(void)
630768
     DO_TEST_FILE_IS_SHARED_FS_TYPE("mounts3.txt", "/gluster/file", true);
630768
     DO_TEST_FILE_IS_SHARED_FS_TYPE("mounts3.txt", "/gluster/sshfs/file", false);
630768
     DO_TEST_FILE_IS_SHARED_FS_TYPE("mounts3.txt", "/some/symlink/file", true);
630768
+    DO_TEST_FILE_IS_SHARED_FS_TYPE("mounts3.txt", "/ceph/file", true);
630768
+    DO_TEST_FILE_IS_SHARED_FS_TYPE("mounts3.txt", "/ceph/multi/file", true);
630768
 
630768
     return ret != 0 ? EXIT_FAILURE : EXIT_SUCCESS;
630768
 }
630768
-- 
630768
2.20.1
630768