2010-10-18 13:58:16 +04:00
|
|
|
/*
|
2015-11-18 21:31:52 +03:00
|
|
|
* 9p
|
2010-10-18 13:58:16 +04:00
|
|
|
*
|
|
|
|
* Copyright IBM, Corp. 2010
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2. See
|
|
|
|
* the COPYING file in the top-level directory.
|
|
|
|
*
|
|
|
|
*/
|
2016-06-29 14:47:03 +03:00
|
|
|
|
|
|
|
#ifndef QEMU_9P_XATTR_H
|
|
|
|
#define QEMU_9P_XATTR_H
|
2010-10-18 13:58:16 +04:00
|
|
|
|
2012-12-17 21:20:00 +04:00
|
|
|
#include "qemu/xattr.h"
|
2010-10-18 13:58:16 +04:00
|
|
|
|
2018-01-08 13:18:22 +03:00
|
|
|
struct XattrOperations {
|
2010-10-18 13:58:16 +04:00
|
|
|
const char *name;
|
|
|
|
ssize_t (*getxattr)(FsContext *ctx, const char *path,
|
|
|
|
const char *name, void *value, size_t size);
|
|
|
|
ssize_t (*listxattr)(FsContext *ctx, const char *path,
|
|
|
|
char *name, void *value, size_t size);
|
|
|
|
int (*setxattr)(FsContext *ctx, const char *path, const char *name,
|
|
|
|
void *value, size_t size, int flags);
|
|
|
|
int (*removexattr)(FsContext *ctx,
|
|
|
|
const char *path, const char *name);
|
2018-01-08 13:18:22 +03:00
|
|
|
};
|
2010-10-18 13:58:16 +04:00
|
|
|
|
2017-02-27 01:42:26 +03:00
|
|
|
ssize_t local_getxattr_nofollow(FsContext *ctx, const char *path,
|
|
|
|
const char *name, void *value, size_t size);
|
2017-02-27 01:42:43 +03:00
|
|
|
ssize_t local_setxattr_nofollow(FsContext *ctx, const char *path,
|
|
|
|
const char *name, void *value, size_t size,
|
|
|
|
int flags);
|
2017-02-27 01:42:51 +03:00
|
|
|
ssize_t local_removexattr_nofollow(FsContext *ctx, const char *path,
|
|
|
|
const char *name);
|
2010-10-18 13:58:16 +04:00
|
|
|
|
|
|
|
extern XattrOperations mapped_user_xattr;
|
|
|
|
extern XattrOperations passthrough_user_xattr;
|
|
|
|
|
2010-10-18 13:58:16 +04:00
|
|
|
extern XattrOperations mapped_pacl_xattr;
|
|
|
|
extern XattrOperations mapped_dacl_xattr;
|
|
|
|
extern XattrOperations passthrough_acl_xattr;
|
|
|
|
extern XattrOperations none_acl_xattr;
|
|
|
|
|
2010-10-18 13:58:16 +04:00
|
|
|
extern XattrOperations *mapped_xattr_ops[];
|
|
|
|
extern XattrOperations *passthrough_xattr_ops[];
|
|
|
|
extern XattrOperations *none_xattr_ops[];
|
|
|
|
|
2011-01-23 19:21:20 +03:00
|
|
|
ssize_t v9fs_get_xattr(FsContext *ctx, const char *path, const char *name,
|
|
|
|
void *value, size_t size);
|
|
|
|
ssize_t v9fs_list_xattr(FsContext *ctx, const char *path, void *value,
|
|
|
|
size_t vsize);
|
|
|
|
int v9fs_set_xattr(FsContext *ctx, const char *path, const char *name,
|
2010-10-18 13:58:16 +04:00
|
|
|
void *value, size_t size, int flags);
|
2011-01-23 19:21:20 +03:00
|
|
|
int v9fs_remove_xattr(FsContext *ctx, const char *path, const char *name);
|
2017-02-27 01:41:40 +03:00
|
|
|
|
2011-01-23 19:21:20 +03:00
|
|
|
ssize_t pt_listxattr(FsContext *ctx, const char *path, char *name, void *value,
|
|
|
|
size_t size);
|
2017-02-27 01:41:40 +03:00
|
|
|
ssize_t pt_getxattr(FsContext *ctx, const char *path, const char *name,
|
|
|
|
void *value, size_t size);
|
|
|
|
int pt_setxattr(FsContext *ctx, const char *path, const char *name, void *value,
|
|
|
|
size_t size, int flags);
|
|
|
|
int pt_removexattr(FsContext *ctx, const char *path, const char *name);
|
|
|
|
|
|
|
|
ssize_t notsup_getxattr(FsContext *ctx, const char *path, const char *name,
|
|
|
|
void *value, size_t size);
|
|
|
|
int notsup_setxattr(FsContext *ctx, const char *path, const char *name,
|
|
|
|
void *value, size_t size, int flags);
|
|
|
|
ssize_t notsup_listxattr(FsContext *ctx, const char *path, char *name,
|
|
|
|
void *value, size_t size);
|
|
|
|
int notsup_removexattr(FsContext *ctx, const char *path, const char *name);
|
2010-10-18 13:58:16 +04:00
|
|
|
|
2010-10-18 13:58:16 +04:00
|
|
|
#endif
|