aio: provide platform-independent API
[qemu/ar7.git] / hw / 9pfs / virtio-9p-xattr.c
bloba83960676d16c74cbfd919ddeaca766dcb337494
1 /*
2 * Virtio 9p xattr callback
4 * Copyright IBM, Corp. 2010
6 * Authors:
7 * Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
14 #include "hw/virtio.h"
15 #include "virtio-9p.h"
16 #include "fsdev/file-op-9p.h"
17 #include "virtio-9p-xattr.h"
20 static XattrOperations *get_xattr_operations(XattrOperations **h,
21 const char *name)
23 XattrOperations *xops;
24 for (xops = *(h)++; xops != NULL; xops = *(h)++) {
25 if (!strncmp(name, xops->name, strlen(xops->name))) {
26 return xops;
29 return NULL;
32 ssize_t v9fs_get_xattr(FsContext *ctx, const char *path,
33 const char *name, void *value, size_t size)
35 XattrOperations *xops = get_xattr_operations(ctx->xops, name);
36 if (xops) {
37 return xops->getxattr(ctx, path, name, value, size);
39 errno = -EOPNOTSUPP;
40 return -1;
43 ssize_t pt_listxattr(FsContext *ctx, const char *path,
44 char *name, void *value, size_t size)
46 int name_size = strlen(name) + 1;
47 if (!value) {
48 return name_size;
51 if (size < name_size) {
52 errno = ERANGE;
53 return -1;
56 /* no need for strncpy: name_size is strlen(name)+1 */
57 memcpy(value, name, name_size);
58 return name_size;
63 * Get the list and pass to each layer to find out whether
64 * to send the data or not
66 ssize_t v9fs_list_xattr(FsContext *ctx, const char *path,
67 void *value, size_t vsize)
69 ssize_t size = 0;
70 char buffer[PATH_MAX];
71 void *ovalue = value;
72 XattrOperations *xops;
73 char *orig_value, *orig_value_start;
74 ssize_t xattr_len, parsed_len = 0, attr_len;
76 /* Get the actual len */
77 xattr_len = llistxattr(rpath(ctx, path, buffer), value, 0);
78 if (xattr_len <= 0) {
79 return xattr_len;
82 /* Now fetch the xattr and find the actual size */
83 orig_value = g_malloc(xattr_len);
84 xattr_len = llistxattr(rpath(ctx, path, buffer), orig_value, xattr_len);
86 /* store the orig pointer */
87 orig_value_start = orig_value;
88 while (xattr_len > parsed_len) {
89 xops = get_xattr_operations(ctx->xops, orig_value);
90 if (!xops) {
91 goto next_entry;
94 if (!value) {
95 size += xops->listxattr(ctx, path, orig_value, value, vsize);
96 } else {
97 size = xops->listxattr(ctx, path, orig_value, value, vsize);
98 if (size < 0) {
99 goto err_out;
101 value += size;
102 vsize -= size;
104 next_entry:
105 /* Got the next entry */
106 attr_len = strlen(orig_value) + 1;
107 parsed_len += attr_len;
108 orig_value += attr_len;
110 if (value) {
111 size = value - ovalue;
114 err_out:
115 g_free(orig_value_start);
116 return size;
119 int v9fs_set_xattr(FsContext *ctx, const char *path, const char *name,
120 void *value, size_t size, int flags)
122 XattrOperations *xops = get_xattr_operations(ctx->xops, name);
123 if (xops) {
124 return xops->setxattr(ctx, path, name, value, size, flags);
126 errno = -EOPNOTSUPP;
127 return -1;
131 int v9fs_remove_xattr(FsContext *ctx,
132 const char *path, const char *name)
134 XattrOperations *xops = get_xattr_operations(ctx->xops, name);
135 if (xops) {
136 return xops->removexattr(ctx, path, name);
138 errno = -EOPNOTSUPP;
139 return -1;
143 XattrOperations *mapped_xattr_ops[] = {
144 &mapped_user_xattr,
145 &mapped_pacl_xattr,
146 &mapped_dacl_xattr,
147 NULL,
150 XattrOperations *passthrough_xattr_ops[] = {
151 &passthrough_user_xattr,
152 &passthrough_acl_xattr,
153 NULL,
156 /* for .user none model should be same as passthrough */
157 XattrOperations *none_xattr_ops[] = {
158 &passthrough_user_xattr,
159 &none_acl_xattr,
160 NULL,