[PATCH v2 1/4] virFile: Add APIs for extended attributes handling

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Currently, only three wrappers are being implemented:
virFileSetAttr for setting attributes
virFileGetAttr for querying attributes (note we need to call it twice,
first time to get length of attribute value, second to get actual value)
virFileRemoveAttr for removing attributes
---
 configure.ac             |   1 +
 libvirt.spec.in          |   3 ++
 src/libvirt_private.syms |   3 ++
 src/util/virfile.c       | 106 +++++++++++++++++++++++++++++++++++++++++++++++
 src/util/virfile.h       |  12 ++++++
 5 files changed, 125 insertions(+)

diff --git a/configure.ac b/configure.ac
index 9d366e9..cbb20c4 100644
--- a/configure.ac
+++ b/configure.ac
@@ -275,6 +275,7 @@ dnl header could be found.
 AM_CONDITIONAL([HAVE_LIBTASN1], [test "x$ac_cv_header_libtasn1_h" = "xyes"])
 
 AC_CHECK_LIB([intl],[gettext],[])
+AC_CHECK_LIB([attr],[getxattr])
 
 dnl Do we have rpcgen?
 AC_PATH_PROG([RPCGEN], [rpcgen], [no])
diff --git a/libvirt.spec.in b/libvirt.spec.in
index 9fb753a..90629c8 100644
--- a/libvirt.spec.in
+++ b/libvirt.spec.in
@@ -577,6 +577,9 @@ BuildRequires: gawk
 # For storage wiping with different algorithms
 BuildRequires: scrub
 
+# For xattr
+BuildRequires: libattr-devel
+
 %if %{with_numad}
 BuildRequires: numad
 %endif
diff --git a/src/libvirt_private.syms b/src/libvirt_private.syms
index ed46479..fc7568e 100644
--- a/src/libvirt_private.syms
+++ b/src/libvirt_private.syms
@@ -1273,8 +1273,11 @@ virFileClose;
 virFileDirectFdFlag;
 virFileFclose;
 virFileFdopen;
+virFileGetAttr;
 virFileLoopDeviceAssociate;
+virFileRemoveAttr;
 virFileRewrite;
+virFileSetAttr;
 virFileTouch;
 virFileUpdatePerm;
 virFileWrapperFdClose;
diff --git a/src/util/virfile.c b/src/util/virfile.c
index eec9bcc..aa4579e 100644
--- a/src/util/virfile.c
+++ b/src/util/virfile.c
@@ -37,6 +37,11 @@
 # include <sys/ioctl.h>
 #endif
 
+#ifdef HAVE_LIBATTR
+# include <attr/xattr.h>
+# include <sys/types.h>
+#endif
+
 #include "vircommand.h"
 #include "configmake.h"
 #include "viralloc.h"
@@ -644,3 +649,104 @@ int virFileLoopDeviceAssociate(const char *file,
 }
 
 #endif /* __linux__ */
+
+#ifdef HAVE_LIBATTR /* HAVE_LIBATTR */
+int
+virFileSetAttr(const char *file,
+               const char *name,
+               const char *value)
+{
+    size_t valueSize = strlen(value);
+    if (setxattr(file, name, value, valueSize, 0) < 0) {
+        virReportSystemError(errno,
+                             _("Unable to set extended attribute '%s' on '%s'"),
+                             name, file);
+        return -1;
+    }
+    return 0;
+}
+
+int
+virFileGetAttr(const char *file,
+               const char *name,
+               char **value)
+{
+    int ret = -1;
+    char *buf = NULL;
+    ssize_t valueSize;
+
+    /* get attribute length */
+    if ((valueSize = getxattr(file, name, NULL, 0)) < 0) {
+        /* The Linux kernel does not define ENOATTR, but maps it to ENODATA. */
+        if (errno == ENOATTR || errno == ENODATA) {
+            *value = NULL;
+            return 0;
+        } else {
+            virReportSystemError(errno,
+                                 _("Unable to get extended attribute '%s' on '%s'"),
+                                 name, file);
+            return ret;
+        }
+    }
+
+    if (VIR_ALLOC_N(buf, valueSize) < 0) {
+        virReportOOMError();
+        return ret;
+    }
+
+    if ((ret = getxattr(file, name, buf, valueSize)) < 0) {
+        VIR_FREE(buf);
+        virReportSystemError(errno,
+                             _("Unable to get extended attribute '%s' on '%s'"),
+                             name, file);
+    } else {
+        *value = buf;
+    }
+
+    return ret;
+}
+
+int
+virFileRemoveAttr(const char *file,
+                  const char *name)
+{
+    if (removexattr(file, name) < 0) {
+        virReportSystemError(errno,
+                             _("Unable to remove extended attribute '%s' on '%s'"),
+                             name, file);
+        return -1;
+    }
+    return 0;
+}
+
+#else /* HAVE_LIBATTR */
+
+int
+virFileSetAttr(const char *file ATTRIBUTE_UNUSED,
+               const char *name ATTRIBUTE_UNUSED,
+               const char *value ATTRIBUTE_UNUSED)
+{
+    virReportSystemError(ENOSYS, "%s",
+                         _("Unable to set extended attributes"));
+    return -1;
+}
+
+int
+virFileGetAttr(const char *file ATTRIBUTE_UNUSED,
+               const char *name ATTRIBUTE_UNUSED,
+               char **value ATTRIBUTE_UNUSED)
+{
+    virReportSystemError(ENOSYS, "%s",
+                         _("Unable to get extended attributes"));
+    return -1;
+}
+
+int
+virFileRemoveAttr(const char *file ATTRIBUTE_UNUSED,
+                  const char *name ATTRIBUTE_UNUSED)
+{
+    virReportSystemError(ENOSYS, "%s",
+                         _("Unable to remove extended attributes"));
+    return -1;
+}
+#endif /* HAVE_LIBATTR */
diff --git a/src/util/virfile.h b/src/util/virfile.h
index c885b73..3b4d672 100644
--- a/src/util/virfile.h
+++ b/src/util/virfile.h
@@ -108,4 +108,16 @@ int virFileUpdatePerm(const char *path,
 int virFileLoopDeviceAssociate(const char *file,
                                char **dev);
 
+int virFileSetAttr(const char *file,
+                   const char *name,
+                   const char *value)
+    ATTRIBUTE_NONNULL(3);
+
+int virFileGetAttr(const char *file,
+                   const char *name,
+                   char **value);
+
+int virFileRemoveAttr(const char *file,
+                      const char *name);
+
 #endif /* __VIR_FILES_H */
-- 
1.8.1.5

--
libvir-list mailing list
libvir-list@xxxxxxxxxx
https://www.redhat.com/mailman/listinfo/libvir-list


[Index of Archives]     [Virt Tools]     [Libvirt Users]     [Lib OS Info]     [Fedora Users]     [Fedora Desktop]     [Fedora SELinux]     [Big List of Linux Books]     [Yosemite News]     [KDE Users]     [Fedora Tools]