scsi-disk: Remove duplicate cdb parsing
[qemu/ar7.git] / hw / virtio-9p-xattr.h
bloba6e31a152ff867c0746132a2a7358fb86c4661c3
1 /*
2 * Virtio 9p
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.
13 #ifndef _QEMU_VIRTIO_9P_XATTR_H
14 #define _QEMU_VIRTIO_9P_XATTR_H
16 #include <attr/xattr.h>
18 typedef struct xattr_operations
20 const char *name;
21 ssize_t (*getxattr)(FsContext *ctx, const char *path,
22 const char *name, void *value, size_t size);
23 ssize_t (*listxattr)(FsContext *ctx, const char *path,
24 char *name, void *value, size_t size);
25 int (*setxattr)(FsContext *ctx, const char *path, const char *name,
26 void *value, size_t size, int flags);
27 int (*removexattr)(FsContext *ctx,
28 const char *path, const char *name);
29 } XattrOperations;
32 extern XattrOperations mapped_user_xattr;
33 extern XattrOperations passthrough_user_xattr;
35 extern XattrOperations mapped_pacl_xattr;
36 extern XattrOperations mapped_dacl_xattr;
37 extern XattrOperations passthrough_acl_xattr;
38 extern XattrOperations none_acl_xattr;
40 extern XattrOperations *mapped_xattr_ops[];
41 extern XattrOperations *passthrough_xattr_ops[];
42 extern XattrOperations *none_xattr_ops[];
44 extern ssize_t v9fs_get_xattr(FsContext *ctx, const char *path,
45 const char *name, void *value, size_t size);
46 extern ssize_t v9fs_list_xattr(FsContext *ctx, const char *path,
47 void *value, size_t vsize);
48 extern int v9fs_set_xattr(FsContext *ctx, const char *path, const char *name,
49 void *value, size_t size, int flags);
50 extern int v9fs_remove_xattr(FsContext *ctx,
51 const char *path, const char *name);
52 extern ssize_t pt_listxattr(FsContext *ctx, const char *path,
53 char *name, void *value, size_t size);
55 static inline ssize_t pt_getxattr(FsContext *ctx, const char *path,
56 const char *name, void *value, size_t size)
58 return lgetxattr(rpath(ctx, path), name, value, size);
61 static inline int pt_setxattr(FsContext *ctx, const char *path,
62 const char *name, void *value,
63 size_t size, int flags)
65 return lsetxattr(rpath(ctx, path), name, value, size, flags);
68 static inline int pt_removexattr(FsContext *ctx,
69 const char *path, const char *name)
71 return lremovexattr(rpath(ctx, path), name);
74 static inline ssize_t notsup_getxattr(FsContext *ctx, const char *path,
75 const char *name, void *value,
76 size_t size)
78 errno = ENOTSUP;
79 return -1;
82 static inline int notsup_setxattr(FsContext *ctx, const char *path,
83 const char *name, void *value,
84 size_t size, int flags)
86 errno = ENOTSUP;
87 return -1;
90 static inline ssize_t notsup_listxattr(FsContext *ctx, const char *path,
91 char *name, void *value, size_t size)
93 return 0;
96 static inline int notsup_removexattr(FsContext *ctx,
97 const char *path, const char *name)
99 errno = ENOTSUP;
100 return -1;
103 #endif