[libvirt] [PATCH v5 1/3] virFile: Add APIs for extended attributes handling

Michal Privoznik mprivozn at redhat.com
Thu Mar 21 16:50:47 UTC 2013


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
---
diff to v4:
-drop errno setting

diff to v3:
-set errno=ENOSYS when building without WITH_ATTR for easier check within callee.

diff to v2:
-drop multiple check for libattr
 src/libvirt_private.syms |   3 ++
 src/util/virfile.c       | 105 +++++++++++++++++++++++++++++++++++++++++++++++
 src/util/virfile.h       |  14 +++++++
 3 files changed, 122 insertions(+)

diff --git a/src/libvirt_private.syms b/src/libvirt_private.syms
index 21bc615..fd57fa0 100644
--- a/src/libvirt_private.syms
+++ b/src/libvirt_private.syms
@@ -1253,8 +1253,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 4a9fa81..2409db4 100644
--- a/src/util/virfile.c
+++ b/src/util/virfile.c
@@ -37,6 +37,10 @@
 # include <sys/ioctl.h>
 #endif
 
+#ifdef WITH_ATTR
+# include <attr/xattr.h>
+#endif
+
 #include "vircommand.h"
 #include "configmake.h"
 #include "viralloc.h"
@@ -644,3 +648,104 @@ int virFileLoopDeviceAssociate(const char *file,
 }
 
 #endif /* __linux__ */
+
+#ifdef WITH_ATTR
+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 /* WITH_ATTR */
+
+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 /* WITH_ATTR */
diff --git a/src/util/virfile.h b/src/util/virfile.h
index c885b73..9e0adf6 100644
--- a/src/util/virfile.h
+++ b/src/util/virfile.h
@@ -108,4 +108,18 @@ 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(1) ATTRIBUTE_NONNULL(2) ATTRIBUTE_NONNULL(3);
+
+int virFileGetAttr(const char *file,
+                   const char *name,
+                   char **value)
+    ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2) ATTRIBUTE_NONNULL(3);
+
+int virFileRemoveAttr(const char *file,
+                      const char *name)
+    ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2);
+
 #endif /* __VIR_FILES_H */
-- 
1.8.1.5




More information about the libvir-list mailing list